Agent Skill
2/7/202617th-task-validator
Use this skill when the user wants to validate their staged changes against a task/plan file. Analyzes git staged changes and compares them to requirements/checklist in TASK.md or specified file. Appropriate for: pre-commit review, progress checking, requirement verification. Not appropriate for: code review (style/quality), test execution, unstaged changes.
S
seventeenthearth
0GitHub Stars
1Views
npx skills add SeventeenthEarth/glm-worker-mcp
SKILL.md
| Name | 17th-task-validator |
| Description | Use this skill when the user wants to validate their staged changes against a task/plan file. Analyzes git staged changes and compares them to requirements/checklist in TASK.md or specified file. Appropriate for: pre-commit review, progress checking, requirement verification. Not appropriate for: code review (style/quality), test execution, unstaged changes. |
name: 17th-task-validator description: | Use this skill when the user wants to validate their staged changes against a task/plan file. Analyzes git staged changes and compares them to requirements/checklist in TASK.md or specified file. Appropriate for: pre-commit review, progress checking, requirement verification. Not appropriate for: code review (style/quality), test execution, unstaged changes.
Task Validator
Validate git staged changes against task requirements.
When to Use
- User wants to verify staged changes match TASK.md
- Pre-PR final review
- Progress check on checklist items
Implementation
Invoke the 17th-task-validator subagent:
Task(
description="Validate staged changes against {task_file}",
subagent_type="glm-worker:17th-task-validator",
prompt="Validate staged changes against {task_file_path}. Project root: {project_root}",
run_in_background=true
)
Variables
| Variable | Default | Description |
|---|---|---|
| task_file | TASK.md | Task file name |
| task_file_path | ./TASK.md | Full path to task file |
| project_root | Current directory | Project root |
Output
- Validation report:
.kkachi/{branch_name}/completed/task-validator-{epoch_timestamp}.md - Summary: X/Y items completed, pending items, out-of-scope changes
Notes
- Subagent uses GLM-4.7 for analysis, then verifies results
- Ensure
.kkachi/is in.gitignore
Skills Info
Original Name:17th-task-validatorAuthor:seventeenthearth
Download