用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/kinqsradiollc/BrainRouter --skill doc-management-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Design skill for user-facing interfaces built on a user's own project — new pages and apps by default, plus audit, redesign, and study of a reference. Enforces structural variety so two different briefs do not come back as colour-swaps of one template. It does not govern work on BrainRouter itself.
Breaks work into ordered tasks. Use when you have a spec or clear requirements and need to break work into implementable tasks. Use when a task feels too large to start, when you need to estimate scope, or when parallel work is possible.
Structures git workflow practices. Use when making any code change. Use when committing, branching, resolving conflicts, or when you need to organize work across multiple parallel streams.
基于 SOC 职业分类
正在显示 SKILL.md
| name | doc-management-skill |
| description | Guidelines for reading living project documentation using MCP tools. |
| hints | ["Query project-level documentation using list_template_docs and get_template_doc to discover existing specifications.","Utilize specific section parameters in get_template_doc to read target content efficiently.","Load reference guidelines (e.g. security-checklist, testing-patterns) using get_reference to respect engineering checklists.","Restrict actions to read-only when interacting with documentation via MCP to avoid modifying architectural blueprints.","Fall back to checking standard project directories (e.g., docs/, doc/) if MCP tools are not available."] |
This skill defines the workflow for interacting with project documentation. The Global BrainRouter docs/ folder contains universal templates. However, the actual living documentation for a user's project resides strictly in their local project's docs/ directory. The MCP tools (list_template_docs and get_template_doc) only load the local project documents. Documentation via MCP is entirely read-only to prevent unexpected modifications to the user's local architectural blueprints or the server's templates.
Use this skill whenever you need to understand existing architectural decisions, read API endpoint specifications, check database schemas, load persistent project context from the living documentation, or consult project reference checklists/patterns.
list_template_docs to see the current living documents available for the local project.get_template_doc to read existing documentation sections to gain important context before working on tasks.get_reference to load specific checklists and patterns (e.g., security-checklist, accessibility-checklist, orchestration-patterns) from the references/ directory.When you are asked to read documentation or reference constraints for the current project:
list_template_docs, get_template_doc, get_reference) to locate and load information.
get_template_doc expects the doc name (e.g. api, design, schema, hooks, strategy, deployment).section parameter with get_template_doc to target specific headings for larger documents.get_reference expects the name of the reference file without extension (e.g., security-checklist, testing-patterns).| Rationalization | Reality |
|---|---|
| "I'll just try to use a generic write tool to create docs/API.md" | Modifying or creating docs is intentionally restricted in the MCP context. Read only. |
list_template_docs?get_template_doc to gain context?