Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By Borda
Drive Python development workflows: plan tasks with structured scopes, build TDD-first features, refactor via test coverage audits, investigate-debug with evidence gathering and regressions, fix bugs minimally, and run multi-agent code reviews across architecture, security, and quality.
npx claudepluginhub borda/ai-rig --plugin developInvestigation-first debugging โ gather evidence, form confirmed root-cause hypothesis, write regression test, apply minimal fix via fix mode handoff.
TDD-first feature development โ crystallise API as a demo test, drive implementation to pass it, run quality stack and progressive review loop.
Reproduce-first bug resolution โ capture bug in failing regression test, apply minimal fix, run quality stack and review loop.
Analysis-only planning โ classify and scope a task without writing code; outputs a structured plan to .plans/active/.
Test-first refactoring โ audit coverage, add characterization tests, apply changes with safety net, run quality stack and review loop.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
OSS Claude Code config: agents, skills, and hooks for professional AI-assisted development workflows
Full feature development workflow from spec to completion
Essential development commands for coding, debugging, testing, optimization, and documentation
Persona-driven AI development team: orchestrator, team agents, review agents, skills, slash commands, and advisory hooks for Claude Code
Editorial "Essentials" bundle for Claude Code from Antigravity Awesome Skills.
Verification-first engineering toolkit for Claude Code. 15 skills across a 5-phase spine (Investigate โ Design โ Implement โ Verify โ Ship), 8 specialist agents, an interactive setup wizard. Every skill has rationalizations + evidence requirements. Built for senior ICs and tech leads.
Codebase structural index โ scan Python projects once, query the import graph for blast-radius and coupling before touching code โ Python projects only
OSS Claude Code config: agents, skills, and hooks for professional AI-assisted development workflows
OSS maintenance skills: analyse, resolve, review, release
ML/perf investigation skills: topic, plan, judge, run, sweep
Personal AI coding assistant configuration for Python/ML OSS development. Version-controlled, opinionated, continuously improved.
Managing AI coding workflows for Python/ML OSS is complex โ you need domain-aware agents, not generic chat. This config packages 12 specialist agents and 20+ slash-command skill workflows across four focused plugins, in a version-controlled, continuously benchmarked setup optimized for:
[!NOTE] What this adds over vanilla Claude Code: With defaults, Claude reviews code as a generalist. With this config, it reviews as 6 specialists in parallel, with a Codex pre-pass for unbiased coverage, file-based handoff to prevent context flooding, automatic lint-on-save, and token compression via RTK โ all orchestrated by slash commands that chain into complete workflows.
# Install Claude Code
npm install -g @anthropic-ai/claude-code
# 1. Clone (run from the directory that will CONTAIN the clone)
git clone https://github.com/Borda/AI-Rig Borda-AI-Rig
# 2. Register as a local marketplace
claude plugin marketplace add ./Borda-AI-Rig
# 3. Install all four plugins
claude plugin install foundry@borda-ai-rig # base agents + audit, manage, calibrate, brainstorm, โฆ
claude plugin install oss@borda-ai-rig # OSS workflow: analyse, review, resolve, release
claude plugin install develop@borda-ai-rig # development: feature, fix, refactor, plan, debug
claude plugin install research@borda-ai-rig # ML research: topic, plan, judge, run, sweep
[!NOTE] Safe to install alongside any existing Claude Code setup. Plugins live in a private cache (
~/.claude/plugins/cache/<plugin>/) under their own namespace. Your existing~/.claude/agents/,~/.claude/skills/, andsettings.jsonare never modified or overwritten โ custom agents and skills you have created remain fully independent. See the Claude Code plugin reference for details.
4. One-time settings merge โ run inside Claude Code:
/foundry:init link
link symlinks foundry agents and skills into ~/.claude/ so you can type /audit, /manage, /brainstorm, etc. without a foundry: prefix. OSS, develop, and research skills always use their plugin prefix (/oss:review, /develop:fix, /research:run). Safe to re-run.
[!IMPORTANT] Codex CLI โ optional companion; the plugins install Claude Code agents and skills only:
npm install -g @openai/codex cp -r Borda-AI-Rig/.codex/ ~/.codex/ # Codex agents and profiles
โ See Token Savings (RTK) for RTK install details.
A typical maintainer morning โ 15 new issues, 3 PRs waiting, a release due:
# 1. Morning triage โ what needs attention?
/oss:analyse health # repo overview, duplicate issue clustering, stale PR detection
# 2. Review incoming PRs
/oss:review 55 --reply # 7-agent review + welcoming contributor comment
# โ or: full review first, then apply every finding in one automated pass
/oss:review 21 # 7-agent review โ saved findings report
/oss:resolve 21 report # Codex reads the report and applies every comment
# 3. Fix the critical bug from overnight
/oss:analyse 42 # understand the issue
/develop:fix 42 # reproduce โ regression test โ minimal fix โ quality stack
# 4. Ship the release
/oss:release prepare v2.1.0 # changelog, notes, migration guide, readiness audit