awesome-agentic-AI-coding-template AGENTS.md

awesome-agentic-AI-coding-template AGENTS.md is an instructions file for Codex, OpenCode from florian101010/awesome-agentic-AI-coding-template. It costs 1,200 tokens per session, scanned A, original, MIT.

An AGENTS.md instruction template for AI coding tools such as Codex, Copilot, Cursor, Kilo Code, and Jules. It covers the project overview, architecture, file structure, and coding rules.

In plain words
What is it for?
Use it to document the project layout, architectural rules, configuration practices, Git hooks, and the files agents need to understand.
Why use it?
It gives different coding assistants a shared set of repository instructions and important constraints.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: mentions CLAUDE.md; mentions Claude Code; mentions AGENTS.md.

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/florian101010/awesome-agentic-ai-coding-template/agents-md
Clone the repo
git clone --depth 1 https://github.com/florian101010/awesome-agentic-AI-coding-template

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 awesome-agentic-AI-coding-template AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/florian101010/awesome-agentic-ai-coding-template/agents-md.svg)](https://agentmods.dev/instructions/florian101010/awesome-agentic-ai-coding-template/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/florian101010/awesome-agentic-ai-coding-template/agents-md"><img src="https://agentmods.dev/badge/instructions/florian101010/awesome-agentic-ai-coding-template/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,200 This file is loaded in full into every session.
When invoked 1,200 The same file — it is already loaded in full.
Security scan A 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.1 $0.01200 $0.01200
Opus 5 $0.00600 $0.00600
Sonnet 5 $0.00240 $0.00240
Haiku 4.5 $0.00120 $0.00120

Measured 5d ago against content hash 5e5ac294a5ab, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

awesome-agentic-AI-coding-template AGENTS.md scanned grade A 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 5d 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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

4. **Strict Subprocess Timeouts** — Every CLI command via `child_process` must have a strict timeout (e.g., `{ timeout: 10000 }`).
AGENTS.md · 107 lines

How it starts

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

AGENTS.md

Agent instructions for AI coding tools (OpenAI Codex, GitHub Copilot, Cursor, Kilo Code, Google Jules). For Claude Code see CLAUDE.md. For Kilo Code project rules see .kilocode/rules/. For Gemini/Antigravity see .agent/rules/.

Project Overview

[FILL: Project Name] — [FILL: 1-2 sentence project description. What does it do? Who uses it?]

Architecture (Must-Know)

  • [FILL: Key architectural constraint 1] — e.g. "No runtime frameworks, vanilla JS only"
  • [FILL: Key architectural constraint 2] — e.g. "Config-driven: all data in config/ files, never hardcode in templates"
  • [FILL: Key architectural constraint 3] — e.g. "Touch-first: runs in iOS/Android WebView, all interactions are touch gestures"
  • Repo-local Git hooks — Use .githooks/ via git config core.hooksPath .githooks and keep hooks executable

File Structure

[FILL: Add your project's key file structure here.
Only include files/folders that agents must know about to work effectively.
Example:

src/
  index.ts              ← Entry point
  api/                  ← API layer
  components/           ← UI components

config/
  app-config.ts         ← Application configuration

tests/
  *.test.ts             ← Unit tests

docs/
  README.md             ← Primary documentation
]

Coding Rules

General

  1. [FILL: Rule 1] — e.g. "No runtime frameworks"
  2. [FILL: Rule 2] — e.g. "Config as Single Source of Truth"
  3. Minimal changes — Only touch files necessary for the task
  4. No unsolicited features — Don't add functionality the user didn't ask for

AI Execution & Orchestration

  1. No hanging bash loops — Never use fire-and-forget bash scripts for multi-step iteration or orchestration.
  2. Agent-Orchestrated Concurrency — For batch tasks, retrieve the list of targets via a native tool, then have the agent iterate with individual tool calls.
  3. MCP Server Tools Over CLI — Always prioritize native MCP integrations (e.g., Github MCP Server) over arbitrary CLI commands.
  4. Strict Subprocess Timeouts — Every CLI command via child_process must have a strict timeout (e.g., { timeout: 10000 }).

Read the full file on GitHub · 107 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. 5d ago First seen · 107 lines · 1,200 tokens per session scan A 5e5ac294a5ab

Subscribe to this mod's changes

awesome-agentic-AI-coding-template AGENTS.md is an instructions file published in the GitHub repository florian101010/awesome-agentic-AI-coding-template (4 stars, last pushed 6mo ago), licensed MIT. It adds 1,200 tokens to every session, about $0.0060 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). 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

ai-driven-development AGENTS.md

AGENTS.md instructions for CodeAlive-AI/ai-driven-development, covering ai-driven development — development guide, git publishing defaults, when to create tags and releases, requires a new tag/release and does not require a new tag/release.

CodeAlive-AI/ai-driven-development · 1,110 tokens

cc-use-exp frontend.instructions.md

Instructions for doccker/cc-use-exp, a project described as: ⛔ No longer maintained → dev-agent-kit/recipes 让 Claude Code、Antigravity、Gemini CLI、Codex、Cursor 开箱即用的分层配置模板,总结十多年的日常开发经验.

doccker/cc-use-exp · 135 tokens

capy CLAUDE.md

Claude Code instructions for serpro69/capy, covering claude.md, project, architecture, key packages and critical invariants.

serpro69/capy · 1,579 tokens

Skillry AGENTS.md

AGENTS.md instructions for FluxonLab/Skillry, covering agents.md, operating model, core engineering principles, evidence, research, and verification and scope, plans, and decisions.

FluxonLab/Skillry · 1,063 tokens

ai-driven-development CLAUDE.md

Claude Code instructions for CodeAlive-AI/ai-driven-development, a project described as: Practices, protocols, and skills for AI-driven software development. Skills and safety hooks for Claude Code, Codex, OpenCode, Cursor, Antigravity, and any agent supporting the Agent Skills standard.

CodeAlive-AI/ai-driven-development · 5 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens