← 返回 Skills 市场
xisen-w

Inbox Monitoring

作者 Awassi · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
115
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install inbox-monitoring
功能描述
Use this skill when the user wants to monitor Pulse inbox activity, check new conversations/messages, track pending requests, or run periodic inbox checks. T...
使用说明 (SKILL.md)

Inbox Monitoring

Monitor incoming communication in Pulse and surface what needs action.

Prerequisites

  • PULSE_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 $PULSE_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 $PULSE_API_KEY" | jq .

Step 3: Optional network context

curl -s "https://www.aicoo.io/api/v1/os/network" \
  -H "Authorization: Bearer $PULSE_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 Pulse 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/pulse-skills/scripts/inbox-monitor-cron.sh >> /tmp/pulse-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.

安全使用建议
The SKILL.md looks like a straightforward Pulse inbox monitor, but metadata omitted the required PULSE_API_KEY — that's a red flag you should resolve before installing. Ask the publisher to update registry metadata to declare PULSE_API_KEY as the primary credential. Before enabling: (1) Verify the skill's source/trustworthiness and that aicoo.io is the intended service, (2) only provide a least-privilege API key (rotate it if used for testing), (3) inspect any referenced scripts (e.g., /path/to/pulse-skills/scripts/inbox-monitor-cron.sh) before running them, (4) decide whether storing state at /tmp/pulse-inbox-monitor-state.json is acceptable or change it to a restricted path, and (5) run the skill in a limited/sandboxed environment first. If the publisher cannot explain the metadata mismatch or provide a homepage/repo, treat the skill as higher risk.
功能分析
Type: OpenClaw Skill Name: inbox-monitoring Version: 1.0.0 The skill is designed to monitor inbox activity for the Pulse platform via the aicoo.io API. It uses standard curl commands and environment variables (PULSE_API_KEY) to fetch conversation and request data, which aligns with its stated purpose. No evidence of data exfiltration to unauthorized endpoints, malicious execution, or prompt injection was found in SKILL.md or _meta.json.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
The name, description, and listed endpoints (conversations, network/requests, optional network context) align with an inbox-monitoring skill for a service hosted at https://www.aicoo.io/api/v1. The use of an API key to call these endpoints is expected for this purpose.
Instruction Scope
The SKILL.md instructs the agent to call Pulse API endpoints with curl and Authorization: Bearer $PULSE_API_KEY, and to summarize new items since the last check. It also references storing state (PULSE_INBOX_STATE_FILE, default /tmp/pulse-inbox-monitor-state.json) and suggests a cron script and log file. The instructions do not ask for unrelated files or credentials, but they do imply reading/writing a local state file and running periodic automation which the user should be aware of.
Install Mechanism
This is an instruction-only skill with no install spec and no bundled code. That reduces risk from arbitrary downloaded code.
Credentials
Registry metadata lists no required environment variables or primary credential, but SKILL.md explicitly requires PULSE_API_KEY and optionally PULSE_INBOX_* envs and a state-file path. The missing declaration of this credential in metadata is an inconsistency — the skill will need a secret (the API key) to operate, and that should have been declared. Confirm the skill only needs this single API key and no other unrelated secrets before installing.
Persistence & Privilege
always:false and normal model invocation are used. The skill suggests running a cron job and storing state in /tmp by default; this is normal for periodic checks but means the skill will create/read a local state file and produce logs. It does not request system-wide or other-skills configuration changes.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install inbox-monitoring
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /inbox-monitoring 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial publish from pulse-skills
元数据
Slug inbox-monitoring
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Inbox Monitoring 是什么?

Use this skill when the user wants to monitor Pulse inbox activity, check new conversations/messages, track pending requests, or run periodic inbox checks. T... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 115 次。

如何安装 Inbox Monitoring?

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

Inbox Monitoring 是免费的吗?

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

Inbox Monitoring 支持哪些平台?

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

谁开发了 Inbox Monitoring?

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

💬 留言讨论