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/harindukavishka/agentify/agents-mdgit clone --depth 1 https://github.com/harindukavishka/agentifyWhat 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.00371 | $0.00371 |
| Opus 5 | $0.00186 | $0.00186 |
| Sonnet 5 | $0.00074 | $0.00074 |
| Haiku 4.5 | $0.00037 | $0.00037 |
Grade A, and why
agentify 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.
This is a copy
100% identical to agentify AGENTS.md — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
What it actually says
AGENTS.md
Agentify is an Agent Interface Compiler that transforms OpenAPI specifications into multiple agent-consumable formats (MCP Server, Skills, CLAUDE.md, .cursorrules, AGENTS.md, llms.txt, A2A Card).
Build & Run
npm install
npm run build # Build with tsup
npm run dev # Dev mode with tsx
npm test # Run tests with Vitest
npm run lint # TypeScript type check
Architecture
- Parser (
src/parser/): OpenAPI spec parsing + input sanitization - Generator (
src/generator/): Pluggable emitters for each output format - Security (
src/security/): Generated code scanning for dangerous patterns - IR (
src/types.ts): Canonical intermediate representation (AgentifyIR) - CLI (
src/cli.ts): Commander.js CLI entry point
Code Conventions
- TypeScript strict mode (all strict flags enabled)
- Immutable data patterns — never mutate objects, always spread
- Small files: 200-400 lines typical, 800 max
- Emitter interface: implement
emit(ir, options) => EmitterResult - All OpenAPI spec fields must pass through sanitizer before use
- Generated code must pass security scanner before output
Testing
- Framework: Vitest
- Coverage target: 80%+
- Test files:
test/*.test.ts - Integration tests use live Petstore API
Security
- Input sanitization blocks: eval, exec, Function constructor, require/import in descriptions
- Handlebars template injection prevention
- Prompt injection pattern detection
- Generated code scanner checks for critical patterns before writing files
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.
- 3d ago First seen · 45 lines · 371 tokens per session scan A 6bb2965e72bb
agentify AGENTS.md is an instructions file published in the GitHub repository harindukavishka/agentify (4 stars, last pushed 3d ago), licensed MIT. It adds 371 tokens to every session, about $0.0019 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to agentify AGENTS.md, differing in 0 lines, and is treated as a copy.
Other instructions, from other repositories
deer-flow CLAUDE.md
Claude Code instructions for bytedance/deer-flow: The repo's agent guidance lives in AGENTS.md so it is shared across coding agents (Claude Code, Codex, and others). Claude Code imports it below.
starknet-agentic CLAUDE.md
Instructions for keep-starknet-strange/starknet-agentic, covering starknet agentic -- development context, cairo, typescript, skills and git.
starknet-agentic AGENTS.md
Instructions for keep-starknet-strange/starknet-agentic, covering agents.md - canonical agent instructions, mission, scope, core operating principles and roles and boundaries.
turbo-flow CLAUDE.md
Claude Code instructions for marcuspat/turbo-flow, covering claude.md — turbo flow, what this repo is, key files and conventions.
Framework_Development_Guide
Instructions for rezaho/MARSYS, covering 0. golden principle, 1. layered architecture (mental model), 2. core classes & responsibilities, 2.1 module overview & logical flow and src/agents/ - agent architecture & communication.
agent-plugins-skills copilot-instructions.md
Instructions for richfrem/agent-plugins-skills, covering copilot instructions for agent-plugins-skills, 1. think before coding, 2. simplicity first, 3. surgical changes and 4. goal-driven execution.