-
Notifications
You must be signed in to change notification settings - Fork 1
Home
claudepilot is a Claude Code plugin. You install it into Claude Code in VS Code and it keeps Claude working for hours without exhausting context or wasting tokens, gives it a persistent memory that survives compaction, ships a guardrailed skill library for production sites on Cloudflare, Supabase, Vercel and Resend, and stands up a live local dashboard so you can watch the agents work.
It is not a CLI you run as a product. There is a small helper binary the plugin calls from its hooks and slash commands, but you never invoke it directly.
%%{init: {'theme':'base','themeVariables':{'primaryColor':'#0d1117','primaryTextColor':'#f5f7fa','primaryBorderColor':'#38bdf8','lineColor':'#22d3ee','fontFamily':'monospace'}}}%%
flowchart LR
CC[Claude Code in VS Code] --> Hooks[Hooks]
CC --> Cmds[Slash commands]
Hooks --> Helper[claudepilot helper]
Cmds --> Helper
Helper --> Map[Project map]
Helper --> Mem[Persistent memory]
Helper --> Budget[Token budget]
Hooks --> Log[(Event log)]
Log --> Server[Local SSE server]
Server --> UI[Live dashboard]
Map --> Tokens[Fewer tokens per read]
Mem --> Survive[Survives compaction]
When a session starts, the dashboard boots on 127.0.0.1, the memory index loads, and Claude is nudged to read the compact map before whole files. As it works, hooks append events to a log the dashboard tails live; durable facts go to memory; every shipping skill ends in a verification gate.
- Token efficiency. A compact project map, scoped retrieval by symbol or line range, hooks that nudge scoped reads, and a conservative budget estimate.
-
Persistent memory. One fact per file with frontmatter, a regenerated
MEMORY.mdindex, loaded at session start so knowledge survives across sessions. - Guardrailed skill library. 59 agent skills; each shipping skill carries a verification gate.
- Mind map and status in the chat. A themed Mermaid map and a status panel with the plan, budget and memory count.
- Live agent dashboard. An auto-launching, local-only observability server: agents, activity, token budget, plan and mind map, streamed live with replay.
| Page | What it covers |
|---|---|
| Install in VS Code | Marketplace add, install, first run |
| Architecture | Repo shape, modules, design decisions and rejected trade-offs |
| Live agent dashboard | The headline feature: hooks, event log, server, UI, replay |
| Token efficiency | Map, scoped reads, the budget estimate |
| Memory system | The file-based store and recall |
| Skill engine | The skill contract and loader |
| Skill catalogue | The 59 skills by category |
| Writing a skill | Author a new skill that passes validation |
| Hooks | Every wired hook and what it emits |
| Mind map and status | The in-chat diagram and status panel |
| Integrations | Cloudflare, Supabase, Vercel, Resend |
| Troubleshooting | Concrete symptoms and fixes |
| Roadmap and limitations | What I will and will not add |
SarmaLinux . sarmalinux.com . Repository
Start here
Install paths
v0.6.0 features
- Map watcher
- Token forecast
- Replay export
- Configurable redaction
- Drift detection
- Per-skill opt %
- CI mode
- Lessons
Headline features
- MCP tools
- Observation memory & search
- Cross-IDE support
- Lossless compaction
- Memory recall
- Live agent dashboard
- Statusline
- Output style
- Subagents
Token efficiency
Skills
Internals
- Architecture
- Memory system
- Hooks
- Mind map and status
- Configuration and tuning
- Data formats
- Performance and benchmarks
- Design decisions
- Security model
- Testing strategy
Reference
SarmaLinux . sarmalinux.com