system-overview
106
总安装量
106
周安装量
#4127
全站排名
安装命令
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill system-overview
Agent 安装分布
opencode
101
gemini-cli
99
codex
99
cursor
97
github-copilot
96
amp
93
Skill 文档
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 |