用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Trevoke/i-love-you-3000 --skill subagent-dev命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when starting new feature work to turn ideas into fully formed designs through collaborative dialogue
Use after implementation to review code against spec and quality standards
Use when an implementation plan exists and needs to be broken into parallelizable work units with dependencies
基于 SOC 职业分类
正在显示 SKILL.md
| name | subagent-dev |
| description | Use when executing a single bead/task with test-driven development approach |
Execute a single bead using test-driven development. Fresh context, focused work, clean commits.
Understand what needs to be built:
Before writing any code, clarify ambiguities:
Don't proceed with assumptions - get clarity upfront.
# Create test file if needed
# Write test that captures the requirement
# Run to verify it fails
Test must fail for the right reason - "function not defined" or "assertion failed", not syntax error.
Write the simplest code that makes the test pass:
# Run the specific test
# Verify it passes
# Run related tests to check for regressions
Before committing, check:
git add -A
git commit -m "feat: <what was implemented>
- <key detail 1>
- <key detail 2>"
Never:
If stuck: