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.
npx agentmods add agents/atpaawej/openboard/claude-codegit clone --depth 1 https://github.com/atpaawej/openboardWhat 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 | $0.00000 | $0.00751 |
| Opus 5 | $0.00000 | $0.00376 |
| Sonnet 5 | $0.00000 | $0.00150 |
| Haiku 4.5 | $0.00000 | $0.00075 |
Grade A, and why
claude-code 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 2d 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.
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.
How it starts
The opening of the file, as written. The whole thing — 129 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Claude Code Integration Guide
Anthropic's Claude Code CLI tool natively supports Model Context Protocol (MCP) servers via stdio.
1. Installation
Install OpenBoard globally via npm:
npm install -g openboard
2. OpenBoard Startup
You can start the local OpenBoard web dashboard and server at any time:
openboard start
For AI agent operations via MCP, Claude Code will launch openboard mcp directly over stdio.
3. MCP Configuration
CLI Setup (Recommended)
Run the following command in your terminal:
claude mcp add openboard --command="openboard" --args="mcp"
Manual Configuration
Claude Code supports configuration at two scopes:
- User Scope (
~/.claude.json): Available globally across all directories. - Project Scope (
.mcp.json): Available in the current repository root.
Add openboard under mcpServers:
{
"mcpServers": {
"openboard": {
"command": "openboard",
"args": ["mcp"]
}
}
}
Note: For official Claude Code documentation, see Anthropic Claude Code MCP Docs.
4. Verification
Verify that OpenBoard is registered and its 13 tools are recognized:
claude mcp list
Inside an active Claude Code session, type:
/mcp
You should see openboard marked as connected with tools such as list_boards, create_board, create_shapes, get_canvas_state, etc.
5. Example Workflows & Prompts
Multi-Step Architecture Workflow
User:
List my OpenBoard boards.
Claude Code:
[Calls list_boards tool]
Found 3 boards: "Frontend Redesign", "Billing API", "Infra Map".
User:
Create a board called SaaS Architecture.
Claude Code:
[Calls create_board with { name: "SaaS Architecture" }]
Created board "SaaS Architecture" (ID: "board_9f8a1b").
User:
Draw a frontend → API → Redis → PostgreSQL architecture.
Claude Code:
[Calls create_shapes on board "board_9f8a1b" with 4 geo shapes and 3 connecting arrows]
Created 4 components and 3 connected arrows.
User:
Inspect the board and tell me if the layout is balanced.
Claude Code:
[Calls get_canvas_state and get_canvas_screenshot]
I analyzed the canvas state. Redis and PostgreSQL are aligned side-by-side.
User:
Move Redis below the API and update the arrow connections.
Claude Code:
[Calls update_shapes to adjust coordinates and reconnect arrows]
Updated shape positions and refreshed arrow bindings.
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.
- 2d ago First seen · 129 lines · 0 tokens per session scan A 242cc3c6c3a9
claude-code is an agent published in the GitHub repository atpaawej/openboard (3 stars, last pushed 15d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 751 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
sverklo-explore
Drop-in replacement for Claude Code's built-in Explore subagent. Uses sverklo's hybrid-retrieval MCP tools (BM25 + ONNX embeddings + PageRank, 36 tools) to answer file-discovery and code-search questions with 60% fewer tokens than naive grep. Use this when you need to locate definitions, trace references, understand…
brain-os-mode
Use for any Brain OS task delegated to a subagent — reading entity state, checking active decisions, running focus/patterns/retro analysis, or proposing changes that need to honor active decisions. Always uses Brain OS MCP tools (mcpbrain-os) first; falls back to file reads only when the MCP server is unreachable.…
engineer
Use this agent when you need to implement features, fix bugs, or write code anywhere in the Code Insights monorepo. This includes CLI commands, dashboard components (Vite + React SPA), Hono server routes, SQLite schema changes, provider implementations, LLM provider integration, UI work with shadcn/ui, and any…
technical-architect
Use this agent for architectural decisions, type alignment, SQLite schema changes, code review synthesis, and when the implementation path requires architectural guidance. This agent serves as the technical authority across the Code Insights monorepo. Examples: Context: A change to types needs to be reflected in the…
product-manager
Use this agent for product development coordination, tracking tasks (GitHub Issues or local markdown), sprint planning, progress reporting, and development ceremony management. This PM does NOT use Jira.
devtools-cofounder
Use this agent for strategic product decisions, competitive positioning, developer experience critique, go-to-market strategy, and feature viability assessment. Peer to technical-architect — brings market lens where TA brings system lens. Does NOT write code or create PRs. Advisory only — delegates implementation to…