workspace-dispatch

workspace-dispatch is a skill for Claude Code, Codex from outsourc-e/hermes-workspace. It costs 59 tokens per session (813 once invoked), scanned A, original, MIT.

A mission orchestrator that splits a larger job into smaller tasks, assigns one worker to each, checks machine-verifiable results, and retries failed tasks.

In plain words
What is it for?
Use it to decompose coding, research, or review missions into up to six independent tasks and verify outputs with commands such as file checks or compilation.
Why use it?
It removes the need to coordinate every worker manually and makes completion criteria explicit.

Skill for Claude CodeCodex

About the project

Hermes Workspace is a web-based control center for Hermes Agent that combines chat, files, memory, skills, jobs, terminal access, and operational views. Hermes Agent users use it to manage sessions and coordinate one or more agents through a single interface.

outsourc-e/hermes-workspace · 6,558 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/outsourc-e/hermes-workspace/workspace-dispatch
Any agent
npx skills add outsourc-e/hermes-workspace --skill workspace-dispatch
Clone the repo
git clone --depth 1 https://github.com/outsourc-e/hermes-workspace

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for workspace-dispatch

README.md
[![agentmods](https://agentmods.dev/badge/skills/outsourc-e/hermes-workspace/workspace-dispatch.svg)](https://agentmods.dev/skills/outsourc-e/hermes-workspace/workspace-dispatch)
Your own site
<a href="https://agentmods.dev/skills/outsourc-e/hermes-workspace/workspace-dispatch"><img src="https://agentmods.dev/badge/skills/outsourc-e/hermes-workspace/workspace-dispatch.svg" alt="Measured on agentmods" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 813 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00059 $0.00813
Opus 5 $0.00030 $0.00407
Sonnet 5 $0.00012 $0.00163
Haiku 4.5 $0.00006 $0.00081

Measured 5d ago against content hash 2264267957a1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

workspace-dispatch scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/workspace-dispatch/SKILL.md · 113 lines

How it starts

The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Workspace Dispatch (Single Agent)

You are an autonomous mission orchestrator. Decompose work into tasks, spawn one worker per task, verify output, chain to the next — no user intervention needed.

Flow

  1. Decompose the goal into 2-6 tasks with machine-checkable exit criteria
  2. For each task: spawn a worker → wait → verify exit criteria → approve or retry
  3. Report summary when all tasks complete

Decomposition Rules

  • Max 6 tasks — keep it focused
  • Every task needs exit criteria verifiable with shell commands:
    • test -f /path — file exists
    • npx tsc --noEmit — compiles
    • grep -q "keyword" /path — contains expected content
    • wc -c < /path | awk '$1 > 100' — file has real content
  • No vague criteria — must be machine-checkable
  • Include working directory (cwd) for each task
  • Each task is independent — worker gets full context, no shared state between workers

Task Types

Type Worker Does Verify With
coding Write code, create files file exists, tsc passes
research Search, read, synthesize output file exists with content
review Read code, check behavior reviewer outputs PASS verdict

Dispatch Loop

For each task (in dependency order):
  1. Spawn worker:
     sessions_spawn(
       task: <worker prompt>,
       label: "worker-<task-slug>",
       mode: "run",
       runTimeoutSeconds: 600
     )
  2. sessions_yield() — wait for worker
  3. Verify exit criteria via exec commands
  4. If ALL pass → mark complete, next task
  5. If ANY fail → retry (max 3) with error context, then fail + skip dependents

Worker Prompt

Give each worker everything it needs in one prompt:

## Mission: {goal}
## Your Task: {task.title}
{task.description}

Working directory: {cwd}

## Exit Criteria (you MUST satisfy ALL):
- {criterion_1}
- {criterion_2}

## Rules
- Do NOT start servers or long-running processes
- Do NOT modify files outside your working directory
- Verify your own work before finishing — run the exit criteria commands yourself
- Commit only if the mission explicitly allows commits; otherwise leave changes uncommitted and report them

Read the full file on GitHub · 113 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 113 lines · 59 tokens per session scan A 2264267957a1

Subscribe to this mod's changes

workspace-dispatch is a skill published in the GitHub repository outsourc-e/hermes-workspace (6,558 stars, last pushed 13d ago), licensed MIT. It adds 59 tokens to every session and 813 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

clippos

Local video clipping automation for /clippos requests, attached video files, video links, social clip generation, captioned shorts, crop/framing, and rendered 9:16, 1:1, or 16:9 exports. Use this skill whenever the user wants an agent to turn a video into high-potential clips, score clips with the current harness…

dylan-buck/Clippos · 89 tokens

life-os

You are Hermes Life OS — a personal operating system that learns who you are, remembers everything you share, and grows smarter about your life every single day.

Lethe044/hermes-life-os · 0 tokens

release

Manage releases for this project. Validates changelog, installs git hooks, and cuts releases. Use when user says "/release", "release 1.0.5", "cut a release", or asks about the release process. NOT auto-invoked by the model.

amanning3390/flowstate-qmd · 58 tokens

qmd

FlowState-QMD gives coding agents anticipatory project memory over docs, notes, ADRs, changelogs, and runbooks.

amanning3390/flowstate-qmd · 30 tokens

worldwide-affiliate-mass-publishing

Mass-publish CorpusIQ affiliate program pages in 100+ languages via Rentry.co API. Proven to drive signups (12 users acquired). No auth required - pure API POST. Use whenever pushing affiliate program worldwide.

CorpusIQ/corpusiq-docs · 53 tokens

onboard-to-hermes

Walk a brand-new user from zero to their first useful Hermes task. Explains what Hermes is in plain language, gets them oriented, and helps them install and run their first skill without needing to understand the terminal.

clutchpbcfo/hermes-skills · 49 tokens