# Send Hey summon to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "heysummon",
    "name": "Hey summon",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/thomasansems/heysummon",
    "canonicalUrl": "https://clawhub.ai/thomasansems/heysummon",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/heysummon",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=heysummon",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/setup.sh",
      "scripts/auto-sync.sh",
      "scripts/check-status.sh",
      "scripts/platform-watcher.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "heysummon",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T20:13:39.808Z",
      "expiresAt": "2026-05-06T20:13:39.808Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=heysummon",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=heysummon",
        "contentDisposition": "attachment; filename=\"heysummon-0.1.0-beta.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "heysummon"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/heysummon"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/heysummon",
    "downloadUrl": "https://openagent3.xyz/downloads/heysummon",
    "agentUrl": "https://openagent3.xyz/skills/heysummon/agent",
    "manifestUrl": "https://openagent3.xyz/skills/heysummon/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/heysummon/agent.md"
  }
}
```
## Documentation

### 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.

### 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

ScriptPurposesetup.shStart the platform event watcher (pm2/nohup)teardown.shStop the watcherplatform-watcher.shSSE listener → sends notifications via OpenClawsubmit-request.shSubmit a help requestadd-provider.shRegister a providerlist-providers.shList registered providerscheck-status.shCheck request statuscrypto.mjsE2E encryption: keygen, encrypt, decryptauto-sync.shGit auto-sync (cron job)

### 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

StatusMeaningpendingWaiting for provider to acceptactiveKey exchange done — conversation in progressclosedClosed by either partyexpiredNo response within 72 hours

### Environment Variables

VariableDefaultDescriptionHEYSUMMON_BASE_URLhttp://localhost:3445Platform API URLHEYSUMMON_API_KEY(required)Client API key (hs_cli_...)HEYSUMMON_NOTIFY_MODEmessageNotification mode: message or fileHEYSUMMON_NOTIFY_TARGET(required for message mode)Chat ID for notificationsHEYSUMMON_KEY_DIR{skill}/.keysDirectory for encryption keypairsHEYSUMMON_REQUESTS_DIR{skill}/.requestsDirectory for active request trackingHEYSUMMON_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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: thomasansems
- Version: 0.1.0-beta
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T20:13:39.808Z
- Expires at: 2026-05-06T20:13:39.808Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/heysummon)
- [Send to Agent page](https://openagent3.xyz/skills/heysummon/agent)
- [JSON manifest](https://openagent3.xyz/skills/heysummon/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/heysummon/agent.md)
- [Download page](https://openagent3.xyz/downloads/heysummon)