Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
oz-room-mentions
// Poll oz-workspace for @mentions and post agent responses back to rooms.
$ git log --oneline --stat
stars:61
forks:15
updated:2026년 3월 3일 22:28
파일 탐색기
SKILL.md
// Poll oz-workspace for @mentions and post agent responses back to rooms.
| 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\"}"