Agent Plugins banner
kelp kelp

Agent Plugins

Data community

Description

Claude Code plugins: language-agnostic TDD pipeline and Zig 0.15.x corrective context

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

agent-plugins

Claude Code plugins by kelp:

  • zig-claude-kit -- fixes Claude's broken Zig 0.15.x
  • tiger-style -- applies TigerBeetle's Tiger Style to Zig projects
  • tdd-pipeline -- enforces TDD across separate agents
  • cross-review -- gets a second opinion from GPT-5.5
  • codex-pair -- pairs with a persistent Codex partner
  • knowledge-forge -- captures notes and routes retrieval for a personal knowledge base
  • fleet-efficiency -- runs agent fleets: token rules for fan-out, and a two-lead operating procedure
  • next-todo -- lands one TODO.md PR slice: plan review, TDD, draft PR, comment drain

Install

/plugin marketplace add kelp/agent-plugins

Plugins

zig-claude-kit

Claude generates broken Zig 0.15.x code for 12 specific patterns. This plugin corrects them by appending the right patterns to your project's CLAUDE.md so every agent reads them.

/plugin install zig-claude-kit@agent-plugins

Open a Zig project. The plugin detects Zig source files and prompts you to run `/zig-init`. From that point, Claude writes correct Zig.

**Commands:**

  • /zig-init -- inject corrections into CLAUDE.md
  • /zig-patterns -- quick reference with code examples
  • /zig-check -- audit files for outdated API usage

tiger-style

TigerBeetle's [Tiger Style][tiger] is an opinionated methodology for safety-critical Zig: minimum two assertions per function, no recursion, static memory after init, snake_case with unit suffixes, 70-line function limit, 100-column line limit. This plugin auto-detects Zig projects and offers to apply Tiger Style to them by appending the rules to your project's CLAUDE.md.

/plugin install tiger-style@agent-plugins

Open a Zig project. The plugin detects Zig source files and prompts you to run `/tiger-init`. From that point, Claude follows Tiger Style in that project. Uninstall the plugin i