# Speckit.checklist

> Requirements Validator - Create and validate checklist from spec.

- Skill: `wedabro/speckit-checklist` (Agent Skill)
- Install (CLI): `npx skillmds@latest add wedabro/speckit-checklist`
- Raw SKILL.md: https://api.skillmd.com/api/skills/wedabro/speckit-checklist/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: wedabro (https://skillmd.com/u/wedabro)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/wedabro/speckit-checklist

---


## 🎯 Mission
Extract all functional requirements from spec.md into a trackable checklist.

## 📥 Input
- `.agents/specs/[feature]/spec.md`
- `.agents/specs/[feature]/tasks.md` (if available)

## 📋 Protocol
1. Read spec.md → extract all requirements (from User Scenarios + Success Criteria).
2. Create checklist format:
   ```markdown
   ## Functional Requirements
   - [ ] FR01: User can register an account → T003, T004
   - [ ] FR02: User can log in → T005
   - [x] FR03: User can view product → T010 ✅
   ```
3. If there is tasks.md → link each requirement to task IDs.
4. Enter status: ✅ Met / ❌ Not Met / ⚠️ Partial.

## 📤 Output
- File: `.agents/specs/[feature]/checklist.md`

## 🚫 Guard Rails
- Each requirement MUST be quoted from spec.md (not made up).

