Agent
Test-review role for the tdd-pipeline plugin. Reads tests written by the test-writer agent, checks coverage and correctness, and reports findings. Does not write code. Dispatched by tdd-orchestrate; not for direct user invocation.
Agent
Test-review role for the tdd-pipeline plugin. Reads tests written by the test-writer agent, checks coverage and correctness, and reports findings. Does not write code. Dispatched by tdd-orchestrate; not for direct user invocation.
Agent
Test-writing role for the tdd-pipeline plugin. Writes ONLY the test file and minimal type stubs for a module — never the real implementation. Dispatched by tdd-orchestrate; not for direct user invocation.
Skill Claude CodeCodex
Add TDD pipeline configuration template to this project's CLAUDE.md. Run this to set up the pipeline for a new project.
Skill Claude CodeCodex
Enforce strict red-green-refactor TDD for any task. Use when implementing features, fixing bugs, adding functionality, or building new modules. Routes to the full 7-stage pipeline for new modules with 3+ behaviors, or runs inline red-green-refactor for bug fixes and small changes. Triggers on: "use TDD", "fix this…
Plugin Claude Code
TigerBeetle's Tiger Style methodology for Zig: assertions (2+ per fn, paired positive/negative space), bounded loops (no recursion), static memory after init, snakecase naming with unit suffixes, 70-line function limit, 100-column line limit, and zig fmt.
Hook
Runs when a session starts, executing session-start.sh. From kelp/agent-plugins.
Skill Claude CodeCodex
Audit Zig source files for Tiger Style violations -- functions > 70 lines, lines > 100 columns, usize usage, direct recursion, compound assert(a and b), and bare while (true) without an adjacent assert.
Skill Claude CodeCodex
Add TigerBeetle's Tiger Style guidance to this project's CLAUDE.md. Run this in any Zig project to apply Tiger Style's rules on assertions, bounded loops, static memory, naming, function shape, comments, and formatting.
Skill Claude CodeCodex
Tiger Style rules for Zig: assertions (2+ per fn, paired positive/negative space), bounded loops (no recursion), static memory after init, snakecase naming with unit suffixes, 70-line function limit, 100-column line limit, zig fmt. Use when writing or reviewing Zig in a project that follows Tiger Style.
Plugin Claude Code
Corrective context for Zig that fixes Claude's outdated training data. Auto-detects whether the project targets 0.15.x or 0.16.x and injects the matching reference. Covers Writergate, the 0.16 Io interface, std.fs -> std.Io move, indexOf -> find rename, build.zig, format strings, ArrayList, BoundedArray…
Skill Claude CodeCodex
Audit Zig source files for outdated APIs against the project's Zig version (0.15.x or 0.16.x). Detects removed APIs, missing io parameters, missing flush, wrong ArrayList usage, ambiguous format strings, signed division, and renamed stdlib functions.
Skill Claude CodeCodex
Add Zig training corrections to this project's CLAUDE.md. Detects whether the project targets Zig 0.15.x or 0.16.x and appends the matching corrections. Run this in any Zig project to fix Claude's outdated patterns for I/O, ArrayList, format strings, build.zig, and (for 0.16) the new Io interface, std.fs -> std.Io…