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.md
source 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:

  1. P1 techniques with existing issues
  2. P2 techniques with clear implementation path
  3. Bug fixes blocking other work
  4. Documentation gaps

Implementation

Follow CONTRIBUTION_GUIDE.md:

  1. Research - Check registry, verify dependencies
  2. Interface First - Define before implementation
  3. TDD - Write failing test, implement, refactor
  4. Registry Update - Change
    status: planned
    status: implemented
  5. 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