AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Hermes Acp Orchestrator

skill-rainhoole-hermes-agent-acp-skill-hermes-agent-acp-skill · by Rainhoole

Use when you need ACP-style delegation in Hermes with explicit agent routing to hermes, codex, or claude-code, including safe output limits and timeout-aware execution.

No reviews yet
0 installs
34 views
0.0% view→install

Install

$ agentstack add skill-rainhoole-hermes-agent-acp-skill-hermes-agent-acp-skill

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-rainhoole-hermes-agent-acp-skill-hermes-agent-acp-skill)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
6mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Hermes Acp Orchestrator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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

  1. Always provide concrete context (file paths, constraints, expected output).
  2. Keep tasks narrow; split large objectives into batch tasks.
  3. Use toolsets to reduce accidental side effects.
  4. Ask for structured summaries (what changed, what passed, what failed).
  5. 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_seconds or 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.