Agent skill · Workflow & Productivity

evotown-handoff

Queue a cross-agent or cross-team handoff through the Evotown control plane.

EXboysgithub.com/EXboysGitHub ↗
claude-code
Install
npx skills add EXboys/evotown --skill evotown-handoff --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 1 KB
Bundled scripts: none
Path: integrations/openclaw/evotown/skills/evotown-handoff/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 659
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Evotown handoff When a task should continue on another engine or team, **do not** message them in chat directly. Queue a handoff on Evotown. ## CLI (employee machine) ```bash evotown-agent-setup.py handoff \ --to-team finance \ --title "Expense review" \ --message "Please verify the summary and approve or reject." ``` Or target a specific engine: ```bash evotown-agent-setup.py handoff --to-engine hermes-bob --message "..." ``` Requires `EVOTOWN_INGEST_TOKEN` and prior `register`. ## HTTP (from automation) ```http POST {EVOTOWN_URL}/api/v1/jobs/from-engine Authorization: Bearer {EVOTOWN_INGEST_TOKEN} { "kind": "handoff", "source_engine_id": "openclaw-alice", "target_team_id": "finance", "title": "Handoff", "message": "..." } ``` The receiving machine's **Connector** will lease the job and trigger local OpenClaw/Hermes Gateway. Load the **evotown-dispatch-complete** skill when executing Evotown dispatch jobs. When **this** agent finishes the leased job, report completion (do not rely on hook HTTP alone): ```bash evotown-agent-setup.py complete --job-id <job_id from task payload> --status succeeded --summary "..." ``` Or POST `run.completed` to `/api/v1/events` with the same `run_id

What's inside
Steps it walks through
  1. CLI (employee machine)
  2. HTTP (from automation)
Commands it runs
evotown-agent-setup.py handoff \
evotown-agent-setup.py handoff --to-engine hermes-bob --message "..."
evotown-agent-setup.py complete --job-id <job_id from task payload> --status succeeded --summary "..."
More from evotown
All skills →
About this skill
What does the evotown-handoff skill do?

Queue a cross-agent or cross-team handoff through the Evotown control plane.

How do I install it?

Run `npx skills add EXboys/evotown --skill evotown-handoff --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From EXboys/evotown, a repository with 659 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going