Agent SkillsChorus-AIDLC/Chorus › docs-chorus

docs-chorus

GitHub

作为 Chorus 文档路由器,通过实时查询官方文档回答产品使用、配置、部署及运维问题。遵循获取索引、读取页面Markdown并链接原文的规范,确保答案基于最新文档而非模型记忆,不涉及工作流执行。

packages/chorus-dsh/skills/docs-chorus/SKILL.md Chorus-AIDLC/Chorus

Trigger Scenarios

用户询问 Chorus 产品功能或 UI 工作流程 用户咨询 Agent 或插件的配置与安装方法 用户需要 API/MCP 的使用说明或认证信息 用户寻求部署方案或运维故障排查指导

Install

npx skills add Chorus-AIDLC/Chorus --skill docs-chorus -g -y
More Options

Non-standard path

npx skills add https://github.com/Chorus-AIDLC/Chorus/tree/main/packages/chorus-dsh/skills/docs-chorus -g -y

Use without installing

npx skills use Chorus-AIDLC/Chorus@docs-chorus

指定 Agent (Claude Code)

npx skills add Chorus-AIDLC/Chorus --skill docs-chorus -a claude-code -g -y

安装 repo 全部 skill

npx skills add Chorus-AIDLC/Chorus --all -g -y

预览 repo 内 skill

npx skills add Chorus-AIDLC/Chorus --list

SKILL.md

Frontmatter
{
    "name": "docs-chorus",
    "license": "AGPL-3.0",
    "metadata": {
        "author": "chorus",
        "version": "0.16.4",
        "category": "project-management",
        "mcp_server": "chorus"
    },
    "description": "Chorus documentation router — consult the live Chorus docs site to answer product-usage questions (UI workflow, agent\/plugin setup, API\/MCP, deployment, operations)."
}

Docs Skill

This skill is a thin router to the live Chorus documentation site (https://doc.chorus-ai.dev). Use it to answer questions about how to use, configure, deploy, or operate Chorus — grounding the answer in the current published docs instead of memory.

It is not a workflow skill: it does not drive the AI-DLC pipeline. For that, use idea-chorus, proposal-chorus, develop-chorus, review-chorus, or yolo-chorus.


When to Use

Use this skill whenever the user asks a product-usage question about Chorus, such as:

  • UI workflow — how the Idea → Proposal → Task → Verify pipeline works in the web app, what a control does, how statuses flow.
  • Agent setup — creating an API key, permissions and role presets, connecting an agent.
  • Plugin setup — installing/configuring the Claude Code / Codex / dsh / Kiro / Pi plugin.
  • API / MCP — the REST API, the MCP tool surface, authentication, real-time events.
  • Deployment — self-hosting, the CDK stack, environment configuration.
  • Operations / troubleshooting — running Chorus, diagnosing connection or setup problems.

Do NOT use it to drive the pipeline (claiming ideas, writing proposals, executing tasks) — that is what the stage skills above are for. This skill answers "how does the product work / how do I set it up"; the stage skills do the work.


Access Convention

The docs site is agent-friendly. Follow this three-step convention every time. Do NOT answer from memory, and do NOT hardcode a page list — the index is the source of truth and pages change over time.

  1. Fetch the index. Get https://doc.chorus-ai.dev/llms.txt — a machine-readable index that lists every documentation page with a one-line summary and its .md URL. The index is a single, unlocalized file that lives ONLY at the root /llms.txt. Never prefix it with a locale — https://doc.chorus-ai.dev/zh/llms.txt (and /ja/, /ko/) does NOT exist and returns 404.
  2. Fetch the relevant page(s) as raw Markdown. Pick the page(s) that match the question from the index, then fetch the raw Markdown by appending .md to the page URL (e.g. https://doc.chorus-ai.dev/guides/getting-startedhttps://doc.chorus-ai.dev/guides/getting-started.md).
  3. Ground the answer and link the human page. Base your answer on the fetched Markdown, and link the human-facing page (the .md URL without the .md suffix) so the user can open it in a browser.

Use whatever web-fetch capability your environment provides (your built-in fetch tool, curl, etc.) — this skill states the convention, not a specific tool binding.


Locale

The /llms.txt index itself is not localized — there is exactly one, at the root. Localization applies to pages, not the index:

  • The index always lives at https://doc.chorus-ai.dev/llms.txt and lists the root (en) page URLs. Do not look for /zh/llms.txt — it does not exist.
  • en is the root (unprefixed): https://doc.chorus-ai.dev/...
  • zh, ja, ko are path-prefixed pages: take a page path from the index and prepend the locale — https://doc.chorus-ai.dev/zh/..., /ja/..., /ko/...
  • Appending .md works on the prefixed pages too (e.g. https://doc.chorus-ai.dev/zh/guides/getting-started.md).
  • Match the user's language when the docs exist in it; fall back to en otherwise.

Relationship to the Workflow Skills

This skill complements the AI-DLC workflow skills — it does not replace them:

The user wants to… Use
Learn how to use / configure / deploy / operate Chorus this skill (docs-chorus)
Drive an idea / write a proposal / execute or verify a task idea-chorus, proposal-chorus, develop-chorus, review-chorus, yolo-chorus

Always use the live host doc.chorus-ai.dev. docs.chorus-ai.dev (with an "s") is a dead link — never use it.

Version History

  • 96a2f67 Current 2026-08-20 02:30

Same Skill Collection

.claude/skills/blog/SKILL.md
.claude/skills/e2e-verification/SKILL.md
.claude/skills/openspec-apply-change/SKILL.md
.claude/skills/openspec-archive-change/SKILL.md
.claude/skills/openspec-explore/SKILL.md
.claude/skills/openspec-propose/SKILL.md
.claude/skills/plugin-maintenance/SKILL.md
.claude/skills/pr-workflow/SKILL.md
.claude/skills/release/SKILL.md
packages/chorus-dsh/skills/brainstorm-chorus/SKILL.md
packages/chorus-dsh/skills/chorus/SKILL.md
packages/chorus-dsh/skills/code-reviewer-chorus/SKILL.md
packages/chorus-dsh/skills/develop-chorus/SKILL.md
packages/chorus-dsh/skills/idea-chorus/SKILL.md
packages/chorus-dsh/skills/openspec-aware-chorus/SKILL.md
packages/chorus-dsh/skills/orchestrate-chorus/SKILL.md
packages/chorus-dsh/skills/proposal-chorus/SKILL.md
packages/chorus-dsh/skills/proposal-reviewer-chorus/SKILL.md
packages/chorus-dsh/skills/quick-dev-chorus/SKILL.md
packages/chorus-dsh/skills/review-chorus/SKILL.md
packages/chorus-dsh/skills/task-reviewer-chorus/SKILL.md
packages/chorus-dsh/skills/yolo-chorus/SKILL.md
packages/chorus-pi/skills/chorus/SKILL.md
packages/chorus-pi/skills/develop/SKILL.md
packages/chorus-pi/skills/docs/SKILL.md
packages/chorus-pi/skills/idea/SKILL.md
packages/chorus-pi/skills/openspec-aware/SKILL.md
packages/chorus-pi/skills/orchestrate/SKILL.md
packages/chorus-pi/skills/proposal/SKILL.md
packages/chorus-pi/skills/quick-dev/SKILL.md
packages/chorus-pi/skills/review/SKILL.md
packages/chorus-pi/skills/yolo/SKILL.md
packages/openclaw-plugin/skills/brainstorm/SKILL.md
packages/openclaw-plugin/skills/chorus/SKILL.md
packages/openclaw-plugin/skills/code-reviewer/SKILL.md
packages/openclaw-plugin/skills/develop/SKILL.md
packages/openclaw-plugin/skills/docs/SKILL.md
packages/openclaw-plugin/skills/idea/SKILL.md
packages/openclaw-plugin/skills/openspec-aware/SKILL.md
packages/openclaw-plugin/skills/orchestrate/SKILL.md
packages/openclaw-plugin/skills/proposal-reviewer/SKILL.md
packages/openclaw-plugin/skills/proposal/SKILL.md
packages/openclaw-plugin/skills/quick-dev/SKILL.md
packages/openclaw-plugin/skills/review/SKILL.md
packages/openclaw-plugin/skills/task-reviewer/SKILL.md
packages/openclaw-plugin/skills/yolo/SKILL.md
plugins/chorus/skills/brainstorm/SKILL.md
plugins/chorus/skills/chorus-proposal-reviewer/SKILL.md
plugins/chorus/skills/chorus-task-reviewer/SKILL.md

Metadata

Files
0
Version
96a2f67
Hash
9db0085a
Indexed
2026-08-20 02:30

trang chủ - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-09-03 02:20
浙ICP备14020137号-1 $bản đồ khách truy cập$