一键导入
adk-docs
guidelines for creating, reviewing, updating, and searching ADK documentation - use when users ask about writing, maintaining, or auditing ADK bot docs
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
guidelines for creating, reviewing, updating, and searching ADK documentation - use when users ask about writing, maintaining, or auditing ADK bot docs
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Explains the ADK Dev Console — what each tab shows, how to read Agent Steps, traces, multi-agent dashboard, agent switching, console modes, and other UI features visible at localhost:3001 during adk dev
a set of guidelines to build with Botpress's Agent Development Kit (ADK) - use these whenever you're tasked with building a feature using the ADK
Systematic debugging for ADK agents — trace reading, log analysis, common failure diagnosis, and the debug loop.
Complete reference for writing, running, and iterating on evals (automated conversation tests) for ADK agents. Covers eval file format, all assertion types, CLI usage, and per-primitive testing patterns.
Guidelines for building frontend applications that integrate with Botpress ADK bots - covering authentication, type generation, client setup, and calling bot actions
| name | adk-docs |
| description | guidelines for creating, reviewing, updating, and searching ADK documentation - use when users ask about writing, maintaining, or auditing ADK bot docs |
| license | MIT |
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 skill integrations.md reference — Integration lifecycle documentation