From blueprint
Simplify, fix build, and review-fix code in a loop until clean (no implementation)
npx claudepluginhub urso/claudev --plugin blueprintThis skill is limited to using the following tools:
Post-implementation review workflow: simplify code, fix build, then review+fix cycle until clean. Use this when code is already implemented and you only need the review pass.
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.
Post-implementation review workflow: simplify code, fix build, then review+fix cycle until clean. Use this when code is already implemented and you only need the review pass.
$ARGUMENTS
Parse for:
--story <story-file> for context (optional)--max-cycles N to override review-fix max cycles (optional, default 5)--no-simplify to skip the simplify step (optional)Skip if --no-simplify was specified.
Spawn sub-agent to simplify the implemented code:
Task: Simplify code for clarity
Use the Skill tool to invoke "blueprint:develop-simplify" with arguments: [--story if provided]
Return summary of simplifications made.
Wait for completion.
Skip if step 1 was skipped.
Spawn sub-agent to fix any build/lint errors introduced by simplification:
Task: Fix build errors after simplify
Use the Skill tool to invoke "blueprint:develop-fix" with arguments: [--story if provided]
Return build status (pass/fail).
Wait for completion.
Spawn sub-agent to run review and fix loop:
Task: Review and fix code issues
Use the Skill tool to invoke "blueprint:review-fix" with arguments: [--story if provided] [--max-cycles N if provided]
This only fixes review issues - it does NOT implement new functionality.
Return final status and any remaining issues.
Wait for completion (max cycles internally).
Report:
## Review Loop Complete
### Simplify
[Summary of simplifications, or "Skipped"]
### Build Status
[Pass / Fail]
### Review Status
[Pass / N remaining issues]
If issues remain:
### Remaining Issues
[List from review-fix output]
### Next Steps
- Run `/review-loop` again to continue
- Or fix manually and run `/review-code` to verify
--no-simplify if you've already simplified or just want the review-fix cycle