Crawler Summary

claude-bridge answer-first brief

Use when the user needs to query, analyze, or collaborate with another project's codebase by spawning a second Claude CLI instance. Enables cross-project communication between a frontend and backend, microservices, or any two codebases. Triggers on phrases like "ask backend", "bridge to", "check the other project", "query project X". --- name: claude-bridge description: Use when the user needs to query, analyze, or collaborate with another project's codebase by spawning a second Claude CLI instance. Enables cross-project communication between a frontend and backend, microservices, or any two codebases. Triggers on phrases like "ask backend", "bridge to", "check the other project", "query project X". --- Claude Bridge Skill Guide Overview Spawns a Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.

Freshness

Last checked 4/15/2026

Best For

claude-bridge is best for continue, multi workflows where OpenClaw compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack

Claim this agent
Agent DossierGitHubSafety: 94/100

claude-bridge

Use when the user needs to query, analyze, or collaborate with another project's codebase by spawning a second Claude CLI instance. Enables cross-project communication between a frontend and backend, microservices, or any two codebases. Triggers on phrases like "ask backend", "bridge to", "check the other project", "query project X". --- name: claude-bridge description: Use when the user needs to query, analyze, or collaborate with another project's codebase by spawning a second Claude CLI instance. Enables cross-project communication between a frontend and backend, microservices, or any two codebases. Triggers on phrases like "ask backend", "bridge to", "check the other project", "query project X". --- Claude Bridge Skill Guide Overview Spawns a

OpenClawself-declared

Public facts

5

Change events

1

Artifacts

0

Freshness

Apr 15, 2026

Verifiededitorial-contentNo verified compatibility signals1 GitHub stars

Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.

1 GitHub starsTrust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 15, 2026

Vendor

Enesgur

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.

Setup snapshot

git clone https://github.com/enesgur/claude-bridge.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Enesgur

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 15, 2026Source linkProvenance
Adoption (1)

Adoption signal

1 GitHub stars

profilemedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB OPENCLEW

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Parameters

Executable Examples

json

{
  "defaults": {
    "model": "sonnet",
    "mode": "read-only"
  },
  "projects": {
    "backend": {
      "path": "/absolute/path/to/backend",
      "description": "NestJS backend API",
      "model": "sonnet"
    }
  }
}

text

You are analyzing this project to help a developer working in a separate [frontend/backend/service] project.

Context from the caller project:
---
[Insert relevant context: error message, type definition, API call code, etc.]
---

Task: [Clear, specific question or request]

Respond concisely. Focus only on what was asked.

bash

# Read-only analysis (default)
echo "<prompt>" | claude -p \
  --model <MODEL> \
  --output-format json \
  --permission-mode plan \
  --add-dir <TARGET_PROJECT_PATH> \
  2>/dev/null

# With edit capability (requires user confirmation first)
echo "<prompt>" | claude -p \
  --model <MODEL> \
  --output-format json \
  --permission-mode acceptEdits \
  --add-dir <TARGET_PROJECT_PATH> \
  2>/dev/null

json

{
  "type": "result",
  "subtype": "success",
  "is_error": false,
  "result": "Agent B's text response",
  "session_id": "uuid-for-resumption",
  "total_cost_usd": 0.05,
  "duration_ms": 3000
}

bash

echo "<follow-up prompt>" | claude -p \
  --resume <SESSION_ID> \
  --output-format json \
  2>/dev/null

text

You are analyzing this backend project to help a frontend developer.

Context from frontend:
---
I'm calling GET /api/users/:id but getting a 422 error.
My request code: fetch(`/api/users/${id}`, { headers: { Authorization: `Bearer ${token}` } })
---

Task: Find the route handler for GET /api/users/:id. What parameters does it expect? What validation does it apply? What does a successful response look like?

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Use when the user needs to query, analyze, or collaborate with another project's codebase by spawning a second Claude CLI instance. Enables cross-project communication between a frontend and backend, microservices, or any two codebases. Triggers on phrases like "ask backend", "bridge to", "check the other project", "query project X". --- name: claude-bridge description: Use when the user needs to query, analyze, or collaborate with another project's codebase by spawning a second Claude CLI instance. Enables cross-project communication between a frontend and backend, microservices, or any two codebases. Triggers on phrases like "ask backend", "bridge to", "check the other project", "query project X". --- Claude Bridge Skill Guide Overview Spawns a

Full README

name: claude-bridge description: Use when the user needs to query, analyze, or collaborate with another project's codebase by spawning a second Claude CLI instance. Enables cross-project communication between a frontend and backend, microservices, or any two codebases. Triggers on phrases like "ask backend", "bridge to", "check the other project", "query project X".

Claude Bridge Skill Guide

Overview

Spawns a second Claude CLI instance (claude -p) targeting a different project directory. The current session (Agent A) sends a prompt, receives structured JSON output from Agent B, and integrates the findings. Supports multi-turn cross-project conversations via session resumption.

Project Registry

Config file: ~/.claude/skills/claude-bridge/projects.json

Read this file at the start of every bridge invocation. It contains:

  • defaults — fallback model and mode
  • projects — alias-to-path mapping with optional per-project overrides
{
  "defaults": {
    "model": "sonnet",
    "mode": "read-only"
  },
  "projects": {
    "backend": {
      "path": "/absolute/path/to/backend",
      "description": "NestJS backend API",
      "model": "sonnet"
    }
  }
}

To add a new project, edit this JSON file. Each key is an alias usable in natural language.

How to Invoke

The skill supports 3 ways to specify the target project, from most convenient to most explicit:

1. By Alias (recommended for repeated use)

User says something like:

  • "ask backend about the users endpoint"
  • "bridge to frontend — what component renders the dashboard?"
  • "check backend for breaking changes"

Flow:

  1. Read projects.json
  2. Match the alias (e.g., "backend") to its registered path
  3. Use the project's configured model (or defaults.model)
  4. Execute immediately — no questions needed

2. By Explicit Path

User says something like:

  • "ask the project at /Users/enesgur/work/payment-service about..."
  • "bridge to /tmp/some-repo — analyze the auth flow"

Flow:

  1. Extract the path from the user's message
  2. Use defaults.model from config
  3. Execute immediately — no questions needed

3. No Path Given

User says something like:

  • "ask the other project about the API"
  • "I need info from the backend"

Flow:

  1. Read projects.json and list registered projects via AskUserQuestion
  2. Let the user pick a registered project OR type a custom path
  3. Then execute

Model Selection

The model is resolved in this priority order:

  1. User explicitly says it → use that model
    • "ask backend with opus about the architecture"
    • "bridge to frontend using haiku — quick question"
  2. Project-level configprojects.<alias>.model from projects.json
  3. Global defaultdefaults.model from projects.json
  4. Hardcoded fallbacksonnet

If the user says "use opus" or "with haiku", extract that and override everything else.

Running a Query

Step 1: Build the Prompt

Construct a clear, self-contained prompt for Agent B. Always include:

  • What information is needed
  • Relevant context from the current project (error messages, types, expected contracts)
  • The desired response format

Prompt template:

You are analyzing this project to help a developer working in a separate [frontend/backend/service] project.

Context from the caller project:
---
[Insert relevant context: error message, type definition, API call code, etc.]
---

Task: [Clear, specific question or request]

Respond concisely. Focus only on what was asked.

Step 2: Execute

# Read-only analysis (default)
echo "<prompt>" | claude -p \
  --model <MODEL> \
  --output-format json \
  --permission-mode plan \
  --add-dir <TARGET_PROJECT_PATH> \
  2>/dev/null

# With edit capability (requires user confirmation first)
echo "<prompt>" | claude -p \
  --model <MODEL> \
  --output-format json \
  --permission-mode acceptEdits \
  --add-dir <TARGET_PROJECT_PATH> \
  2>/dev/null

IMPORTANT:

  • Always append 2>/dev/null to suppress stderr noise.
  • Always use --output-format json for reliable parsing.
  • Use --add-dir to grant the spawned agent access to the target project directory.
  • For read-only queries, use --permission-mode plan.
  • For edit tasks, use --permission-mode acceptEdits and confirm with the user first.

Step 3: Parse the Response

The JSON output contains:

{
  "type": "result",
  "subtype": "success",
  "is_error": false,
  "result": "Agent B's text response",
  "session_id": "uuid-for-resumption",
  "total_cost_usd": 0.05,
  "duration_ms": 3000
}

Extract and present:

  • result — the actual answer from Agent B
  • session_id — save for potential follow-up
  • is_error — check for failures

Step 4: Present Results

Summarize Agent B's response. Include:

  • The answer/analysis from the target project
  • Session ID reference for follow-up: "You can continue this conversation by saying 'bridge resume' or asking a follow-up about [project alias]."

Resuming a Session

To continue a previous cross-project conversation:

echo "<follow-up prompt>" | claude -p \
  --resume <SESSION_ID> \
  --output-format json \
  2>/dev/null

When resuming:

  • Do NOT re-specify --model, --permission-mode, or --add-dir (inherited from original).
  • Only pass --resume, --output-format json, and the new prompt.

User triggers resume by saying:

  • "bridge resume — also check the middleware"
  • "follow up with backend — what about pagination?"
  • "ask backend again — show me the error handler too"

Managing Projects

Adding a project

When the user says "bridge add project" or "register project":

  1. Ask for alias, path, description, and optional model override via AskUserQuestion
  2. Read projects.json, add the new entry, write it back
  3. Confirm to the user

Listing projects

When the user says "bridge list" or "show bridge projects":

  1. Read projects.json
  2. Display a table of alias, path, description, model

Removing a project

When the user says "bridge remove [alias]":

  1. Read projects.json, remove the entry, write it back
  2. Confirm to the user

Quick Reference

| Scenario | Mode | Key Flags | | --- | --- | --- | | Ask about an API endpoint | read-only | --permission-mode plan --add-dir <PATH> | | Debug a cross-project error | read-only | --permission-mode plan --add-dir <PATH> | | Analyze dependencies/schemas | read-only | --permission-mode plan --add-dir <PATH> | | Apply a fix in target project | edit | --permission-mode acceptEdits --add-dir <PATH> | | Resume previous conversation | inherited | --resume <SESSION_ID> | | Deep architectural analysis | read-only | --model opus --permission-mode plan --add-dir <PATH> |

Common Scenarios

1. Frontend asks Backend about an endpoint

User says: "ask backend about the GET /api/users/:id endpoint — I'm getting a 422"

Prompt to Agent B:

You are analyzing this backend project to help a frontend developer.

Context from frontend:
---
I'm calling GET /api/users/:id but getting a 422 error.
My request code: fetch(`/api/users/${id}`, { headers: { Authorization: `Bearer ${token}` } })
---

Task: Find the route handler for GET /api/users/:id. What parameters does it expect? What validation does it apply? What does a successful response look like?

2. Debug a contract mismatch

User says: "bridge to backend — response shape doesn't match what we expect for user data"

Prompt to Agent B:

You are analyzing this backend project to help a frontend developer.

Context from frontend:
---
The frontend expects: { user: { id: string, name: string, email: string, avatar: string } }
But we receive: { data: { userId: number, fullName: string, emailAddress: string } }
---

Task: Find the serializer/response transformer for the user endpoint. Show the actual response structure and field names.

3. Check for breaking changes

User says: "ask backend with opus — did anything break for our user endpoints recently?"

4. Get TypeScript types from backend

User says: "ask backend with haiku — give me TypeScript interfaces for /api/auth/* endpoints"

Error Handling

  • If claude -p exits non-zero, report the error and ask whether to retry with different settings.
  • If is_error is true in the JSON, show the error message and suggest adjustments.
  • If the response is empty or malformed, check:
    1. Target project path exists and is accessible
    2. Model is available
  • If projects.json doesn't exist or is invalid, create a fresh one with defaults and ask the user to register their first project.

Safety Rules

  • NEVER use --dangerously-skip-permissions on the spawned instance.
  • NEVER use --permission-mode bypassPermissions without explicit user consent.
  • Default to --permission-mode plan (read-only) unless edits are explicitly requested.
  • Always confirm with the user before running in edit mode on another project.

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/enesgur-claude-bridge/snapshot"
curl -s "https://xpersona.co/api/v1/agents/enesgur-claude-bridge/contract"
curl -s "https://xpersona.co/api/v1/agents/enesgur-claude-bridge/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITHUB_REPOSactivepieces

Rank

70

AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents

Traction

No public download signal

Freshness

Updated 2d ago

OPENCLAW
GITHUB_REPOScherry-studio

Rank

70

AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs

Traction

No public download signal

Freshness

Updated 5d ago

MCPOPENCLAW
GITHUB_REPOSAionUi

Rank

70

Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!

Traction

No public download signal

Freshness

Updated 6d ago

MCPOPENCLAW
GITHUB_REPOSCopilotKit

Rank

70

The Frontend for Agents & Generative UI. React + Angular

Traction

No public download signal

Freshness

Updated 23d ago

OPENCLAW
Machine Appendix

Contract JSON

{
  "contractStatus": "missing",
  "authModes": [],
  "requires": [],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": null,
  "outputSchemaRef": null,
  "dataRegion": null,
  "contractUpdatedAt": null,
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/enesgur-claude-bridge/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/enesgur-claude-bridge/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/enesgur-claude-bridge/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/enesgur-claude-bridge/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/enesgur-claude-bridge/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/enesgur-claude-bridge/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "OPENCLEW"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "GITHUB_OPENCLEW",
      "generatedAt": "2026-04-16T23:38:17.690Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "OPENCLEW",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    },
    {
      "key": "continue",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "multi",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:continue|supported|profile capability:multi|supported|profile"
}

Facts JSON

[
  {
    "factKey": "docs_crawl",
    "category": "integration",
    "label": "Crawlable docs",
    "value": "6 indexed pages on the official domain",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  },
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Enesgur",
    "href": "https://github.com/enesgur/claude-bridge",
    "sourceUrl": "https://github.com/enesgur/claude-bridge",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T02:14:38.883Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/enesgur-claude-bridge/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/enesgur-claude-bridge/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-15T02:14:38.883Z",
    "isPublic": true
  },
  {
    "factKey": "traction",
    "category": "adoption",
    "label": "Adoption signal",
    "value": "1 GitHub stars",
    "href": "https://github.com/enesgur/claude-bridge",
    "sourceUrl": "https://github.com/enesgur/claude-bridge",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T02:14:38.883Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/enesgur-claude-bridge/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/enesgur-claude-bridge/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "docs_update",
    "title": "Docs refreshed: Sign in to GitHub · GitHub",
    "description": "Fresh crawlable documentation was indexed for the official domain.",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  }
]

Sponsored

Ads related to claude-bridge and adjacent AI workflows.