Nexus-agents dogfooding-issues
install
source · Clone the upstream repo
git clone https://github.com/williamzujkowski/nexus-agents
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/williamzujkowski/nexus-agents "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/dogfooding-issues" ~/.claude/skills/williamzujkowski-nexus-agents-dogfooding-issues && rm -rf "$T"
manifest:
skills/dogfooding-issues/SKILL.mdsource content
Dogfooding Issues Skill
<!-- CANONICAL SOURCES: - CLAUDE.md Workflow Templates - docs/research/CONTRIBUTING.md - docs/development/CONTRIBUTION_GUIDE.md -->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: plannedstatus: implemented - Commit - Reference issue, update registry
Quality Checklist
See CODING_STANDARDS.md:
- Tests pass, lint/types clean
- Coverage ≥ 80%
- Registry updated (if technique)
- Issue referenced in commit