From ravenclaw
Loads Ravenclaw work context including prior agent progress, project/epic/issue trees, comments, and sessions. Use to start new sessions or switch tasks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ravenclaw:ravenclaw-contextThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill helps you quickly load and apply work context from the Ravenclaw system.
This skill helps you quickly load and apply work context from the Ravenclaw system.
When installed as a plugin, the MCP server and API credentials are configured automatically via userConfig. For standalone use, ensure the rc CLI is configured (rc init).
create_project.create_epic(project_id: "RC-P1", ...).create_issue(epic_id: "RC-E1", ...).add_dependency between epics (phase order) or between issues (task order).IMPORTANT: Before anything else, check if a previous agent left context:
get_latest_context(project_id: "RC-P1")
This shows what the previous agent accomplished, decisions made, blockers, and next steps.
Get the full work context for the project:
get_project(key: "RC-P1") — project tree with epics and issues
get_work_context — full workspace context
Or via CLI:
rc project show RC-P1
rc context
Record your session start:
start_work_session(project_id: "RC-P1", session_id: "<your-session-id>", agent_name: "claude-code")
If working on a specific issue, check for user comments/feedback:
list_comments(entity_type: "issue", entity_id: "RC-I26")
start_issue(id: "RC-I26") — mark as in_progress
# ... do work ...
complete_issue(id: "RC-I26") — mark as done
Save your progress regularly so the next agent can continue:
save_context(
project_id: "RC-P1",
content: "## Progress\n- Completed RC-I26 (card data structure)\n- RC-I27 in progress — deck shuffling works but draw logic needs edge case handling\n\n## Decisions\n- Using Fisher-Yates for shuffle\n\n## Next Steps\n- Finish RC-I27 draw edge cases\n- Start RC-I28 (hand UI)",
snapshot_type: "progress"
)
Before ending, save a final handoff context and end the session:
save_context(project_id: "RC-P1", content: "...", snapshot_type: "handoff")
end_work_session(session_id: "<your-session-id>", summary: "Completed 3 issues", issues_worked: ["RC-I26", "RC-I27", "RC-I28"])
get_latest_context first — it's how you inherit previous worklist_work_sessions(project_id: "RC-P1") to see who worked on the project beforerc search "keyword" to find relevant epics, issues, or wiki pagesnpx claudepluginhub chainofdive/ravenclaw --plugin ravenclawCreates, lists, and updates persistent work items to track tasks, priorities, and statuses across sessions, mitigating context rot in long-running Claude conversations.
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.