iterate:prompt
Installation
SKILL.md
The user wants to create multiple UI variations from a prompt. Their prompt is:
$ARGUMENTS
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:<port>, where <port> is read from .iterate/daemon.lock in the repo root (JSON with a port field):
| MCP tool | REST equivalent |
|---|---|
iterate_list_iterations |
GET /api/iterations |
iterate_create_iteration |
POST /api/iterations — body: { "name": "...", "baseBranch": "..." } |
iterate_remove_iteration |
DELETE /api/iterations/{name} |
Steps
- Check current state. Call
iterate_list_iterationsto see what iterations already exist. If iterations already exist, ask the user whether to create new ones alongside them or remove the existing ones first.