clawbridge CLAUDE.md

clawbridge CLAUDE.md is an instructions file for Claude Code from NickRomanek/clawbridge. It costs 8,851 tokens per session, scanned D, original, Apache-2.0.

A repository instruction file for ClawBridge, a desktop and browser automation agent with a web dashboard. It describes the project’s development model, where the main application lives, and how its server and tests are organized.

In plain words
What is it for?
Use it when developing, running, or testing ClawBridge, including its FastAPI server, dashboard, automation engines, safety system, and data storage.
Why use it?
It prevents changes from being made in the wrong copy of the code, especially because the project has a large main file and a separate package that can lag behind it.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md; positional $N argument; mentions Claude Code.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/nickromanek/clawbridge/claude-md
Clone the repo
git clone --depth 1 https://github.com/NickRomanek/clawbridge

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for clawbridge CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/nickromanek/clawbridge/claude-md.svg)](https://agentmods.dev/instructions/nickromanek/clawbridge/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/nickromanek/clawbridge/claude-md"><img src="https://agentmods.dev/badge/instructions/nickromanek/clawbridge/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 8,851 This file is loaded in full into every session.
When invoked 8,851 The same file — it is already loaded in full.
Security scan D 2 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.08851 $0.08851
Opus 5 $0.04425 $0.04425
Sonnet 5 $0.01770 $0.01770
Haiku 4.5 $0.00885 $0.00885

Measured 6d ago against content hash 933c1536d416, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade D, and why

clawbridge CLAUDE.md scanned grade D with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Harvests environment variableshighData exfiltration

Enumerating or grepping the environment for keys collects credentials unrelated to what the mod says it does.

- Auth: reads API keys from `~/.openclaw/openclaw.json` `env` block, NOT from `.env`. ClawBridge passes `ANTHROPIC_API_KEY`, `OPENAI_API_KEY`, `OPENROUTER_API_KEY` in a minimal env dict when auto-starting (no `os.environ

Reads MCP configurationmediumAgent snooping

mcp.json carries server URLs and auth tokens; reading it lets a mod discover and abuse other integrations.

`clawbridge_mcp.py` exposes 15 tools and 1 resource (`clawbridge://status`). Registered in `.mcp.json`. Runs via stdio (default) or HTTP (`--http` flag). Auth token passthrough on all tools.
CLAUDE.md · 368 lines

How it starts

The opening of the file, as written. The whole thing — 368 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

What is ClawBridge?

ClawBridge is a desktop and browser automation agent with a web dashboard. It orchestrates three AI-powered engines (browser-use, computer-use, OpenClaw) behind a FastAPI server with a WebSocket-driven chat UI. BYOK (bring your own key) — all LLM API keys stay local.

Development Model: Monolith-First

clawbridge.py (~12,900 lines) is the single-file monolith and the only active development target. All changes go here first. It contains the full application: FastAPI routes, engine implementations, dashboard HTML/JS, safety system, personality manager, task orchestrator, SQLite persistence, and inline CSS/JS.

clawbridge/ is a modular package that mirrors the monolith's logic split across files. It exists for reference and testing but lags behind the monolith. The test suite (tests/) imports from the package, not the monolith.

clawbridge_mcp.py is a standalone MCP server that proxies to the monolith's REST API. It has no shared code with the monolith — it's a thin HTTP client wrapper.

Commands

# Run the server (primary way)
python clawbridge.py
# Dashboard at http://localhost:8765

# Run with Docker
docker-compose up

# Install dev dependencies
pip install -r requirements-dev.txt

# Run all tests (unit + integration, against the package)
pytest

# Run a single test file
pytest tests/unit/test_safety.py

# Run a single test by name
pytest tests/unit/test_safety.py -k "test_scan_detects_aws_key"

# Run with coverage
pytest --cov=clawbridge

# Smoke tests (requires running server on :8765)
python tests/smoke_test.py

# Build portable Windows distribution
python build.py

# Build Windows installer (needs Inno Setup ISCC.exe on PATH)
python build.py --inno

# Build macOS app
python build_macos.py --arch arm64

Architecture

Request flow:
  Dashboard (inline HTML/JS) ──WebSocket──▶ FastAPI ──▶ TaskManager ──▶ Engine
                                                            │
                                                    ┌───────┼───────┐
                                                    ▼       ▼       ▼
                                              browser-use  computer  openclaw
                                              (Playwright) (pyauto   (Node.js
                                               + LLM)      gui+UIA)  gateway)

Read the full file on GitHub · 368 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 368 lines · 8,851 tokens per session scan D 933c1536d416

Subscribe to this mod's changes

clawbridge CLAUDE.md is an instructions file published in the GitHub repository NickRomanek/clawbridge (24 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 8,851 tokens to every session, about $0.0443 per session on Opus 5. A static security scan graded it D with 2 findings (harvests environment variables, reads mcp configuration). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.