ccboard-remember
/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
- Parse the user's input prefix (
fix:,pattern:,context:,decision:)- Default type is
contextif no prefix provided
- Default type is
- Get the current project path with
pwd - Distill the input into a clean 1-line summary (≤ 120 chars)
- 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'));"
- 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
sqlite3is not available, report the error and show the manual SQL to run - Max content length: 500 chars (truncate with
…if longer)
Expected Outcome
One new row in ~/.ccboard/insights.db, visible in the Brain tab (cargo run) and Brain web page (/brain).
More from florianbruniaux/ccboard
tdd-rust
Test-Driven Development workflow for Rust - write test first, watch it fail, implement minimal code
3ship
Build, commit, push & version bump workflow - automates the complete release cycle
1performance
Optimize web performance for faster loading and better user experience. Use when asked to "speed up my site", "optimize performance", "reduce load time", "fix slow loading", "improve page speed", or "performance audit".
1code-simplifier
|
1design-patterns
Analyze codebase for GoF design patterns - detection, suggestions, evaluation with stack-aware adaptations
1security-guardian
Expert en sécurité applicative pour détecter les vulnérabilités, auditer le code, et guider les bonnes pratiques de sécurité. OWASP Top 10, authentification, autorisation, cryptographie, gestion de secrets. Utiliser pour audits sécurité, reviews de code sensible, conception de features sécurisées, ou résolution de failles.
1