board-remember

board-remember is a command for coding agents from GhostlyGawd/engineering-board. It costs 59 tokens per session (645 once invoked), scanned A, original, MIT.

A command for saving an important project lesson as a Markdown note and adding it to the engineering board. It lets you record a lesson immediately instead of waiting for repeated evidence.

In plain words
What is it for?
Use it after discovering a rule, decision, bug pattern, or other lesson that should guide future work. An optional context explains when the lesson applies.
Why use it?
It prevents useful knowledge from being lost between coding sessions and keeps manually remembered lessons distinct from automatically promoted findings.

Command

Installs and runs on its own, but its text points at files inside its plugin — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed. Installing the plugin gets both.

Part of the engineering-board plugin — 6 skills, 21 commands, 8 agents, 4 hooks, 1 MCP server, 1 plugin shipped together

Install

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.

agentmods
npx agentmods add commands/ghostlygawd/engineering-board/board-remember
Clone the repo
git clone --depth 1 https://github.com/GhostlyGawd/engineering-board

Or install engineering-board, the plugin that ships this one along with the rest of its 6 skills, 21 commands, 8 agents, 4 hooks, 1 MCP server, 1 plugin.

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

README.md
[![agentmods](https://agentmods.dev/badge/commands/ghostlygawd/engineering-board/board-remember.svg)](https://agentmods.dev/commands/ghostlygawd/engineering-board/board-remember)
Your own site
<a href="https://agentmods.dev/commands/ghostlygawd/engineering-board/board-remember"><img src="https://agentmods.dev/badge/commands/ghostlygawd/engineering-board/board-remember.svg" alt="Measured on agentmods" height="20"></a>
Per session 59 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 645 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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 $0.00059 $0.00645
Opus 5 $0.00030 $0.00322
Sonnet 5 $0.00012 $0.00129
Haiku 4.5 $0.00006 $0.00064

Measured 2d ago against content hash fa641f037e95, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

board-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 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.

commands/board-remember.md · 72 lines

How it starts

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

/board-remember: explicit learning capture

Write one durable learning to the board right now, without waiting for the learnings curator's recurrence threshold. The learning file matches the curator's shape (so board-index-check.sh and the validator stay green) and carries source: remember so curator-promoted and user-remembered learnings stay distinguishable.

What to do

Step 1: Parse arguments

Split $ARGUMENTS on the first -- separator (space-dash-dash-space):

  • Everything before it is <insight>: the durable lesson to remember.
  • Everything after it (optional) is <context>: when/where the insight applies.

If $ARGUMENTS is empty or whitespace-only, print:

Usage: /board-remember <insight> [-- <context>]. No action taken.

Then stop.

Step 2: Run the remember script

Run:

bash $CLAUDE_PLUGIN_ROOT/hooks/scripts/board-remember.sh "<insight>" "<context>"

(Omit the second argument when no context was given.) The script resolves the board via hooks/scripts/board-paths.sh (router order: engineering-board/BOARD-ROUTER.md to docs/boards/BOARD-ROUTER.md to legacy docs/board/) and targets the first listed project's board. To target a different board, pass --board-dir <board-dir> as the first argument.

Step 3: Report the result

Handle exit codes:

  • Exit 0: the script printed a JSON object. Report the id, title, and file fields plainly, e.g.:

    Remembered as L006: Always flush the buffer before close (learnings/L006-always-flush-the-buffer-before-close.md).
    
  • Exit 2 (no board): print No board found — run /board-init first. and stop.

  • Exit 1 (usage): print the usage line from Step 1 and stop.

Notes

  • The MCP twin is the board_remember tool (project, insight, context?): identical file output. use whichever surface you have.
  • Learnings written this way have recurrence: 1 and confidence: medium. the curator may later raise confidence when the same pattern recurs across resolved entries.
  • The insight's first line becomes the entry title (newlines are flattened). the full insight becomes ## Takeaway and the context becomes ## When this applies.

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

Subscribe to this mod's changes

board-remember is a command published in the GitHub repository GhostlyGawd/engineering-board (0 stars, last pushed 3d ago), licensed MIT. It adds 59 tokens to every session and 645 once invoked, about $0.0003 per session on Opus 5. 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.