Install
openclaw skills install aicoo-inbox-monitoringUse this skill when the user wants to monitor Aicoo inbox activity, check new conversations/messages, track pending requests, or run periodic inbox checks. Triggers on: 'inbox monitoring', 'monitor inbox', 'new messages', 'pending requests', 'message watch', '收件箱监控', '/v1/conversations', '/v1/network/requests'.
openclaw skills install aicoo-inbox-monitoringMonitor incoming communication in Aicoo and surface what needs action.
AICOO_API_KEY must be sethttps://www.aicoo.io/api/v1GET /api/v1/conversations?view=all&limit=...GET /api/v1/network/requestsGET /api/v1/os/network (optional context: links/visitors/contacts)curl -s "https://www.aicoo.io/api/v1/conversations?view=all&limit=50" \
-H "Authorization: Bearer $AICOO_API_KEY" | jq .
Views:
view=me for direct/humanview=coo for shared-agent conversationsview=all for combined monitorcurl -s "https://www.aicoo.io/api/v1/network/requests" \
-H "Authorization: Bearer $AICOO_API_KEY" | jq .
curl -s "https://www.aicoo.io/api/v1/os/network" \
-H "Authorization: Bearer $AICOO_API_KEY" | jq .
Prioritize in this order:
type: agent first, then type: friend)Use /loop or /routine.
/loop example/loop 15m monitor my Aicoo inbox using /v1/conversations?view=all and /v1/network/requests; report only new items since last check and recommended replies.
/routine example/routine inbox-monitor every 15 minutes: check /v1/conversations + /v1/network/requests and summarize urgent items only.
Use the provided script:
# Every 15 minutes
*/15 * * * * /path/to/aicoo-skills/scripts/inbox-monitor-cron.sh >> /tmp/aicoo-inbox-monitor.log 2>&1
Optional envs:
PULSE_INBOX_VIEW (all | me | coo, default: all)PULSE_INBOX_LIMIT (default: 50)PULSE_INBOX_STATE_FILE (default: /tmp/pulse-inbox-monitor-state.json)For each run, return:
newMessages countnewIncomingRequests countIf no new items, return a single line: No new inbox activity since last check.