dogfooding-issues

dogfooding-issues is a skill for Claude Code from nexus-substrate/nexus-agents. It costs 73 tokens per session (816 once invoked), scanned A, original, MIT.

A workflow for processing open GitHub issues through research, voting, implementation, testing, and registry updates. TDD means writing a failing test before writing the code that makes it pass.

In plain words
What is it for?
Use it when selecting open issues, implementing research techniques, fixing bugs, or following the project's self-development process.
Why use it?
It gives issue work a repeatable process and quality checks, including tests, linting, coverage, and documentation of completed research techniques.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md.

Part of the nexus-agents plugin — 33 skills, 16 agents, 1 hook shipped together

Good fit Use it when selecting open issues, implementing research techniques, fixing bugs, or following the project's self-development process.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/nexus-substrate/nexus-agents/dogfooding-issues
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add nexus-substrate/nexus-agents --skill dogfooding-issues
Clone the repo
git clone --depth 1 https://github.com/nexus-substrate/nexus-agents

Made for: Claude Code.

Or install nexus-agents, the plugin that ships this one along with the rest of its 33 skills, 16 agents, 1 hook.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for dogfooding-issues

README.md
[![agentmods](https://agentmods.dev/badge/skills/nexus-substrate/nexus-agents/dogfooding-issues/github.svg)](https://agentmods.dev/skills/nexus-substrate/nexus-agents/dogfooding-issues)
Your own site
<a href="https://agentmods.dev/skills/nexus-substrate/nexus-agents/dogfooding-issues"><img src="https://agentmods.dev/badge/skills/nexus-substrate/nexus-agents/dogfooding-issues/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for dogfooding-issues

Your own site · 80×15
<a href="https://agentmods.dev/skills/nexus-substrate/nexus-agents/dogfooding-issues"><img src="https://agentmods.dev/badge/skills/nexus-substrate/nexus-agents/dogfooding-issues.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 816 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Prompt Injection · line 72
    Large whitespace padding was detected (a block of blank lines or a long run of spaces). This can push injected instructions below or to the right of the visible area so a human reviewer never sees them while the agent still reads them. Manual review of the hidden content is recommended.
    Fix: Remove the large whitespace padding (blank-line blocks or long space runs) and review any content hidden below or to the right of it. Keep skill files compact and reviewable so no instructions can be
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00073 $0.00816
Opus 5 $0.00036 $0.00408
Sonnet 5 $0.00015 $0.00163
Haiku 4.5 $0.00007 $0.00082

Measured 11d ago against content hash fedb6fbd58ca, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

dogfooding-issues scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/dogfooding-issues/SKILL.md · 93 lines

How it starts

The opening of the file, as written. The whole thing — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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:

  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: plannedstatus: 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

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.

Read the full file on GitHub · 93 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 93 lines · 73 tokens per session scan A fedb6fbd58ca

Subscribe to this mod's changes

dogfooding-issues is a skill published in the GitHub repository nexus-substrate/nexus-agents (18 stars, last pushed yesterday), licensed MIT. It adds 73 tokens to every session and 816 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

cw-gates

Use before claiming any Codewhale change is done, green, or ready to land: the focused-to-broad verification ladder, the budget checks CI enforces, and the rules for what counts as a passing test.

Hmbown/Codewhale · 48 tokens

model-merging

Merge multiple fine-tuned models using mergekit to combine capabilities without retraining. Use when creating specialized models by blending domain-specific expertise (math + coding + chat), improving performance beyond single models, or experimenting rapidly with model variants. Covers SLERP, TIES-Merging, DARE, Task…

davila7/claude-code-templates · 73 tokens

codew-release-qa-sweep

Use before claiming Codewhale release work is done: run the full gate sweep and list the manual QA targets.

Hmbown/CodeWhale · 31 tokens

mem0-test-integration

Verify a Mem0 integration produced by /mem0-integrate. Runs in the same workspace on the same branch (loose coupling) — installs dependencies, runs the repo's native test suite, then exercises a real end-to-end smoke flow against the user's API key. Produces a scorecard. TRIGGER when: user has just run /mem0-integrate…

mem0ai/mem0 · 207 tokens

workflow-patterns

Use this skill when implementing tasks according to Conductor's TDD workflow, handling phase checkpoints, managing git commits for tasks, or understanding the verification protocol.

wshobson/agents · 35 tokens

dev-workflow

The complete development workflow for SkillHub contributors including local dev, staging validation, testing, and PR creation. Ensures agents follow the correct sequence of steps.

iflytek/skillhub · 35 tokens