| name | Verify Output |
| description | Execute the team's verification pipeline against a completed task. Reads verificationPipeline configuration from the team template and runs each verification step sequentially. |
| version | 1.0.0 |
| category | quality |
| skillType | claude-skill |
| assignableRoles | ["team-leader"] |
| triggers | ["verify output","check work","review task","quality check","verify task"] |
| tags | ["verification","quality","review","management"] |
| execution | {"type":"script","script":{"file":"execute.sh","interpreter":"bash","timeoutMs":60000}} |
Verify Output
Executes the team's verification pipeline against a completed task. Reads the task output and runs verification checks (build, tests, content scans) based on the team template configuration.
Supports two modes:
- Explicit checks: Pass
checks[] array directly with specific verification steps
- Template pipeline: Pass
templateId to automatically load verification steps from the team template's verificationPipeline
When to Use
- When a worker reports a task as
done
- When
report-status indicates task completion
- Before marking a task as verified and reporting to the Orchestrator
Usage
With explicit checks (legacy)
bash {{SKILLS_PATH}}/team-leader/verify-output/execute.sh '{"taskId":"task-123","taskPath":"/project/.crewly/tasks/m1/done/task.md","workerId":"worker-1","teamId":"team-123","projectPath":"/path/to/project","checks":[{"name":"build","command":"npm run build"},{"name":"tests","command":"npm test"}]}'
With template pipeline (recommended)
bash {{SKILLS_PATH}}/team-leader/verify-output/execute.sh '{"taskId":"task-123","taskPath":"/project/.crewly/tasks/m1/done/task.md","workerId":"worker-1","teamId":"team-123","projectPath":"/path/to/project","templateId":"dev-fullstack"}'
Parameters
| Parameter | Required | Description |
|---|
taskId | No* | Task ID for tracking lookup |
taskPath | No* | Absolute path to the task markdown file |
workerId | No | ID of the worker who completed the task |
teamId | No | Team ID (for context) |
projectPath | No | Project directory (required for command-type checks) |
templateId | No | Template ID to load verification pipeline from |
checks |