用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ForceInjection/domain-driven-design-skills --skill todo-tracking命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | todo-tracking |
| description | Branch-scoped task system for persistent task management across sessions. |
| triggers | ["todo","task","task file","branch task","tasks/"] |
All tasks live in .claude/branches/<slugified-branch>/tasks/ as individual files with ordering support.
One location. One format. Always on a branch. Branch names slugified (/ → -).
| Resource | Purpose |
|---|---|
references/branch-tasks.md | Complete task system documentation |
templates/task-file-template.md | Individual task file format |
templates/plan-template.md | Plan document format |
<quick_start>
.claude/branches/<branch>/tasks/
├── 001-pending-p1-setup-create-structure.md
├── 002-pending-p1-setup-install-deps.md
├── 010-pending-p1-us1-create-user-model.md
├── 011-complete-p1-us1-implement-auth.md
├── 050-pending-p1-found-fix-type-error.md # From /crew:check
└── 099-pending-p3-polish-update-docs.md
{order}-{status}-{priority}-{story}-{slug}.md
---
status: pending
priority: p1
story: us1
parallel: true
file_path: src/models/user.ts
depends_on: []
---
# T010: Create User model
## Description
[What and why]
## Acceptance Criteria
- [ ] **Given** X, **When** Y, **Then** Z
## File Path
`src/models/user.ts`
## Work Log
### [DATE] - Created
**By:** /crew:design
</quick_start>
<parallel_strategy>
One task = One agent. Launch many in parallel.
// Launch all parallel tasks in SINGLE message
Task({
subagent_type: "general-purpose",
prompt: "T001...",
description: "T001",
run_in_background: true,
});
Task({
subagent_type: "general-purpose",
prompt: "T002...",
description: "T002",
run_in_background: true,
});
Task({
subagent_type: "general-purpose",
prompt: "T003...",
description: "T003",
run_in_background: true,
});
// Collect results
TaskOutput({ task_id: "t001-id", block: true });
TaskOutput({ task_id: "t002-id", block: true });
TaskOutput({ task_id: "t003-id", block: true });
// Launch next batch...
Rules:
parallel: true</parallel_strategy>
<command_integration>
| Command | Action |
|---|---|
/crew:design | Creates plan + individual task files |
/crew:build | Reads tasks, launches parallel agents by batch |
/crew:check | Adds finding files as new tasks |
/crew:fix | Works through pending tasks |
</command_integration>
.claude/branches/<slugified-branch>/tasks/ (feat/foo → feat-foo)