基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/EXboys/evotown --skill evotown-handoff命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
通过 Evotown Database MCP Proxy 对已注册的业务数据库执行只读 SQL 查询。当用户需要查 CRM、订单、报表等结构化数据时使用;禁止直连数据库或写入 SQL。
Report Evotown dispatch job completion after the agent finishes real work.
| name | evotown-handoff |
| description | Queue a cross-agent or cross-team handoff through the Evotown control plane. |
When a task should continue on another engine or team, do not message them in chat directly. Queue a handoff on Evotown.
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:
evotown-agent-setup.py handoff --to-engine hermes-bob --message "..."
Requires EVOTOWN_INGEST_TOKEN and prior register.
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):
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 as the dispatch job.