← 返回
未分类 Key 中文

Examine Sandbox

Use this skill when the user wants to check what data their shared agent can access, inspect what's being shared, review privacy, or see what guests will see...
当用户想查看共享代理可访问的数据、检查共享内容、审查隐私设置或查看访客可见内容时使用此技能。
xisen-w
未分类 clawhub v2.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 316
下载
💾 1
安装
1
版本
#latest

概述

Examine Sandbox

Inspect exactly what data and capabilities are included in shared links.

Prerequisites

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

Core Workflow

Step 1: List network state

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

Review:

  • shareLinks
  • visitors
  • contacts

Step 2: Check context size/scope

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

Step 3: Search for sensitive content

# financial
curl -s -X POST "https://www.aicoo.io/api/v1/os/notes/search" \
  -H "Authorization: Bearer $PULSE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"revenue pricing confidential"}' | jq .

# credentials/personal info
curl -s -X POST "https://www.aicoo.io/api/v1/os/notes/search" \
  -H "Authorization: Bearer $PULSE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"password API key credentials"}' | jq .

Step 4: Report findings

Summarize:

  1. how many active links and their scopes
  2. notes/calendar permission levels
  3. visitor activity
  4. sensitive hits inside shared scope
  5. risk actions (downgrade/revoke)

Step 5: Restrict access if needed

# narrow scope
curl -s -X PATCH "https://www.aicoo.io/api/v1/os/share/{linkId}" \
  -H "Authorization: Bearer $PULSE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"scope":"folders","folderIds":[5,12]}' | jq .

# downgrade notes access
curl -s -X PATCH "https://www.aicoo.io/api/v1/os/share/{linkId}" \
  -H "Authorization: Bearer $PULSE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"notesAccess":"read"}' | jq .

# revoke
curl -s -X DELETE "https://www.aicoo.io/api/v1/os/share/{linkId}" \
  -H "Authorization: Bearer $PULSE_API_KEY" | jq .

Search Categories

CategoryTermsRisk
-----------------------
Financialrevenue, burn rate, pricing, salarymedium
Credentialspassword, token, key, secretcritical
Personalphone, address, SSN, privatehigh
Legalcontract, NDA, agreementhigh

版本历史

共 1 个版本

  • v2.0.0 当前
    2026-05-07 14:53 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

Inbox Monitoring

xisen-w
在用户想要监控 Pulse 收件箱活动、查看新对话/消息、跟踪待处理请求或执行定期收件箱检查时使用此技能。
★ 0 📥 402

Context Sync

xisen-w
Use this skill when the user wants to upload files to Aicoo, sync context, add knowledge to their agent, update what the
★ 0 📥 443

Autonomous Sync

xisen-w
使用此技能,当用户希望保持Aicoo代理自动更新、设置定时同步、配置知识更新触发器以及使用CRO...
★ 0 📥 436