← 返回 Skills 市场
xisen-w

Check Messages

作者 Awassi · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ pending
44
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install check-messages
功能描述
Use this skill when the user wants to see messages their Aicoo agent received, check what people asked, review conversation history, or see agent inbox activ...
使用说明 (SKILL.md)

Check Messages — Review What Your Aicoo Received

See all messages people sent to your agent, organized by conversation with contact info and timestamps.

Prerequisites

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

Workflow

Step 1: Get your identity (for filtering)

IDENTITY=$(curl -s "https://www.aicoo.io/api/v1/identity" \
  -H "Authorization: Bearer $AICOO_API_KEY")
CALLER_ID=$(echo "$IDENTITY" | jq -r '.profile.userId')
USERNAME=$(echo "$IDENTITY" | jq -r '.profile.username')

Step 2: Fetch conversations

# All conversations (both direct human messages and shared-agent chats)
curl -s "https://www.aicoo.io/api/v1/conversations?view=all&limit=50" \
  -H "Authorization: Bearer $AICOO_API_KEY" | jq .

Views:

  • view=me — direct messages to you (human-to-human)
  • view=coo — messages people sent to your shared agent
  • view=all — everything combined

Step 3: Fetch pending network requests

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

Step 4: Parse and present

For each conversation, extract:

  • Contact: who sent the message (name, username, or "anonymous visitor")
  • Channel: direct (me) or via shared agent (coo)
  • Messages: timestamp + content, newest first
  • Unread: messages where senderId != CALLER_ID

Group by conversation and present as:

Messages for @username

── Via Shared Agent (COO) ──────────────────────

1. @alice (Alice Chen) — 3 messages, latest: 2h ago
   "What's the timeline for Project Alpha?"
   "Can you share the API documentation?"
   "Thanks, one more question about pricing..."

2. Anonymous (share link: For Investors) — 1 message, latest: 5h ago
   "What's your current ARR and growth rate?"

── Direct Messages ─────────────────────────────

3. @bob (Bob Martinez) — 2 messages, latest: 1d ago
   "Hey, can we sync on the sprint tomorrow?"
   "Also, did you see the security review?"

── Pending Requests ────────────────────────────

4. @carol wants to connect (friend request) — 2d ago

Summary: 6 new messages across 3 conversations, 1 pending request

Step 5: Offer actions

For each item, suggest available actions:

Situation Suggested Action
Unread COO message "Want me to draft a reply?"
Pending friend request "Accept or decline @carol's request?"
Pending agent request "Grant agent access to @carol?"
Interesting question from visitor "Want to save this as a contact note?"

Filtering Options

The user can narrow results:

  • By channel: "just COO messages" → view=coo
  • By time: "messages from today" → filter by timestamp
  • By contact: "messages from alice" → filter by contact name/username
  • Unread only: filter where senderId != CALLER_ID

Error Handling

Error Action
401 from /identity API key invalid — guide to settings page
Empty conversations list "No messages yet. Share an agent link to start receiving messages."
Empty requests list "No pending network requests."
能力标签
requires-sensitive-credentials
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install check-messages
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /check-messages 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of the check-messages skill. - Lets users review all messages received by their Aicoo agent, including direct messages, agent inbox activity, and conversation history. - Supports filtering by channel, time, contact, and unread status. - Organizes messages by contact with timestamps and provides context about sender and message channel. - Displays pending network requests and suggests relevant follow-up actions. - Handles errors gracefully, including authentication failures and empty inbox scenarios.
元数据
Slug check-messages
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Check Messages 是什么?

Use this skill when the user wants to see messages their Aicoo agent received, check what people asked, review conversation history, or see agent inbox activ... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 44 次。

如何安装 Check Messages?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install check-messages」即可一键安装,无需额外配置。

Check Messages 是免费的吗?

是的,Check Messages 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Check Messages 支持哪些平台?

Check Messages 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Check Messages?

由 Awassi(@xisen-w)开发并维护,当前版本 v1.0.0。

💬 留言讨论