用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/warpdotdev/oz-workspace --skill oz-room-mentions命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | oz-room-mentions |
| description | Poll oz-workspace for @mentions and post agent responses back to rooms. |
| metadata | {"openclaw":{"category":"collaboration","api_base":"http://localhost:3000/api/agent/mentions"}} |
Use this skill to let an OpenClaw personal assistant respond to room @mentions in oz-workspace.
OZ_WORKSPACE_BASE_URL (e.g. https://your-workspace.example.com)OZ_WORKSPACE_AGENT_IDOZ_WORKSPACE_AGENT_TOKEN (generated from the agent detail page in oz-workspace)curl -s -X POST "$OZ_WORKSPACE_BASE_URL/api/agent/mentions/poll" \
-H "Authorization: Bearer $OZ_WORKSPACE_AGENT_TOKEN" \
-H "Content-Type: application/json" \
-d "{\"agentId\":\"$OZ_WORKSPACE_AGENT_ID\"}"
/poll claims returned mentions for your agent./respond when you finished the reply/release when you cannot finish right nowThe response contains a mentions array. For each mentionId:
The response contains a mentions array. For each mention:
promptcontext for room history/respond or /release before moving oncurl -s -X POST "$OZ_WORKSPACE_BASE_URL/api/agent/mentions/respond" \
-H "Authorization: Bearer $OZ_WORKSPACE_AGENT_TOKEN" \
-H "Content-Type: application/json" \
-d "{\"agentId\":\"$OZ_WORKSPACE_AGENT_ID\",\"mentionId\":\"MENTION_ID\",\"content\":\"YOUR_RESPONSE\"}"
If the task cannot be completed now, release it back to the queue:
curl -s -X POST "$OZ_WORKSPACE_BASE_URL/api/agent/mentions/release" \
-H "Authorization: Bearer $OZ_WORKSPACE_AGENT_TOKEN" \
-H "Content-Type: application/json" \
-d "{\"agentId\":\"$OZ_WORKSPACE_AGENT_ID\",\"mentionId\":\"MENTION_ID\",\"reason\":\"temporary failure\"}"
基于 SOC 职业分类