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/microsoft/apm/integratorsgit clone --depth 1 https://github.com/microsoft/apmWhat 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.00983 | $0.00983 |
| Opus 5 | $0.00491 | $0.00491 |
| Sonnet 5 | $0.00197 | $0.00197 |
| Haiku 4.5 | $0.00098 | $0.00098 |
Grade A, and why
apm integrators.instructions.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 yesterday.
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 — 64 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Integrator Architecture
Design philosophy
APM runs inside repositories of any size — from single-package repos to monorepos with thousands of packages and deep dependency trees. Every integrator must assume it will operate at that scale. The architecture is built around two principles:
- One base, many file types. All file-level integrators share a single
BaseIntegratorinfrastructure for collision detection, manifest-based sync, path security, link resolution, and file discovery. New integrators add what to deploy, never how to deploy. When logic belongs to more than one integrator, push it intoBaseIntegrator. - Pay only for what you touch. Operations must be proportional to the files a single package deploys, not the size of the workspace or the total managed-files set. Pre-normalize once, partition once, look up in O(1). Avoid full-tree walks, per-file parent cleanup, or repeated set scans.
When evolving integration logic -- new file types, richer transforms, cross-package awareness -- preserve these properties. If a change would violate either principle, refactor the base class first. This subsystem is the integration-specific instance of the repo-wide single-canonical-owner rule; see architecture.instructions.md.
Required structure
Every file-level integrator must extend BaseIntegrator and return IntegrationResult.
from apm_cli.integration.base_integrator import BaseIntegrator, IntegrationResult
class FooIntegrator(BaseIntegrator):
def find_foo_files(self, package_path: Path) -> List[Path]: ...
def copy_foo(self, source: Path, target: Path) -> int: ...
def integrate_package_foos(self, package_info, project_root: Path,
force: bool = False,
managed_files: set = None) -> IntegrationResult: ...
def sync_integration(self, apm_package, project_root: Path,
managed_files: set = None) -> Dict[str, int]: ...
Base-class methods — use, don't reimplement
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.
- yesterday First seen · 64 lines · 983 tokens per session scan A 19919cbd0403
apm integrators.instructions.md is an instructions file published in the GitHub repository microsoft/apm (3,668 stars, last pushed yesterday), licensed MIT. It adds 983 tokens to every session, about $0.0049 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
aru AGENTS.md
Instructions for narumiruna/aru, covering repository guidance, scope and authority, communication & documentation, code style and project map.
skillport AGENTS.md
Instructions for gotalab/skillport, covering agent guidelines & context, 1. core principles (10-second recall), 2. project context, architecture and directory structure.
odin-codex-plugin AGENTS.md
Instructions for OutlineDriven/odin-codex-plugin, covering codex coding agent adherences, token-efficient cli output, tool hierarchy, core system & file ops and search & discovery.
copilot-setting AGENTS.md
AGENTS.md instructions for zexion7873/copilot-setting, covering copilot-setting — agent guide, communication language, repository purpose, validation commands and architecture.
loadout reactjs.instructions.md
ReactJS Engineering Instructions.
loadout tauri.instructions.md
Tauri Engineering Instructions.