kn-verify
$
npx mdskill add knowns-dev/knowns/kn-verifyValidates SDD spec coverage and task status to surface warnings and suggest fixes.
- Helps developers verify spec coverage and task status during SDD verification and reporting.
- Integrates with knowns CLI and MCP for validation commands and data retrieval.
- Prioritizes actionable fixes and concrete warnings over generic advice in its analysis.
- Presents results with a structured output including goal, key details, and next actions.
SKILL.md
.github/skills/kn-verifyView on GitHub ↗
---
name: kn-verify
description: Use when running SDD verification and coverage reporting
---
# SDD Verification
Run validation with SDD-awareness to check spec coverage and task status.
**Announce:** "Using kn-verify to check SDD status."
**Core principle:** VERIFY SPEC COVERAGE → REPORT WARNINGS → SUGGEST FIXES.
## Inputs
- Entire project SDD state, or a narrower entity if the user asked for focused validation
## Verification Rules
- Report concrete warnings before general commentary
- Prefer actionable fixes over generic advice
- Separate coverage problems from broken refs or missing links
## Step 1: Run SDD Validation
### Via CLI
```bash
knowns validate --sdd --plain
```
### Via MCP (if available)
```json
mcp__knowns__validate({ "scope": "sdd" })
```
## Step 2: Present SDD Status
Return the verification result using the shared output contract:
- Goal/result: whether SDD validation passed, failed, or surfaced warnings
- Key details: coverage summary, explicit warnings, passing checks, and the highest-priority fixes
- Next action: only when the warnings point to a clear follow-up command
The key-details portion may include a compact status block such as:
```
Specs: X total | Y approved | Z draft
Tasks: X total | Y done | Z in-progress | W todo
Coverage: X/Y tasks linked to specs (Z%)
Warnings:
- task-XX has no spec reference
- specs/feature: X/Y ACs incomplete
Passed:
- All spec references resolve
- specs/auth: fully implemented
```
## Step 3: Analyze Results
**Good coverage (>80%):**
> SDD coverage is healthy. All tasks are properly linked to specs.
**Medium coverage (50-80%):**
> Some tasks are missing spec references. Consider:
> - Link existing tasks to specs: `knowns task edit <id> --spec specs/<name>`
> - Create specs for unlinked work: `/kn-spec <feature-name>`
**Low coverage (<50%):**
> Many tasks lack spec references. For better traceability:
> 1. Create specs for major features: `/kn-spec <feature>`
> 2. Link tasks to specs: `knowns task edit <id> --spec specs/<name>`
> 3. Use `/kn-plan --from @doc/specs/<name>` for new tasks
## Step 4: Suggest Actions
Based on warnings, add the most relevant fixes inside the key-details section, then give one best next command only if a natural handoff exists:
**For tasks without spec:**
> Link task to spec:
> ```json
> mcp__knowns__update_task({
> "taskId": "<id>",
> "spec": "specs/<name>"
> })
> ```
**For incomplete ACs:**
> Check task progress:
> ```bash
> knowns task <id> --plain
> ```
**For approved specs without tasks:**
> Create tasks from spec:
> ```
> /kn-plan --from @doc/specs/<name>
> ```
## Entity-Specific Validation (Optional)
To validate a single task or doc (saves tokens):
```json
// Validate single task
mcp__knowns__validate({ "entity": "abc123" })
// Validate single doc
mcp__knowns__validate({ "entity": "specs/user-auth" })
```
## Shared Output Contract
All built-in skills in scope must end with the same user-facing information order: `kn-init`, `kn-spec`, `kn-plan`, `kn-research`, `kn-implement`, `kn-verify`, `kn-doc`, `kn-template`, `kn-extract`, and `kn-commit`.
Required order for the final user-facing response:
1. Goal/result - state what validation confirmed, failed, or blocked.
2. Key details - include the most important supporting context, refs, coverage, warnings, or fixes.
3. Next action - recommend a concrete follow-up command only when a natural handoff exists.
Keep this concise for CLI use. Verification-specific content may extend the key-details section, but must not replace or reorder the shared structure.
Out of scope: explaining, syncing, or generating `.claude/skills/*`. Runtime auto-sync already handles platform copies, so this skill source only defines the built-in output contract.
For `kn-verify`, the key details should cover:
- coverage summary
- explicit warnings
- concrete follow-up actions
- whether the project is healthy enough to continue or needs cleanup first
When verification reveals a clear follow-up, include the best next command. If the project is already healthy and no immediate workflow continuation is obvious, stop after the result and key details.
## Checklist
- [ ] Ran validate --sdd
- [ ] Presented status report
- [ ] Analyzed coverage level
- [ ] Suggested specific fixes for warnings
## Red Flags
- Ignoring warnings
- Not suggesting actionable fixes
- Skipping coverage analysis
- Claiming coverage is healthy without showing evidence