Install
$ npx skills add Rainhoole/hermes-agent-acp-skillREADME
# GitHub Repository: Rainhoole/hermes-agent-acp-skill
**URL:** https://github.com/Rainhoole/hermes-agent-acp-skill
**Author:** Rainhoole
**Description:** Hermes skill for ACP-style multi-agent delegation (Hermes, Codex, Claude Code).
**Homepage:**
**Language:**
## Stats
- Stars: 42
- Forks: 7
- Open Issues: 4
- Commits: 1
- Created: 2026-03-07T17:30:23Z
- Updated: 2026-06-14T17:24:26Z
- Pushed: 2026-03-07T17:31:04Z
## README
# Hermes ACP Orchestrator Skill
A production-oriented Hermes skill for ACP-style multi-agent delegation.
## What it solves
This skill standardizes how you delegate work across:
- Hermes internal subagents
- Codex
- Claude Code
It focuses on three things:
1. Clear agent routing (`agent=...`)
2. Context isolation (delegated work does not pollute the parent context)
3. Safety controls (timeouts + output limits for external agents)
## Skill Name
`hermes-acp-orchestrator`
## Who should use this
Use this skill if you are orchestrating engineering workflows where different sub-agents specialize in different tasks (implementation, review, risk analysis, synthesis).
## Quick example
```python
delegate_task(tasks=[
{"goal": "Risk review", "agent": "claude-code"},
{"goal": "Patch + tests", "agent": "codex"},
{"goal": "Final integration summary", "agent": "hermes"}
])
```
## Recommended Hermes config
```yaml
delegation:
external_timeout_seconds: 900
external_max_output_chars: 24000
```
## Files
- `SKILL.md` — the skill instructions and workflow patterns
- `README.md` — repository overview and usage guidance
## License
MIT
Information
Repository
Language
Unknown
Created
2026/6/18
Updated
2026/6/19