用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/aida-core/aida-core-plugin --skill project-documentation命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| type | skill |
| name | project-documentation |
| description | Helps locate and navigate project documentation efficiently |
| version | 0.1.0 |
| author | aida-core |
| tags | ["project","documentation","navigation","reference"] |
This skill provides an organized index of project documentation, making it easy to find relevant docs without searching through the entire codebase.
This skill should be invoked when you need to:
Comprehensive index of documentation locations:
The index provides quick navigation to all project documentation without needing to grep or search through directories.
User: "Where can I find the architecture documentation?"
Claude: *Invokes project-documentation skill, reads doc-index.md*
"The architecture documentation is located in docs/architecture.md"
User: "How do I learn about the API endpoints?"
Claude: *Invokes project-documentation skill, reads doc-index.md*
"API documentation is available at:
- OpenAPI spec: docs/api/openapi.yaml
- API guide: docs/api/README.md"
User: "What documentation should a new contributor read?"
Claude: *Invokes project-documentation skill, reads doc-index.md*
"New contributors should start with:
1. README.md - Project overview and setup
2. CONTRIBUTING.md - Contribution guidelines
3. docs/architecture.md - Architecture overview
4. docs/development.md - Development workflow"
Like all AIDA skills, this skill's SKILL.md is always available (small token footprint), but the doc-index.md is only loaded when Claude determines documentation navigation is needed.
Update doc-index.md when:
Keep the index current so team members can always find what they need.
This skill can be extended with:
scripts/find-docs.py - Programmatic documentation searchscripts/validate-docs.py - Check that documented files exist