원클릭으로
cavecrew
Delegate work with compact subagent outputs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Delegate work with compact subagent outputs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Configure, extend, or contribute to Hermes Agent.
Map any code project with @wesleysimplicio/llm-project-mapper before doing work, so the Hermes Turbo Agent has the AGENTS.md / INIT.md / specs / skills scaffolding it needs to ship effectively.
Use RTK CLI (https://github.com/rtk-ai/rtk) to cut tokens during repo exploration and verbose validation
Apply ECC engineering patterns in Hermes.
| name | cavecrew |
| description | Delegate work with compact subagent outputs. |
| version | 1.0.0 |
| author | Julius Brussee (@JuliusBrussee), adapted by Hermes Agent. |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| metadata | {"hermes":{"category":"autonomous-ai-agents","tags":["delegation","subagents","context","review"],"related_skills":["autonomous-ai-agents/hermes-agent","software-development/subagent-driven-development"]}} |
Cavecrew is a delegation style for using subagents without flooding the main conversation with long reports. It is adapted from the Caveman/Cavecrew Claude Code workflow, but translated to Hermes concepts and tool names.
It does not add new model tools or install Claude hooks. It gives Hermes a default decision policy for when to use compact investigation, edit, and review delegation.
Use this skill when the work benefits from a focused subagent but the main conversation must stay small.
Good fits:
Avoid it when the user needs a narrative explanation, product thinking, or large cross-cutting implementation. In those cases, keep the work in the main thread or use the normal subagent-driven-development workflow.
No external Caveman installation is required.
Expected Hermes capabilities:
delegate_task or equivalent subagent delegationsearch_files for locating coderead_file for exact file contextpatch for bounded editsterminal for focused verification commandsWhen the task is broad, launch compact investigators in parallel with separate questions:
When the task is bounded to one or two files, hand exact paths and constraints to a compact builder.
When code has changed, ask a compact reviewer for findings only.
Investigator output:
topic:
- path:line - `symbol` - short note
totals: counts.
Builder output:
path:line-range - change under 10 words.
verified: re-read OK.
Reviewer output:
path:line: severity: problem. fix.
totals: critical high medium questions.
Refusal tokens:
too-big. split into smaller tasksneeds-confirm. destructive or risky operationambiguous. one blocking questionregressed. verification failed inside the bounded scopeFor code edits, verify in the main thread after integrating subagent output:
git diffAttribution: adapted from JuliusBrussee/caveman Cavecrew concepts.