원클릭으로
verify-task
Run verification checks for a task and evaluate results. Use when the user wants to verify a task's acceptance criteria.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run verification checks for a task and evaluate results. Use when the user wants to verify a task's acceptance criteria.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
List tasks with optional filters. Use when the user wants to see their tasks.
List tasks with optional filters. Use when the user wants to see their tasks.
Get the next recommended task to work on. Use when the user asks what to work on next or needs a task assignment.
Create a new task file following the taskmd specification. Use when the user wants to add a new task to the project.
Split a large task into smaller sub-tasks. Accepts a task ID, evaluates complexity, and creates sibling task files if warranted.
Update an existing task's fields (status, priority, title, tags, dependencies, etc.). Use when the user wants to modify a task's properties.
SOC 직업 분류 기준
| name | verify-task |
| description | Run verification checks for a task and evaluate results. Use when the user wants to verify a task's acceptance criteria. |
| allowed-tools | Glob, Read, Bash, Grep |
Run a task's verification checks and evaluate the results — no CLI required.
The user's query is in $ARGUMENTS (a task ID like 077).
Find the task file:
.taskmd.yaml for custom dir (default: tasks)Glob for <task-dir>/**/*$ARGUMENTS*.mdRead the task file and extract the verify field from frontmatter
If no verify checks are defined: Inform the user that the task has no verification checks
Run each verification check:
bash type checksrun command via the Bash tooldir is specified, run in that directory (relative to project root)dir is not specified, run in the project rootassert type checkscheck text — this is a human-readable assertionRead, Glob, and Grep to evaluate whether the assertion holdsReport results:
Verification results for task <ID>: <title>
✓ [bash] go test ./internal/api/... -run TestPagination — PASSED
✗ [bash] npm test — FAILED (exit code 1)
Output: ...
✓ [assert] Pagination links appear in the API response headers — PASSED
Evidence: Found Link header in handlers.go:142
✗ [assert] Page size defaults to 20 — FAILED
Reason: Default page size is 10 in config.go:38
Overall: FAIL (2 passed, 2 failed)
See SPEC_REFERENCE.md (in the plugin root) for verify check format and types.