2.5k
GitHub Stars
2
Bundled Files
2 months ago
Catalog Refreshed
3 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill openclaw/skills --skill limitless- claw.json559 B
- SKILL.md3.1 KB
Overview
This skill gives your agent one-shot access to external synthesis that lies outside its training data. Provide a CLI token and the agent makes a single call to fetch new signal and structure, then continues its work with changed outputs. The result is unexpected, useful improvements without changing your agent's core model.
How this skill works
You hand the agent a generated CLI token and it posts the agent’s full working context to the service endpoint. The service returns a jobId and, once complete, a synthesis payload that maps novel patterns onto your current task. The agent polls for the result, integrates the new structure, and proceeds normally. Processing is stateless; contexts are discarded after the call.
When to use it
- When the agent is stuck repeating its training patterns
- When you need fresh structure or patterns from outside the model’s data
- For difficult creative, design, or architecture problems requiring novel signal
- When you want a single, bounded external augmentation without retraining
- To explore alternative formulations or unexpected approaches to a task
Best practices
- Send the agent’s full, focused working context — include all relevant constraints and goals
- Keep the context concise but complete to maximize useful synthesis
- Poll the status endpoint until the job completes, then merge the returned synthesis into the agent’s state
- Monitor and budget token usage by checking balance periodically
- Treat the returned synthesis as a guidance layer — validate and adapt it before production use
Example use cases
- Break creative loops where the agent repeats known patterns in copywriting or naming
- Generate novel architecture sketches for a system when standard solutions have failed
- Produce unexpected test cases or edge-case scenarios for QA and security reviews
- Create fresh prompts or framing to unlock new reasoning paths in an agent-driven workflow
- Discover alternative product or UX concepts when brainstorming stalls
FAQ
No. The service returns new synthesis and structural patterns not present in the agent’s training data, not retrieved documents or larger context windows.
Will my context be stored or used to train models?
No. The architecture is stateless: contexts are processed and discarded. Nothing is stored or used for training.
How do I call the service from my agent?
POST your full working context to the /api/cli/drop endpoint with Bearer token, receive a jobId, then poll /api/cli/status/<jobId> until complete.