Coding agent docs
Use when answering questions about configuring, extending, debugging, or operating Claude Code or Codex coding agents, including permissions, sandboxing, skills, subagents, hooks, MCP, rules, AGENTS.md, refresh behavior, CLI behavior, IDE or app behavior, and agent documentation freshness.From its SKILL.md
npx -y skills add brege/agent-db --skill coding-agent-docsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 2 commands, including `agent-db --reference-root` and 1 more.
SKILL.md
2.0 KB, 392 tokens by cl100k_base, as published. Nobody here has run it
Coding Agent Docs
Use the local reference snapshots before relying on memory for Claude Code or Codex coding-agent behavior.
Locate Docs
Run:
agent-db --reference-root
Treat the output as REFERENCE_ROOT.
Start with:
REFERENCE_ROOT/README.mdfor the curated human indexREFERENCE_ROOT/claude/README.mdfor the generated Claude docs indexREFERENCE_ROOT/codex/README.mdfor the generated Codex docs index
Do not bulk-read the generated docs tree. Search first with rg, then open only the matching files.
Lookup Workflow
- Identify whether the question is about Claude Code, Codex, or both.
- Search the relevant generated index with focused terms.
- Open the most relevant local markdown file.
- Cite or summarize from local docs when answering behavior, configuration, or command questions.
- If local docs appear stale and freshness matters, use the source link at the bottom of the generated index or curl the direct upstream markdown URL.
URL To Local Path
Claude:
https://code.claude.com/docs/en/<slug>.md
REFERENCE_ROOT/claude/<slug>.md
Codex:
https://developers.openai.com/codex/<slug>.md
REFERENCE_ROOT/codex/<slug>.md
The Codex API docs are not the default source for coding-agent behavior. Use them only when the user asks about building integrations with OpenAI services.
Freshness
Use:
agent-db --refresh
Refresh when the user asks for current docs, when local docs fail to answer a product behavior question, or when upstream links in the generated indexes show relevant pages that are missing locally.
For a single page, prefer curling the upstream .md URL instead of refreshing the full database.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.