evotown-handoff
Queue a cross-agent or cross-team handoff through the Evotown control plane.
npx skills add EXboys/evotown --skill evotown-handoff --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- CLI (employee machine)
- HTTP (from automation)
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 "..."
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.
