Skill: Octane bug hunter
SkillDev toolsGuides your agent through reproducing, diagnosing, and fixing bugs in the Octane codebase.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Skill: Octane bug hunter skill
About this capability
Find and fix a bug in the octane monorepo. Use when given a failing test, a regression, or a report that behavior differs from expectation, including deciding whether a React mismatch is an intentional divergence.
What this skill tells your AI
The instructions your AI receives, as published by octanejs/octane in .agents/skills/bug-hunter/SKILL.md and read by ahel’s review.
Use this to find, reproduce, minimize, and fix a suspected Octane bug.
Read first
AGENTS.md- Owning source and nearby tests
docs/differences-from-react.mdbefore assuming React mismatch is a bug
Workflow
-
State the suspected behavior
- Expected behavior, actual behavior, package, environment, and reproduction path.
- Decide whether the issue concerns runtime, compiler, SSR/hydration, Vite plugin, or an ecosystem binding.
-
Reproduce before fixing
- Add or locate the smallest failing test/fixture.
- For compiler/runtime behavior, prefer
packages/octane/tests/_fixtures/*.tsrxplus a focused*.test.ts. - For React parity, cite source React tests and use conformance/differential conventions.
- For ecosystem packages, use that package's
tests/harness.
-
Minimize
- Remove unrelated props, effects, timing, and DOM.
- Keep
.tsrxfixtures tiny. - Confirm the test fails for the intended reason, not setup/aliasing/jsdom.
-
Localize
- Runtime: inspect
packages/octane/src/runtime.tscomments and closest tests. - Compiler: inspect
packages/octane/src/compiler/compile.jsand emitted output if needed. - SSR: inspect
runtime.server.ts,server/index.ts, hydration tests. - Bindings: compare existing package patterns and upstream React binding behavior.
- Runtime: inspect
-
Patch carefully
- Preserve documented intentional divergences.
- Prefer fixing owning source over weakening tests.
- Add regression coverage that would fail on the old behavior.
- Keep changes minimal and idiomatic.
-
Validate
- Run the new failing test until it passes.
- Run nearby affected tests.
- If runtime/compiler changed, consider wider
packages/octane/testsorpnpm testdepending on scope. - Run
pnpm typecheckwhen TS/API surfaces changed.
-
Report
- Root cause.
- Files changed.
- Tests added/updated and commands run.
- Any remaining risks or intentional divergences.
Common traps
- React synthetic
onChange, StrictMode double invoke, and class components are not bugs by default. Controlledvalue/checkedis supported, but text editing uses nativeonInput;OCTANE_NATIVE_TEXT_ONCHANGEwarns about likely React-style host wiring without changing native behavior. Deliberate commit-on-blur usessuppressNativeChangeWarning. - Differential
innerHTMLcannot catch render counts, effect timing, refs, focus, or node move sets. - jsdom layout/focus limitations can masquerade as library bugs.
Signals
- GitHub stars
- 1k
- Forks
- 53
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
bug-hunter-octanejs- Source
- github.com/octanejs/octane