From fc0763870f49db6c5b67f34ef7efd2105decb6df Mon Sep 17 00:00:00 2001 From: Parfii-bot Date: Tue, 21 Apr 2026 13:41:19 +0800 Subject: [PATCH] docs(readme): update agent table with kei- prefix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Agents-overview table: 14 rows renamed to kei-. - "What you get" table examples: kei- with trailing "...". - Intro paragraph: note on kei-* namespace motivation (no collision with user's own same-named agents). No code/behavior change — this is pure docs alignment with the manifest rename in commit 3039ada. Co-Authored-By: Claude Opus 4.7 (1M context) --- README.md | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 023d4ea..effb57e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ KeiSeiKit is a drop-in agent fleet for [Claude Code](https://claude.com/claude-code). It ships a curated set of composable behavioral blocks, a Rust assembler that builds agent `.md` files from TOML manifests deterministically, three pre-wired hooks, and six portable skills including an interactive `/new-agent` wizard. Everything follows a Constructor Pattern: one file per concern, manifests as single source of truth, and the generated agent files are regenerated on every relevant edit. -The kit is MIT-licensed and fully generic — install it on a fresh machine and you get a sane 14-agent fleet (implementers, critics, researchers, cost-guardians, and more), a wizard for spinning up new project specialists, and a build pipeline that keeps every agent derivable from its manifest. +The kit is MIT-licensed and fully generic — install it on a fresh machine and you get a sane 14-agent fleet (implementers, critics, researchers, cost-guardians, and more — all namespaced under `kei-*` so they won't collide with your own same-named agents), a wizard for spinning up new project specialists, and a build pipeline that keeps every agent derivable from its manifest. ## Prerequisites @@ -34,7 +34,7 @@ After install, the only remaining step is merging `settings-snippet.json` into y | Category | Count | Examples | |---|---:|---| | Behavioral blocks | 34 | `baseline`, `evidence-grading`, `rule-math-first`, `stack-rust-axum`, `deploy-modal`, `api-fal-ai`, ... | -| Generic agents (manifests) | 14 | `code-implementer`, `critic`, `validator`, `security-auditor`, `architect`, `researcher`, `ml-implementer`, `cost-guardian`, `modal-runner`, ... | +| Generic agents (manifests) | 14 | `kei-code-implementer`, `kei-critic`, `kei-validator`, `kei-security-auditor`, `kei-architect`, `kei-researcher`, `kei-ml-implementer`, `kei-cost-guardian`, `kei-modal-runner`, ... | | Hooks | 3 | `assemble-agents` (PostToolUse), `assemble-validate` (PreToolUse Bash), `no-hand-edit-agents` (PreToolUse Edit/Write) | | Skills | 6 | `new-agent`, `research`, `test-gen`, `pr-review`, `refactor`, `debug-deep` | @@ -93,22 +93,24 @@ Copy `_templates/specialist.toml.template` and fill the placeholders, OR run `/n ## Agents overview +All kit agents are namespaced under `kei-*` so they won't collide with your own agents (e.g. your personal `validator` or `critic`) living in `~/.claude/agents/`. + | Agent | Role | |---|---| -| `code-implementer` | Write production code, Constructor Pattern enforced, Test-First discipline | -| `infra-implementer` | Deploy scripts, CI/CD, secrets management, cost-aware paid infra | -| `ml-implementer` | Training scripts, inference code, Modal jobs, exact param counts | -| `critic` | Read-only anti-pattern / bug / security / perf / debt finder | -| `validator` | Fact-checker; verifies API existence, version compat, citations, doc claims | -| `security-auditor` | Risk-classified security audit with variant analysis + supply chain check | -| `architect` | Read-only structural analysis; dep graph, patterns, coupling | -| `researcher` | Generic web + codebase research, evidence-graded findings | -| `ml-researcher` | ML literature, benchmarks, reproducibility, tooling-reuse search | -| `cost-guardian` | Pre-launch GO/NO-GO for paid compute (Modal, AWS, fal.ai, Apify, etc.) | -| `modal-runner` | Modal compute orchestrator with KILL GUARD (never stops running jobs) | -| `fal-ai-runner` | fal.ai image/video/3D generation expert | -| `patent-researcher` | Prior-art, FTO, novelty — never leaks unfiled IP to public search | -| `patent-compliance` | Pre-filing cross-reference gate and defensive-language helper | +| `kei-code-implementer` | Write production code, Constructor Pattern enforced, Test-First discipline | +| `kei-infra-implementer` | Deploy scripts, CI/CD, secrets management, cost-aware paid infra | +| `kei-ml-implementer` | Training scripts, inference code, Modal jobs, exact param counts | +| `kei-critic` | Read-only anti-pattern / bug / security / perf / debt finder | +| `kei-validator` | Fact-checker; verifies API existence, version compat, citations, doc claims | +| `kei-security-auditor` | Risk-classified security audit with variant analysis + supply chain check | +| `kei-architect` | Read-only structural analysis; dep graph, patterns, coupling | +| `kei-researcher` | Generic web + codebase research, evidence-graded findings | +| `kei-ml-researcher` | ML literature, benchmarks, reproducibility, tooling-reuse search | +| `kei-cost-guardian` | Pre-launch GO/NO-GO for paid compute (Modal, AWS, fal.ai, Apify, etc.) | +| `kei-modal-runner` | Modal compute orchestrator with KILL GUARD (never stops running jobs) | +| `kei-fal-ai-runner` | fal.ai image/video/3D generation expert | +| `kei-patent-researcher` | Prior-art, FTO, novelty — never leaks unfiled IP to public search | +| `kei-patent-compliance` | Pre-filing cross-reference gate and defensive-language helper | ## License