promote

promote is a command for Claude Code from john-broadway/maude-for-claude. It costs 43 tokens per session (746 once invoked), scanned A, original, Apache-2.0.

A command for reviewing notes collected during a session and promoting selected items into the project's accepted record. It keeps the agent's inferences separate until a person approves them.

In plain words
What is it for?
Use it to list pending notes, identify noise, and promote only the chosen items into the project's canon, or archive them when appropriate.
Why use it?
It prevents assumptions made by the agent from becoming official project knowledge without explicit approval.

Command for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Part of the maude plugin — 1 skill, 15 commands, 1 agent, 8 hooks shipped together

Good fit Use it to list pending notes, identify noise, and promote only the chosen items into the project's canon, or archive them when appropriate.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/john-broadway/maude-for-claude/promote
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.

Clone the repo
git clone --depth 1 https://github.com/john-broadway/maude-for-claude

Made for: Claude Code.

Or install maude, the plugin that ships this one along with the rest of its 1 skill, 15 commands, 1 agent, 8 hooks.

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 promote

README.md
[![agentmods](https://agentmods.dev/badge/commands/john-broadway/maude-for-claude/promote/github.svg)](https://agentmods.dev/commands/john-broadway/maude-for-claude/promote)
Your own site
<a href="https://agentmods.dev/commands/john-broadway/maude-for-claude/promote"><img src="https://agentmods.dev/badge/commands/john-broadway/maude-for-claude/promote/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 promote

Your own site · 80×15
<a href="https://agentmods.dev/commands/john-broadway/maude-for-claude/promote"><img src="https://agentmods.dev/badge/commands/john-broadway/maude-for-claude/promote.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 746 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.00043 $0.00746
Opus 5 $0.00022 $0.00373
Sonnet 5 $0.00009 $0.00149
Haiku 4.5 $0.00004 $0.00075

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

Security

Grade A, and why

promote 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 10d 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/promote.md · 82 lines

How it starts

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

/maude:promote

You are Maude. The tape buffers everything the session noticed, but what Claude merely inferred never becomes canon on its own — however sure he was. rest consolidates the user's own words and archives the noise; the inferences wait here.

Run it with no arguments to see the list. Run it with ids to promote those.

PROJ="${CLAUDE_PROJECT_DIR:-$(pwd)}"
DB="$PROJ/.maude/plugin/tape/tape.db"
TAPE=(python3 -m maude_tape)
[ -f "$DB" ] || { echo "no tape yet at $DB"; exit 0; }

No arguments — show him the list

"${TAPE[@]}" pending --db "$DB"

Put the list in front of him. Do not summarize it away, do not pre-filter it to the ones you think he'll want, and do not recommend all of them. If a line reads as noise now that you see it written down, say so plainly next to it — that is useful. What you may not do is decide on his behalf by leaving something out.

With ids — promote exactly those

for id in $ARGUMENTS; do "${TAPE[@]}" promote --db "$DB" --id "$id"; done

promote refuses anything not currently pending (already promoted, or archived as noise) and exits 2. That refusal is correct — report it, don't work around it.

With a no — archive exactly those

A list whose only verb is yes is not a choice. When he declines something, say so to the tape rather than leaving it on the list to be re-read every wake:

for id in $DECLINED; do "${TAPE[@]}" dismiss --db "$DB" --id "$id"; done

dismiss archives (status → forgotten), never deletes — same law as the rest of the buffer. It is also the only exit for a row marked refused at the canon door, which promote can never accept: report those to him as declined-by-the-guard, not as pending work he has to decide.

What promotion means

The text goes into canon and plays at every wake from now on. Its authority stays what it was captured as: he approved Claude's wording, which does not make the words his. His own verbatim lines still outrank it in recall, and that ordering is deliberate.

Read the full file on GitHub · 82 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. 10d ago First seen · 82 lines · 43 tokens per session scan A 085e85f3b628

Subscribe to this mod's changes

promote is a command published in the GitHub repository john-broadway/maude-for-claude (2 stars, last pushed 7d ago), licensed Apache-2.0. It adds 43 tokens to every session and 746 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.