ccboard CLAUDE.md

ccboard CLAUDE.md is an instructions file for Claude Code from FlorianBruniaux/ccboard. It costs 5,316 tokens per session, scanned B, original, MIT.

A project guide for ccboard, a Rust application with terminal and web interfaces for viewing Claude Code sessions, settings, agents, costs, and history. It describes the workspace structure, shared data layer, and development commands.

In plain words
What is it for?
It helps build the Rust workspace, run the terminal interface, start the web interface, and understand how the shared core connects both front ends.
Why use it?
It gives contributors the project context needed to change the correct part of the application and run it in the intended mode.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: reads .claude/ paths; mentions CLAUDE.md; names the TodoWrite tool.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/florianbruniaux/Sites/perso/ccboard.

Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

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 ccboard CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/florianbruniaux/ccboard/claude-md.svg)](https://agentmods.dev/instructions/florianbruniaux/ccboard/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/florianbruniaux/ccboard/claude-md"><img src="https://agentmods.dev/badge/instructions/florianbruniaux/ccboard/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 5,316 This file is loaded in full into every session.
When invoked 5,316 The same file — it is already loaded in full.
Security scan B 1 finding. 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.05316 $0.05316
Opus 5 $0.02658 $0.02658
Sonnet 5 $0.01063 $0.01063
Haiku 4.5 $0.00532 $0.00532

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

Security

Grade B, and why

ccboard CLAUDE.md scanned grade B with 1 finding 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

| Global settings | `~/.claude/settings.json` | `SettingsParser` | JSON with merge |
CLAUDE.md · 493 lines

How it starts

The opening of the file, as written. The whole thing — 493 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.

Project Overview

ccboard is a unified dashboard for Claude Code management, providing both TUI and web interfaces from a single binary to visualize sessions, stats, configuration, hooks, agents, costs, and history from ~/.claude directories.

Stack: Rust workspace with 4 crates, Ratatui (13-tab TUI), Axum (Web API backend), Leptos (WASM frontend), Arc + parking_lot for concurrency.

Workspace Architecture

This is a Cargo workspace with a layered architecture:

ccboard/                     # Root binary - CLI entry point
├─ ccboard-core/             # Shared data layer (parsers, models, store, watcher)
├─ ccboard-tui/              # Ratatui frontend (13 tabs)
└─ ccboard-web/              # Axum API backend + Leptos WASM frontend

Dependency flow: ccboardccboard-tui + ccboard-webccboard-core

Core principle: Single binary, dual frontends sharing a thread-safe DataStore.

Development Commands

Build & Run

# Build all crates
cargo build --all

# Run TUI (default mode)
cargo run

# Run web interface
cargo run -- web --port 3333

# Run both TUI and web
cargo run -- both --port 3333

# Print stats and exit
cargo run -- stats

# Session management commands
cargo run -- search "query" --limit 10          # Search sessions
cargo run -- search "bug" --since 7d            # Search last 7 days
cargo run -- recent 10                          # Show 10 most recent sessions
cargo run -- recent 5 --json                    # JSON output
cargo run -- info <session-id>                  # Show session details
cargo run -- resume <session-id>                # Resume session in Claude CLI
cargo run -- clear-cache                        # Clear SQLite cache

# Specify Claude home directory
cargo run -- --claude-home ~/.claude --project /path/to/project

# Frontend (Leptos/WASM)
trunk serve --port 3333                             # Serve frontend on http://127.0.0.1:3333

Read the full file on GitHub · 493 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 · 493 lines · 5,316 tokens per session scan B d2bf2e81c97d

Subscribe to this mod's changes

ccboard CLAUDE.md is an instructions file published in the GitHub repository FlorianBruniaux/ccboard (95 stars, last pushed 4d ago), licensed MIT. It adds 5,316 tokens to every session, about $0.0266 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.