By Shironex
Specialized research + execute agent team for Claude Code. Auto-detects task type (security, UI, refactor, performance, architecture, test, migrate, review, debug, data, deps, observability, bundle, license, error, eval) and complexity. Spawns the right specialist agent to investigate, then the right execute agent to implement. Includes /kirei-chain for parallel multi-lens research, /kirei-deps for dependency-safety audits with Dependabot integration, /kirei-audit for depth-tunable code-quality audits (code smells, DRY, god files) that scale parallel agents to repo size and offer ordered fixes, /kirei-templatize to strip an existing JS/TS repo into a reusable starter template, /kirei-discuss for conversational pros/cons audit of ideas before any code is written, and /kirei-sentry to set up production-ready, privacy-respecting Sentry error + performance monitoring (framework-aware, consent-gated, with CI source maps).
Based on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Architecture research agent. Maps module boundaries, dependency flows, coupling issues, and structural decisions. Produces a Mermaid diagram embedded in the findings doc (renders natively on GitHub) plus written architectural findings. Advisory only — no code changes.
Use this agent to implement findings from a kirei research agent. Optimized for focused, well-scoped tasks: single-file changes, clear bug fixes, small features. For complex multi-file or architectural work use kirei-forge instead. <example> Context: kirei has produced a handoff identifying a single-file bug fix. user: "implement the fix kirei found" assistant: "Spawning kirei-build to implement the targeted fix." <commentary> Single file, clear scope — kirei-build (sonnet) is faster and cheaper than forge. </commentary> </example>
Bundle-size research agent. Measures the actual built output, identifies the heaviest contributors, finds duplicate dependencies, missing code splits, unshaken tree leaves, and bloated assets. Distinct from kirei-perf (broad runtime bottleneck mapping) — this agent owns shipped-bytes deeply. Produces a structured handoff with measurable byte savings for kirei-build or kirei-forge.
Data layer research agent. Audits database schemas, migrations, queries, and indexes for safety, correctness, and design quality. Distinct from kirei-perf — focuses on schema design, migration safety, and data-integrity, not just query speed. Produces a structured handoff for kirei-build or kirei-forge.
Debug research agent. Reproduces a specific bug, traces the failure to its root cause, and prescribes a targeted fix. May add temporary instrumentation (logs, asserts) during diagnosis — every instrumentation point is tracked and listed in the handoff so kirei-build / kirei-forge can remove it after the real fix lands.
Audit a codebase for quality and maintainability — code smells, DRY violations, god files, dead code, inconsistent conventions, and unfollowed best practices. Depth-tunable like /kirei-deps; a scout pass sizes how many kirei-refactor agents run in parallel (1 → up to 6) to match the repo. Produces one merged, dependency-ordered cleanup plan, then offers to fix the issues in order via kirei-build / kirei-forge. Use whenever a user asks to audit the codebase, find code smells, hunt technical debt, check for DRY violations, find god files or dead code, surface inconsistencies, run a code-quality / health pass, or plan a refactor — even if they don't say "kirei". Invoke with /kirei-audit; the skill asks which depth before working.
Run multiple kirei research agents in parallel against the same target and merge their findings into one combined report. Use when a question needs more than one lens (e.g., "audit this module for security AND performance AND architecture", or "audit observability AND error handling together"). Invoke with /kirei-chain followed by a task description; optionally pass --types security,perf,arch to pin the lens set. Valid lenses: security, ui, refactor, perf, arch, test, data, observability, bundle, error, general.
Audit a project's dependencies for safety. Detects the package manager (pnpm/npm/yarn/bun/poetry/uv/cargo/go/bundler), runs its audit, fetches GitHub Dependabot alerts when available, and produces a depth-tunable report — quick CVE counts, safe-bump list, or full ordered upgrade plan with risky-major handoff to /kirei migrate. Use whenever a user asks to audit deps, check for CVEs, find safe upgrades, review Dependabot alerts, run npm/pnpm/yarn/bun audit, check for outdated packages, or plan a dependency hygiene pass — even if they don't say "kirei". Invoke with /kirei-deps; the skill will ask which depth before working.
Conversational pros/cons audit for an idea, feature, or project — before any code is written. Walks the user through problem framing, value, constraints, alternatives, risks, and a recommended next step (kill / spike / build now / wait), then writes a structured decision doc to docs/discuss/. Use whenever the user says "I'm thinking about…", "should we build…", "is X a good idea", "let's talk through…", "what do you think about adding Y", "audit this idea", or wants to think through an approach before committing. Pairs with /kirei — the resulting doc can be passed back via /kirei --findings <path> if the user decides to proceed. Invoke with /kirei-discuss followed by an idea description.
Set up production-ready Sentry error + performance monitoring for a project. Detects the framework (Electron, Next.js, Vite/React SPA, Node/Nest, React Native), asks the consent + scope + region decisions, verifies the current SDK API via Ref, then spawns the kirei-sentry agent to produce a framework-specific plan and kirei-forge to implement it — with consent gating, recursive PII scrubbing, CI-only source-map upload, region handling, and the exact CI secrets. Use whenever a user wants to add Sentry, set up error tracking / crash reporting, wire production monitoring, add performance tracing, or integrate Sentry into a new or existing project — even if they don't say "kirei". Invoke with /kirei-sentry; the skill asks the key decisions before working.
Uses power tools
Uses Bash, Write, or Edit tools
A specialized agent team for Claude Code. Automated research → execute workflow with domain-specific specialists.
Each research agent writes its findings to its own folder under docs/, so reports stay organised by domain instead of piling up in one place.
| Agent | Model | Findings folder | Purpose |
|---|---|---|---|
kirei | opus | docs/research/ | General research & investigation |
kirei-security | opus | docs/security/ | Security audit (OWASP, auth, injection) |
kirei-ui | opus | docs/ui/ | UI/UX audit (impeccable skills integration) |
kirei-refactor | opus | docs/refactor/ | Code quality & refactoring plan |
kirei-perf | opus | docs/perf/ | Performance bottleneck analysis |
kirei-arch | opus | docs/arch/ | Architecture mapping + Mermaid diagram |
kirei-test | opus | docs/test/ | Test coverage gaps, missing edge cases, flake hunt |
kirei-migrate | opus | docs/migrate/ | Dependency / framework upgrade plan with breaking-change map |
kirei-review | opus | docs/review/ | Code review of pending changes or a GitHub PR; can also classify reviewer comments (--address-pr-comments) |
kirei-debug | opus | docs/debug/ | Reproduce + root-cause a specific bug; may add tracked temp instrumentation |
kirei-data | opus | docs/data/ | Schema / migration safety / query / index audit |
kirei-deps | opus | docs/deps/ | Dependency safety: package-manager audit + Dependabot alerts + safe-bump list + ordered upgrade plan (depth-tunable) |
kirei-observability | opus | docs/observability/ | Logs, metrics, traces audit — coverage gaps, structure, PII safety, correlation, mis-leveled logs |
kirei-bundle | opus | docs/bundle/ | Shipped-bytes deep dive — composition, duplicates, missing splits, asset weight, with KB savings |
kirei-license | opus | docs/license/ | Dependency license compatibility, copyleft contagion, NOTICE/attribution gaps |
kirei-error | opus | docs/error/ | Error handling audit — swallowed catches, error taxonomy, boundary leaks, missing timeouts/retries, async hazards |
kirei-eval | opus | docs/eval/ | Evaluation infrastructure audit — eval suites, baselines, golden datasets, regression detection, CI integration |
kirei-sentry | opus | docs/sentry/ | Production-ready Sentry setup — framework-aware (Electron/Next/Vite/Node/RN), consent gating, recursive PII scrubbing, CI-only source maps, region handling, secret wiring |
/kirei-chain (skill) | — | docs/chain/ | Combined report from a multi-lens parallel run |
/kirei-audit (skill) | — | docs/audit/ | Code-quality audit — scales parallel kirei-refactor agents to repo size, merges into one dependency-ordered cleanup plan, offers ordered fixes |
/kirei-discuss (skill) | — | docs/discuss/ | Conversational pros/cons audit of an idea/feature/project before any code is written |
| Agent | Model | Purpose |
|---|---|---|
kirei-build | sonnet | Execute findings — normal/focused tasks |
kirei-forge | opus | Execute findings — complex/multi-file tasks |
| Skill | Purpose |
|---|---|
/kirei [task] | Single-lens orchestrator — auto-detects type and complexity, spawns the right research agent, then the right execute agent. |
/kirei-chain [task] | Multi-lens orchestrator — runs up to 4 research agents in parallel against the same target and merges their findings into one report. Research-only by design. |
/kirei-deps | Dependency-safety orchestrator — asks for depth (quick / standard / deep) at invoke time, runs kirei-deps, optionally hands safe bumps to kirei-build and recommends /kirei migrate for risky majors. |
/kirei-audit | Code-quality orchestrator — asks for depth (quick / standard / deep), scout-sizes parallel kirei-refactor agents to the repo (1 → 6), merges findings into one dependency-ordered cleanup plan, then offers to fix the phases in order via kirei-build / kirei-forge. Audits code smells, DRY violations, god files, dead code, inconsistent conventions, and best-practice gaps. |
/kirei-discuss [idea] | Conversational pros/cons audit before any code — walks problem framing, value, cost, risks, alternatives, reversibility, and a clear next-step recommendation (build / spike / wait / don't-build). Writes a decision doc to docs/discuss/. |
/kirei-sentry | Sentry setup orchestrator — asks the consent model + scope + region, runs kirei-sentry to design a framework-specific integration (consent-gated, PII-scrubbed, CI source maps), then kirei-forge to implement it. Verifies the current SDK API via Ref first. |
/kirei flagsOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimnpx claudepluginhub shironex/kirei --plugin kireiComprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
A growing collection of Claude-compatible academic workflow bundles. Covers scientific figures, manuscript writing and polishing, reviewer assessment, citation retrieval, data availability, paper reading, literature search, response letters, paper-to-PPTX conversion, and evidence-grounded Chinese invention patent drafting. Rules are organized as reusable skill folders with explicit workflows and quality checks.
v9.44.1 — Patch release for Gemini environment/version detection and qwen auth gating. Run /octo:setup.
Harness-native ECC operator layer - 67 agents, 271 skills, 92 legacy command shims, reusable hooks, rules, selective install profiles, and production-ready workflows for Claude Code, Codex, OpenCode, Cursor, and related agent harnesses
Develop, test, build, and deploy Godot 4.x games with Claude Code. Includes GdUnit4 testing, web/desktop exports, CI/CD pipelines, and deployment to Vercel/GitHub Pages/itch.io.
Comprehensive PR review agents specializing in comments, tests, error handling, type design, code quality, and code simplification