intent-status

A read-only status checker for an intent-planning folder named .intent. It reviews the available planning documents and reports the current position plus one recommended next action.

In plain words
What is it for?
Use it to check intent trees, packets, exports, specifications, consistency issues, and the next move in the planning process.
Why use it?
It shows what planning work is complete or missing without changing files, so the next step is easier to choose.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/ijust/intent-planner/intent-status
Any agent
npx skills add ijust/intent-planner --skill intent-status
Clone the repo
git clone --depth 1 https://github.com/ijust/intent-planner

Made for: Claude Code, Codex.

Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 10,590 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5 $0.00041 $0.10590
Opus 5 $0.00020 $0.05295
Sonnet 5 $0.00008 $0.02118
Haiku 4.5 $0.00004 $0.01059

Measured 2d ago against content hash 7738d0ba80b5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

intent-status 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.

templates/en/claude/skills/intent-status/SKILL.md · 215 lines

How it starts

The opening of the file, as written. The whole thing — 215 lines — stays where its author put it; the contents beside it link to each section on GitHub.

intent-status Skill

Core Mission

Shared temperature for matching checks (defined once here; each check refers to it as "shared temperature"): the orphan-spec / intent-tree-unfiled / Candidate / conformance matching checks are all done within what is machine-observable from files (Read/Glob/Grep only; git history and code diffs are not consulted), stay at candidate presentation, not an assertion, treat non-matchability as the normal case and tolerate false positives, and never take away the next-move first-match. When the target file is absent, the check is omitted (not an error).

  • Success Criteria (success if achieved; the detailed check procedures are consolidated into Execution Steps, and only the outcomes are declared here):
    • The existence and fill state of the deliverables under .intent/ (mode, intent-tree, intent-compass, the packets index/files, the per-packet export drafts, deltas) are read and a summary of the current position is presented (read-only; never creates, modifies, or deletes any file)
    • Packets integrity (index ↔ active/ divergence, done / superseded_by lingering, the latest export-log row's packet absent from active/) is checked and violations are reported in the current-position summary
    • Orphan spec (no Packet) and intent-tree unfiled (discover skip) are reported in the details at the "shared temperature", and both plus writeback omission (downstream layer) are partitioned into three layers — tree layer → packet layer → downstream layer — with each spec presented only in the single most-upstream layer so no double warning is emitted
    • A leading mini progress rail (all packets laid out vertically with the five signals ✅/🔵/⚪/🔴/◻ plus [current stage → next stage(s) to pass through]) is placed at the top so "which packet is 🔵 you are here now, where the remaining work ⚪ / unreflected 🔴 are" is visible at a glance. Internal terms (matching, integrity check, enforcement) are pushed into the details
    • The default output is slimmed into three layers (default = one human decision + three separate readings + progress rail + Candidate count/names + a one-line Ice box notice / details = the folded position / option = only on a natural-language trigger), and the one-line summary of the next move is never folded and is always emphasized at the lead
    • The "dangerous notices" (freshness warning, packets integrity violations, unreflected 🔴) are shown in full as bare glyphs in the actual-impact context (never folded), with a one-line summary " N present (see details)" also left on the details side. In the explanatory context (legend, 0-count summary, etc.) they are toned down to inline code / words rather than bare glyphs (INV32)
    • The L4 "future addition candidates" that are unconsumed (neither packeted nor implemented) are presented as a permanent default display of count + names (frozen-marked ones excluded; "shared temperature")
    • Ice box candidates with a frozen mark are not shown in the body in the default; instead a one-line notice "Frozen (Ice box): N. Show them with 'show me the icebox'" is included, and on a natural-language trigger they are expanded as count + names + freeze reason
    • When a natural-language trigger such as "understanding map", "pre-start briefing", or "understanding gap sorting" appears, status preserves its read-only nature and guides the user to the corresponding /intent-overview derived views (.intent/overview/agent-understanding-map.md / active-packet-briefing.md / understanding-gaps.md)
    • Exactly one "next move" is recommended via the first-match of rules/decision-table.md (from discover / compass / packets / export / validate / improve / writeback / "no action needed"), accompanied by the reason and judgment basis. Only the presentation is changed; the first-match selection logic is untouched
    • When enforcement is remind / gate, a freshness check via intent-check is performed, and on a violation a freshness warning quoting the intent-check stdout is included (when off, unstated, an invalid value, or not executable, none is shown)
    • When drift-watch is on, drift-log is read and a light tally (prevented N / caught N / missed N / false-positive N / not-applicable N / unjudged N) is included (otherwise none; read-only)
    • The compass section update dates (Invariants / Decision Rules) and the active packets' updated_at are cross-checked, and when "not yet caught up after a compass update" reaches the threshold or more, /intent-validate is recommended as the right moment (decision table row 12; estimate only; "shared temperature")
    • When parallel-implementation claims exist (.intent/assignments/), the claimed packets, the double-claim warning on the same packet, and the stale-claim elapsed observation are included read-only (Step 3.8; with zero claims not included and unchanged from current behavior; warn-only; no machine threshold; "shared temperature")
    • Major terms in the output carry a one-line plain-language explanation in the term (explanation) form (two layers: lead = first occurrence / table headers only; details = every time; the glossary is kept and not abolished)

Read the full file on GitHub · 215 lines

Files

What ships with it

1 file 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.

Changes

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.

  1. 2d ago First seen · 215 lines · 41 tokens per session scan A 7738d0ba80b5

Subscribe to this mod's changes

intent-status is a skill published in the GitHub repository ijust/intent-planner (5 stars, last pushed 2d ago), licensed MIT. It adds 41 tokens to every session and 10,590 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.

Related

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.

dyoshikawa/rulesync · 64 tokens

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.

GanyuanRan/Aegis · 45 tokens

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.

Spielewoy/autoprompt-skill · 56 tokens

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…

GCWing/BitFun · 168 tokens

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…

cwinvestments/memstack · 121 tokens

echo

Use when the user references past sessions, asks 'what did we do', 'do you remember', 'last session', 'recall', or 'continue from'.

cwinvestments/memstack · 35 tokens