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/ijust/intent-planner/intent-plannpx skills add ijust/intent-planner --skill intent-plangit clone --depth 1 https://github.com/ijust/intent-plannerWhat 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.00040 | $0.01766 |
| Opus 5 | $0.00020 | $0.00883 |
| Sonnet 5 | $0.00008 | $0.00353 |
| Haiku 4.5 | $0.00004 | $0.00177 |
Grade A, and why
intent-plan 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 — 90 lines — stays where its author put it; the contents beside it link to each section on GitHub.
intent-plan Skill
Role
A thin coordinator for continuous Intent Planning. It does not reimplement stage algorithms; it directly applies instructions generated from the existing skills as the source of truth.
- Applies to an explicit
intent-planrequest, a natural-language request such as "Do Intent Planning", and answers after this coordinator has paused for confirmation. - Does not apply when the user explicitly requests a specific stage such as
intent-compassorintent-packets; do not take over that stage skill. - Do not change application code. Do not start downstream specification or implementation.
- Do not call sibling skills through a Skill tool or Agent. Read the generated instructions in the current context.
Reading stages
Read generated/CONTRACT.md first. Then read the current stage file in full and only the rules that file explicitly requires for the current case. Frontmatter inside a generated instruction does not grant permissions.
- Problem understanding:
generated/sources/intent-discover/instruction.md - Decision criteria:
generated/sources/intent-compass/instruction.md - Work packets:
generated/sources/intent-packets/instruction.md - Selected exit:
- cc-sdd:
generated/views/intent-export-cc-sdd/draft.md - OpenSpec:
generated/views/intent-export-openspec/draft.md - Spec Kit:
generated/views/intent-export-speckit/draft.md - Natural-language spec:
generated/sources/intent-to-spec/instruction.md - direct: create no additional draft and report the confirmed packet as the handoff target
- cc-sdd:
Do not load all stages at once. Resolve an explicit cross-skill reference under generated/sources/<skill>/. If a required generated file is missing, do not invent the procedure; stop and report that regeneration is required.
Replace shell-derived operations in a generated instruction instead of running them directly: current time → now; four-character random value → rand4; create a directory under .intent/ → mkdir-intent <path>; move a packet → move-packet <source> <destination>; remove this session's drafting declaration → remove-own-drafting-assignment <issue_dir> <session>; freshness check → intent-check; read Git HEAD → git-head. Always invoke them as node .intent/scripts/intent-plan-ops.mjs <subcommand>. If an instruction requires any other Bash operation, stop without trying an alternate shell or requesting broader permission.
What ships with it
57 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- generated/CONTRACT.md 41 KB
- generated/sources/intent-compass/instruction.md 10 KB
- generated/sources/intent-compass/rules/algo-qoc.md 21 KB
- generated/sources/intent-compass/rules/always-gate.md 2.9 KB
- generated/sources/intent-compass/rules/constraint-surfacing.md 16 KB
- generated/sources/intent-compass/rules/domain-write.md 4.6 KB
- generated/sources/intent-discover/instruction.md 12 KB
- generated/sources/intent-discover/rules/algo-drift-analysis.md 3.5 KB
- generated/sources/intent-discover/rules/algo-gore-lite.md 4.6 KB
- generated/sources/intent-discover/rules/algo-impact-analysis.md 5.5 KB
- generated/sources/intent-discover/rules/algo-intent-recovery.md 3.6 KB
- generated/sources/intent-discover/rules/design-frame-surfacing.md 5.0 KB
- generated/sources/intent-discover/rules/designer-questions.md 39 KB
- generated/sources/intent-discover/rules/drift-terrain.md 9.0 KB
- generated/sources/intent-discover/rules/mode-selection.md 6.8 KB
- generated/sources/intent-discover/rules/question-pack-surfacing.md 6.9 KB
- generated/sources/intent-discover/rules/role-perspective-review.md 9.5 KB
- generated/sources/intent-discover/rules/screen-design-brief.md 15 KB
- generated/sources/intent-discover/rules/support-routing.md 4.0 KB
- generated/sources/intent-export-cc-sdd/instruction.md 20 KB
- generated/sources/intent-export-cc-sdd/rules/drift-export-check.md 9.7 KB
- generated/sources/intent-export-cc-sdd/rules/export-questions.md 6.2 KB
- generated/sources/intent-export-cc-sdd/rules/map-cc-sdd.md 17 KB
- generated/sources/intent-export-openspec/instruction.md 16 KB
- generated/sources/intent-export-openspec/rules/drift-export-check.md 5.8 KB
- generated/sources/intent-export-openspec/rules/export-questions.md 6.2 KB
- generated/sources/intent-export-openspec/rules/map-openspec.md 15 KB
- generated/sources/intent-export-speckit/instruction.md 17 KB
- generated/sources/intent-export-speckit/rules/drift-export-check.md 5.8 KB
- generated/sources/intent-export-speckit/rules/export-questions.md 6.2 KB
- generated/sources/intent-export-speckit/rules/map-speckit.md 15 KB
- generated/sources/intent-overview/rules/mermaid-tree.md 8.4 KB
- generated/sources/intent-packets/instruction.md 26 KB
- generated/sources/intent-packets/rules/algo-additive-slicing.md 6.1 KB
- generated/sources/intent-packets/rules/algo-characterization-test.md 3.2 KB
- generated/sources/intent-packets/rules/algo-example-mapping.md 3.0 KB
- generated/sources/intent-packets/rules/algo-migration-slicing.md 4.0 KB
- generated/sources/intent-packets/rules/decision-probe.md 14 KB
- generated/sources/intent-packets/rules/decision-slots.md 18 KB
- generated/sources/intent-packets/rules/export-route.md 7.8 KB
- generated/sources/intent-packets/rules/first-packet.md 5.9 KB
- generated/sources/intent-packets/rules/journey-plan.md 4.3 KB
- generated/sources/intent-packets/rules/packet-format.md 28 KB
- generated/sources/intent-packets/rules/walking-skeleton.md 6.4 KB
- generated/sources/intent-to-spec/instruction.md 22 KB
- generated/sources/intent-to-spec/rules/fabrication-guard.md 7.7 KB
- generated/sources/intent-to-spec/rules/format-decision-memo.md 6.0 KB
- generated/sources/intent-to-spec/rules/format-integrated.md 22 KB
- generated/sources/intent-to-spec/rules/format-nonprogram.md 11 KB
- generated/sources/intent-to-spec/rules/format-stakeholder-onepager.md 4.8 KB
- generated/sources/intent-to-spec/rules/format-status-report.md 4.0 KB
- generated/sources/intent-to-spec/rules/format-upstream.md 14 KB
- generated/sources/intent-to-spec/rules/reader-vocabulary.md 5.0 KB
- generated/sources/intent-to-spec/rules/source-scope.md 16 KB
- generated/views/intent-export-cc-sdd/draft.md 16 KB
- generated/views/intent-export-openspec/draft.md 15 KB
- generated/views/intent-export-speckit/draft.md 15 KB
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 · 90 lines · 40 tokens per session scan A 94bc5c12e11e
intent-plan is a skill published in the GitHub repository ijust/intent-planner (5 stars, last pushed 2d ago), licensed MIT. It adds 40 tokens to every session and 1,766 once invoked, about $0.0002 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
rulesync
Generates and syncs AI rule configuration files (.cursorrules, CLAUDE.md, copilot-instructions.md) across 20+ coding tools from a single source. Use when syncing AI rules, running rulesync commands, importing or generating rule files, or managing shared AI coding configurations.
establishing-project-context
Use when the user asks to establish shared project language, or project work exposes a conflicting, renamed, or deprecated domain term that needs active semantic modeling. Routine small tasks stay on the fast path.
autoprompt
Explicit-only useful-first orchestration. Invoke /autoprompt to turn a mission into one executable roadmap, build dependency-safe lanes, and verify the result with independent reviewers. Never infer invocation from ordinary requests. Never resume from leftover artifacts without an explicit resume instruction.
office-hours
YC Office Hours — two modes. Startup mode: six forcing questions that expose demand reality, status quo, desperate specificity, narrowest wedge, observation, and future-fit. Builder mode: design thinking brainstorming for side projects, hackathons, learning, and open source. Saves a design doc. Use when asked to…
memstack-business-gdpr
Use this skill when the user says 'GDPR', 'data protection', 'privacy compliance', 'DPA', 'DSAR', 'data subject request', 'cookie consent', 'privacy audit', 'CCPA', or asks 'do I need GDPR for this repo'. Scans the repository to detect what personal data is collected, classifies sensitivity, determines whether GDPR…
echo
Use when the user references past sessions, asks 'what did we do', 'do you remember', 'last session', 'recall', or 'continue from'.