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
Crawler Summary
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
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
Public facts
5
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Enesgur
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
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.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
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.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Enesgur
Protocol compatibility
OpenClaw
Adoption signal
1 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
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?Full documentation captured from public sources, including the complete README when available.
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
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.
Config file: ~/.claude/skills/claude-bridge/projects.json
Read this file at the start of every bridge invocation. It contains:
defaults — fallback model and modeprojects — 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.
The skill supports 3 ways to specify the target project, from most convenient to most explicit:
User says something like:
Flow:
projects.jsondefaults.model)User says something like:
Flow:
defaults.model from configUser says something like:
Flow:
projects.json and list registered projects via AskUserQuestionThe model is resolved in this priority order:
projects.<alias>.model from projects.jsondefaults.model from projects.jsonsonnetIf the user says "use opus" or "with haiku", extract that and override everything else.
Construct a clear, self-contained prompt for Agent B. Always include:
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.
# 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:
2>/dev/null to suppress stderr noise.--output-format json for reliable parsing.--add-dir to grant the spawned agent access to the target project directory.--permission-mode plan.--permission-mode acceptEdits and confirm with the user first.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 Bsession_id — save for potential follow-upis_error — check for failuresSummarize Agent B's response. Include:
To continue a previous cross-project conversation:
echo "<follow-up prompt>" | claude -p \
--resume <SESSION_ID> \
--output-format json \
2>/dev/null
When resuming:
--model, --permission-mode, or --add-dir (inherited from original).--resume, --output-format json, and the new prompt.User triggers resume by saying:
When the user says "bridge add project" or "register project":
AskUserQuestionprojects.json, add the new entry, write it backWhen the user says "bridge list" or "show bridge projects":
projects.jsonWhen the user says "bridge remove [alias]":
projects.json, remove the entry, write it back| 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> |
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?
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.
User says: "ask backend with opus — did anything break for our user endpoints recently?"
User says: "ask backend with haiku — give me TypeScript interfaces for /api/auth/* endpoints"
claude -p exits non-zero, report the error and ask whether to retry with different settings.is_error is true in the JSON, show the error message and suggest adjustments.projects.json doesn't exist or is invalid, create a fresh one with defaults and ask the user to register their first project.--dangerously-skip-permissions on the spawned instance.--permission-mode bypassPermissions without explicit user consent.--permission-mode plan (read-only) unless edits are explicitly requested.Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
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"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
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
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
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
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
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
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
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.