From taskflow
Guide for the tester agent when executing tests and recording results in step 8. Auto-loaded when a step-8 task is in progress.
How this skill is triggered — by the user, by Claude, or both
Slash command
/taskflow:run-testsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are executing the test suite against the current build and recording pass/fail per spec.
You are executing the test suite against the current build and recording pass/fail per spec.
feature, test_specs, and build_report from your task context.rejection_notes on your task — if tests previously failed, the notes describe what went wrong.issues field for known problems to watch for.search/codebase and read to locate the relevant test files.runTerminalCommand to execute the test suite (e.g. pytest, npm test, go test ./...).test_spec_id from your context.Call submit_test_results with a result for every spec:
submit_test_results(
task_id=<your task id>,
results=[
{
"test_spec_id": 12,
"passed": true,
"notes": "Passed in 42ms"
},
{
"test_spec_id": 13,
"passed": false,
"notes": "Expected HTTP 401, got 200. Auth middleware not applied to /api/orders."
},
...
]
)
notes — include the actual vs expected output.submit_test_results will automatically spawn the step-9 (documenter) task.
npx claudepluginhub pedrogrande/taskflowEnforces cross-project coding conventions for naming, readability, immutability, and code-quality review. Activates on new projects, refactoring, or code review.