用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/anthroos/claude-code-orchestrator --skill project-notes命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | project-notes |
| description | Persistent project knowledge base — decisions, context, conventions |
Maintain a persistent knowledge base about the project. Claude reads this at the start of relevant tasks to have context without you re-explaining.
| What | Path |
|---|---|
| Notes directory | $PROJECT_ROOT/notes/ |
| Architecture notes | $PROJECT_ROOT/notes/architecture.md |
| Conventions | $PROJECT_ROOT/notes/conventions.md |
| Decisions log | $PROJECT_ROOT/notes/decisions.md |
# List all notes
ls $PROJECT_ROOT/notes/
# Read specific topic
cat $PROJECT_ROOT/notes/architecture.md
Append to the appropriate file, or create a new topic file:
## [Topic] (YYYY-MM-DD)
**Decision:** [What was decided]
**Context:** [Why this decision was made]
**Alternatives considered:** [What else was considered]
| File | What goes here |
|---|---|
architecture.md | System design, service boundaries, data flow |
conventions.md | Naming, file structure, coding standards |
decisions.md | ADRs — why we chose X over Y |
integrations.md | External services, API keys location, endpoints |
troubleshooting.md | Known issues and their fixes |
## Use Redis for caching (2024-03-15)
**Decision:** Use Redis instead of in-memory caching
**Context:** App runs on multiple instances, need shared cache
**Alternatives:** Memcached (less features), in-memory (no sharing)
## API Response Format
All API endpoints return:
\```json
{
"data": {...},
"error": null,
"meta": {"timestamp": "...", "request_id": "..."}
}
\```
src/auth/middleware.ts:45 is better than "the auth middleware"daily-summary — uses project notes for context基于 SOC 职业分类