agentify-project
Make a project ready for AI agentic engineering by converging it toward a canonical agent-neutral structure — a lean AGENTS.md index with progressive…
Execute one task from a plan's task breakdown, verify it, tick it off, and hand back for review before the next one.
$ npx -y skills add eai-org/agent-toolkit --skill execute-plan-tasks --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/execute-plan-tasksContext preview
The summary Claude sees to decide when to auto-load this skill.
Execute one task from a plan's task breakdown, verify it, tick it off, and hand back for review before the next one.
name: execute-plan-tasks description: Execute one task from a plan's task breakdown, verify it, tick it off, and hand back for review before the next one. disable-model-invocation: true type: flow license: MIT metadata: version: "0.3"
One task per run — implement it, verify it, tick it, stop. The review between tasks is the point; never carry on into the next.
Invocation: `/execute-plan-tasks <plan-path> [task-id]`
Read the plan whole — summary, conventions and overrides, the steps the task cites, acceptance criteria — then its `## Tasks` section. Ambiguous or missing plan path → ask. Several task sections → ask which one this run works from. No task section → stop and point at `/split-plan-tasks`.
`task-id` given → that task; none → the first unticked one in order. A range or a whole group → run its first task only, saying the rest need their own runs; a task already ticked → say so and ask whether to redo it. Its dependencies — earlier tasks in its group, plus every task in each group its *Depends on* line names — must be ticked; name any unticked dependency and ask before proceeding.
Done when the chosen task, its steps, its acceptance criteria and its dependency state are stated.
refactors. Work the plan calls for that no task covers → report it, don't absorb it.
one question carrying your recommendation, worded via `explain-in-simple-language` when available. Append each settled deviation from the plan, and its why, as one line to the decisions log beside the plan (`<slug>.DECISIONS.md`), creating it if absent.
runtime and tooling: check each setting fits this task's target before copying. A misfit is a deviation — settle and log it as above.
task unticked, report what blocks it.
Done when every step of the task is implemented, or its blocker reported.
Run the task's *Done when* check, then the validation the project's governing docs name — failing that, its toolchain's lint, tests and build; nothing runnable → say so rather than invent a command. Fix what this task broke; a failure that predates it or lands outside its scope is reported, never fixed silently.
Done when both pass, or every remaining failure is reported with why it stands.
Tick the task `- [ ]` → `- [x]`, plus each acceptance criterion it *Satisfies* whose every satisfying task is now ticked — the plan's only edits, made once verification passed; name the ACs still partly open. Then print the files touched, any deviation logged, and the task's *Commit* subject (absent → propose one in the repo's style) to commit once the change is reviewed. Finally hand off the next unticked task as a single copy-pasteable launch command — session name and prompt combined, in the launch syntax of the agent tool in use (vendor-agnostic — `claude` below is only the example):
claude --name execute-tasks-<slug> "/execute-plan-tasks <plan-path> <next-task-id>"
Then offer the alternative — clearing the current session instead (vendor-agnostic — `/clear` is only the example):
OR /clear and run:
/execute-plan-tasks <plan-path> <next-task-id>
When the finished task completes its group, say so first — the group is a PR — and point at the next group's first task. When no task is left, say the plan is done instead of handing off.
Done when the touched files, the commit subject and either both next-task commands or the plan-complete line are printed.
rewritten.
A collection of generic agentic tools for common engineering tasks, designed to work with any AI agent on any kind of software project.
Make a project ready for AI agentic engineering by converging it toward a canonical agent-neutral structure — a lean AGENTS.md index with progressive…
Check how much of a ticket is already implemented — split it into requirement blocks, judge each against the code, and save a human-readable TICKET-STATUS…
Draft, rewrite, or refine a doc for maximum token economy without losing any rule or intent. Use for docs kept in version control and regularly re-read by…
Author or refine a skill for maximum token economy without losing intent. Use when creating any new skill or editing an existing `SKILL.md`.
Audit what auto-loads into an agent session's context window and suggest lean, reversible fixes to cut startup tokens.
Turn a refined requirements document into a structured implementation PLAN.md a fresh session can execute. Planning only — decides the "how", not the "what".…