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/decodingai-magazine/building-a-coding-agent-from-scratch-course/agents-mdgit clone --depth 1 https://github.com/decodingai-magazine/building-a-coding-agent-from-scratch-courseWrote 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.
[](https://agentmods.dev/instructions/decodingai-magazine/building-a-coding-agent-from-scratch-course/agents-md)<a href="https://agentmods.dev/instructions/decodingai-magazine/building-a-coding-agent-from-scratch-course/agents-md"><img src="https://agentmods.dev/badge/instructions/decodingai-magazine/building-a-coding-agent-from-scratch-course/agents-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.04257 | $0.04257 |
| Opus 5 | $0.02129 | $0.02129 |
| Sonnet 5 | $0.00851 | $0.00851 |
| Haiku 4.5 | $0.00426 | $0.00426 |
Grade A, and why
building-a-coding-agent-from-scratch-course 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 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.
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 — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.
decode
decode — terminal coding agent ("agentic harness") built step by step as an educational open-source course (Apache-2.0). Single Python package decode (Python 3.12+, cli-tool-python shape): Click entrypoint launches a TUI (prompt_toolkit input + Rich output — a module inside the package, not a separate service); Pydantic-AI ReAct loop drives file/bash/web/MCP tools; pluggable inference (Gemini / OpenRouter / Modal); local + remote sandboxing; Opik observability; Kitaru durability runtime. Depth references name squid scaffold specs (in iusztinpaul/squid plugin, not this repo) — read via plugin cache; package depth: python-backend + cli-tool-python.
Project Structure
Target tree. Create src/ subpackages at their step — never pre-create empty packages. tests/ mirrors src/ 1:1. Only config/, entities/, logging.py foundational from day one.
.
├── AGENTS.md / CLAUDE.md # this memory file (+ Claude Code import)
├── pyproject.toml # uv + hatchling; deps grow per step
├── Makefile # install / test / lint / format / pre-commit / build / ci
├── .pre-commit-config.yaml # format + lint (commit) · unit tests (push)
├── .env.example # config & secrets surface
├── docs/
│ ├── adr/ # Architecture Decision Records (Nygard)
│ └── glossary.md # ubiquitous language
├── tasks/ # file-based tracker — one md per task
├── tests/{unit,integration}/ # unit mirrors src/ 1:1; integration touches real infra
└── src/decode/
├── __init__.py
├── logging.py # init_logger() — module-level in every entrypoint
├── cli.py # Click entrypoint → launches the TUI [bootstrap]
├── config/settings.py # pydantic-settings; module-level `settings` singleton
├── entities/ # shared models: Message, Conversation, ToolCall, Task…
├── tui/ # input: prompt_toolkit · output: Rich (answers stream as in-process async events)
├── harness/ # message Queue + Priority Gate around the loop
├── agent/ # Pydantic-AI ReAct loop (LLM ⇄ Tools)
├── agents/ # agents catalog: Build/Plan/Code-Reviewer (primary) + Explore (subagent, spawned via the agent tool)
├── tools/ # file I/O, Bash, web, tasks, MCP factory, skill dispatcher, LSP, AskUser
├── permissions/ # allow/ask/deny · modes (default/plan/edit/bypass) · settings.json
├── sandbox/ # Bash execution seam — none (host) / docker (local) / modal (remote)
├── services/lsp/ # LSP Service — hand-rolled stdio client; FIRST concrete services/ entry (ADR-0007)
├── services/ # services interface: LLM gateway, memory, MCP servers land here later
├── runtime/ # Kitaru durable flow + `decode run` (ADR-0008); HITL later
├── context/ # context engineering: compaction + conversation log (JSONL)
├── memory/ # AGENTS.md / MEMORY.md loading
└── observability/ # Opik tracing
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.
- 5d ago First seen · 142 lines · 4,257 tokens per session scan A f60a234784fd
building-a-coding-agent-from-scratch-course AGENTS.md is an instructions file published in the GitHub repository decodingai-magazine/building-a-coding-agent-from-scratch-course (348 stars, last pushed yesterday), licensed Apache-2.0. It adds 4,257 tokens to every session, about $0.0213 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
Albatross AGENTS.md
Instructions for morganlinton/Albatross, covering agent instructions, general and releases.
learn-opencode-agent CLAUDE.md
Instructions for qqzhangyanhua/learn-opencode-agent, covering claude.md, 项目定位, 架构总览, 模块结构图 and 模块索引.
agentic-ai-system-course AGENTS.md
Instructions for bryanyzhu/agentic-ai-system-course, covering claude.md — ai mentor's guideline, the design you are working inside, your role, the curriculum and reference systems: optional, triggered, not required.
vix AGENTS.md
AGENTS.md instructions for get-vix/vix, covering agents.md, project overview, architecture, instance control channel and development commands.
claude-moodle-dev copilot-instructions.md
Instructions for SaadRahman01/claude-moodle-dev: This repo follows Moodle plugin conventions. Apply the relevant skill below to any Moodle-related task.
RemoClaw CLAUDE.md
Instructions for quangtam/RemoClaw, covering remoclaw — agent context, what is this?, architecture, file structure and how to run.