← 返回
效率工具 Key 中文

Hey summon

Request expert help by submitting queries to the HeySummon platform, which routes them to registered human providers for assistance.
在HeySummon平台提交查询,平台将把请求转接给已注册的人工服务提供者以获取帮助。
thomasansems
效率工具 clawhub v0.1.0-beta 1 版本 99864.1 Key: 需要
★ 0
Stars
📥 735
下载
💾 6
安装
1
版本
#latest

概述

HeySummon Consumer Skill

When you (an AI agent) get stuck, request help from a human expert via HeySummon.

When someone requests help, the skill submits a request to the HeySummon platform. The platform matches it to a registered provider (human expert) who can assist. Users can say "Hey summon John Doe to help" or "Hey summon a Python expert to help". The skill then routes the request to the appropriate provider based on the registered providers in providers.json.

Setup

Step 1: Configure Environment

Create .env in the skill directory with your HeySummon platform details:

HEYSUMMON_BASE_URL=http://localhost:3445
HEYSUMMON_API_KEY=hs_cli_your_key_here
HEYSUMMON_NOTIFY_MODE=message
HEYSUMMON_NOTIFY_TARGET=your_chat_id

Platform Options:

  • Self-hosted: Use your local/server URL (e.g., http://localhost:3445)
  • Cloud: Use https://cloud.heysummon.ai

Get API Key:

  1. Go to your HeySummon dashboard
  2. Navigate to Users → Create user profile (or ask provider for client key)
  3. Create a client key (starts with hs_cli_...)

⚠️ Security: API keys starting with hs_prov_ are provider keys (not client keys). These will be rejected.

Step 2: Register Provider(s)

bash scripts/add-provider.sh "hs_cli_your_key" "FriendlyName"

This fetches provider info from the platform and stores it locally. You can register multiple providers for routing.

List registered providers:

bash scripts/list-providers.sh

Step 3: Start Event Watcher

bash scripts/setup.sh

This starts a persistent SSE listener that connects to the platform's event stream (/api/v1/events/stream). You'll receive notifications when providers respond.

To stop:

bash scripts/teardown.sh

Architecture

HeySummon Platform API (/api/v1/events/stream)
           ↓
    SSE Event Stream
           ↓
   Platform Watcher (pm2)
           ↓
   OpenClaw Notification
           ↓
        Your Chat

All communication flows through the platform API. E2E encryption is handled server-side.

Scripts

ScriptPurpose
-----------------
setup.shStart the platform event watcher (pm2/nohup)
teardown.shStop the watcher
platform-watcher.shSSE listener → sends notifications via OpenClaw
submit-request.shSubmit a help request
add-provider.shRegister a provider
list-providers.shList registered providers
check-status.shCheck request status
crypto.mjsE2E encryption: keygen, encrypt, decrypt
auto-sync.shGit auto-sync (cron job)

Usage

Submit a Help Request

To a specific provider:

bash scripts/submit-request.sh "Your question" '[{"role":"user","content":"context"}]' "ProviderName"

To default provider (from .env):

bash scripts/submit-request.sh "Your question" '[{"role":"user","content":"context"}]'

Provider routing: The script matches provider names case-insensitively from providers.json. If no match is found, it shows available providers and exits.

Wait for Response

The platform watcher handles real-time notifications:

  • 🔑 Key exchange — provider connected
  • 📩 New message — provider responded
  • 🔒 Closed — conversation ended

Check Status (Fallback)

bash scripts/check-status.sh <REQUEST_ID>

When to Use

Use HeySummon when you are truly stuck:

  • Ambiguous requirements needing clarification
  • Domain expertise required
  • Blocked by something you can't resolve autonomously

Request Statuses

StatusMeaning
------
pendingWaiting for provider to accept
activeKey exchange done — conversation in progress
closedClosed by either party
expiredNo response within 72 hours

Environment Variables

VariableDefaultDescription
--------------------------------
HEYSUMMON_BASE_URLhttp://localhost:3445Platform API URL
HEYSUMMON_API_KEY(required)Client API key (hs_cli_...)
HEYSUMMON_NOTIFY_MODEmessageNotification mode: message or file
HEYSUMMON_NOTIFY_TARGET(required for message mode)Chat ID for notifications
HEYSUMMON_KEY_DIR{skill}/.keysDirectory for encryption keypairs
HEYSUMMON_REQUESTS_DIR{skill}/.requestsDirectory for active request tracking
HEYSUMMON_PROVIDERS_FILE{skill}/providers.jsonProvider registry file

Security

  • API keys stored in .env (gitignored)
  • Keypairs stored in .keys/ (gitignored)
  • Providers stored in providers.json (gitignored)
  • All paths relative to skill directory
  • E2E encryption handled by platform
  • No hardcoded credentials in code

Never commit:

  • .env
  • providers.json
  • .keys/ directory
  • .requests/ directory

版本历史

共 1 个版本

  • v0.1.0-beta 当前
    2026-03-30 05:37 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

productivity

Word / DOCX

ivangdavila
创建、检查和编辑 Microsoft Word 文档及 DOCX 文件,支持样式、编号、修订记录、表格、分节符及兼容性检查等功能。
★ 440 📥 147,879
productivity

Nano Pdf

steipete
使用nano-pdf CLI通过自然语言指令编辑PDF
★ 275 📥 114,895
productivity

Weather

steipete
获取当前天气和预报(无需API密钥)
★ 446 📥 226,379