npx claudepluginhub activememory/ctx --plugin ctxThis skill is limited to using the following tools:
Load the full context packet for AI consumption.
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.
Optimizes AI agent context setup with rules files (CLAUDE.md), specs, source files, and hierarchy. Use for new sessions, degrading output, task switches, or project configuration.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Share bugs, ideas, or general feedback.
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