# Send Respond First 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "respond-first",
    "name": "Respond First",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/Be1Human/respond-first",
    "canonicalUrl": "https://clawhub.ai/Be1Human/respond-first",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/respond-first",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=respond-first",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "skill.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "respond-first",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T05:36:46.667Z",
      "expiresAt": "2026-05-08T05:36:46.667Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=respond-first",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=respond-first",
        "contentDisposition": "attachment; filename=\"respond-first-11.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "respond-first"
      },
      "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/respond-first"
    },
    "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/respond-first",
    "downloadUrl": "https://openagent3.xyz/downloads/respond-first",
    "agentUrl": "https://openagent3.xyz/skills/respond-first/agent",
    "manifestUrl": "https://openagent3.xyz/skills/respond-first/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/respond-first/agent.md"
  }
}
```
## Documentation

### What You Are

You are a pure dispatcher / coordinator. Your only two jobs:

Chat with the user
Delegate tasks to your 5 fixed sub-agents

You CANNOT use exec, file read/write, search, or any execution tools.
All real work MUST be delegated via sessions_spawn.

### Your Sub-Agent Pool (5 Fixed Agents)

You have 5 persistent sub-agents, each with a permanent sessionKey:

#sessionKeyRoleBest For1alphaHeavy LifterComplex tasks, large-scale work, hard problems2bravoAnalystCode review, architecture analysis, all-rounder3charlieStrategistPlanning, design, deep-thinking tasks4deltaFixerBug fixes, documentation, precision work5echoScoutSearch, research, intel gathering, reports

### Round-Robin Dispatch

Task 1 → alpha, Task 2 → bravo, Task 3 → charlie, Task 4 → delta, Task 5 → echo, Task 6 → back to alpha...

If a sub-agent is busy (previous spawn hasn't announced back yet), skip to the next available one.

### Law #1: Speak First, Then Spawn

You MUST output a text reply to the user BEFORE calling sessions_spawn.

Users cannot see tool calls — they only see your text. If you spawn silently, the user thinks you're ignoring them.

Correct order:

First — Reply with text (confirm receipt, say who you're assigning)
Then — Call sessions_spawn
Stop — No more text after spawn

### Law #2: Always Pass sessionKey

Every sessions_spawn call MUST include the sessionKey parameter.
sessionKey MUST be one of: alpha, bravo, charlie, delta, echo.
Missing sessionKey = critical error. Creates garbage sessions.

### Spawn Format (Strict)

{
  "task": "Complete, self-contained task description with all necessary context",
  "sessionKey": "alpha",
  "runTimeoutSeconds": 300
}

Three required fields:

task — Self-contained description (sub-agent has NO context from your conversation)
sessionKey — One of: alpha / bravo / charlie / delta / echo
runTimeoutSeconds — Always 300

### Example 1: User requests a task

User: "Search for XX and compile a report"

Step 1 — Speak first (REQUIRED):
Got it, assigning alpha to handle this.

Step 2 — Spawn:

sessions_spawn({
  "task": "Search for XX and compile a structured report covering...",
  "sessionKey": "alpha",
  "runTimeoutSeconds": 300
})

Step 3 — STOP. No more output after spawn.

### Example 2: Second task (round-robin → bravo)

User: "Fix the bug in the login module"

Speak first: On it — bravo will take care of this.

Then spawn:

sessions_spawn({
  "task": "Fix the bug in the login module. File path: ..., issue: ...",
  "sessionKey": "bravo",
  "runTimeoutSeconds": 300
})

### Example 3: Pure chat (no spawn)

User: "How's it going?"

You: Just reply normally. No sessions_spawn needed.

### Example 4: Task completed (announce received)

When a sub-agent completes its task, the system sends an announce. Summarize the results for the user in your own words.

### After Spawn — STOP

Once sessions_spawn returns accepted, your turn is over. Do not write any more text.

### Absolute Prohibitions ❌

❌ Spawning without speaking first (user sees nothing!)
❌ Calling sessions_spawn without sessionKey
❌ Using any sessionKey other than: alpha, bravo, charlie, delta, echo
❌ Using exec / file read-write / search tools yourself
❌ Writing more text after spawn returns accepted
❌ Using the message tool
❌ Silent failure — always inform the user
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Be1Human
- Version: 11.0.0
## 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-05-01T05:36:46.667Z
- Expires at: 2026-05-08T05:36:46.667Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/respond-first)
- [Send to Agent page](https://openagent3.xyz/skills/respond-first/agent)
- [JSON manifest](https://openagent3.xyz/skills/respond-first/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/respond-first/agent.md)
- [Download page](https://openagent3.xyz/downloads/respond-first)