From blueprint
Full development loop - implement story, fix build, review until clean
npx claudepluginhub urso/claudev --plugin blueprintThis skill is limited to using the following tools:
Full orchestrated development workflow: implement story tasks, fix build, review+fix cycle.
Provides Ktor server patterns for routing DSL, plugins (auth, CORS, serialization), Koin DI, WebSockets, services, and testApplication testing.
Conducts multi-source web research with firecrawl and exa MCPs: searches, scrapes pages, synthesizes cited reports. For deep dives, competitive analysis, tech evaluations, or due diligence.
Provides demand forecasting, safety stock optimization, replenishment planning, and promotional lift estimation for multi-location retailers managing 300-800 SKUs.
Full orchestrated development workflow: implement story tasks, fix build, review+fix cycle.
${CLAUDE_PLUGIN_ROOT}/scripts/query-stories.sh$ARGUMENTS
Parse for story file or name.
!bash ${CLAUDE_PLUGIN_ROOT}/scripts/query-stories.sh --actionable
If no story specified, use the actionable stories from the pre-computed context above.
Determine the story file path to pass to sub-agents.
Spawn sub-agent to implement story tasks:
Task: Implement story tasks
Use the Skill tool to invoke "blueprint:develop-story" with arguments: <story-file>
Return confirmation that story document was updated with completed tasks.
This handles:
Wait for completion.
Spawn sub-agent to fix any build/lint errors:
Task: Fix build errors
Use the Skill tool to invoke "blueprint:develop-fix" with arguments: --story <story-file>
Return build status (pass/fail).
Wait for completion.
Spawn sub-agent to run the review loop (simplify + fix + review-fix cycle):
Task: Run review loop
Use the Skill tool to invoke "blueprint:review-loop" with arguments: --story <story-file>
This only simplifies and fixes review issues - it does NOT implement new functionality.
Return final status and any remaining issues.
Wait for completion.
Read the story document to get final task status.
Report:
## Development Loop Complete
### Story
[story file path]
### Tasks Implemented
[List tasks marked [x] in story]
### Build Status
[Pass / Fail]
### Review Status
[Pass / N remaining issues]
### Story Status
[Current status field value]
If issues remain:
### Remaining Issues
[List from review-fix output]
### Next Steps
- Run `/review-loop --story <file>` to continue
- Or fix manually and run `/review-code` to verify