Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

adk-docs广告文档

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

1,623

周安装

69

GitHub Stars

11

下载量

569
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:adk-docs(广告文档)
来源仓库:https://github.com/botpress/skills
仓库路径:skills/adk-docs
安装命令:
npx skills add https://github.com/botpress/skills --skill adk-docs
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/botpress/skills --skill adk-docs

简介

adk-docs 用于辅助文档、README、Markdown 和内容稿件的整理与改写。

  • 适合提炼结构、补齐章节、统一术语、检查链接或整理零散材料成可读文档。
  • 可激活于创建、审查、更新或维护 ADK 项目文档的需求场景。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写。
  • 涉及对外文案时需控制语气,避免过度营销或夸大能力。

SKILL.md

ADK Documentation Management

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.

When to Use This Skill

Activate this skill when users:

  • Want to create documentation for their bot ("Document my order workflow", "Write a guide for my custom actions")
  • Need to review existing project docs for accuracy ("Check if my docs are still correct")
  • Want to update docs after changing their bot ("I refactored the checkout flow, update the docs")
  • Need to check if docs are in sync with their code ("Are my docs current?")
  • Want to search their project documentation ("Find docs about my payment handler")
  • Ask about documentation standards or templates
  • Mention /adk-document

Available Documentation

FileDescription
references/doc-standards.mdDocument types, templates, quality checklists, and health metrics

Available Commands

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

Shared Principles

1. AI-Optimized Structure

  • Clear section headers (##, ###, ####) so ripgrep can find sections
  • Table of contents at top with anchor links
  • Right-sized for document type (see doc-standards reference)
  • Keyword-rich section names — no vague "Advanced Topics" or "Other"

2. Code-First Approach

  • Every concept needs a working code example from actual project code
  • Include file paths with line numbers for verification
  • Primary sources for examples (in priority order):

1. The user's own ADK project (look for agent.config.ts in the workspace) — BEST 2. The official ADK repo examples (clone or find locally) 3. ADK runtime usage (@botpress/runtime packages)

  • Never invent or speculate examples — all code must be verifiable

3. Critical Distinctions

  • ADK primitives (from @botpress/runtime) vs Botpress SDK primitives
  • this.send() in conversations vs client.createMessage() in workflows
  • Messages (persistent, stored) vs Events (ephemeral, not stored)
  • Agnostic APIs vs channel-specific features

4. No Speculation

  • Do NOT add Common Mistakes or Best Practices sections unless the user explicitly provides them
  • Use ❌ WRONG / ✅ CORRECT only when documenting actual reported errors
  • Workflows and examples must be verified from actual code, not imagined

5. Writing Style

  • Direct and actionable — "Use this.send()" not "You might want to consider..."
  • Technically accurate — test examples against actual ADK code
  • Assumes intelligence — provide context and guidance, not hand-holding
  • No marketing fluff — straight to the technical substance

How to Answer

When a user asks about documentation without invoking a specific command:

  1. Load the adk skill (& more, if needed) for ADK context and knowledge
  2. Identify what they need — creating, reviewing, updating, syncing, or searching
  3. Point them to the right command or help directly using the principles above
  4. Reference doc-standards for template and quality guidance

Documentation Location

Documentation 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).

Discovering Code Sources

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" })

Cross-References

  • adk skill — Core ADK knowledge (actions, workflows, conversations, etc.)
  • adk-evals skill — Testing and eval documentation
  • adk-frontend skill — Frontend integration documentation
  • adk-integrations skill — Integration lifecycle documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.59%
按下载量换算214

Claude

31.74%
按下载量换算181

Cursor

16.52%
按下载量换算94

Gemini CLI

9.62%
按下载量换算55

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills