codedbpro
Installation
SKILL.md
codedbpro — daemon-backed read/search/edit for agents
codedbpro is a persistent daemon exposed over MCP: a dozen code tools with no fork/exec per call (~1–13 ms/op measured), a symbol index, and shell-free writes. Three habits produce almost all of the win: batch everything, outline before you read, edit by symbol, not by line number.
Division of labor — decide before you reach for a tool
| Job | Tool |
|---|---|
| Read / search / edit files | codedbpro (this skill) |
| Compute, simulate, verify a numeric claim | node / python3 — never as a grep/sed substitute |
| Run tests, commit | the project's own flow (test runner, hc, …) |
If the repo blocks native Read/Write/Edit/grep via hooks, codedbpro is the primary
toolchain, not a fallback. CLI fallbacks (zigread/zigrep/zigpatch/zigcreate) exist for
bash loops or a dead daemon; prefer the MCP tools otherwise.