Skip to content

Why APM?

AI coding agents are powerful — but only when they have the right context. Today, setting up that context is entirely manual.

Every AI-assisted project faces the same setup friction:

  1. Manual configuration — developers copy instruction files, write prompts from scratch, configure MCP servers by hand.
  2. No portability — when a new developer clones the repo, none of the AI setup comes with it.
  3. No dependency management — if your coding standards depend on another team’s standards, there’s no way to declare or resolve that relationship.
  4. Drift — without a single source of truth, agent configurations diverge across developers and environments.

This is exactly the problem that package managers solved for application code decades ago. npm, pip, cargo — they all provide a manifest, a resolver, and a reproducible install. AI agent configuration deserves the same.

APM introduces apm.yml — a declarative manifest for everything your AI agents need:

name: my-project
version: 1.0.0
dependencies:
apm:
- anthropics/skills/skills/frontend-design
- microsoft/apm-sample-package
- github/awesome-copilot/agents/api-architect.agent.md

Run apm install and APM:

  • Resolves transitive dependencies — if package A depends on package B, both are installed automatically.
  • Integrates primitives — instructions go to .github/instructions/, prompts to .github/prompts/, skills to .github/skills/.
  • Compiles contextapm compile produces optimized AGENTS.md and CLAUDE.md files for every major AI coding agent.

Consider a project that uses 5 agent plugins across GitHub Copilot and Claude:

Without APM:

Terminal window
# Every developer, every clone, every time
git clone my-project && cd my-project
# Read README for AI setup instructions
# Manually install plugin A (Copilot)
# Manually install plugin B (Copilot)
# Manually install plugin C (Claude)
# Manually install plugin D (Claude)
# Manually install plugin E (shared)
# Hope the versions match what the rest of the team is using
# Hope you didn't miss a step

With APM:

Terminal window
git clone my-project && cd my-project
apm install
# Done. All 5 plugins resolved, installed, and compiled.
Without APMWith APM
Setup steps5+ install commands1 command
Version consistencyHope-basedLock file enforced
New contributor onboardingRead docs, follow steps, debug mismatchesapm install
CI/CD reproducibilityFragile or nonexistentDeterministic via apm.lock
Cross-tool coordinationManual per toolUnified manifest

APM handles seven types of agent primitives:

PrimitivePurpose
InstructionsCoding standards and guardrails
SkillsReusable AI capabilities
PromptsSlash commands and workflows
AgentsSpecialized personas
HooksLifecycle event handlers
PluginsPre-packaged agent bundles
MCP ServersTool integrations

All declared in one manifest. All installed with one command.

Solo / Small Team (2-5 devs) — “I use Copilot AND Claude. The project needs 5 plugins. Without APM, every new contributor runs 5 install commands and hopes they got the right versions. With APM, they run apm install.”

Mid-size Team (10-50 devs) — “We have org-wide security standards, team-specific plugins, and project-level config. apm.yml composes all three layers through dependency resolution. apm.lock ensures every developer and CI runner gets the exact same setup.”

Enterprise (100+ devs) — “When security asks ‘what agent instructions were active when release 4.2.1 shipped?’ — git log apm.lock answers that. Every change to agent configuration is versioned, auditable, and reproducible.”

  • Familiar — APM works like the package managers you already know.
  • Fast — install, compile, and run in seconds.
  • Open — built on AGENTS.md, Agent Skills, and MCP.
  • Portable — install from GitHub, GitLab, Bitbucket, Azure DevOps, or any git host.

APM is not the right tool for every situation:

  • You use a single AI tool with 1-2 plugins — the overhead of a manifest may not be worth it yet.
  • You work solo and don’t need reproducible setups — if no one else needs to replicate your environment, manual setup is fine.
  • Your org doesn’t require audit trails for AI agent configuration — if compliance isn’t a concern, the lock file adds little value.

APM shines when complexity grows: multiple tools, team coordination, compliance requirements, or CI/CD integration. Start without it if your setup is simple. Adopt it when manual management becomes a bottleneck.

“Don’t plugins already handle this?”

Yes, for single-tool installation. APM adds what plugins don’t provide: cross-tool install with one command, consumer-side lock files (plugins have none), CI enforcement, and multi-source composition. APM works WITH plugin ecosystems, not against them.

“Is APM another tool I have to maintain?”

APM is a dev-time tool. Run apm install, get your files, done. There is no runtime process, no background daemon, no maintenance burden. It runs when you ask it to and does nothing otherwise.

“What if I stop using APM?”

Delete apm.yml and apm.lock. Your .github/ and .claude/ config files still work exactly as they did before. APM deploys standard files in standard locations. Zero lock-in by design.