# Send Side Peace 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": "side-peace",
    "name": "Side Peace",
    "source": "tencent",
    "type": "skill",
    "category": "安全合规",
    "sourceUrl": "https://clawhub.ai/BitBrujo/side-peace",
    "canonicalUrl": "https://clawhub.ai/BitBrujo/side-peace",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/side-peace",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=side-peace",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "drop.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "side-peace",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T15:38:01.585Z",
      "expiresAt": "2026-05-06T15:38:01.585Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=side-peace",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=side-peace",
        "contentDisposition": "attachment; filename=\"side-peace-1.1.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "side-peace"
      },
      "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/side-peace"
    },
    "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/side-peace",
    "downloadUrl": "https://openagent3.xyz/downloads/side-peace",
    "agentUrl": "https://openagent3.xyz/skills/side-peace/agent",
    "manifestUrl": "https://openagent3.xyz/skills/side-peace/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/side-peace/agent.md"
  }
}
```
## Documentation

### Side_Peace 🍒

Dead simple secret handoff from human to AI. No npm packages to trust — just Node.js built-ins.

Key security feature: Secret is written to a temp file, NEVER printed to stdout. This prevents secrets from appearing in chat logs or command output.

### How It Works

Agent runs node drop.js --label "API Key"
Agent shares the URL with human
Human opens URL in browser, pastes secret, submits
Secret is saved to temp file (printed path only, not content)
Agent reads file, uses secret, deletes file

### Usage

# Basic - secret saved to random temp file
node skills/side-peace/drop.js --label "CLAWHUB_TOKEN"

# Custom output path
node skills/side-peace/drop.js --label "API_KEY" --output /tmp/my-secret.txt

# Custom port
node skills/side-peace/drop.js --port 4000 --label "TOKEN"

### Reading the Secret

After receiving, the secret is in the temp file:

# Read and use (example with clawhub)
SECRET=$(cat /tmp/side-peace-xxx.secret)
npx clawhub login --token "$SECRET" --no-browser
rm /tmp/side-peace-xxx.secret

Or one-liner:

cat /tmp/side-peace-xxx.secret | xargs -I{} npx clawhub login --token {} --no-browser; rm /tmp/side-peace-xxx.secret

### Security

Zero dependencies — only Node.js built-ins
Secret never in stdout — written to file with 0600 permissions
Memory only until saved — temp file deleted after use
One-time — server exits after receiving
~60 lines — fully auditable

### Output

🍒 Side_Peace waiting...
   Label: CLAWHUB_TOKEN
   Output: /tmp/side-peace-a1b2c3d4.secret

   Local:    http://localhost:3000
   Network:  http://192.168.1.94:3000

Waiting for secret...

✓ Secret received and saved.
  File: /tmp/side-peace-a1b2c3d4.secret
  (Secret is NOT printed to stdout for security)

The secret is in the file. Read it, use it, delete it.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: BitBrujo
- Version: 1.1.1
## 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-29T15:38:01.585Z
- Expires at: 2026-05-06T15:38:01.585Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/side-peace)
- [Send to Agent page](https://openagent3.xyz/skills/side-peace/agent)
- [JSON manifest](https://openagent3.xyz/skills/side-peace/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/side-peace/agent.md)
- [Download page](https://openagent3.xyz/downloads/side-peace)