开发编程
#agent
subagent-development
Execute plans using fresh subagent per task with code review between tasks. Use for high-quality iterative implementation.
DeepseekModel
官方收录技能
质量 优秀 · 78
v1.0.0
获取
https://deepseekmodel.com/api/download.php?id=aiskillstore-marketplace-skills-dmjgilbert-subagent-development-skill-md&format=skill
下载 .skill
标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name subagent-development description Execute plans using fresh subagent per task with code review between tasks. Use for high-quality iterative implementation. Subagent-Driven Development Fresh subagent per task + review between tasks = high quality, fast iteration. When to Use Executing implementation plans in current session Tasks are largely independent Want continuous progress with quality gates Need isolation between task contexts When NOT to Use Plan needs initial review/revision Tasks have tight sequential dependencies Simple changes that don't need isolation The Process 1. Load Plan & Create Tasks 1. Read the plan document 2. Create TodoWrite with all tasks 3. Verify plan is sound before starting 2. For Each Task Dispatch Implementation Subagent: Task([appropriate-agent], prompt=" Implement Task N from the plan: **Task:** [Task description] **Requirements:** - Follow TDD (write failing test first) - Implement minimal code to pass - Verify all tests pass - Commit with descriptive message **Output:** - What was implemented - Test results - Any issues encountered ") 3. Code Review Checkpoint After EACH task, dispatch reviewer: Task(code-reviewer, prompt=" Review implementation of Task N: **What was implemented:** [From subagent output] **Commits:** [Range] **Requirements:** [From plan] Evaluate: - Implementation vs requirements match - Code quality and patterns - Test coverage - Critical/Important/Minor issues ") 4. Address Feedback Severity Action Critical Fix immediately, re-review High Fix before next task Medium Fix if quick, else document Low Document for later 5. Mark & Continue Update TodoWrite to mark task complete Proceed to next task Repeat cycle 6. Final Review After all tasks complete: Task(code-reviewer, prompt=" Final review of complete implementation: **Plan:** [Reference] **All commits:** [Full range] Verify: - Complete plan compliance - Architectural soundness - No regressions - Ready for merge ") 7. Finish Transition to merge/PR workflow. Critical Rules Never: Skip code reviews between tasks Proceed with unresolved Critical issues Run multiple implementation subagents in parallel Implement without plan task reference Always: Fresh subagent for each task (clean context) Review after each task (quality gate) Fix Critical/High before continuing Document deferred issues Quality Gate Template ## Task N Review **Status:** [Pass/Fail] ### Critical Issues [None / List] ### High Priority [None / List] ### Medium Priority [None / List] ### Minor/Suggestions [None / List] ### Verdict - [ ] Proceed to next task - [ ] Fix issues first - [ ] Needs discussion Benefits Clean context for each task (no accumulated confusion) Built-in quality gates catch issues early Reviewable progress at each step Easy to pause/resume at task boundaries
Agent 识别该技能的关键词,点击任意一个即可复制。
该技能未提供触发词。
下载的 .skill 包内含以下字段。
| 字段 | 说明 |
|---|---|
| format | 格式标识(skill/v1) |
| skill_id | 技能唯一 ID |
| name | 技能名称 |
| version | 版本号 |
| description | 技能描述 |
| category | 所属分类(数组) |
| trigger_words | 触发词列表 |
| tags | 标签列表 |
| source | 来源标识 |
| source_url | 来源链接(本页地址) |
| exported_at | 导出时间(每次下载生成) |
| system_prompt | 系统提示词正文 |
| model_config | 模型参数:provider / model / temperature / max_tokens / top_p |
| examples | 示例 |
| install_guide | 各平台导入说明(Coze / Dify / Claude / 自定义框架) |