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.
npx agentmods add instructions/florianjs/openstock/agents-mdgit clone --depth 1 https://github.com/florianjs/openstockWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.01515 | $0.01515 |
| Opus 5 | $0.00758 | $0.00758 |
| Sonnet 5 | $0.00303 | $0.00303 |
| Haiku 4.5 | $0.00152 | $0.00152 |
Grade A, and why
openstock 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.
How it starts
The opening of the file, as written. The whole thing — 201 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Guidelines for AI coding agents working in the OpenStock codebase.
Project Overview
Self-hosted inventory and stock management system:
- Framework: Nuxt 4 with Vue 3 Composition API
- Database: Cloudflare D1 (SQLite) with Drizzle ORM
- Styling: TailwindCSS
- Hosting: Cloudflare Pages via NuxtHub
Build/Lint/Test Commands
# Development
npm run dev # Start dev server on http://localhost:3000
# Build
npm run build # Production build
npm run preview # Preview production build locally
# Database
npm run db:generate # Generate migrations from schema changes
npm run db:populate # Populate database with sample data
npm run db:export # Export database
npm run db:sync # Export and push to remote
# Deployment
npm run deploy:cf # Build and deploy to Cloudflare Pages
npm run postinstall # nuxt prepare (run after npm install)
Note: No test framework or linter is currently configured.
Project Structure
├── app/ # Frontend (Nuxt 4 app directory)
│ ├── components/ # Vue components (ui/, charts/)
│ ├── composables/ # Vue composables (useAuth, useToast, useSettings)
│ ├── layouts/ # Page layouts
│ ├── pages/ # File-based routing
│ └── middleware/ # Route middleware
├── server/ # Backend (Nitro)
│ ├── api/ # API endpoints (file-based routing)
│ ├── database/ # Drizzle schema (schema.ts)
│ ├── middleware/ # Server middleware (auth.ts)
│ └── utils/ # Server utilities (db.ts, id.ts)
├── migrations/ # SQL migration files
└── nuxt.config.ts # Nuxt configuration
Code Style Guidelines
Imports
// 1. External packages first
import { eq, desc } from 'drizzle-orm';
// 2. Server schema imports using the ~ alias
import { products } from '~~/server/database/schema';
import type { Product, Category } from '~~/server/database/schema';
// Nuxt auto-imports (no explicit import needed): useDB, tables, defineEventHandler, ref, reactive, computed, useFetch
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.
- 2d ago First seen · 201 lines · 1,515 tokens per session scan A 658c2583af2e
openstock AGENTS.md is an instructions file published in the GitHub repository florianjs/openstock (51 stars, last pushed 5mo ago), licensed MIT. It adds 1,515 tokens to every session, about $0.0076 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.
Other instructions, from other repositories
foundry AGENTS.md
AGENTS.md instructions for incubrain/foundry, covering incubrain foundry, quick start, external consumer repos, testing layer changes in external consumers (verdaccio) and one-time setup.
foundry CLAUDE.md
Claude Code instructions for incubrain/foundry, covering context-mode — mandatory routing rules, blocked commands — do not attempt these, curl / wget — blocked, inline http — blocked and webfetch — blocked.
ui AGENTS.md
AGENTS.md instructions for nuxt/ui, covering agents.md, project overview, project structure, commands and cli for scaffolding.
ui CLAUDE.md
Claude Code instructions for nuxt/ui, a project described as: The Intuitive Vue UI Library powered by Reka UI & Tailwind CSS.
kona-theme CLAUDE.md
Instructions for jonathanmoore/kona-theme, covering claude.md, what this is, commands, architecture and project layout.
scrapai-cli CLAUDE.md
Instructions for discourselab/scrapai-cli, covering claude.md, 1. who you are, 2. hard rules, 3. tools and 4. before you start: confirm the project.