skills$openclaw/side-peace
bitbrujo7.7kā˜…

by bitbrujo

side-peace – OpenClaw Skill

side-peace is an OpenClaw Skills integration for coding workflows. Minimal secure secret handoff. Zero external deps. Human opens browser form, submits secret, agent receives it via temp file. Secret NEVER appears in stdout/logs.

7.7k stars8.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameside-peace
descriptionMinimal secure secret handoff. Zero external deps. Human opens browser form, submits secret, agent receives it via temp file. Secret NEVER appears in stdout/logs. OpenClaw Skills integration.
ownerbitbrujo
repositorybitbrujo/side-peace
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @bitbrujo/side-peace
last updatedFeb 7, 2026

Maintainer

bitbrujo

bitbrujo

Maintains side-peace in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
274 B
drop.js
3.5 KB
SKILL.md
2.1 KB
SKILL.md

name: side-peace version: 1.1.0 description: Minimal secure secret handoff. Zero external deps. Human opens browser form, submits secret, agent receives it via temp file. Secret NEVER appears in stdout/logs.

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

  1. Agent runs node drop.js --label "API Key"
  2. Agent shares the URL with human
  3. Human opens URL in browser, pastes secret, submits
  4. Secret is saved to temp file (printed path only, not content)
  5. 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.

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

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

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install side-peace?

Run openclaw add @bitbrujo/side-peace in your terminal. This installs side-peace into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/bitbrujo/side-peace. Review commits and README documentation before installing.