بنقرة واحدة
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.