booster-project-memory

booster-project-memory is a skill for Claude Code, Codex from NeuroGhostDev/booster_mcp. It costs 38 tokens per session (502 once invoked), scanned A, original, MIT.

A guide for keeping project facts, decisions, and tasks in long-term memory between coding-agent sessions. It stores this information in a project memory file.

In plain words
What is it for?
It is for saving and recalling architecture decisions, dependencies, project tasks, and verified findings before making code changes.
Why use it?
It reduces the need to rediscover architecture and unfinished work after a restart or when a new session begins.

Skill for Claude CodeCodex

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 skills/neuroghostdev/booster_mcp/booster-project-memory
Any agent
npx skills add NeuroGhostDev/booster_mcp --skill booster-project-memory
Clone the repo
git clone --depth 1 https://github.com/NeuroGhostDev/booster_mcp

Made for: Claude Code, Codex.

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 booster-project-memory

README.md
[![agentmods](https://agentmods.dev/badge/skills/neuroghostdev/booster_mcp/booster-project-memory.svg)](https://agentmods.dev/skills/neuroghostdev/booster_mcp/booster-project-memory)
Your own site
<a href="https://agentmods.dev/skills/neuroghostdev/booster_mcp/booster-project-memory"><img src="https://agentmods.dev/badge/skills/neuroghostdev/booster_mcp/booster-project-memory.svg" alt="Measured on agentmods" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 502 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.00038 $0.00502
Opus 5 $0.00019 $0.00251
Sonnet 5 $0.00008 $0.00100
Haiku 4.5 $0.00004 $0.00050

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

Security

Grade A, and why

booster-project-memory 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 4d 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.

skills/booster-project-memory/SKILL.md · 52 lines

What it actually says

Booster Project Memory

Цель

project_memory позволяет сохранять важную информацию (контекст, архитектурные решения, TO-DO) в .agents/booster/memory.json. Это нужно, чтобы агент не "забывал" важные детали при перезапусках и смене сессий.

В Cognitive Runtime добавлены структурированные факты:

  • remember_project_fact(category, fact, confidence, source, repo)
  • project_memory_recall(query, categories, repo, limit)

Они живут в том же memory.json, но имеют категории, confidence и источник.

Как использовать

  1. Сохранение (set): При нахождении важного архитектурного инсайта или зависимости: project_memory(action="set", key="architecture:auth", value="Авторизация использует JWT через кастомный middleware в src/auth.py")

  2. Чтение (get): При старте работы (особенно в новом чате): project_memory(action="get", key="architecture:auth")

  3. Список ключей (list): Чтобы узнать, какие знания уже сохранены по проекту: project_memory(action="list", key="")

  4. Структурированный recall перед задачей: Перед изменением кода: project_memory_recall(query="добавить OAuth в auth flow")

  5. Сохранение проверенного факта: После анализа архитектуры: remember_project_fact(category="architecture", fact="Frontend ходит в backend только через BFF", confidence=0.95, source="repo_map+impact_analysis")

  6. Удаление (delete) и очистка (clear): Если информация устарела: project_memory(action="delete", key="architecture:auth") project_memory(action="clear", key="") # Очистить всю память

Антипаттерны

  • Не сохраняй огромные куски кода в память (сохраняй выводы и ссылки на файлы).
  • Если проект переписывается, обновляй старые записи в памяти.
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. 4d ago First seen · 52 lines · 38 tokens per session scan A cca098cf28d7

Subscribe to this mod's changes

booster-project-memory is a skill published in the GitHub repository NeuroGhostDev/booster_mcp (0 stars, last pushed 2d ago), licensed MIT. It adds 38 tokens to every session and 502 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

acontext-installer

Install Acontext, Login & Init Acontext Project, Add Skill Memory to Agent.

memodb-io/Acontext · 22 tokens

maintain-context

当 scripts/audit-context.mjs 报 error/warning、学习收件箱有积压待合并,或用户说"文档该更新了"、"上下文体检"、"agent 好像不懂这个项目了"、要整理规则、一个里程碑结束需要收尾时使用:体检并更新本仓库的 agent 上下文文件(AGENTS.md、.agents/skills、docs/)。.

YangFan-Code-Star/context-dev · 98 tokens

context-efficient-coding

Use ContextFlux to minimize coding-agent context and tool calls when exploring, planning, debugging, reviewing, or modifying an unfamiliar or multi-file repository. Trigger for codebase discovery, symbol search, architecture questions, cross-file changes, error tracing, review feedback, test discovery, or any request…

divyanshu-iitian/ContextFlux · 72 tokens

contorium-workspace-memory

Use Contorium workspace memory layers (focus, session events, Git, export) when resuming AI work or avoiding repeated project explanation.

ContoriumLabs/contorium · 33 tokens

cloudmind-memory

Use CloudMind MCP as selective long-term memory. Use when a task may benefit from the user's preferences or history, prior project decisions or progress, the user asks to remember, correct, forget, restore, or archive something, or durable agent work should be preserved for a later session. Apply its safety rules when…

evepupil/CloudMind · 91 tokens

comet-memory

使用于 Comet 需要根据有界语义评审包判断是否值得保存个人记忆、候选、更新、遗忘或跳过时。.

rpamis/comet · 38 tokens