feat: add stetkeep protocol agents (brain-router, craft-specialist, perf-specialist)#232
Open
chanjoongx wants to merge 2 commits intoVoltAgent:mainfrom
Open
feat: add stetkeep protocol agents (brain-router, craft-specialist, perf-specialist)#232chanjoongx wants to merge 2 commits intoVoltAgent:mainfrom
chanjoongx wants to merge 2 commits intoVoltAgent:mainfrom
Conversation
…erf-specialist) - brain-router: XML-protocol orchestrator for code-quality routing (Meta & Orchestration) - craft-specialist: structural refactor agent with 20 anti-patterns + 8-entry false-positive catalog (Quality & Security) - perf-specialist: measurement-first performance agent with hard baseline gate + 8-entry false-positive catalog (Quality & Security) All three reference stetkeep protocol files (BRAIN.md / CRAFT.md / PERF.md). Install via: npx stetkeep install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds three protocol-driven agents from stetkeep, an XML protocol framework + false-positive catalog for Claude Code.
Agents added
09 — Meta & Orchestration
Agenttool to actually spawn craft-specialist or perf-specialist — it does not just advise, it delegates.04 — Quality & Security
Read/Grep/Glob/Edit/Bash— noWritetool, so it cannot create new files. Follows CRAFT.md's 20 anti-patterns (A1–A20) and an 8-entry false-positive catalog.What makes these different from existing agents
Note on agent file length
These agents are intentionally concise (~50 lines vs the typical 200+ line format here). The reason: they reference external XML protocol files (CRAFT.md / PERF.md / BRAIN.md) that ship with stetkeep and contain the full behavioral specification. The agent files act as controllers; the protocol files carry the detail. Happy to expand inline if the convention here requires it.
Note on
model: inheritThese agents use
model: inheritrather thansonnet/opusto respect whatever model the user's session is running. Functionally equivalent for sonnet users; easily overridden by editing the frontmatter.Note on
Agenttool in brain-routerbrain-router uses the
Agenttool because it actually spawns craft-specialist or perf-specialist as subagents — it does not just recommend delegation. This is standard Claude Code 2026 subagent spawning behavior.Installation
Full framework (recommended):
npx stetkeep install— copies protocol files (CRAFT.md, PERF.md, BRAIN.md) + these agents into the user's project.Standalone: copy the agent files directly; add CRAFT.md / PERF.md to the project root from the stetkeep repo.