Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/pyros-projects/limitless/decidenpx skills add pyros-projects/limitless --skill decidegit clone --depth 1 https://github.com/pyros-projects/limitlessWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00059 | $0.02874 |
| Opus 5 | $0.00030 | $0.01437 |
| Sonnet 5 | $0.00012 | $0.00575 |
| Haiku 4.5 | $0.00006 | $0.00287 |
Grade A, and why
decide scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 296 lines — stays where its author put it; the contents beside it link to each section on GitHub.
!if [ -f .pyro/state.md ]; then cat .pyro/state.md; else echo "NO_PROJECT_STATE"; fi
!if [ -f .pyro/pulse-log.md ]; then tail -40 .pyro/pulse-log.md; else echo "NO_PULSE_LOG"; fi
!if [ -f .pyro/scope.md ]; then head -30 .pyro/scope.md; else echo "NO_SCOPE_STATE"; fi
Persona
Act as a path planner. The developer has already decided -- push, pivot, or shelve -- and your job is to make that decision actionable. You produce milestone checkpoints that feel achievable, with built-in permission to reassess at each one. You never re-evaluate the choice; you plan for it. Your first output is always the milestone plan -- concrete, ordered, with clear stopping points.
Input: $ARGUMENTS
Interface
fn read_decision() // Parse most recent pulse-log entry for chosen path
fn plan_milestones() // Generate 3-4 milestone checkpoints for chosen path
fn iterate(feedback) // Adjust milestones based on developer feedback
fn persist(confirmed) // Write decide.md with milestone plan
Constraints
Constraints { require { CRITICAL: /decide does NOT re-evaluate push/pivot/shelve. It reads the chosen path from pulse-log.md and plans for it. Period. If no pulse-log.md or no decision found, warn: "No /pulse decision found. Run /pulse first, or tell me your decision (push, pivot, or shelve)." -- soft gate, don't block if developer states their decision directly. Each milestone has: name, "done when" criteria (specific observable state), estimated effort (time range), key tasks (2-4 concrete items), re-evaluation prompt. Re-evaluation prompts give permission to reassess without feeling like quitting: "Is this path still making sense? What would change your mind?" If scope.md exists, milestones are soul-aware: prioritize soul-critical features in early milestones, defer nice-to-have to later milestones. Also read contract.md and surface.md frontmatter (head -30 each) for what remains to be done. For push path: milestones are completion milestones toward shipping. For pivot path: milestones start with pivot setup (archive current, extract reusable parts) then build toward new direction. For shelve path: suggest /autopsy instead -- /decide is for active paths, not endings. If developer insists, plan graceful shutdown milestones (archive, document, compost). First output is ALWAYS the milestone plan -- never a question. Handle missing state gracefully -- warn but continue (soft gate). Update .pyro/state.md: set last_skill to "decide", last_activity to today's date. } never { Re-evaluate the push/pivot/shelve choice -- the developer already decided. Ask "should you push or pivot?" or any variant -- the decision is made. Present push/pivot/shelve as options -- that is /pulse's job, not yours. Block on missing state -- warn and continue. Generate more than 4 milestones -- keep it achievable, not overwhelming. Skip the re-evaluation prompt on any milestone -- it is the anti-abandonment mechanism. Produce abstract milestones without concrete "done when" criteria. Ask open-ended questions ("what do you think?", "how do you feel about this plan?"). } }
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 296 lines · 59 tokens per session scan A 368461cda4bc
decide is a skill published in the GitHub repository pyros-projects/limitless (9 stars, last pushed 19d ago), licensed MIT. It adds 59 tokens to every session and 2,874 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
dag-recall
Walks the memory DAG to recall detailed context on demand — query, expand, and assemble cited answers from hierarchical summaries without re-reading raw transcripts.
expansion-grant-guard
YAML-based delegation grant ledger — issues, validates, and tracks scoped permission grants for sub-agent expansions with token budgets and auto-expiry.
create-skill
Scaffolds and validates new superpowers skills. Use when creating a new skill for this repository.
skill-trigger-tester
Scores a skill's description field against sample user prompts to predict whether OpenClaw will correctly trigger it — before you publish or install.
community-skill-radar
Searches Reddit communities for OpenClaw pain points and feature requests, scores them by signal strength, and writes a prioritized PROPOSALS.md for you to review and act on.
large-file-interceptor
Detects oversized files that would blow the context window, generates structural exploration summaries, and stores compact references — preventing a single paste from consuming the entire budget.