From ctx
Query the ctx context graph for prior session context. Use at the start of a session or when the user asks about past work, related sessions, or prior decisions.
npx claudepluginhub michaelangeloio/ctx --plugin ctxThis skill is limited to using the following tools:
Search the ctx graph for relevant prior work. Use when starting a new task or when the user references past sessions.
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.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Share bugs, ideas, or general feedback.
Search the ctx graph for relevant prior work. Use when starting a new task or when the user references past sessions.
Search for relevant sessions and highlights:
ctx search "<relevant terms>"
ctx find Session tool=claude --limit 10
ctx find Highlight kind=decision
ctx find Highlight kind=blocker
ctx find Highlight kind=todo
If you find a related session, walk its connections:
ctx get Session:<id>
ctx walk Session:<id> HAS_HIGHLIGHT
ctx walk Session:<id> HAS_TOPIC
Summarize what you found before proceeding with the task.
Find sessions sharing topics with a given session:
ctx walk Session:<id> HAS_TOPIC/'~HAS_TOPIC'
Find all topics covered across a project:
ctx walk Session:<id> IN_PROJECT/'~IN_PROJECT'/HAS_TOPIC
Trace a continuation chain:
ctx walk Session:<id> CONTINUES
ctx walk Session:<id> '~CONTINUES'
ctx path Session:<from> Session:<to> --via CONTINUES
Find what sessions and highlights reference an artifact:
ctx walk Artifact:<id> '~MENTIONS'
ctx walk Artifact:<id> '~MENTIONS/~HAS_HIGHLIGHT'
See how topics relate to each other:
ctx walk Topic:<id> RELATED_TO
ctx get Topic:<id>
Find everything connected to a node (any edge, one hop):
ctx walk Session:<id> '*'
ctx find Session tool=claude,model=opus
ctx find Session 'title~auth'
ctx find Session 'title^Fix'
ctx find Highlight kind=blocker
ctx find Highlight 'content~performance'
ctx find Artifact kind=pr
ctx count Session --by tool
ctx count Session --by model
ctx count Highlight --by kind
ctx kinds
ctx stats
Run ctx schema <Kind> to see properties and hints for any node type. Available kinds: Session, Topic, Highlight, Artifact, Project, Branch, Model.
$ARGUMENTS