Install
$ agentstack add skill-rainhoole-hermes-agent-acp-skill-hermes-agent-acp-skill ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Hermes ACP Orchestrator
Overview
Use this skill when tasks should be delegated through a single ACP-style pattern while keeping context isolated and results bounded.
Targets supported by delegation:
hermes(default in-process subagent)codex(external Codex CLI)claude-code(external Claude Code CLI)
When to Use
Use this skill when:
- You want deterministic routing to a specific agent.
- You want mixed-agent batch delegation.
- You need timeout and output-size guardrails for external agents.
- You want concise summaries returned to the parent turn.
Avoid this skill when:
- A single direct tool call is enough.
- The task is purely mechanical and better handled by
execute_code.
Delegation Patterns
1) Single task with explicit target
delegate_task(
goal="Implement the bugfix and run tests",
context="Keep patch minimal and include changed files in the summary.",
agent="codex"
)
2) Parallel batch with per-task agent override
delegate_task(tasks=[
{"goal": "Find regressions", "agent": "claude-code", "toolsets": ["file"]},
{"goal": "Implement fix and validate", "agent": "codex", "toolsets": ["terminal", "file"]},
{"goal": "Produce merge-ready summary", "agent": "hermes", "toolsets": ["file"]}
])
3) Reliability-focused run
delegate_task(
goal="Refactor auth middleware",
context="Run focused tests and report failures only.",
agent="claude-code",
max_iterations=30
)
Operating Rules
- Always provide concrete
context(file paths, constraints, expected output). - Keep tasks narrow; split large objectives into batch tasks.
- Use
toolsetsto reduce accidental side effects. - Ask for structured summaries (what changed, what passed, what failed).
- For external agents, keep outputs concise and action-oriented.
Recommended Delegation Config
delegation:
max_iterations: 50
default_toolsets: ["terminal", "file", "web"]
external_timeout_seconds: 900
external_max_output_chars: 24000
Troubleshooting
- Unsupported agent: use only
hermes,codex,claude-code. - External agent timeout: increase
delegation.external_timeout_secondsor split the task. - Oversized responses: lower verbosity in the delegated goal and rely on concise summaries.
- Weak results: provide stronger context, acceptance criteria, and exact files to touch.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Rainhoole
- Source: Rainhoole/hermes-agent-acp-skill
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.