claude-code-types AGENTS.md

claude-code-types AGENTS.md is an instructions file for Codex, OpenCode from pedropaulovc/claude-code-types. It costs 1,220 tokens per session, scanned A, original, MIT.

Project instructions for a TypeScript package that defines types for Claude Code chat-history JSONL files, which are newline-separated JSON records.

In plain words
What is it for?
Checking the type definitions, scanning transcripts for missing types, updating the package from logs, and publishing new versions.
Why use it?
They document the package layout, validation commands, log-based type updates, and release process 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/pedropaulovc/claude-code-types/agents-md
Clone the repo
git clone --depth 1 https://github.com/pedropaulovc/claude-code-types

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 claude-code-types AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/pedropaulovc/claude-code-types/agents-md.svg)](https://agentmods.dev/instructions/pedropaulovc/claude-code-types/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/pedropaulovc/claude-code-types/agents-md"><img src="https://agentmods.dev/badge/instructions/pedropaulovc/claude-code-types/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,220 This file is loaded in full into every session.
When invoked 1,220 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.01220 $0.01220
Opus 5 $0.00610 $0.00610
Sonnet 5 $0.00244 $0.00244
Haiku 4.5 $0.00122 $0.00122

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

Security

Grade A, and why

claude-code-types 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 3d 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 · 72 lines

How it starts

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

claude-code-types

Types-only npm package for Claude Code chat history JSONL files.

Project Structure

index.d.ts                      # All type definitions (the package payload)
scripts/scan-transcripts.ts     # Coverage scanner: finds JSONL values index.d.ts doesn't model yet
scripts/lib/extract-types.ts    # Parses index.d.ts (TS compiler API) — single source of truth for known values
test/smoke.local.test.ts        # Smoke test against real JSONL files (KNOWN_TYPES derived from index.d.ts)
package.json                    # types field, no main/module
tsconfig.json                   # Strict TS config for validation
scripts/tsconfig.json           # Strict TS config for the scanner + test
CHANGELOG.md                    # Keep a Changelog format
.github/workflows/ci.yml       # CI: typecheck + verify docs freshness on PRs and main pushes
.github/workflows/auto-tag.yml # Auto-creates v* tag from package.json on main push
.github/workflows/publish.yml  # Single job: validate → npm publish → GitHub Release, on v* tag push

Commands

  • npm run typecheck — Validate index.d.ts compiles under strict mode
  • npm run typecheck:scripts — Typecheck the scanner and test under strict mode
  • npm run scan — Scan ~/.claude/projects/ and report every discriminator/union value and entry field not yet covered by index.d.ts, with counts and samples. Exits non-zero when anything is uncovered. Run this first when refreshing types. Flags: --dir <path>, --json, --no-samples.
  • npm test — Run smoke tests (requires ~/.claude/projects/ to contain JSONL files)

Refreshing types from logs

scripts/lib/extract-types.ts parses index.d.ts as the source of truth, so the scanner and smoke test automatically track whatever the union declares — never hardcode a parallel list. To refresh:

  1. npm run scan — lists new entry types, system subtypes, attachment types, tools, models, stop reasons, permission modes, queue ops, cache-miss reasons, content-block/citation types, and undeclared top-level fields per entry type. Each new value comes with a count and a sample JSON line.
  2. For each reported value, add it to the location named in the report (e.g. a new Attachment member + interface, or a field on EntryBase). For new entry/attachment interfaces, use the sample to type the payload.
  3. Re-run npm run scan until it reports full coverage, then npm run typecheck && npm test.

Read the full file on GitHub · 72 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. 3d ago First seen · 72 lines · 1,220 tokens per session scan A 725bf6d27f6b

Subscribe to this mod's changes

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

Related

Other instructions, from other repositories

react-seed AGENTS.md

Instructions for guokaigdg/react-seed, covering agents.md, 目录, 1. 项目概览, 2. 技术栈 and 3. 目录结构.

guokaigdg/react-seed · 5,007 tokens

persian-tools typescript.instructions.md

Instructions for persian-tools/persian-tools, covering typescript development instructions, typescript best practices for persian-tools, type safety, function signatures and type definitions.

persian-tools/persian-tools · 317 tokens

agentic-playwright enums.instructions.md

Instructions for idavidov13/agentic-playwright, covering enums, critical, file locations, instructions and phase 1: decide if the value belongs in an enum.

idavidov13/agentic-playwright · 2,598 tokens

ui-extensions-sdk CLAUDE.md

Instructions for contentful/ui-extensions-sdk, covering claude project instructions — ui-extensions-sdk, identity & scope, working style, sharp edges and verification before claiming done.

contentful/ui-extensions-sdk · 804 tokens

hana-developer-cli-tool-example mcp-server-development.instructions.md

Use when creating or updating MCP (Model Context Protocol) server components. Enforces TypeScript patterns, JSON-RPC communication rules, tool/resource/prompt registration, and integration with CLI command metadata. Ensures MCP server follows protocol requirements and maintains consistency with the CLI infrastructure.

SAP-samples/hana-developer-cli-tool-example · 4,811 tokens

innovation-lab-examples typescript.instructions.md

Instructions for fetchai/innovation-lab-examples, a project described as: 80+ production-ready AI agent examples in Python — build autonomous agents, multi-agent systems and agentic AI with uAgents, ASI:One, MCP, A2A, LangChain, CrewAI, Gemini, Claude and OpenAI.

fetchai/innovation-lab-examples · 12 tokens