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/laa-software-engineering/terfyn/agents-mdgit clone --depth 1 https://github.com/LAA-Software-Engineering/terfynWhat 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.01061 | $0.01061 |
| Opus 5 | $0.00531 | $0.00531 |
| Sonnet 5 | $0.00212 | $0.00212 |
| Haiku 4.5 | $0.00106 | $0.00106 |
Grade A, and why
terfyn 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 — 71 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Terfyn — agent instructions
Declarative YAML control plane for agents, tools, workflows, and policies. Primary interface is the Go CLI terfyn (Terraform-style validate / plan / apply / run / logs).
Canonical product detail: docs/DESIGN_DOC.md. Human contributor guide: CONTRIBUTING.md.
Layout
| Area | Path |
|---|---|
| CLI entrypoint | cmd/terfyn |
| Commands, flags, golden tests | internal/cli |
| YAML spec types and validation | internal/spec, internal/project |
| Plan / apply / engine / policy | internal/plan, internal/apply, internal/engine, internal/policy |
| SQLite state | internal/state/sqlite |
| End-to-end CLI tests | test/integration |
| Examples | examples/ |
Commands
make fmt/make verify-fmt— format / CI format gatemake vet—go vet ./...make test—go test ./... -racemake ci— verify-fmt + vet + test (local gate before PR)make build—bin/terfyn
Intentional CLI golden updates:
GO_UPDATE_GOLDEN=1 go test ./internal/cli/... -run TestGolden_
Conventions
- Match existing patterns in nearby files; prefer small, focused changes.
- Keep CLI and YAML semantics aligned with
docs/DESIGN_DOC.md. - User-visible or breaking changes: entry under Unreleased in
CHANGELOG.md. - Do not commit secrets, credentials, or local
.agentic/state.dbnoise.
Skills
Project workflows live under .cursor/skills/:
/feature— implement a capability or enhancement/bugfix— diagnose and fix a defect/code-review— adversarial senior review of a PR or diff; significant findings must be posted as inline code comments
Code review standard
Code reviews must determine whether a change deserves to merge, not whether it deserves encouragement. Use the /code-review skill for PRs and diffs, and review as the maintainer who will own the repository for the next decade.
- Technical analysis comes before presentation. Do not invent findings for tone.
- Identify the claimed contract, then trace each important abstraction end-to-end through validation, storage, runtime behavior, error handling, and tests.
- Prioritize memory safety, security, incorrect behavior, semantic/runtime mismatches, ownership/lifetime errors, broken API contracts, invariant violations, specification divergence, and error recovery corruption.
- Treat comments and documentation as executable claims: "thread-safe", "zero-copy", "backwards compatible", "safe", "generic", "fully typed", "constant time", and similar statements require evidence.
- Findings must be posted as inline code comments on the PR diff whenever a diff line can anchor the issue. The top-level review should contain only the verdict and concise summary unless an issue cannot be attached inline.
- Do not praise effort. Acknowledge good engineering only when it conveys useful technical contrast.
- If no meaningful defect can be demonstrated, approve. Never manufacture a blocker.
- Authority TCB (raised standard). For changes touching
internal/{lang/check,lang/lower,effects,plan,apply,deploy,policy,tools,schema,runtime,engine,state}or identity/manifest/schema fields ininternal/spec(andinternal/execironce #258 lands), review against the soundness invariants indocs/SOUNDNESS.md, not just local correctness. First question: which invariants (S1–S8) can this change affect, and where are the regression tests? A policy path that consults live disk during a pinned resume, or a captured-schema loader that re-reads disk, makes the central product claim false while everything looks green — that is not the same class of risk as a renderer bug. The TCB is whatever can make S1–S8 false; keep this list in sync withdocs/SOUNDNESS.md. Scope decisions for new subsystems follow ADR 004's necessity test.
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 · 71 lines · 1,061 tokens per session scan A 94151ffdb75f
terfyn AGENTS.md is an instructions file published in the GitHub repository LAA-Software-Engineering/terfyn (4 stars, last pushed 2d ago), licensed Apache-2.0. It adds 1,061 tokens to every session, about $0.0053 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-31.
Other instructions, from other repositories
openclaw-operator CLAUDE.md
Instructions for paperclipinc/openclaw-operator, covering claude.md — openclaw kubernetes operator, project overview, commands, architecture and reconciliation rules.
bex CLAUDE.md
Instructions for bex-co/bex, covering claude.md, repo map, commands, local cluster workflow and environment variables.
heygen-cli AGENTS.md
Instructions for heygen-com/heygen-cli, covering heygen cli, build & test, key rules, gen/ is generated — never hand-edit and command.spec is immutable.
agent-message-queue CLAUDE.md
Instructions for avivsinai/agent-message-queue, covering claude.md, project overview, release contract, operational constraints and build and development commands.
jenkins-cli CLAUDE.md
Instructions for avivsinai/jenkins-cli, covering claude.md, build & test commands, run a single test, skip e2e tests during unit testing and e2e with colima on macos (if docker is unreachable).
copilot-pro-dev-samples AGENTS.md
Instructions for pnp/copilot-pro-dev-samples, covering agents.md, purpose, repository layout, sample folder naming and required files.