$npx -y skills add EXboys/evotown --skill evotown-dispatch-completeReport Evotown dispatch job completion after the agent finishes real work.
| 1 | # Evotown dispatch complete |
| 2 | |
| 3 | Evotown dispatch messages include a footer like `[evotown] job_id=job_…`. **Do not** treat the OpenClaw hook HTTP response as task completion. |
| 4 | |
| 5 | When the user-visible work is done: |
| 6 | |
| 7 | ```bash |
| 8 | evotown-agent-setup.py complete \ |
| 9 | --job-id <job_id from the message> \ |
| 10 | --status succeeded \ |
| 11 | --summary "One-line outcome for the control plane" |
| 12 | ``` |
| 13 | |
| 14 | On failure: |
| 15 | |
| 16 | ```bash |
| 17 | evotown-agent-setup.py complete --job-id <job_id> --status failed --exit-code 1 --summary "reason" |
| 18 | ``` |
| 19 | |
| 20 | Requires `EVOTOWN_ENGINE_INGEST_TOKEN` (`evi_…`) in `~/.config/evotown/evotown.agent.env`. |
| 21 | |
| 22 | Alternatively POST `run.completed` to `{EVOTOWN_URL}/api/v1/events` with the same `run_id` as in the message footer. |