Hey summon
/install heysummon
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:
- Go to your HeySummon dashboard
- Navigate to Users → Create user profile (or ask provider for client key)
- 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
| Script | Purpose |
|---|---|
setup.sh |
Start the platform event watcher (pm2/nohup) |
teardown.sh |
Stop the watcher |
platform-watcher.sh |
SSE listener → sends notifications via OpenClaw |
submit-request.sh |
Submit a help request |
add-provider.sh |
Register a provider |
list-providers.sh |
List registered providers |
check-status.sh |
Check request status |
crypto.mjs |
E2E encryption: keygen, encrypt, decrypt |
auto-sync.sh |
Git 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 \x3CREQUEST_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
| Status | Meaning |
|---|---|
pending |
Waiting for provider to accept |
active |
Key exchange done — conversation in progress |
closed |
Closed by either party |
expired |
No response within 72 hours |
Environment Variables
| Variable | Default | Description |
|---|---|---|
HEYSUMMON_BASE_URL |
http://localhost:3445 |
Platform API URL |
HEYSUMMON_API_KEY |
(required) | Client API key (hs_cli_...) |
HEYSUMMON_NOTIFY_MODE |
message |
Notification mode: message or file |
HEYSUMMON_NOTIFY_TARGET |
(required for message mode) | Chat ID for notifications |
HEYSUMMON_KEY_DIR |
{skill}/.keys |
Directory for encryption keypairs |
HEYSUMMON_REQUESTS_DIR |
{skill}/.requests |
Directory for active request tracking |
HEYSUMMON_PROVIDERS_FILE |
{skill}/providers.json |
Provider 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:
.envproviders.json.keys/directory.requests/directory
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install heysummon - 安装完成后,直接呼叫该 Skill 的名称或使用
/heysummon触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Hey summon 是什么?
Request expert help by submitting queries to the HeySummon platform, which routes them to registered human providers for assistance. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 378 次。
如何安装 Hey summon?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install heysummon」即可一键安装,无需额外配置。
Hey summon 是免费的吗?
是的,Hey summon 完全免费(开源免费),可自由下载、安装和使用。
Hey summon 支持哪些平台?
Hey summon 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Hey summon?
由 thomasansems(@thomasansems)开发并维护,当前版本 v0.1.0-beta。