소스 정보
- 저장소
- kinqsradiollc/BrainRouter
- 최근 소스 활동
- 2026년 5월 29일 05:50
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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?