From ctx
Loads full project context packet via 'ctx agent' bash command. Use at session start, stale/incomplete context, or task switches; rarely manual due to PreToolUse auto-run.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ctx:ctx-agentThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Load the full context packet for AI consumption.
Load the full context packet for AI consumption.
ctx agent automatically with a cooldown:
you rarely need to invoke this manuallyRead the files listed in "Read These Files (in order)": the packet is a summary, not a substitute. In particular, read CONVENTIONS.md before writing any code.
Confirm to the user: "I have read the required context files and I'm following project conventions." Read and confirm before beginning implementation.
| Flag | Default | Description |
|---|---|---|
--budget | 8000 | Token budget for context packet |
--format | md | Output format: md or json |
--cooldown | 10m | Suppress repeated output within this duration |
--session | (none) | Session ID for cooldown isolation (e.g., $PPID) |
ctx agent $ARGUMENTS
Example: default load:
ctx agent
Example: smaller packet for limited contexts:
ctx agent --budget 4000
Example: with cooldown (how the PreToolUse hook invokes it):
ctx agent --budget 4000 --session $PPID
Example: JSON for programmatic use:
ctx agent --format json --budget 8000
npx claudepluginhub activememory/ctx --plugin ctxOptimizes Claude Code context-window usage for accuracy and cost. Helps when hitting context limits, structuring prompts, or trimming injected content.
Recalls project context via ctx CLI: loads context packet, reads TASKS.md/DECISIONS.md, lists recent sessions, presents structured readback of last session, active tasks, recent decisions, next steps. For memory questions or session starts.
Resumes Claude Code sessions by loading CONTEXT-*.md files from project root or done/ folder, with optional full resource expansion and resume report generation. Use for continuing previous work.