{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/side-peace",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=side-peace",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "drop.js"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/side-peace",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Side_Peace 🍒",
        "body": "Dead simple secret handoff from human to AI. No npm packages to trust — just Node.js built-ins.\n\nKey security feature: Secret is written to a temp file, NEVER printed to stdout. This prevents secrets from appearing in chat logs or command output."
      },
      {
        "title": "How It Works",
        "body": "Agent runs node drop.js --label \"API Key\"\nAgent shares the URL with human\nHuman opens URL in browser, pastes secret, submits\nSecret is saved to temp file (printed path only, not content)\nAgent reads file, uses secret, deletes file"
      },
      {
        "title": "Usage",
        "body": "# Basic - secret saved to random temp file\nnode skills/side-peace/drop.js --label \"CLAWHUB_TOKEN\"\n\n# Custom output path\nnode skills/side-peace/drop.js --label \"API_KEY\" --output /tmp/my-secret.txt\n\n# Custom port\nnode skills/side-peace/drop.js --port 4000 --label \"TOKEN\""
      },
      {
        "title": "Reading the Secret",
        "body": "After receiving, the secret is in the temp file:\n\n# Read and use (example with clawhub)\nSECRET=$(cat /tmp/side-peace-xxx.secret)\nnpx clawhub login --token \"$SECRET\" --no-browser\nrm /tmp/side-peace-xxx.secret\n\nOr one-liner:\n\ncat /tmp/side-peace-xxx.secret | xargs -I{} npx clawhub login --token {} --no-browser; rm /tmp/side-peace-xxx.secret"
      },
      {
        "title": "Security",
        "body": "Zero dependencies — only Node.js built-ins\nSecret never in stdout — written to file with 0600 permissions\nMemory only until saved — temp file deleted after use\nOne-time — server exits after receiving\n~60 lines — fully auditable"
      },
      {
        "title": "Output",
        "body": "🍒 Side_Peace waiting...\n   Label: CLAWHUB_TOKEN\n   Output: /tmp/side-peace-a1b2c3d4.secret\n\n   Local:    http://localhost:3000\n   Network:  http://192.168.1.94:3000\n\nWaiting for secret...\n\n✓ Secret received and saved.\n  File: /tmp/side-peace-a1b2c3d4.secret\n  (Secret is NOT printed to stdout for security)\n\nThe secret is in the file. Read it, use it, delete it."
      }
    ],
    "body": "Side_Peace 🍒\n\nDead simple secret handoff from human to AI. No npm packages to trust — just Node.js built-ins.\n\nKey security feature: Secret is written to a temp file, NEVER printed to stdout. This prevents secrets from appearing in chat logs or command output.\n\nHow It Works\nAgent runs node drop.js --label \"API Key\"\nAgent shares the URL with human\nHuman opens URL in browser, pastes secret, submits\nSecret is saved to temp file (printed path only, not content)\nAgent reads file, uses secret, deletes file\nUsage\n# Basic - secret saved to random temp file\nnode skills/side-peace/drop.js --label \"CLAWHUB_TOKEN\"\n\n# Custom output path\nnode skills/side-peace/drop.js --label \"API_KEY\" --output /tmp/my-secret.txt\n\n# Custom port\nnode skills/side-peace/drop.js --port 4000 --label \"TOKEN\"\n\nReading the Secret\n\nAfter receiving, the secret is in the temp file:\n\n# Read and use (example with clawhub)\nSECRET=$(cat /tmp/side-peace-xxx.secret)\nnpx clawhub login --token \"$SECRET\" --no-browser\nrm /tmp/side-peace-xxx.secret\n\n\nOr one-liner:\n\ncat /tmp/side-peace-xxx.secret | xargs -I{} npx clawhub login --token {} --no-browser; rm /tmp/side-peace-xxx.secret\n\nSecurity\nZero dependencies — only Node.js built-ins\nSecret never in stdout — written to file with 0600 permissions\nMemory only until saved — temp file deleted after use\nOne-time — server exits after receiving\n~60 lines — fully auditable\nOutput\n🍒 Side_Peace waiting...\n   Label: CLAWHUB_TOKEN\n   Output: /tmp/side-peace-a1b2c3d4.secret\n\n   Local:    http://localhost:3000\n   Network:  http://192.168.1.94:3000\n\nWaiting for secret...\n\n✓ Secret received and saved.\n  File: /tmp/side-peace-a1b2c3d4.secret\n  (Secret is NOT printed to stdout for security)\n\n\nThe secret is in the file. Read it, use it, delete it."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/BitBrujo/side-peace",
    "publisherUrl": "https://clawhub.ai/BitBrujo/side-peace",
    "owner": "BitBrujo",
    "version": "1.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}