Borrowing it
Nothing to install: this file belongs to sandraschi/openclaw-molt-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/sandraschi/openclaw-molt-mcp/master/.windsurfrulesgit clone --depth 1 https://github.com/sandraschi/openclaw-molt-mcpWrote 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.
[](https://agentmods.dev/rules/sandraschi/openclaw-molt-mcp/windsurfrules)<a href="https://agentmods.dev/rules/sandraschi/openclaw-molt-mcp/windsurfrules"><img src="https://agentmods.dev/badge/rules/sandraschi/openclaw-molt-mcp/windsurfrules.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00682 | $0.00682 |
| Opus 5 | $0.00341 | $0.00341 |
| Sonnet 5 | $0.00136 | $0.00136 |
| Haiku 4.5 | $0.00068 | $0.00068 |
Grade A, and why
windsurfrules scanned grade A with 0 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 today.
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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
This is a copy
100% identical to cursorrules — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 53 lines — stays where its author put it; the contents beside it link to each section on GitHub.
openclaw-molt-mcp — Agent Instructions
Repo-local rules. Fleet-wide standards live in
D:\Dev\repos\mcp-central-docs\standards\.
What this repo is
FastMCP server + webapp that bridges Claude Desktop / Cursor to OpenClaw (agent Gateway, channels, routing, sessions, skills, security) and Moltbook (AI-agent social network). It uses those platforms; it does not implement or replace them.
Architecture
- MCP tools —
src/openclaw_molt_mcp/tools/(11 portmanteau tools:clawd_agent,clawd_bastion,clawd_channels,clawd_gateway,clawd_moltbook,clawd_openclaw_disconnect,clawd_routing,clawd_security,clawd_sessions,clawd_skills,clawd_voice). Each tool has one@mcp.tool()entrypoint with anoperationenum param. - Webapp API —
webapp_api/main.py(FastAPI, port 10745), serves the React SPA. - Webapp UI —
webapp/(React + Vite + TS, port 10744). - Desktop —
native/(Tauri 2 + PyInstaller sidecar → NSIS installer).
Ports
| Port | Service |
|---|---|
| 10744 | Vite frontend |
| 10745 | FastAPI backend + static SPA |
| 18789 | OpenClaw Gateway (external daemon port) |
Conventions
- Run Python with
uv run --directory <repo> --extra dev— never nakedpython. - Run JS with
bun(bun.lock is the lockfile). Nevernpm. - Lint:
uv run ruff check .+uv run ruff format --check .. Format withuv run ruff format. - Type check:
uv run pyright src. Tests:uv run pytest. - Webapp:
bun run lint,bun run type-check,bun run build(inwebapp/). - Do NOT hardcode secrets or ports in source. Config lives in
.env(gitignored); document keys in.env.example. - Do NOT commit
node_modules/,.venv/,.bak*,_llm_test_scripts/,dist/,target/.
Key files
src/openclaw_molt_mcp/config.py— pydantic-settings,OPENCLAW_prefix.src/openclaw_molt_mcp/gateway_client.py— OpenClaw Gateway HTTP client.src/openclaw_molt_mcp/moltbook_client.py— Moltbook API client.fleet-start.config.ps1— ports + backend target forstart.ps1.
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.
- today First seen · 53 lines · 682 tokens per session scan A 8d1c20f0e947
windsurfrules is a cursor rule published in the GitHub repository sandraschi/openclaw-molt-mcp (3 stars, last pushed yesterday), licensed MIT. It adds 682 tokens to every session, about $0.0034 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to cursorrules, differing in 0 lines, and is treated as a copy.
Other cursor rules, from other repositories
mcp-development
The MCP server in src/osmeditmcp/server.py follows FastMCP patterns.
jamf-api-best-practices
Rules for Jamf API integration and AI-compatible Python development.
marketmenow
MarketMeNow architecture and coding conventions.
core
Conventions for the core pipeline and orchestration layer.
web
Conventions for the FastAPI web dashboard.
smplkit
Use smplkit when writing application code that needs feature flags, runtime configuration, dynamic log levels, or audit events — and to operate that platform from your agent. AUTHOR with the smplkit SDKs (Python, TypeScript, Go, Java, C#, Ruby): resolve a flag, read a config value, install the dynamic-logging adapter…