← Back to Skills Marketplace
xisen-w

Aicoo Inbox Monitoring

by Awassi · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ⚠ pending
44
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install aicoo-inbox-monitoring
Description
Use this skill when the user wants to monitor Aicoo inbox activity, check new conversations/messages, track pending requests, or run periodic inbox checks. T...
README (SKILL.md)

Inbox Monitoring

Monitor incoming communication in Aicoo and surface what needs action.

Prerequisites

  • AICOO_API_KEY must be set
  • Base URL: https://www.aicoo.io/api/v1

Endpoints

  • GET /api/v1/conversations?view=all&limit=...
  • GET /api/v1/network/requests
  • GET /api/v1/os/network (optional context: links/visitors/contacts)

Core Workflow

Step 1: Pull conversation inbox

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/human
  • view=coo for shared-agent conversations
  • view=all for combined monitor

Step 2: Pull pending requests

curl -s "https://www.aicoo.io/api/v1/network/requests" \
  -H "Authorization: Bearer $AICOO_API_KEY" | jq .

Step 3: Optional network context

curl -s "https://www.aicoo.io/api/v1/os/network" \
  -H "Authorization: Bearer $AICOO_API_KEY" | jq .

Step 4: Build action queue

Prioritize in this order:

  1. New inbound agent/human messages requiring response
  2. Incoming pending requests (type: agent first, then type: friend)
  3. High-signal visitor or share-link activity

Claude Code Automation

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.

OpenClaw Automation (CRON)

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)

Output Contract

For each run, return:

  1. newMessages count
  2. newIncomingRequests count
  3. top urgent items (contact + timestamp + one-line summary)
  4. suggested next actions (reply / accept / ignore)

If no new items, return a single line: No new inbox activity since last check.

Capability Tags
requires-sensitive-credentials
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install aicoo-inbox-monitoring
  3. After installation, invoke the skill by name or use /aicoo-inbox-monitoring
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial publish: monitor conversations and pending requests
v1.0.1
Update
Metadata
Slug aicoo-inbox-monitoring
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is Aicoo Inbox Monitoring?

Use this skill when the user wants to monitor Aicoo inbox activity, check new conversations/messages, track pending requests, or run periodic inbox checks. T... It is an AI Agent Skill for Claude Code / OpenClaw, with 44 downloads so far.

How do I install Aicoo Inbox Monitoring?

Run "/install aicoo-inbox-monitoring" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Aicoo Inbox Monitoring free?

Yes, Aicoo Inbox Monitoring is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Aicoo Inbox Monitoring support?

Aicoo Inbox Monitoring is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Aicoo Inbox Monitoring?

It is built and maintained by Awassi (@xisen-w); the current version is v1.0.1.

💬 Comments