agentready AGENTS.md

A command-line tool that checks how ready a code repository is for work assisted by AI. It scans the repository, produces findings, scores them, and can set up or fix parts of the required structure.

In plain words
What is it for?
Use it to assess a repository, bootstrap agent-ready files and setup, apply automated alignment fixes, run tests, and check code quality.
Why use it?
It helps reveal missing documentation, tests, or project practices that make AI-assisted development less reliable. It also provides a consistent way to assess improvements.

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/ambient-code/agentready/agents-md
Clone the repo
git clone --depth 1 https://github.com/ambient-code/agentready

Made for: Codex, OpenCode.

Per session 615 This file is loaded in full into every session.
When invoked 615 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.00615 $0.00615
Opus 5 $0.00308 $0.00308
Sonnet 5 $0.00123 $0.00123
Haiku 4.5 $0.00061 $0.00061

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

Security

Grade A, and why

agentready 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 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.

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 · 68 lines

How it starts

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

AgentReady

Assess repositories against evidence-based attributes for AI-assisted development readiness.

Commands

# Core
agentready assess <repo>           # Assess repository
agentready bootstrap <repo>        # Setup agent-ready infrastructure
agentready align <repo>            # Automated remediation

# Development
pytest                             # Run tests
pytest --cov=src/agentready        # With coverage
black . && isort . && ruff check . # Lint

# Local development (uses this checkout, not the installed package)
PYTHONPATH=src python -m agentready assess <repo>

Data Flow

Repository -> Scanner -> Assessors -> Findings -> Scorer -> Reporters

Scoring

Certification levels: Platinum (90+), Gold (75-89), Silver (60-74), Bronze (40-59)

Adding Assessors

  1. Create class inheriting BaseAssessor (assessors/base.py)
  2. Implement attribute_id property and assess(repository) method
  3. Register in assessors/__init__.py:create_all_assessors()
  4. Add tests in tests/unit/test_assessors_*.py

Key Patterns

Proportional scoring: Use calculate_proportional_score() for partial compliance

Graceful degradation: Return "skipped" if tools missing, never crash

Finding creation:

Finding.create_pass(self.attribute, evidence="...", details="...")
Finding.create_fail(self.attribute, evidence="...", remediation="...")

Conventions

Commits: feat:, fix:, docs:, test:, refactor:, chore:

Tests: All new assessors require unit tests. Maintain >80% coverage for new code.

Linting: Run black . && isort . && ruff check . before commits

CI changes: Always run actionlint before pushing workflow changes.

Agent Guidelines

  1. Read before modifying: understand existing assessors first
  2. Follow patterns: use reference implementations (grep for BaseAssessor subclasses)
  3. Test thoroughly: unit tests required for all assessors
  4. Backwards compatibility: schema version bump for model changes
  5. Rich remediation: actionable steps with tools, commands, examples
  6. Self-assign issues: before starting work on a GitHub issue, check if it is already assigned. If it is, warn the user and ask for confirmation before continuing. If unassigned (or the user confirms), self-assign it immediately to prevent duplicate effort from other contributors
  7. Keep docs/attributes.md in sync: when changing how an assessor scores (thresholds, partial credit rules, recognized paths, pass/fail conditions), update the corresponding entry in docs/attributes.md in the same PR

Read the full file on GitHub · 68 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. 2d ago First seen · 68 lines · 615 tokens per session scan A f5a5c4d96a01

Subscribe to this mod's changes

agentready AGENTS.md is an instructions file published in the GitHub repository ambient-code/agentready (151 stars, last pushed 6d ago), licensed MIT. It adds 615 tokens to every session, about $0.0031 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-30.