$npx -y skills add Codagent-AI/agent-skills --skill task-complianceReview an implementation against task file requirements. Checks every spec scenario and Done When criterion, identifies gaps, and reports them. Use when the user says "task compliance", "check compliance", "review against the task", or to verify implementation completeness before
| 1 | # Task Compliance |
| 2 | |
| 3 | Review the implementation against the task file(s). Extract every spec scenario (WHEN/THEN) and every Done When criterion, then verify each one was addressed. Report what's missing. |
| 4 | |
| 5 | ## Review Process |
| 6 | |
| 7 | ### 1. Extract Checklist |
| 8 | |
| 9 | From each task file, extract every: |
| 10 | - Spec scenario (WHEN/THEN) |
| 11 | - Done When criterion |
| 12 | - Explicit instruction in the Background or Goal sections |
| 13 | |
| 14 | This is your checklist. Every item must be accounted for. |
| 15 | |
| 16 | ### 2. Check Compliance |
| 17 | |
| 18 | For each checklist item, check whether the implementation addresses it. |
| 19 | |
| 20 | Classify each item: |
| 21 | - **Addressed** — the implementation covers this |
| 22 | - **Missed** — no evidence this was addressed |
| 23 | - **Partially addressed** — attempted but incomplete or incorrect |
| 24 | |
| 25 | **When you're unsure**, read the actual code in the repository to verify before classifying. Do not mark something as missed without checking the code first. |
| 26 | |
| 27 | ### 3. Report |
| 28 | |
| 29 | Present your findings: |
| 30 | |
| 31 | ```markdown |
| 32 | ## Task Compliance |
| 33 | |
| 34 | ### Addressed |
| 35 | - [Scenario/criterion] — [evidence] |
| 36 | |
| 37 | ### Gaps |
| 38 | - [Scenario/criterion] — [what's missing or incomplete] |
| 39 | ``` |
| 40 | |
| 41 | ## Guardrails |
| 42 | |
| 43 | - **Do not mark a scenario as missed without checking the code first.** It may have been implemented without being narrated in the conversation. |
| 44 | - **Report only.** Do not fix gaps — surface them for the human to decide how to proceed. |