一键导入
implement
Execute plan phases, writing code in spaces/ while tracking in ideas/. Use after creating a plan with /plan to implement work.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Execute plan phases, writing code in spaces/ while tracking in ideas/. Use after creating a plan with /plan to implement work.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
End-of-session reflection. Extracts memories, suggests updates to about-taylor.md and CLAUDE.md. Run before ending a long session or when context is getting full. Triggers on "debrief", "extract memories", "session summary".
Sync all git repos - my-life top repo and spaces/ projects
Morning routine check-in. Use at start of day to review yesterday, set up today's journal, and check learning reviews due. Triggers on "good morning", "morning", "start my day", "what's on for today".
Silently refresh AI context by reading project configuration and guidelines. Use when starting a new conversation, after context loss, or before major tasks.
Fetch and summarize latest articles from RSS feeds. Creates notes with article summaries as bullet points. Use to catch up on blogs without reading everything. Triggers on "rss catchup", "blog catchup", "check feeds", "summarize articles".
Fetch and summarize latest videos from priority YouTube channels. Creates notes with transcripts summarized as bullet points. Use to catch up on subscriptions without watching everything. Triggers on "youtube catchup", "video catchup", "check youtube", "summarize videos".
基于 SOC 职业分类
| name | implement |
| description | Execute plan phases, writing code in spaces/ while tracking in ideas/. Use after creating a plan with /plan to implement work. |
| model | claude-sonnet-4-20250514 |
| allowed-tools | Read, Write, Edit, Glob, Grep, Bash, Task |
Execute implementation phases from PLAN.md, writing code in spaces/ while tracking progress in ideas/.
/implement yourbench YB-2 1.1 # Execute phase 1.1 of issue YB-2
/implement yourbench YB-2 --next # Auto-find next uncompleted phase
/implement yourbench --next # Auto-detect issue + next phase
/implement coordinatr 003 --full # Execute all remaining phases
ideas/yourbench/issues/YB-2-auth/ spaces/yourbench/
├── TASK.md (requirements) ├── src/
├── PLAN.md (phases) ←→ │ └── auth/ ← CODE WRITTEN HERE
└── worklog/ └── tests/
├── _state.json (current state)
└── 001-phase-*.json (entries)
REQUIRED:
issues/###-name/PLAN.md must existspaces/{project}/ exists (code repository)If PLAN.md missing: Run /plan first to create implementation plan
ideas/[project]/issues/###-*/spaces/[project]/ existsRead worklog/_state.json for:
On first phase:
feature/###-slug or bugfix/###-slugin_progressimplements: field in TASK.mdspaces/[project]/_state.json| Phase Type | Primary Agent |
|---|---|
| Frontend UI | frontend-specialist |
| Backend API | backend-specialist |
| Database | database-specialist |
| Tests (RED) | test-engineer |
| Refactor | code-reviewer |
Trigger security-auditor after phase if touching:
After each phase, create JSON entry:
{sequence:03d}-phase-{slug}.jsontype, phase, author, summary, work, learnings, next_steps, blockersWhen all phases complete:
/implement yourbench YB-2 1.1 # Execute only phase 1.1
/implement yourbench YB-2 --next # Find first uncompleted checkbox
/implement yourbench YB-2 --full # All remaining phases + final review
| Flag | Purpose |
|---|---|
--full | Execute all remaining phases |
--next | Auto-detect next phase |
--skip-branch-check | Skip branch warnings |
--skip-security-checks | Skip per-phase security |
--skip-reviews | Skip final reviews |
--force | Skip dependency warnings |
/spec → /issue → /plan → /implement → /commit → /complete
↓ ↓
implements: Load spec section
spec section for requirements
↓
worklog/ entries created
↓
spaces/[project]/ code written
When implementing, the code should fulfill the requirements from the spec section referenced in the issue's implements: field. The /complete command will validate that all spec requirements are met.