ai AGENTS.md

ai AGENTS.md is an instructions file for Codex, OpenCode from IsaiaScope/ai. It costs 2,398 tokens per session, scanned B, original, MIT.

Repository instructions for IsaiaScope/ai, covering agent setup, updates, architecture, skills, and the plugin marketplace. AGENTS.md is a file that tells coding agents how to work in a project.

In plain words
What is it for?
Installing or updating the agent setup, adding skills or plugins, and running the project’s checks.
Why use it?
It gives coding agents the project’s installation steps, file conventions, and test commands in one place.

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/isaiascope/ai/agents-md
Clone the repo
git clone --depth 1 https://github.com/IsaiaScope/ai

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/isaiascope/ai/agents-md.svg)](https://agentmods.dev/instructions/isaiascope/ai/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/isaiascope/ai/agents-md"><img src="https://agentmods.dev/badge/instructions/isaiascope/ai/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,398 This file is loaded in full into every session.
When invoked 2,398 The same file — it is already loaded in full.
Security scan B 1 finding. 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.02398 $0.02398
Opus 5 $0.01199 $0.01199
Sonnet 5 $0.00480 $0.00480
Haiku 4.5 $0.00240 $0.00240

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

Security

Grade B, and why

ai AGENTS.md scanned grade B 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 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

Copies `config/CLAUDE.md` → `~/CLAUDE.md` and `config/AGENTS.md` → `~/.codex/AGENTS.md`, installs upstream skill packs via `npx skills@latest`, symlinks the local `IsaiaScope/ai` skills directly into both supported agent
AGENTS.md · 127 lines

How it starts

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

AGENTS.md

This file provides guidance to coding agents (Claude Code, Codex) working with code in this repository. CLAUDE.md is a symlink to this file — edit here.

Install / Update

node scripts/install.js

Copies config/CLAUDE.md~/CLAUDE.md and config/AGENTS.md~/.codex/AGENTS.md, installs upstream skill packs via npx skills@latest, symlinks the local IsaiaScope/ai skills directly into both supported agents' skills dirs (Claude-side → ~/.claude/skills/, Codex-side → ~/.codex/skills/), and owns the tracker's two hooks in ~/.claude/settings.json (see scripts/agent-hooks.js). No build step, no package.json. The whole suite is one command, and it lives in docs/iso/config.json under test.command — that is the command /iso-review's phase gate runs, so running anything else locally checks less than CI does. It covers node --test scripts/*.test.js, every *.test.sh under scripts/ and skills/*/scripts/{,lib/,adapters/}, and every skills/*/scripts/test_*.py.

Architecture

config/
  AGENTS.md   — global agent instructions (copied to ~/.codex/AGENTS.md on install)
  CLAUDE.md   — symlink to AGENTS.md (copied to ~/CLAUDE.md on install)
skills/                            — prefix routes each skill to a marketplace plugin (iso-* → eng, social-* → social)
  iso-config/SKILL.md              — the Iso config every iso-* skill reads
  iso-config/scripts/lib/branch.sh — shared branch vocabulary: protected test, name derivation, the gate
  iso-config/scripts/lib/track.sh  — the one seam to the tracker: iso_track, iso_track_path; never fatal
  iso-issue-tracking/SKILL.md      — work tracker, reached through a swappable adapter
  iso-ai-init/SKILL.md             — initialize a repo with IsaiaScope AI defaults
  iso-init-repo/SKILL.md           — initialize repo governance (branches, CI, hooks)
  iso-plan/SKILL.md                — planning pipeline orchestrator
  iso-write/SKILL.md               — TDD plan executor on a feature branch, no commits
  iso-review/SKILL.md              — three phases over the branch: architecture, simplify, review
  iso-spawn/SKILL.md               — spawn a codex/claude agent in a herdr tab
  iso-readme/SKILL.md              — write/refine READMEs in house style, commit + push
  social-notebooklm/SKILL.md       — research-first NotebookLM notebook + scaletta for a video
  social-new-video/SKILL.md        — one-shot launcher: spawns a tab that runs social-notebooklm
scripts/
  install.js                        — deploys config files + installs skill packs globally
  agent-hooks.js                    — writes the tracker hooks into ~/.claude/settings.json (list: skills/iso-issue-tracking/scripts/hooks.json)
  skills-manifest.js                — filesystem → skill catalog: discovery, prefix routing (PLUGINS), manifest projection
  dispatch-integrity.test.sh        — every verb a script dispatches must resolve to a defined function
  portability.test.sh               — no skill may carry the machine it was written on (paths, package manager, agent config dir)
  skill-refs.test.sh                — every skill name referenced in live prose has a directory (survives a rename's blind spots)
.claude-plugin/
  marketplace.json                  — Claude marketplace catalog (2 plugins → ./plugins/<name>)
.agents/plugins/
  marketplace.json                  — Codex marketplace catalog (2 plugins → ./plugins/<name>)
plugins/                            — one subdir per marketplace plugin (routed by skill prefix)
  isaiascope-eng/                   — engineering plugin (iso-* skills)
    .claude-plugin/plugin.json      — Claude manifest (skills array, regenerated on install)
    .codex-plugin/plugin.json       — Codex manifest (skills: "./skills/", whole-dir)
    skills → ../../../skills/iso-*  — per-skill symlinks, regenerated on install
  isaiascope-social/                — social plugin (social-* skills)
    .claude-plugin/plugin.json      — Claude manifest (skills array, regenerated on install)
    .codex-plugin/plugin.json       — Codex manifest (skills: "./skills/", whole-dir)
    skills → ../../../skills/social-* — per-skill symlinks, regenerated on install

Read the full file on GitHub · 127 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 · 127 lines · 2,398 tokens per session scan B 2b3262e71ece

Subscribe to this mod's changes

ai AGENTS.md is an instructions file published in the GitHub repository IsaiaScope/ai (2 stars, last pushed 7d ago), licensed MIT. It adds 2,398 tokens to every session, about $0.0120 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.