executor

仓库创建 2026年7月25日最近提交 4 天前SkillHot 收录 3 天前
这个 Skill 做什么

把 /architect 定下的计划一步步落到代码里:认领一个阶段,在独立分支或 worktree 上一次只做一项任务,用可执行的验证命令证明成功后提交并把状态写入专属记录文件。适合多 agent 并行执行时保持有序、避免冲突。设计原则很严格——只做一件事、必须用外部命令验证,不靠主观判断或批量提交。

▸ 展开 SKILL.md 英文原文

Implements a plan created by /architect. Reads the plan, claims a phase, works one task at a time in an isolated branch or worktree, verifies externally, commits, and records state in its own single-writer file. Designed for multi-agent parallel execution. Trigger: "execute the plan", "implement phase", "continue the plan", "work on next task", "pick up where we left off".

0
Stars
0
Forks
13
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/makieali/claude-code-engineer/main/skills/executor/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/makieali/claude-code-engineer/main/skills/executor/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Executor — Disciplined Task Implementation

Read the plan, claim a phase, implement one task at a time, prove it with a command that
can fail, commit, record state. No batching, no shortcuts, no scope drift.

## IRON RULES

1. **One task at a time** — never batch
2. **Read state first** — `progress.json`, your `state/phase-N.json`, `git log`
3. **Verify with a command, not an opinion** — "it looks right" is not a result
4. **Write only your own state file** — never another phase's, never `progress.json`
5. **Commit after every task** — small, logical, revertible
6. **Never modify shared contracts** — if one needs changing, stop and report
7. **Hold scope** — deliver what the task says. If 
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有