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-Claude-v2Guides for using ai agents skills like Continuous-Claude-v2.
Last scanned: 4/27/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-04-27T06:28:03.409Z",
"semgrepRan": false,
"npmAuditRan": true,
"pipAuditRan": true
}Continuous-Claude-v2 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 1,575 GitHub stars.
Yes. Continuous-Claude-v2 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-v2" and add it to your Claude Code skills directory (see the Installation section above).
Continuous-Claude-v2 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-v2 against similar tools.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
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 │
│ │ │