
workflow-verify
by cuioss
An orchestration layer for AI coding assistants (currently Claude Code) that enforces consistency, reliability, and more predictable outputs.
SKILL.md
name: workflow-verify description: Verify workflow outputs using hybrid script + LLM assessment allowed-tools: Read, Write, Edit, Bash, Glob, Grep, AskUserQuestion
Workflow Verify Skill
EXECUTION MODE: Execute the workflow below based on the subcommand. Do NOT explain these instructions.
Purpose
Verify that workflow outputs (solution_outline.md, references.toon, TASK-*.toon) are correct and complete using hybrid script + LLM-as-judge assessment.
Critical Design Principle
Use proper tool interfaces, NOT direct filesystem access.
| DO | DON'T |
|---|---|
manage-tasks list --plan-id X | Read .plan/plans/X/tasks/*.toon directly |
manage-solution-outline list-deliverables | Parse solution_outline.md directly |
Subcommand Routing
MANDATORY: Based on subcommand, load and execute the corresponding workflow.
test
Execute trigger from test-definition, then verify.
Read: workflows/test-and-verify.md
Execute the test workflow section.
verify
Verify existing plan (requires --plan-id).
Read: workflows/test-and-verify.md
Execute the verify workflow section.
create
Create new test case interactively.
Read: workflows/create-test-case.md
list
List available test cases.
Read: workflows/list-test-cases.md
Reference Documentation
Load only when needed:
standards/architecture.md- Visual overview of verification enginestandards/scoring-guide.md- Scoring rubric (0-100 scale)standards/test-case-format.md- Test case specificationstandards/criteria-format.md- Criteria authoring guide
Directory Structure
workflow-verification/test-cases/{test-id}/ # Version-controlled
├── test-definition.toon
├── expected-artifacts.toon
├── criteria/
└── golden/
.plan/temp/workflow-verification/ # Ephemeral results
└── {test-id}-{timestamp}/
Scripts
verify-structure.py
Structural verification via manage-* tool interfaces.
Input: --plan-id, --test-case, --output
Output: TOON file with structural check results
python3 scripts/verify-structure.py \
--plan-id {plan_id} \
--test-case workflow-verification/test-cases/{test-id} \
--output .plan/temp/verify-{test-id}-structure.toon
collect-artifacts.py
Artifact collection via manage-* tool interfaces.
Input: --plan-id, --output
Output: Directory with collected artifacts (solution_outline.md, config.toon, etc.)
python3 scripts/collect-artifacts.py \
--plan-id {plan_id} \
--output .plan/temp/verify-{test-id}-artifacts/
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon