ccboard: Skill for Claude Code

.claude/skills/ccboard-remember/SKILL.md

ccboard-remember is a skill for Claude Code from FlorianBruniaux/ccboard. It costs 0 tokens per session (708 once invoked), scanned A, original, MIT.

A command that stores a short piece of project knowledge in a local SQLite database so it can be reused in later sessions. The knowledge can be a fix, pattern, context note, or decision.

In plain words
What is it for?
Use it to record debugging fixes, recurring project patterns, background context, and important technical decisions.
Why use it?
It prevents useful project facts from being forgotten between coding sessions. Saving a concise summary makes future context easier to recover.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

This is FlorianBruniaux/ccboard's own configuration. It tells Claude Code how to work on ccboard itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ccboard configures →

Part of the ccboard plugin — 14 skills, 2 commands, 10 agents, 4 hooks, 2 MCP servers shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to FlorianBruniaux/ccboard. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/FlorianBruniaux/ccboard/main/.claude/skills/ccboard-remember/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/FlorianBruniaux/ccboard

Made for: Claude Code.

Or install ccboard, the plugin that ships this one along with the rest of its 14 skills, 2 commands, 10 agents, 4 hooks, 2 MCP servers.

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-remember

README.md
[![agentmods](https://agentmods.dev/badge/skills/florianbruniaux/ccboard/ccboard-remember.svg)](https://agentmods.dev/skills/florianbruniaux/ccboard/ccboard-remember)
Your own site
<a href="https://agentmods.dev/skills/florianbruniaux/ccboard/ccboard-remember"><img src="https://agentmods.dev/badge/skills/florianbruniaux/ccboard/ccboard-remember.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 708 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00000 $0.00708
Opus 5 $0.00000 $0.00354
Sonnet 5 $0.00000 $0.00142
Haiku 4.5 $0.00000 $0.00071

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

Security

Grade A, and why

ccboard-remember 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 8d 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.

.claude/skills/ccboard-remember/SKILL.md · 76 lines

How it starts

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

/ccboard-remember — Store Knowledge in Brain

Saves a piece of knowledge to ~/.ccboard/insights.db for future session context injection.

Usage

/ccboard-remember fix: <description>
/ccboard-remember pattern: <description>
/ccboard-remember context: <description>
/ccboard-remember decision: <description>

Workflow

  1. Parse the user's input prefix (fix:, pattern:, context:, decision:)
    • Default type is context if no prefix provided
  2. Get the current project path with pwd
  3. Distill the input into a clean 1-line summary (≤ 120 chars)
  4. Run this exact command (substituting TYPE, SUMMARY, and ORIGINAL):
sqlite3 "$HOME/.ccboard/insights.db" \
  "PRAGMA journal_mode=WAL;
   CREATE TABLE IF NOT EXISTS insights (
     id INTEGER PRIMARY KEY AUTOINCREMENT,
     session_id TEXT, project TEXT NOT NULL,
     type TEXT NOT NULL, content TEXT NOT NULL,
     reasoning TEXT, archived INTEGER NOT NULL DEFAULT 0,
     created_at TEXT NOT NULL DEFAULT (datetime('now'))
   );
   INSERT INTO insights (project, type, content, reasoning, created_at)
   VALUES ('$(pwd)', 'TYPE', 'SUMMARY', 'ORIGINAL', datetime('now'));"
  1. Confirm: Stored [TYPE] — SUMMARY

Type Guide

Prefix Type Use for
fix: fix A recurring bug and its solution
pattern: pattern A code pattern that works well in this project
context: context Background info Claude should know
decision: decision An architectural decision and why
(none) context Default when no prefix is given

Examples

/ccboard-remember fix: SQLite WAL mode required when hooks write concurrently with Rust reads
/ccboard-remember pattern: Use Arc<DataStore> + parking_lot::RwLock for all shared state
/ccboard-remember context: This project targets macOS only, no Windows support needed
/ccboard-remember decision: insights.db is separate from session-metadata.db to avoid CACHE_VERSION conflicts

Safeguards

  • NEVER run sqlite3 if the user input contains shell metacharacters (;, |, `, $()) that weren't in the original input — escape properly
  • sql_escape the content: replace ' with '' before inserting
  • If sqlite3 is not available, report the error and show the manual SQL to run
  • Max content length: 500 chars (truncate with if longer)

Read the full file on GitHub · 76 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. 8d ago First seen · 76 lines · 0 tokens per session scan A a409ea07a3cd

Subscribe to this mod's changes

ccboard-remember is a skill published in the GitHub repository FlorianBruniaux/ccboard (97 stars, last pushed 6d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 708 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-30.

Related

Other skills, from other repositories