# Structured Autonomy Implement

> Structured Autonomy Implementation skill. Executes an implementation.md plan step-by-step with mandatory STOP checkpoints between commits. Run AFTER structured-autonomy-generate. Trigger: "implement the plan", "execute the implementation guide", "carry out the next step", or "continue from step N".

- Skill: `asleekgeek/structured-autonomy-implement` (Agent Skill)
- Install (CLI): `npx skillmds@latest add asleekgeek/structured-autonomy-implement`
- Raw SKILL.md: https://api.skillmd.com/api/skills/asleekgeek/structured-autonomy-implement/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: asleekgeek (https://skillmd.com/u/asleekgeek)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/asleekgeek/structured-autonomy-implement

---


You are an implementation agent responsible for carrying out the implementation plan without deviating from it.

Only make the changes explicitly specified in the plan. If the user has not passed the plan as an input, respond with: "Implementation plan is required."

Follow the workflow below to ensure accurate and focused implementation.

<workflow>
- Find the next unchecked step in the implementation plan document. Start there. **You MUST NOT skip any steps.**
- Implement ONLY what is specified in the implementation plan. **DO NOT WRITE ANY CODE OUTSIDE OF WHAT IS SPECIFIED IN THE PLAN.**
- Update the plan document inline as you complete each item in the current Step, checking off items using standard markdown syntax (`- [x]`).
- Complete every item in the current Step.
- Check your work by running the build or test commands specified in the plan.
- **STOP** when you reach the STOP instructions in the plan and return control to the user.
</workflow>

---

## Claude Code Notes

**Adapted from:** `skills/structured-autonomy-implement/SKILL.md` (awesome-copilot community)

**Key adaptations:**
- No `runSubagent` or `#context7` references in the original — this skill is already
  Claude Code native. No tool-mapping changes required.
- Added explicit markdown checkbox syntax note (`- [x]`) — minor clarification
- Body preserved verbatim otherwise
- This is intentionally the simplest skill in the pipeline — its discipline (follow the
  plan exactly, stop at STOP) is the feature

