iterate:go
Installation
SKILL.md
The user has submitted UI feedback changes via the iterate overlay. Your job is to fetch, understand, and implement every pending change.
Tools
Use the MCP tools below. If MCP tools are not available (e.g. the server isn't connected), fall back to the daemon's REST API at http://localhost:4000:
| MCP tool | REST equivalent |
|---|---|
iterate_get_pending_batch |
GET /api/changes/pending |
iterate_start_change |
PATCH /api/changes/{id}/start |
iterate_implement_change |
PATCH /api/changes/{id}/implement |
iterate_implement_dom_change |
DELETE /api/dom-changes/{id} |
iterate_list_iterations |
GET /api/iterations |
- Start:
PATCH /api/changes/{id}/start— no body needed - Implement change:
PATCH /api/changes/{id}/implement— body:{ "summary": "what you changed" } - Implement DOM change:
DELETE /api/dom-changes/{id}— no body needed
Steps
Related skills
More from connorwhite-online/iterate
iterate
Set up iterate in the current project. Detects your framework, installs the package, wires it into your config, and configures the MCP server.
31iterate:keep
Pick a winning iteration to merge back to the base branch and clean up the rest.
29iterate:prompt
Create multiple iterate variations from a design prompt and implement each one differently.
27