jean AGENTS.md

jean AGENTS.md is an instructions file for Codex, OpenCode from coollabsio/jean. It costs 7,237 tokens per session, scanned A, original, Apache-2.0.

Repository-specific instructions for a Tauri React application, including its development rules, documentation, task process, and Codex app-server schema checks. Tauri is a framework for desktop apps built with web interfaces and native code.

In plain words
What is it for?
Use it when working on this repository to inspect its structure, read the relevant architecture documents, generate app-server schemas, and run its prescribed checks.
Why use it?
It gives an agent the project context and local conventions it should follow before changing files.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/coollabsio/jean/agents-md.svg)](https://agentmods.dev/instructions/coollabsio/jean/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/coollabsio/jean/agents-md"><img src="https://agentmods.dev/badge/instructions/coollabsio/jean/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 7,237 This file is loaded in full into every session.
When invoked 7,237 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.07237 $0.07237
Opus 5 $0.03619 $0.03619
Sonnet 5 $0.01447 $0.01447
Haiku 4.5 $0.00724 $0.00724

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

Security

Grade A, and why

jean 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 · 568 lines

How it starts

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

AI Agents

Current Status

@CLAUDE.local.md

Overview

This repository is a template with sensible defaults for building Tauri React apps.

Core Rules

Codex App Server schema

If you need to check some codex app-server related things, use "codex app-server generate-json-schema --out ./codex-schema" to generate schema and check local dir ./codex-schema for schemas.

New Sessions

  • Read @docs/tasks.md for task management
  • Review docs/developer/architecture-guide.md for high-level patterns
  • Check docs/developer/ for system-specific patterns (command-system.md, performance-patterns.md, etc.)
  • Check git status and project structure

Development Practices

CRITICAL: Follow these strictly:

  1. Read Before Editing: Always read files first to understand context
  2. Follow Established Patterns: Use patterns from this file and docs/developer
  3. Senior Architect Mindset: Consider performance, maintainability, testability
  4. Batch Operations: Use multiple tool calls in single responses
  5. Match Code Style: Follow existing formatting and patterns
  6. Test Coverage: Write comprehensive tests for business logic
  7. Quality Gates: Run bun run check:all after significant changes
  8. Dev Server: You may start the dev server (bun run tauri dev) when needed
  9. No Unsolicited Commits: Only when explicitly requested
  10. Documentation: Update relevant docs/developer/ files for new patterns
  11. Removing files: Always use rm -f

CRITICAL: Use Tauri v2 docs only. Always use modern Rust formatting: format!("{variable}")

Architecture Patterns (CRITICAL)

State Management Onion

useState (component) → Zustand (global UI) → TanStack Query (persistent data)

Decision: Is data needed across components? → Does it persist between sessions?

Performance Pattern (CRITICAL)

// ✅ GOOD: Use getState() to avoid render cascades
const handleAction = useCallback(() => {
  const { data, setData } = useStore.getState()
  setData(newData)
}, []) // Empty deps = stable

// ❌ BAD: Store subscriptions cause cascades
const { data, setData } = useStore()
const handleAction = useCallback(() => {
  setData(newData)
}, [data, setData]) // Re-creates constantly

Read the full file on GitHub · 568 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 · 568 lines · 7,237 tokens per session scan A 14c1638c70cc

Subscribe to this mod's changes

jean AGENTS.md is an instructions file published in the GitHub repository coollabsio/jean (1,250 stars, last pushed 9d ago), licensed Apache-2.0. It adds 7,237 tokens to every session, about $0.0362 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.