用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Abilityai/abilities --skill read-docs命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | read-docs |
| description | Load all project documentation into context for this session. |
| allowed-tools | Read, Bash |
| user-invocable | true |
| automation | manual |
| metadata | {"version":"1.0","created":"2026-03-13T00:00:00.000Z","author":"Ability.ai","changelog":["1.0: Initial version — loads all project documentation into context for the current session."]} |
ℹ️ First, set expectations: before anything else, print one short line with this skill's version and its most recent change — the top entry of
metadata.changelogabove — e.g.read-docs vX.Y — recent: <summary>. Then proceed.
Load all project documentation into context for this session.
| Source | Location | Read | Write | Description |
|---|---|---|---|---|
| Requirements | docs/memory/requirements.md | ✅ | Feature requirements | |
| Architecture | docs/memory/architecture.md | ✅ | System design | |
| Feature Flows | docs/memory/feature-flows.md | ✅ | Flow index | |
| GitHub Issues | GitHub repo | ✅ | P0/P1 issues | |
| Changelog | docs/memory/changelog.md | ✅ | Recent changes |
Read these files in full (no summaries until all are loaded):
docs/memory/requirements.md - Feature requirements (SINGLE SOURCE OF TRUTH)docs/memory/architecture.md - Current system designdocs/memory/feature-flows.md - Feature flow indexQuery P0 and P1 issues from GitHub Issues:
# P0 issues (urgent, do immediately)
gh issue list --label "priority-p0" --state open --json number,title,labels
# P1 issues (critical path)
gh issue list --label "priority-p1" --state open --json number,title,labels
Read changelog using Bash (file may be large, only need recent entries):
head -150 docs/memory/changelog.md
Note: CLAUDE.md is loaded automatically at session start - no need to read it again.
Documentation loaded. Ready to work on {{PROJECT_NAME}}.
P0: [P0 issues or "None"]
P1: [P1 issues]
Recent: [most recent changelog entry]
Load context first, then act. Never modify code without understanding the current state.