rosetta AGENTS.md

rosetta AGENTS.md is an instructions file for Codex, OpenCode from tjboudreaux/rosetta. It costs 1,261 tokens per session, scanned A, original, MIT.

Repository instructions for Rosetta, an open-source agent skill that combines coding-agent conversation history, Git history, and documentation into one cited record. It also keeps durable decision records such as architecture or product decision records.

In plain words
What is it for?
Use them to run syntax checks and unit tests, validate decision records, and understand how Rosetta's dependency-free Python tools are organized.
Why use it?
They give agents the commands, conventions, architecture notes, and integrity checks needed to work consistently in the repository.

Instructions file for CodexOpenCode

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 instructions/tjboudreaux/rosetta/agents-md
Clone the repo
git clone --depth 1 https://github.com/tjboudreaux/rosetta

Made for: Codex, OpenCode.

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 rosetta AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/tjboudreaux/rosetta/agents-md.svg)](https://agentmods.dev/instructions/tjboudreaux/rosetta/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/tjboudreaux/rosetta/agents-md"><img src="https://agentmods.dev/badge/instructions/tjboudreaux/rosetta/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,261 This file is loaded in full into every session.
When invoked 1,261 The same file — it is already loaded in full.
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.01261 $0.01261
Opus 5 $0.00630 $0.00630
Sonnet 5 $0.00252 $0.00252
Haiku 4.5 $0.00126 $0.00126

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

Security

Grade A, and why

rosetta AGENTS.md 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.

AGENTS.md · 84 lines

How it starts

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

AGENTS.md

Briefing for AI agents working in this repository. Keep it high-signal.

Rosetta is an open-source agent skill that reconciles every coding agent's local conversation history (18 transcript stores) with git history and docs into one cited ground truth, plus durable decision records (ADR / PDR / BDR). The shipped collector and decision CLI are pure-stdlib Python with zero runtime dependencies (ADR 0013). The skill itself lives under skills/rosetta/; the repo root holds the README, llms.txt, assets/, and LICENSE.

Build & Test

No build step — pure stdlib. From the repo root (mirrors .github/workflows/ci.yml):

# Syntax check (no deps)
python -m py_compile skills/rosetta/scripts/collect.py skills/rosetta/scripts/decisions.py \
  skills/rosetta/scripts/ingest.py skills/rosetta/rosetta_cli.py

# Unit tests — agent resolvers/parsers, loop CLIs, ingest (run from skills/rosetta so `tests` imports)
( cd skills/rosetta && python -m unittest discover -s tests -v )

# Decision library must stay well-formed (anti-hallucination integrity gate)
python skills/rosetta/scripts/decisions.py --root skills/rosetta/decisions validate --integrity

Coverage runs as a separate CI job (kept out of the test job so that stays zero-dep): from skills/rosetta/, coverage run -m unittest discover -s tests && coverage reportfail_under = 90 is enforced via .coveragerc. CI runs the suite on Python 3.9 and 3.12; keep both green. Optional: pip install -e skills/rosetta puts rosetta on PATH; python3 skills/rosetta/tests/live_smoke.py runs non-asserting counts against your real machine.

Architecture

skills/rosetta/rosetta_cli.py is a thin dispatcher that shells each subcommand to a deterministic script under skills/rosetta/scripts/:

  • collect.py — resolve + normalize transcripts for one project: 18 per-agent resolvers + parsers, a discovery sweep, crash-safe atomic writes, and a processed-session ledger. --all-projects emits a machine-wide discovery index.
  • decisions.py — ADR/PDR/BDR records: new | index | validate | integrity | staleness | search | get | supersede | resolve | coverage. Owns numbering, the index, and validation.
  • ingest.py — external decisions/signals → Status: Proposed drafts (never auto-accepted).
  • gates.py / preflight.py — local provenance/evidence gates; preflight also embeds RA1's structural readiness report. runs.py — isolated loop-run ledger under loop-runs/. harness.py — allowlisted harness-doc export. drift.py — decision-freshness JSON.

Read the full file on GitHub · 84 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. 4d ago First seen · 84 lines · 1,261 tokens per session scan A 8a06f4093d38

Subscribe to this mod's changes

rosetta AGENTS.md is an instructions file published in the GitHub repository tjboudreaux/rosetta (2 stars, last pushed 1mo ago), licensed MIT. It adds 1,261 tokens to every session, about $0.0063 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.