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.
npx agentmods add commands/ainsteinsbr/renata/initgit clone --depth 1 https://github.com/AInsteinsBR/renataWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00027 | $0.01475 |
| Opus 5 | $0.00014 | $0.00737 |
| Sonnet 5 | $0.00005 | $0.00295 |
| Haiku 4.5 | $0.00003 | $0.00147 |
Grade C, and why
init scanned grade C with 1 finding 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf frontend/.git How it starts
The opening of the file, as written. The whole thing — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/renata:init — Initialize a new project with the RENATA structure
You initialize the current project with the RENATA scaffold: CLAUDE.md, the docs/ structure, and .claude/ (progress-map + rules). Optionally, it clones a frontend starter. It receives the project name in $ARGUMENTS.
Respond to the user, and write the "next steps" output, in the user's language (the language they are writing in).
When to use
- Right after installing the RENATA plugin, in a new project directory (empty or with initial code).
- To "renata-ify" an existing project that does not yet have the structure — in that case the closing output points to
/renata:adopt(full brownfield adoption).
Steps
1. Check machine dependencies
The RENATA hooks and the commit-time ADR enforcement depend on a few CLI tools. Check them all in a single Bash call:
for t in yq jq python3 git; do command -v "$t" >/dev/null 2>&1 && echo "ok $t" || echo "MISSING $t"; done
yq— required: without it,rules-violation.shdoes not validaterules.yamlon commit and the status line loses ADR enforcement. No fallback.jqorpython3— the stage gate and the status line need at least one of the two; only treat as missing if both are absent.git— needed for step 6 (pre-commit enforcement) and for the--starterclone.
If nothing is missing, say nothing about this step and move on.
If something is missing:
- Detect the available package manager (
brewon macOS,apt-getordnfon Linux) and install the missing tools with it (e.g.,brew install yq jq). Run the install as a normal, visible Bash call — the user's permission prompt is the consent. Never install through any other silent mechanism. - If there is no package manager, or the user declines the install, print the manual install command(s) and continue with the init — the hooks degrade with warnings instead of breaking, and the SessionStart warning will keep reminding the user about
yq.
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.
- 2d ago First seen · 105 lines · 27 tokens per session scan C fe3b28f37042
init is a command published in the GitHub repository AInsteinsBR/renata (10 stars, last pushed 11d ago), licensed MIT. It adds 27 tokens to every session and 1,475 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
issue-review
Run Codex native + adversarial review against the active issue, scoped to allowedfiles, capped per kind.
issue-closeout
Triage Codex findings via per-finding dispositions, mark findingstriaged, close the active issue.
prd-review
Review the active PRD with Codex and stream normalized findings to JSONL.
prd-triage
Triage pending findings on the active PRD.
prd-archive
Archive the active PRD (terminal state).
issue-start
Load a DSSE issue spec and begin structured work.