grimoire-note

grimoire-note is a skill for Claude Code from ojCezarFerreira/Grimoire. It costs 41 tokens per session (1,731 once invoked), scanned A, original, MIT.

A project-notes editor for updating the Key Conventions and Notes sections of .grimoire/PROJECT.md, a file that records a project's working rules and context.

In plain words
What is it for?
Use it to fold free-text notes into existing project conventions, remove semantic duplicates, and review the resulting changes in an IDE-aware way.
Why use it?
It prevents scattered, repeated, or poorly organized notes from making project guidance harder to maintain.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: mentions subagents; names the AskUserQuestion tool.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the grimoire plugin — 11 skills shipped together

Good fit Use it to fold free-text notes into existing project conventions, remove semantic duplicates, and review the resulting changes in an IDE-aware way.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add ojCezarFerreira/Grimoire
Claude Code
/plugin install grimoire

Made for: Claude Code.

Or install grimoire, the plugin that ships this one along with the rest of its 11 skills.

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 grimoire-note

README.md
[![agentmods](https://agentmods.dev/badge/skills/ojcezarferreira/grimoire/grimoire-note/github.svg)](https://agentmods.dev/skills/ojcezarferreira/grimoire/grimoire-note)
Your own site
<a href="https://agentmods.dev/skills/ojcezarferreira/grimoire/grimoire-note"><img src="https://agentmods.dev/badge/skills/ojcezarferreira/grimoire/grimoire-note/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for grimoire-note

Your own site · 80×15
<a href="https://agentmods.dev/skills/ojcezarferreira/grimoire/grimoire-note"><img src="https://agentmods.dev/badge/skills/ojcezarferreira/grimoire/grimoire-note.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,731 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.
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.00041 $0.01731
Opus 5 $0.00020 $0.00865
Sonnet 5 $0.00008 $0.00346
Haiku 4.5 $0.00004 $0.00173

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

Security

Grade A, and why

grimoire-note 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.

skills/grimoire-note/SKILL.md · 81 lines

How it starts

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

[Required Reading]

  1. Read ${CLAUDE_PLUGIN_ROOT}/GRIMOIRE-CONVENTIONS.md. Only § Skill composition, § Project context, § IDE-aware review, and § Commits apply to this skill. § TDD, § Sub-agent spawning, § Historic, § User-facing language, § Pause-point pattern (for pipeline pages), and § .grimoire/ layout (for pages) do not apply — this skill is orthogonal to the Spec → Plan → Execute pipeline, never creates a page folder, never touches HISTORIC.md, and never spawns execute sub-agents.
  2. If .grimoire/PROJECT.md exists in the project root, read it for project context — defer the hard-stop check to Phase 1 below so the user-facing message is presented cleanly.

[Objective] Fold the user's free-text note(s) into .grimoire/PROJECT.md with surgical, incremental edits restricted to ## Key Conventions / Constraints and ## Notes. Never rewrite the whole file, never add a new section, never regenerate a skeleton — only sharpen what is already there or append a single well-phrased entry.

$ARGUMENTS

[Hard constraints]

  • Only .grimoire/PROJECT.md may be edited. No other file in the repo is touched.
  • Only ## Key Conventions / Constraints and ## Notes may be modified. Never add, rename, or remove any section header. Never edit ## Purpose, ## Audience, ## Tech Stack, ## Repository Layout, or ## Current Status.
  • Never create .grimoire/PROJECT.md if it is missing — hard-stop instead.
  • Never create a page folder, never write to .grimoire/HISTORIC.md, never spawn execute sub-agents.

[Phase 1: Precondition Check (HARD STOP)] Verify .grimoire/PROJECT.md exists at the project root. If it is missing, print the canonical English message verbatim:

❌ .grimoire/PROJECT.md does not exist. grimoire-note edits the Key Conventions and Notes sections of PROJECT.md — without the file there is nowhere to write. Run /grimoire-init first to create the base context, then re-invoke /grimoire-note.

The message may also be rendered in the user's interaction language when detected (e.g., pt-BR); English is the default and the canonical reference. STOP. Do not offer to run grimoire-init automatically. Do not create a skeleton.

[Phase 2: Input Parsing & Semantic Split] Parse the user's free-text input. Semantically split it into N distinct rules when the input carries several (e.g., two sentences encoding two unrelated conventions). Single-rule inputs stay as one entry. Produce a structured list internally — the user-facing surface of the split happens at Phase 6 ("Detected N distinct rules: …").

[Phase 3: Read & Synthesize Against Existing Sections] Read ## Key Conventions / Constraints and ## Notes in full from .grimoire/PROJECT.md. For each rule from Phase 2, run a semantic pass against every existing entry in both sections to detect:

  • Duplication — the new rule already exists verbatim or in spirit.
  • Refinement — the new rule sharpens or constrains an existing one.
  • Generalization — the new rule subsumes (or is subsumed by) an existing one.
  • Contradiction — the new rule conflicts with an existing one.

For each detected relationship, propose the best synthesis: merge, rewrite, generalize, or accept as new. Minimum-word phrasing is an explicit objective — favor terse, declarative entries over verbose ones, and prefer rewriting two near-duplicate lines into one over appending a third.

[Phase 4: Retroactive Consolidation Pass] Independently of the new input, scan all existing rules in both sections and propose rewrites where synthesis can be improved: consolidate near-duplicates already on the page, tighten verbose phrasings, merge adjacent rules that say the same thing. This pass runs every invocation, not just when the new input triggers it — the cost is acceptable because the synthesis discipline keeps the file naturally small.

[Phase 5: Section Assignment] Assign each accepted rule to its section using this heuristic:

Read the full file on GitHub · 81 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 · 81 lines · 41 tokens per session scan A fa173f985b8c

Subscribe to this mod's changes

grimoire-note is a skill published in the GitHub repository ojCezarFerreira/Grimoire (2 stars, last pushed 2mo ago), licensed MIT. It adds 41 tokens to every session and 1,731 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

media-ingest

Ingest video, audio, PDF, book, screenshot, and GitHub repo content into the brain. Multi-format handling with entity extraction and backlink propagation. Covers video-ingest, youtube-ingest, and book-ingest subtypes.

garrytan/gbrain · 52 tokens

mem0-oss-to-platform

Plan and then execute a migration of a project from the mem0 open-source / self-hosted SDK (the local Memory class) to the mem0 Platform / hosted / managed SDK (the MemoryClient class). Use this whenever a developer wants to move, switch, or migrate their mem0 usage off OSS/self-hosted to the hosted API — e.g.…

mem0ai/mem0 · 273 tokens

Cortex

Operate Cortex, the LifeOS memory system — the typed Knowledge Archive (People, Companies, Ideas, Research with typed related: links) plus recall of prior work sessions, ISAs, and conversations. Search, add, harvest, develop, ingest, distill, graph-navigate, recall. USE WHEN cortex, knowledge, knowledge base, search…

danielmiessler/LifeOS · 196 tokens

memory

Use when the user asks to remember, recall, forget, update, search, or inspect durable OpenSquilla memory, including profile facts in USER.md and long-term notes in MEMORY.md or memory//.md.

opensquilla/opensquilla · 44 tokens

ha-data-stores

Map of Hope Agent's local data stores and safe read-only query workflow. Use when the user asks where Hope Agent stores data, wants to inspect sessions/messages/memory/logs/background jobs/knowledge indexes/settings, asks the model to query local app data, or debugging requires checking persisted state. Trigger…

shiwenwen/hope-agent · 115 tokens

establishing-project-context

Use when the user asks to establish shared project language, or project work exposes a conflicting, renamed, or deprecated domain term that needs active semantic modeling. Routine small tasks stay on the fast path.

GanyuanRan/Aegis · 45 tokens