GraphCanon updated 3w · GitHub synced 3w · 25 views this month
Decision brief
Agent Package Manager is specialized for managing AI agent packages and their dependencies using Python under MIT license.
Good fit when
- You focus on AI agent development with specific package needs
- Your projects benefit from Python-based dependency management
Avoid when
- You prefer generic software or non-AI-specific package managers
- Requirements include support for languages other than Python
Observed Jul 16, 2026 · Source: enrich:decision_facts
Verify the decision
Maintenance and security
Full trust report- Maintenance
- Very active (2d since push)
- As of 3w
- Provenance
- Not a fork · Organization account
- As of 3w
- Security (OSV)
- No lockfile
- As of 1mo
Public GitHub metadata and optional OSV scans. Signals, not a guarantee. Trust methodology.
Backing
Company context for Microsoft. Display-only - separate from trust and ranking.
- Company
- Microsoft·GitHub org profile·1mo
- Employees
- 221,000·Wikidata (P1128 employees)·1mo
- Commercial model
- Pure OSS·GitHub org profile (public repos)·1mo
Install
pip install apm PyPISimilar tools
Same-category neighbours. No typed graph edges are catalogued for this tool yet.
Evidence and technical details
Sourced facts, taxonomy, compatibility claims, README excerpt, and machine-readable endpoints.
Overview
The Agent Package Manager is a tool for managing AI agent packages and dependencies.
Capability facts
- CLI
- CLI entrypoint
Source: pyproject.toml:[project.scripts] · Jul 28, 2026
- Languages
- python
Source: github.language+pyproject.toml · Jul 28, 2026
Categories
Graph entities
Compatibility
Sourced claims from the README excerpt - not unsourced marketing copy.
Source: README excerpt (regex_v1, Jul 28, 2026)
**Coming from `npx skills add`?** Drop-in:Source link
Source: README excerpt (regex_v1, Jul 28, 2026)
GitHub Copilot · Claude Code · Cursor · OpenCode · Codex · Gemini · Windsurf · KiroSource link
Source: README excerpt (regex_v1, Jul 28, 2026)
One command, no configuration -- VS Code and GitHub Copilot read the file automatically. APM dogfoods this target on itsSource link
Source: README excerpt (regex_v1, Jul 28, 2026)
GitHub Copilot · Claude Code · Cursor · OpenCode · Codex · Gemini · Windsurf · KiroSource link
Tags
README
APM – Agent Package Manager
An open-source, community-driven dependency manager for AI agents.
Think package.json, requirements.txt, or Cargo.toml — but for AI agent configuration.
GitHub Copilot · Claude Code · Cursor · OpenCode · Codex · Gemini · Windsurf · Kiro
Documentation · Quick Start · CLI Reference · Roadmap
Portable by manifest. Secure by default. Governed by policy. One file describes every agent's context; one command reproduces it everywhere; one policy controls what an org will allow.
Why APM
AI coding agents need context to be useful — standards, prompts, skills, plugins — but today every developer sets this up manually. Nothing is portable nor reproducible. There's no manifest for it.
APM fixes this. Declare your project's agentic dependencies once in apm.yml, and every developer who clones your repo gets a fully configured agent setup in seconds — with transitive dependency resolution, just like npm or pip. It's also the first tool that lets you author plugins with a real dependency manager and export standard plugin.json packages.
# apm.yml — ships with your project
name: your-project
version: 1.0.0
dependencies:
apm:
# Skills from any repository
- anthropics/skills/skills/frontend-design
# Plugins
- github/awesome-copilot/plugins/context-engineering
# Specific agent primitives from any repository
- github/awesome-copilot/agents/api-architect.agent.md
# A full APM package with instructions, skills, prompts, hooks...
- microsoft/apm-sample-package#v1.0.0
mcp:
# MCP servers -- installed into every detected client
- name: io.github.github/github-mcp-server
transport: http # MCP transport name, not URL scheme -- connects over HTTPS
git clone <org/repo> && cd <repo>
apm install # every agent is configured
Coming from npx skills add? Drop-in:
apm install vercel-labs/agent-skills # whole bundle, like npx skills add
apm install vercel-labs/agent-skills --skill deploy-to-vercel # one skill, persisted to apm.yml
Same install gesture. You also get a manifest, lockfile, and reproducibility.
Zero-config Copilot:
apm compile -t copilot # writes .github/copilot-instructions.md
One command, no configuration -- VS Code and GitHub Copilot read the file automatically. APM dogfoods this target on its own repository.
The three promises
1. Portable by manifest
One apm.yml describes every primitive your agents need — instructions, skills, prompts, agents, hooks, plugins, MCP servers — and apm install reproduces the exact same setup across every client on every machine. apm.lock.yaml pins the resolved tree the way package-lock.json does for npm.
- One manifest for everything — declared once, deployed across Copilot, Claude, Cursor, OpenCode, Codex, Gemini, Windsurf, Kiro
- Install from anywhere — GitHub, GitLab, Bitbucket, Azure DevOps, GitHub Enterprise, Gitea, Gogs, any git host
- Transitive dependencies — packages can depend on packages; APM resolves the full tree
- Author plugins — build Copilot, Claude, and Cursor plugins with dependency management, then export standard
plugin.json - Marketplaces — install plugins from curated registries in one command, deployed across all targets and locked
- **[Pack
For agents
This page has a .md twin and JSON over the API.