by parcadei
Context management for Claude Code. Hooks maintain state via ledgers and handoffs. MCP execution without context pollution. Agent orchestration with isolated context windows.
# Add to your Claude Code skills
git clone https://github.com/parcadei/Continuous-ClaudeGuides for using ai agents skills like Continuous-Claude.
Last scanned: 5/13/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-13T06:48:21.962Z",
"semgrepRan": false,
"npmAuditRan": true,
"pipAuditRan": true
}Continuous-Claude is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by parcadei. Context management for Claude Code. Hooks maintain state via ledgers and handoffs. MCP execution without context pollution. Agent orchestration with isolated context windows. It has 565 GitHub stars.
Yes. Continuous-Claude passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/parcadei/Continuous-Claude" and add it to your Claude Code skills directory (see the Installation section above).
Continuous-Claude is primarily written in Python. It is open-source under parcadei on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh Continuous-Claude against similar tools.
No comments yet. Be the first to share your thoughts!
Session continuity, token-efficient MCP execution, and agentic workflows for Claude Code.
┌─────────────────────────────────────────────────────────────────────────────┐
│ CLAUDE CODE SESSION │
├─────────────────────────────────────────────────────────────────────────────┤
│ │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌────────────┐ │
│ │ SessionStart│───▶│ Working │───▶│ PreCompact │───▶│ SessionEnd │ │
│ └──────┬──────┘ └──────┬──────┘ └──────┬──────┘ └─────┬──────┘ │
│ │ │ │ │ │
│ ▼ ▼ ▼ ▼ │
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ ┌───────────┐ │
│ │Load Ledger │ │PreToolUse │ │Auto-Handoff │ │Mark │ │
│ │Load Handoff │ │ TS Preflight │ │Block Manual │ │Outcome │ │
│ │Surface │ │PostToolUse │ │ │ │Cleanup │ │
│ │Learnings │ │UserPrompt │ │ │ │Learn │ │
│ └──────────────┘ └──────────────┘ └──────────────┘ └───────────┘ │
│ │
└─────────────────────────────────────────────────────────────────────────────┘
│ │ │ │
▼ ▼ ▼ ▼
┌─────────────────────────────────────────────────────────────────────────────┐
│ DATA LAYER │
├─────────────────────────────────────────────────────────────────────────────┤
│ │
│ thoughts/ .claude/cache/ │
│ ├── ledgers/ ├── artifact-index/ │
│ │ └── CONTINUITY_*.md └── context.db (SQLite+FTS5) │
│ └── shared/ ├── learnings/ │
│ ├── handoffs/ └── <date>_<session>.md │
│ │ └── <session>/ └── braintrust_sessions/ │
│ │ └── *.md └── <session>.json │
│ └── plans/ │
│ └── *.md .git/claude/ │
│ └── commits/ │
│ └── <hash>/reasoning.md │
│ │
└─────────────────────────────────────────────────────────────────────────────┘
│ │
▼ ▼
┌───────────────────────────────────┐ ┌───────────────────────────────────┐
│ SKILLS │ │ AGENTS │
├───────────────────────────────────┤ ├───────────────────────────────────┤
│ │ │ │
│ ┌──────────────────┐ │ │ ┌──────────────────┐ │
│ │ continuity_ledger│ Save state │ │ │ plan-agent │ Create plan │
│ ├──────────────────┤ │ │ ├──────────────────┤ │
│ │ create_handoff │ End session │ │ │ validate-agent │ Check tech │
│ ├──────────────────┤ │ │ ├──────────────────┤ │
│ │ resume_handoff │ Resume work │ │ │ implement_plan │ Execute │
│ ├──────────────────┤ │ │ ├──────────────────┤ │
│ │ commit │ Git commit │ │ │ research-agent │ Research │
│ ├──────────────────┤ │ │ ├──────────────────┤ │
│ │ tdd-workflow │ Red/Green │ │ │ debug-agent │ Debug │
│ ├──────────────────┤ │ │ ├──────────────────┤ │
│ │ hook-developer │ Hook ref │ │ │ rp-explorer │ Codebase │
│ ├──────────────────┤ │ │ └──────────────────┘ │
│ │ compound-learn │ Make rules │ │ │
│ └──────────────────┘ │ │ │
└───────────────────────────────────┘ └───────────────────────────────────┘
│ │
└────────────────────┬───────────────────┘
▼
┌─────────────────────────────────────────────────────────────────────────────┐
│ SCRIPTS (MCP Execution) │
├─────────────────────────────────────────────────────────────────────────────┤
│ │
│ Artifact Index Braintrust MCP Tools │
│ ┌──────────────────┐ ┌──────────────────┐ ┌──────────────────┐ │
│ │ artifact_index │ │ braintrust_ │ │ perplexity_ │ │
│ │ artifact_query │ │ analyze │ │ search │ │
│ │ artifact_mark │ │ (--learn, │ │ nia_docs │ │
│ └──────────────────┘ │ --sessions) │ │ firecrawl_scrape │ │
│ └──────────────────┘ │ github_search │ │
│ │ morph_search │ │
│ │ ast_grep_find │ │
│ │ qlty_check │ │
│ └──────────────────┘ │
│ │
│ Executed via: uv run python -m runtime.harness scripts/<script>.py │
│ │
└─────────────────────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────────────────────┐
│ EXTERNAL SERVICES (Optional) │
├─────────────────────────────────────────────────────────────────────────────┤
│ │
│ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ │
│ │Braintrust│ │Perplexity│ │ Firecrawl│ │ Morph │ │ Nia │ │
│ │ Tracing │ │ Search │ │ Scrape │ │ WarpGrep │ │ Docs │ │
│ └──────────┘ └──────────┘ └──────────┘ └──────────┘ └──────────┘ │
│ │
│ Local-only: git, ast-grep, qlty │
│ License required: repoprompt (Pro for MCP tools) │
│ │
└─────────────────────────────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────────────────────┐
│ THE CONTINUITY LOOP │
└─────────────────────────────────────────────────────────────────────────────┘
1. SESSION START 2. WORKING
┌────────────────────┐ ┌────────────────────┐
│ │ │ │
│ Ledger loaded ────┼──▶ Context │ PostToolUse ──────┼──▶ Index handoffs
│ Handoff loaded │ │ UserPrompt ───────┼──▶ Skill hints
│ Learnings shown │ │ SubagentStop ─────┼──▶ Agent reports
│ │ │ │
└────────────────────┘ └────────────────────┘
│ │
│ ▼
│ ┌────────────────────┐
│ │ 3. PRE-COMPACT │
│ │ │
│ │ Auto-handoff ─────┼──▶ thoughts/
│ │ Block manual │
│ │ │
│ └────────────────────┘
│ │
│ ▼
│ ┌────────────────────┐
│ │ 4. SESSION END │
│ │ │