| name | dogfooding-issues |
| description | Process open GitHub issues using the self-development protocol.
Implements features from research registry with proper voting and testing.
Use when working on open issues, implementing research techniques, or
following the dogfooding workflow. Triggers on "dogfood", "work on issues",
"implement issue", "self-development", "process issues".
|
| allowed-tools | Read, Edit, Write, Bash, Grep, Glob, Task, WebSearch, WebFetch |
Dogfooding Issues Skill
Process open issues following the self-development protocol.
Full workflows:
Pre-Flight Checks
TZ='America/New_York' date '+%Y-%m-%d %H:%M:%S %Z'
git status --short
gh issue list --state open --limit 20
Issue Selection
Check Research Registry First
grep -A 5 "status: planned" docs/research/registry/techniques.yaml | \
grep -B 5 "priority: P[12]"
Priority order:
- P1 techniques with existing issues
- P2 techniques with clear implementation path
- Bug fixes blocking other work
- Documentation gaps
Implementation
Follow CONTRIBUTION_GUIDE.md:
- Research - Check registry, verify dependencies
- Interface First - Define before implementation
- TDD - Write failing test, implement, refactor
- Registry Update - Change
status: planned → status: implemented
- Commit - Reference issue, update registry
Quality Checklist
See CODING_STANDARDS.md:
Anti-rationalization — Dogfooding
| Excuse | Counter |
|---|
| "Pick the easy issue first" | Easy + un-implemented is suspicious — usually means the issue isn't actually easy or the spec is wrong. Pick by impact, not by ease. |
| "Skip the research check" | The research registry is where prior thought lives. Skipping it means re-deriving solutions and missing prior decisions. |
| "Test coverage 80% is fine" | Per CLAUDE.md, the gate is 89.66% / 93.26% (statement / function). Don't ship below the existing floor. |
| "Implementation is partial — flag mark as 'in progress'" | Per implement-feature: don't mark implemented if partial. Either ship the slice or split the issue. |
Red flags
- Issue closed with PR linked but feature behind a flag
- Research registry entry not updated to
status: implemented
- Test count dropped after the implementation (lost coverage)
- Issue spawned >5 follow-up issues (scope creep — should have split)
Verification checklist