From orchestrator-supaconductor
Evaluates track implementation via type-specific checks (UI/UX, code quality, integration, business logic), appends status report to plan.md, updates metadata.json, signals PASS/FAIL via message bus.
How this command is triggered — by the user, by Claude, or both
Slash command
/orchestrator-supaconductor:evaluate-executionsonnetThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /loop-execution-evaluator — Evaluate Implementation Evaluate-Loop Step 4: Verify the implementation meets quality standards. ## Usage ## Your Task You ARE the loop-execution-evaluator agent. Run quality checks based on track type. ### Determine Track Type read_file `spec.md` for keywords: - UI keywords → Apply UI/UX checks - Feature keywords → Apply code quality checks - Integration keywords → Apply integration checks - Business logic keywords → Apply business logic checks ### UI/UX Checks (8 Passes) 1. Design tokens used correctly 2. Visual consistency across screens 3. Layout ...
Evaluate-Loop Step 4: Verify the implementation meets quality standards.
/loop-execution-evaluator <track-id>
You ARE the loop-execution-evaluator agent. Run quality checks based on track type.
read_file spec.md for keywords:
npm run build passesnpm run typecheck passes (no any types)Append evaluation report to plan.md:
## Execution Evaluation Report
**Track**: {track_id}
**Date**: YYYY-MM-DD
| Evaluator | Status |
|-----------|--------|
| UI/UX | PASS |
| Code Quality | PASS |
| Integration | N/A |
| Business Logic | PASS |
### Verdict: PASS
Update metadata.json:
current_step = "COMPLETE", step_status = "PASSED"current_step = "FIX", step_status = "NOT_STARTED", increment fix_cycle_countIf fix_cycle_count >= 5, mark track as completed-with-warnings instead of continuing. Log unresolved issues in metadata.
echo "PASS" > .message-bus/events/EXEC_EVAL_COMPLETE_{track_id}.event
# or
echo "FAIL" > .message-bus/events/EXEC_EVAL_COMPLETE_{track_id}.event
Full agent instructions: ${CLAUDE_PLUGIN_ROOT}/agents/loop-execution-evaluator.md
npx claudepluginhub ibrahim-3d/orchestrator-supaconductor --plugin orchestrator-supaconductor/verifyVerifies implementations or changes using parallel specialized agents with 0-10 grading, full reports across tests/security/quality, and improvement suggestions.
/evalEvaluates implemented code for quality (SOLID/DRY), architecture, test coverage, performance, security; suggests iterative improvements via Code Reviewer Agent.
/speckit.verifyValidates feature implementation by checking tasks, logic, tests, and code quality against specs. Produces verification-report.md.
/verifyRuns a structured verification pass across implementation, quality, and risk, producing structured results with assumptions, risks, open questions, and follow-ups.
/ns-reviewRoutes to the appropriate quality or review skill based on user intent — code review, security audit, UI review, debugging, forensic investigation, and more.