system-overview▌
parcadei/continuous-claude-v3 · updated Apr 8, 2026
Show users how Continuous Claude works - the opinionated setup with hooks, memory, and coordination.
System Overview
Show users how Continuous Claude works - the opinionated setup with hooks, memory, and coordination.
When to Use
- User asks "how does this work?"
- User asks "what can you remember?"
- User asks "what's different about this setup?"
- User runs
/system_overview
Response
CONTINUOUS CLAUDE SYSTEM OVERVIEW
=================================
MEMORY LAYER (PostgreSQL + pgvector)
------------------------------------
- 78,000+ temporal facts from past sessions
- Learnings extracted automatically at session end
- Semantic search with embeddings
RECALL: uv run python opc/scripts/recall_temporal_facts.py --query "your topic"
HOOKS (9 event types registered)
--------------------------------
SessionStart → Load continuity ledger, rebuild symbol index
UserPromptSubmit → Skill activation check, context injection
PreToolUse → Smart search routing (Grep → TLDR for code)
PostToolUse → File claims, compiler feedback
PreCompact → Save state before context compaction
Stop → Extract learnings, create handoffs
SubagentStart → Register spawned agents
SubagentStop → Coordination, handoff creation
SessionEnd → Cleanup
CONTINUITY SYSTEM
-----------------
Ledger: thoughts/ledgers/CONTINUITY_CLAUDE-{session}.md
Handoffs: thoughts/shared/handoffs/{session}/*.yaml
Commands:
/resume_handoff <path> - Continue from handoff
/create_handoff - Create snapshot for transfer
TLDR CODE INTELLIGENCE
----------------------
5-layer analysis: AST → Call Graph → CFG → DFG → PDG
95% token savings vs reading raw files
Auto-intercepts Grep for .py/.ts/.go/.rs files
Pre-built index: /tmp/claude-symbol-index/symbols.json
SETUP
-----
Run: uv run python opc/scripts/setup/wizard.py
Options:
[1] SQLite only (simple, offline)
[2] PostgreSQL + pgvector (semantic search)
Key Files
| Component | Location |
|---|---|
| Hook registration | .claude/settings.json |
| Hook implementations | .claude/hooks/src/*.ts |
| Rules (auto-injected) | .claude/rules/*.md |
| Skills | .claude/skills/*/SKILL.md |
| Setup wizard | opc/scripts/setup/wizard.py |
| Recall script | opc/scripts/recall_temporal_facts.py |
| Store learning | opc/scripts/core/store_learning.py |
| Symbol index builder | opc/scripts/build_symbol_index.py |
Environment Variables
| Variable | Purpose |
|---|---|
CONTINUOUS_CLAUDE_DB_URL |
PostgreSQL connection |
VOYAGE_API_KEY |
Embeddings (optional) |
BRAINTRUST_API_KEY |
Tracing (optional) |
CLAUDE_PROJECT_DIR |
Auto-set by Claude Code |
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.7★★★★★37 reviews- ★★★★★Noor Jackson· Dec 12, 2024
system-overview has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Kaira Bansal· Dec 8, 2024
Useful defaults in system-overview — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★William Singh· Nov 27, 2024
I recommend system-overview for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Ishan Garcia· Nov 3, 2024
Solid pick for teams standardizing on skills: system-overview is focused, and the summary matches what you get after install.
- ★★★★★Meera Park· Oct 22, 2024
system-overview is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★William Reddy· Oct 18, 2024
Keeps context tight: system-overview is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Omar Menon· Sep 25, 2024
I recommend system-overview for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Sophia Harris· Sep 25, 2024
system-overview is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Xiao Garcia· Sep 21, 2024
We added system-overview from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Yash Thakker· Sep 17, 2024
Useful defaults in system-overview — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 37