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/cicdgit 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.02842 | $0.02842 |
| Opus 5 | $0.01421 | $0.01421 |
| Sonnet 5 | $0.00568 | $0.00568 |
| Haiku 4.5 | $0.00284 | $0.00284 |
Grade A, and why
apm cicd.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 — 119 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CI/CD Pipeline Instructions
Workflow Architecture (Tiered + Merge Queue)
Five workflows split by trigger and tier. PRs get fast feedback; the heavy integration suite runs only at merge time via GitHub Merge Queue (microsoft/apm#770).
ci.yml- Tier 1, runs onpull_requestANDmerge_group- Linux-only (ubuntu-24.04). Combined
build-and-testjob: unit tests + binary build in a single runner. No secrets needed. - Uploads Linux x86_64 binary artifact for downstream integration testing.
- Runs in both PR context (fast feedback for contributors) and merge_group context (against the tentative merge commit before queue auto-merges).
- Linux-only (ubuntu-24.04). Combined
ci-integration.yml- Tier 2,merge_grouptrigger only- Linux-only. Builds binary inline, then runs smoke + integration + release-validation against the tentative merge commit.
- Trust boundary is the write-access grant (only users with write can enqueue a PR). No environment approval gate.
- Inlines the binary build instead of fetching from
ci.ymlto avoid cross-workflow artifact plumbing across triggers. - Never add a
pull_requestorpull_request_targettrigger here. This file holds production secrets (GH_CLI_PAT,ADO_APM_PAT). Required-check satisfaction at PR time is handled bymerge-gate.yml, which aggregates all required signals into a singlegatecheck.
merge-gate.yml- single-authority PR-time aggregator- Triggers on
pull_requestonly (single trigger - dual-trigger withpull_request_targetproduces SUCCESS+CANCELLED check-run twins viacancel-in-progressand poisons branch protection's rollup). - One job named
gate. Polls the Checks API for all entries in the workflow'sEXPECTED_CHECKSenv var; aggregates pass/fail into a single check-run. - Branch protection requires ONLY this one check (
gate). Adding, renaming, or removing an underlying check is amerge-gate.ymledit, never a ruleset edit. Tide / bors single-authority pattern. - Recovery if the
pull_requestwebhook is dropped: empty commit,gh workflow run merge-gate.yml -f pr_number=NNN, or close+reopen. .github/CODEOWNERSrequires Lead Maintainer review for any change to.github/workflows/**.
- Triggers on
build-release.yml-pushto main, tags, schedule,workflow_dispatch- Linux + Windows run combined
build-and-test(unit tests + binary build in one job). Unit tests run on every push for platform-regression signal; smoke tests are gated to tag/schedule/dispatch only (promotion boundaries) to avoid duplicatingci-integration.yml's merge-time smoke and to cut redundant codex-binary downloads. - macOS Intel uses
build-and-validate-macos-intel(root node, runs own unit tests - no dependency onbuild-and-test). Builds the binary on every push for early regression feedback; tag/schedule/dispatch promotion runs add marker-boundedlifecycle_smoke and not liveintegration coverage and isolated release validation. - macOS ARM uses
build-and-validate-macos-arm(root node, tag/schedule/dispatch only - ARM runners are extremely scarce with 2-4h+ queue waits). Promotion runs retain the full non-live integration corpus and isolated release validation. - Publication jobs do not receive
ADO_APM_PAT; live ADO PAT acceptance is an explicitado_pat_e2emode inauth-acceptance.yml. Full 5-platform binary output (linux x86_64/arm64, darwin x86_64/arm64, windows x86_64).
- Linux + Windows run combined
ci-runtime.yml- nightly schedule, manual dispatch, path-filtered push- Linux x86_64 only. Live inference smoke tests (
apm run) isolated from release pipeline. - Uses
GH_MODELS_PATfor GitHub Models API access. - Failures do not block releases - annotated as warnings.
- Linux x86_64 only. Live inference smoke tests (
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 · 119 lines · 2,842 tokens per session scan A 33201cb88ea2
apm cicd.instructions.md is an instructions file published in the GitHub repository microsoft/apm (3,668 stars, last pushed yesterday), licensed MIT. It adds 2,842 tokens to every session, about $0.0142 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.