From adk
Guides creating, reviewing, updating, and searching ADK bot documentation with templates and quality standards.
How this skill is triggered — by the user, by Claude, or both
Slash command
/adk:adk-docsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when helping users create, review, update, or maintain documentation for their ADK projects. Users write guides and docs for their own bots and features — code examples should come from their project and the official ADK repo.
Use this skill when helping users create, review, update, or maintain documentation for their ADK projects. Users write guides and docs for their own bots and features — code examples should come from their project and the official ADK repo.
Activate this skill when users:
/adk-document| File | Description |
|---|---|
| references/doc-standards.md | Document types, templates, quality checklists, and health metrics |
| Command (and suggested subcommand) | Description |
|---|---|
/adk-document create [topic] | Create documentation for a feature in the user's bot |
/adk-document review [doc-path] | Review project docs for accuracy and completeness |
/adk-document update [doc-path] [what-changed] | Update project docs after code changes |
/adk-document sync [optional-doc-path] | Check if project docs are in sync with the bot's code |
/adk-document search [search-term] | Search project documentation for specific topics |
##, ###, ####) so ripgrep can find sectionsagent.config.ts in the workspace) — BEST@botpress/runtime packages)@botpress/runtime) vs Botpress SDK primitivesthis.send() in conversations vs client.createMessage() in workflows❌ WRONG / ✅ CORRECT only when documenting actual reported errorsthis.send()" not "You might want to consider..."When a user asks about documentation without invoking a specific command:
adk skill (& more, if needed) for ADK context and knowledgeDocumentation is written in the user's own project. Ask the user where they want docs saved if not obvious (common locations: ./docs/, ./guides/, or project root).
Discover the user's project and the official ADK repo for examples:
// Find ADK projects in the workspace
Glob({ pattern: "**/agent.config.ts" })
// Find ADK runtime usage in the user's project
Grep({ pattern: "from ['\"]@botpress/runtime", output_mode: "files_with_matches" })
// Look for existing project documentation
Glob({ pattern: "./{docs,guides}/**/*.md" })
// Find official ADK examples if available locally
Glob({ pattern: "**/adk/examples/**/*.ts" })
adk skill — Core ADK knowledge (actions, workflows, conversations, etc.)adk-evals skill — Testing and eval documentationadk-frontend skill — Frontend integration documentationadk-integrations skill — Integration lifecycle documentationnpx claudepluginhub botpress/skills --plugin adkGenerates or updates documentation for code, APIs, or systems including READMEs, API references, inline comments, technical guides, and ADRs.
Guides project documentation structure, content requirements, and best practices. Includes templates for README, ARCHITECTURE, API docs, and change history.