From danielpetro-skills
Designs autonomous prompting loops that let coding agents drive their own next steps, handoffs, reviews, and verification prompts. Use when setting up agent workflows, reducing repeated user prompting, creating self-driving project instructions, designing prompt queues, or coordinating build, review, and handoff loops across agents.
How this skill is triggered — by the user, by Claude, or both
Slash command
/danielpetro-skills:design-agent-prompt-loopThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a durable loop that prompts agents on the user's behalf so the user can delegate an outcome instead of repeatedly writing follow-up prompts.
Create a durable loop that prompts agents on the user's behalf so the user can delegate an outcome instead of repeatedly writing follow-up prompts.
AGENTS.md, a project skill, issue templates, or a dedicated loop file the repo already uses.A useful agent prompt loop includes:
Read project instructions and source-of-truth files before designing the loop:
AGENTS.md, CLAUDE.md, skills/**/SKILL.md, .cursor/rules.Use setup-build-verify-loop first when the repo lacks a verified build/test/evidence loop.
Choose the smallest loop that removes repeated user prompting:
See REFERENCE.md for pattern details and failure handling.
Do not leave the loop as prose only. Create durable prompt artifacts:
See EXAMPLES.md for pasteable templates.
Report:
npx claudepluginhub welldundun/skillsGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Implements work from a spec or tickets using TDD at agreed seams, with regular typechecking and test runs, followed by code review.