apm integrators.instructions.md

Architecture rules for file-level integrators, components that deploy different kinds of files into repositories of any size.

In plain words
What is it for?
Build or modify integrators using shared collision detection, manifest syncing, secure paths, link resolution, and efficient file discovery.
Why use it?
They prevent duplicated deployment logic and keep work proportional to the files being changed instead of the whole workspace.

Instructions file for GitHub Copilot

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/microsoft/apm/integrators
Clone the repo
git clone --depth 1 https://github.com/microsoft/apm

Made for: GitHub Copilot.

Per session 983 This file is loaded in full into every session.
When invoked 983 The same file — it is already loaded in full.
Security scan A 0 findings. 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 $0.00983 $0.00983
Opus 5 $0.00491 $0.00491
Sonnet 5 $0.00197 $0.00197
Haiku 4.5 $0.00098 $0.00098

Measured yesterday against content hash 19919cbd0403, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

.github/instructions/integrators.instructions.md · 64 lines

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:

  1. One base, many file types. All file-level integrators share a single BaseIntegrator infrastructure 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 into BaseIntegrator.
  2. 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

Read the full file on GitHub · 64 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. yesterday First seen · 64 lines · 983 tokens per session scan A 19919cbd0403

Subscribe to this mod's changes

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.