daily-dig

star 407

A proactive bug hunt across the Breadboard codebase. Pick an area, go looking, and produce a concrete artifact (test, lint rule, or codemod) for anything you find.

breadboard-ai By breadboard-ai schedule Updated 2/24/2026

name: daily-dig description: A proactive bug hunt across the Breadboard codebase. Pick an area, go looking, and produce a concrete artifact (test, lint rule, or codemod) for anything you find.

๐Ÿ” Daily Dig

A proactive bug hunt across the Breadboard codebase. Pick an area, go looking, and produce a concrete artifact (test, lint rule, or codemod) for anything you find.

Steps

  1. Scout โ€” Choose a hunting ground. Good options:
    • Recently changed files (git log --oneline -20 -- <path>)
    • Complex modules with low test coverage
    • TODO, FIXME, HACK, WORKAROUND comments
    • Error handling patterns (catch blocks, as any casts)
    • Event listener add/remove symmetry
    • Async race conditions

// turbo 2. Hunt โ€” Search for bugs, quirks, or gaps using grep, code reading, and pattern analysis. Look for:

  • Silent failures (errors swallowed, missing null checks)
  • Algorithm edge cases (empty inputs, cycles, overflow)
  • Missing cleanup (listeners, timers, subscriptions)
  • Bypassed guards (code paths that skip validation)
  1. Catch โ€” When you find something, name it. Good names are memorable and descriptive (e.g., "The Silent Stacking", "The Phantom Caret").

  2. Tag โ€” Write a concrete artifact:

    • Test (preferred) โ€” documents the bug and prevents regression
    • Lint rule โ€” prevents the pattern from recurring
    • Convention test โ€” enforces architectural invariants
    • Codemod โ€” fixes all instances of a pattern

// turbo 5. Log โ€” Add a short entry to the Hall of Fame below.

// turbo 6. Verify โ€” Run the test to confirm it passes (for BUG-prefixed tests, assert the current broken behavior so it passes now but documents what's wrong).


Hall of Fame

See .agent/daily-dig.md โ€” kept separate so this skill file stays lean in context.

Install via CLI
npx skills add https://github.com/breadboard-ai/breadboard --skill daily-dig
Repository Details
star Stars 407
call_split Forks 74
navigation Branch main
article Path SKILL.md
More from Creator
breadboard-ai
breadboard-ai Explore all skills →