Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Bridge Connector Skill

ASecurity

> **The Intelligent Connection Bridge**: A high-signal scouting agent that runs nightly to bridge you with the right people.

19 stars
0 votes
0 copies
1 views
Added 9/19/2026
ai-agentsgobashgitsecurity

Works with

cli

Security Analysis

A96/100
mediumInstalls packages at runtime which could introduce malicious dependencies

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add rondoflow/rondoflow --skill bridge-connector-skill --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Bridge Connector Skill?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Bridge Connector Skill
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/rondoflow-bridge-connector-skill/badge)](https://www.skillsdirectory.com/skills/rondoflow-bridge-connector-skill)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: bridge-connector-skill
description: "> **The Intelligent Connection Bridge**: A high-signal scouting agent that runs nightly to bridge you with the right people."
category: "AI & Agents"
author: community
version: "0.1.0"
icon: bot
---

# claw-clawbridge

> **The Intelligent Connection Bridge**: A high-signal scouting agent that runs nightly to bridge you with the right people. 

## Overview

Clawbridge transforms a simple human prompt into a persistent, nightly scouting operation. It doesn't just find leads; it builds a bridge between your goals and the people who can help you achieve them.

1. **Human Intent**: You define what you offer and who you're looking for once.
2. **Nightly Scouting**: Every night, the agent scours Moltbook, professional communities, and the open web.
3. **Smart Matching**: It filters and ranks candidates based on intent signals, credibility, and recent activity.
4. **Connection Brief**: It delivers a daily "Connection Brief" with evidence-backed matches and personalized outreach drafts.
5. **Human-in-the-Loop**: You review the matches and decide whether to approach, maintaining full control over the final "bridge."

## Installation

### Via ClawHub (Recommended)

```bash
# Install the ClawHub CLI
npm install -g clawhub

# Install this skill
clawhub install claw-clawbridge
```

### Via Legacy clawdbot CLI

```bash
# From registry
clawdbot skills install claw-clawbridge

# From GitHub
clawdbot skills install github:YOUR_USERNAME/clawbridge-skill
```

### Manual

Clone and copy to your OpenClaw workspace:

```bash
git clone https://github.com/YOUR_USERNAME/clawbridge-skill.git ~/.openclaw/workspace/skills/claw-clawbridge
openclaw gateway restart
```

## Inputs

The skill requires the following inputs:

### 1. Project Profile (required)

```yaml
offer: "What your agency/company offers"
ask: "What you want (partners, clients, co-marketing, advisors)"
ideal_persona: "Exact target persona(s)"
verticals:
  - "keyword1"
  - "keyword2"
  - "keyword3"
geo_timezone: "optional - geographic/timezone preferences"
disallowed:
  - "do not contact constraints"
tone: "Short style guidance for draft messages"
```

### 2. Constraints (optional)

```yaml
no_spam_rules:
  - "No cold outreach to competitors"
  - "Respect unsubscribe requests"
regions:
  - "US"
  - "EU"
avoid_list:
  - "competitor@example.com"
  - "@spam_account"
```

### 3. Targets (optional)

```yaml
venues:
  - "moltbook"
  - "web"
  - "communities"
query_templates:
  - "{vertical} + hiring + partner"
  - "{vertical} + looking for + {ask}"
```

### 4. Run Budget (optional)

```yaml
max_searches: 20
max_fetches: 50
max_minutes: 10
```

## Tools Used

This skill uses the following OpenClaw tools:

| Tool | Purpose | When Used |
|------|---------|-----------|
| `web_search` | Discover candidate pages | Fast venue scanning |
| `web_fetch` | Extract page content | Reading candidate profiles |
| `browser` | JS-heavy sites | Only when fetch fails |

## Security Requirements

⚠️ **MUST follow these security defaults:**

1. **Keep secrets out of prompts** - Pass via env/config only
2. **Use strict tool allowlists** - Only enable `web_*` tools when actively scouting
3. **Human-in-the-loop** - NEVER auto-send outreach in MVP
4. **Rate limiting** - Respect run budget constraints
5. **Avoid list enforcement** - Never contact entries in avoid_list

## Execution Flow

```
┌─────────────────────────────────────────────────────────────────┐
│                     DISCOVERY PHASE                             │
│  ┌──────────┐    ┌──────────┐    ┌──────────┐                  │
│  │web_search│───▶│ Filter   │───▶│ Dedupe   │                  │
│  │ (venues) │    │ Results  │    │ & Queue  │                  │
│  └──────────┘    └──────────┘    └──────────┘                  │
└─────────────────────────────────────────────────────────────────┘
                           │
                           ▼
┌─────────────────────────────────────────────────────────────────┐
│                     ENRICHMENT PHASE                            │
│  ┌──────────┐    ┌──────────┐    ┌──────────┐                  │
│  │web_fetch │───▶│ Extract  │───▶│ Validate │                  │
│  │ (pages)  │    │ Signals  │    │ Evidence │                  │
│  └──────────┘    └──────────┘    └──────────┘                  │
└─────────────────────────────────────────────────────────────────┘
                           │
                           ▼
┌─────────────────────────────────────────────────────────────────┐
│                     RANKING PHASE                               │
│  ┌──────────┐    ┌──────────┐    ┌──────────┐                  │
│  │  Score   │───▶│  Rank    │───▶│  Top K   │                  │
│  │ Heuristic│    │  Sort    │    │ Selection│                  │
│  └──────────┘    └──────────┘    └──────────┘                  │
└─────────────────────────────────────────────────────────────────┘
                           │
                           ▼
┌─────────────────────────────────────────────────────────────────┐
│                     DRAFTING PHASE                              │
│  ┌──────────┐    ┌──────────┐    ┌──────────┐                  │
│  │  Draft   │───▶│  Review  │───▶│  Output  │                  │
│  │ Messages │    │  Tone    │    │  Brief   │                  │
│  └──────────┘    └──────────┘    └──────────┘                  │
└─────────────────────────────────────────────────────────────────┘
```

## Output

The skill outputs a **Connection Brief** in two formats:

### 1. Structured JSON (`run.json`)

See `schema/connection_brief.json` for the full schema.

### 2. Human-Readable Markdown (`run.md`)

See `examples/sample_run.md` for a sample report.

## Candidate Selection Rules

### Hard Requirements (discard if missing)

- ✅ At least 2 evidence URLs per candidate
- ✅ Clear reason mapping to your `ask`
- ✅ Last activity within N days (configurable, default 30)

### Risk Flags

Candidates are flagged if they exhibit:

- 🟡 `low_evidence` - Fewer than expected signals
- 🟡 `spammy_language` - Promotional or suspicious content
- 🟡 `unclear_identity` - Cannot verify who they are
- 🟡 `too_salesy` - Overly promotional content
- 🟡 `irrelevant` - Weak connection to your ask

## Ranking Heuristic (v1)

Each candidate is scored on:

| Factor | Weight | Description |
|--------|--------|-------------|
| Relevance | 30% | Match to keywords + ask |
| Intent | 25% | Actively building/hiring/seeking |
| Credibility | 20% | Consistent footprint across sources |
| Recency | 15% | Recent activity signals |
| Engagement | 10% | Mutual interests/communities |

**Output:** Top K candidates (default K=3, configurable 5-10)

## Examples

See the `examples/` directory for:

- `sample_run.json` - Full JSON output example
- `sample_run.md` - Human-readable report example

## Prompts

The skill uses modular prompts located in `prompts/`:

- `discovery.md` - How to search for candidates
- `filtering.md` - How to apply hard requirements
- `ranking.md` - How to score and rank candidates
- `drafting.md` - How to write outreach messages

## Venues

Venue-specific search strategies are in `venues/`:

- `moltbook.md` - Moltbook platform scouting
- `web.md` - General web search strategies
- `communities.md` - Community/forum discovery

## Configuration

### Environment Variables

```bash
# Optional: Override defaults
CLAWBRIDGE_TOP_K=5                    # Number of candidates to return
CLAWBRIDGE_RECENCY_DAYS=30           # Activity recency threshold
CLAWBRIDGE_MAX_SEARCHES=20           # Max search queries per run
CLAWBRIDGE_MAX_FETCHES=50            # Max page fetches per run
```

### Workspace Configuration

The skill reads workspace config from the runner or vault:

```yaml
workspace_id: "ws_abc123"
workspace_token: "tok_..."  # For vault uploads
delivery_target: "discord"  # or "slack" or "email"
```

## License

MIT License - See LICENSE file for details.

## Contributing

Contributions welcome! Please read the prompts carefully and ensure any changes maintain:

1. Deterministic output schema
2. No secrets in prompts
3. Human-in-the-loop requirement
4. Evidence-based candidate selection

Attribution

rondoflowrondoflow
View sourceMore from rondoflow →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1066601 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693161 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →