Generic context planner
Skill xiw249/agent-context-planner/skills/generic-context-planner
A deterministic, hash-aware context planner that helps coding agents load only the files they need.From the repository description
npx -y skills add xiw249/agent-context-planner --skill generic-context-plannerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
0.9 KB, 227 tokens by cl100k_base, as published. Nobody here has run it
Generic Context Planner Skill
Use this skill before large repository tasks.
Workflow
- Select the narrowest applicable bundle.
- Run
contextctl plan --bundle <bundle> --json. - Read every
MUST_READ_FULLsource. - For
READ_VALID_DIGEST, read the corresponding digest under.cache/context/digests/. - Treat
MACHINE_VALIDATE_ONLYas validation inputs; do not default to full manual reading. - Read
ON_DEMANDfiles only when the task requires behavioral comparison. - Do not cross
EXCLUDEDboundaries. - Stop and report
MISSING_REQUIRED_ARTIFACTorCONTRACT_DRIFT. - Complete the task and run its tests.
- Only after successful verification, explicitly run
contextctl record --bundle <bundle>.
Safety rules
- Never trust a stale digest.
- A digest is an index, not an authority.
- Do not use
recordto hide unresolved changes. - Do not skip dependency-propagated files.
- Do not infer completion from a file name alone.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.