skills$openclaw/clawbridge
lich20001175.8kā˜…

by lich2000117

clawbridge – OpenClaw Skill

clawbridge is an OpenClaw Skills integration for coding workflows. Run Clawbridge discovery from OpenClaw chat

5.8k stars6.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameclawbridge
descriptionRun Clawbridge discovery from OpenClaw chat OpenClaw Skills integration.
ownerlich2000117
repositorylich2000117/clawbridge-skill-latest
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lich2000117/clawbridge-skill-latest
last updatedFeb 7, 2026

Maintainer

lich2000117

lich2000117

Maintains clawbridge in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
_meta.json
314 B
package.json
518 B
README.md
931 B
SKILL.md
2.8 KB
SKILL.md

name: clawbridge description: Run Clawbridge discovery from OpenClaw chat metadata: openclaw: emoji: "šŸŒ‰" homepage: "https://clawbridge.cloud" requires: bins: ["clawbridge"] install: - id: "install-script" kind: "shell" label: "Install via script (recommended)" command: "curl -fsSL https://clawbridge.cloud/install | bash" bins: ["clawbridge"]

Clawbridge Skill

Optional chat command to trigger Clawbridge from OpenClaw.

What This Skill Does

This skill is a thin trigger — it runs the Clawbridge CLI and returns the Vault link.

The skill does NOT do discovery. All business logic lives in the runner.

Behavior

When the user types /clawbridge:

  1. Exec: Run clawbridge run locally
  2. Parse stdout: Extract machine-readable lines:
    • VAULT_URL=...
    • CANDIDATES_COUNT=...
    • DISCOVERY_SOURCE=... (optional)
  3. Reply in chat:
    • "Done — found X candidates."
    • "Review here: <vault url>"

Usage

/clawbridge

Or with a profile:

/clawbridge --profile myprofile

Example Output

Done — found 3 candidates.

Review here: https://clawbridge.cloud/app/workspaces/xxx/runs/xxx

Prerequisites

Don't have Clawbridge yet? Get started at:

šŸ‘‰ https://clawbridge.cloud

  1. Create an account
  2. Create a workspace
  3. Follow the setup instructions

Or if you already have an account:

# 1. Install runner
curl -fsSL https://clawbridge.cloud/install | bash

# 2. Link workspace (get code from your workspace page)
clawbridge link CB-XXXXXX

Architecture

User: /clawbridge
        │
        ā–¼
ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”
│  Skill: exec clawbridge run   │
ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜
        │
        ā–¼
ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”
│  Runner: Discovery workflow   │
│  - Build prompts (private)    │
│  - Call OpenClaw as worker    │
│  - Upload to Vault            │
│  - Print VAULT_URL=...        │
ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜
        │
        ā–¼
ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”
│  Skill: Parse + reply         │
ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜

Mental Model

  • Runner = product (owns discovery strategy, prompts, ranking)
  • Web = vault + approval (review candidates, approve outreach)
  • Skill = chat shortcut (optional convenience)

You don't need this skill to use Clawbridge. Run clawbridge run directly from terminal.

README.md

Clawbridge Skill

Optional: Adds /clawbridge chat command to OpenClaw. It calls the runner.

Do You Need This?

Most users don't need this skill. Use the CLI directly:

clawbridge run

Only install this skill if you want to trigger Clawbridge from OpenClaw chat.

Install

First, set up Clawbridge runner:

  1. Go to https://clawbridge.cloud
  2. Create an account and workspace
  3. Follow the install instructions

Then install this skill:

openclaw skills install claw-clawbridge

Usage

In OpenClaw chat:

/clawbridge

What It Does

  1. Runs clawbridge run
  2. Parses output (VAULT_URL=, CANDIDATES_COUNT=)
  3. Replies with candidate count and Vault link

Architecture

  • Skill = thin trigger (this repo)
  • Runner = product engine (private, owns all logic)

The skill does NOT contain discovery prompts, venues, or business logic.

License

MIT

Permissions & Security

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

Requirements

**Don't have Clawbridge yet?** Get started at: šŸ‘‰ **https://clawbridge.cloud** 1. Create an account 2. Create a workspace 3. Follow the setup instructions Or if you already have an account: ```bash

FAQ

How do I install clawbridge?

Run openclaw add @lich2000117/clawbridge-skill-latest in your terminal. This installs clawbridge 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/lich2000117/clawbridge-skill-latest. Review commits and README documentation before installing.