freshcrate
Skin:/
Home > AI Agents > apm

apm

Agent Package Manager

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

Agent Package Manager

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

Documentation ยท Quick Start ยท CLI Reference

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

Highlights

  • One manifest for everything โ€” instructions, skills, prompts, agents, hooks, plugins, and MCP servers declared in apm.yml and deployed across every client on install
  • Install from anywhere โ€” GitHub, GitLab, Bitbucket, Azure DevOps, GitHub Enterprise, any git host
  • Transitive dependencies โ€” packages can depend on packages; APM resolves the full tree
  • Content security โ€” apm audit scans for hidden Unicode; apm install blocks compromised packages before agents read them
  • Author plugins โ€” build Copilot, Claude, and Cursor plugins with dependency management and security scanning, then export standard plugin.json
  • Marketplaces โ€” install plugins from curated registries in one command; deployed across all targets, locked, scanned, and governed by apm-policy.yaml
  • Pack & distribute โ€” apm pack bundles your configuration as a zipped package or a standalone plugin
  • CI/CD ready โ€” GitHub Action for automated workflows

Get Started

Linux / macOS

curl -sSL https://aka.ms/apm-unix | sh

Windows

irm https://aka.ms/apm-windows | iex

Native release binaries are published for macOS, Linux, and Windows x86_64. apm update reuses the matching platform installer.

Other install methods

Linux / macOS

# Homebrew
brew install microsoft/apm/apm
# pip
pip install apm-cli

Windows

# Scoop
scoop bucket add apm https://github.com/microsoft/scoop-apm
scoop install apm
# pip
pip install apm-cli

Then start adding packages:

apm install microsoft/apm-sample-package#v1.0.0

Or install from a marketplace:

apm marketplace add github/awesome-copilot
apm install azure-cloud-development@awesome-copilot

Or add an MCP server (wired into Copilot, Claude, Cursor, Codex, and OpenCode):

apm install --mcp io.github.github/github-mcp-server --transport http   # connects over HTTPS

Codex CLI currently does not support remote MCP servers; the install will skip Codex with a notice. Omit --transport http to use the local Docker variant on Codex (requires GITHUB_PERSONAL_ACCESS_TOKEN).

See the Getting Started guide for the full walkthrough.

Works with agentrc

agentrc analyzes your codebase and generates tailored agent instructions โ€” architecture, conventions, build commands โ€” from real code, not templates.

Use agentrc to author high-quality instructions, then package them with APM to share across your org. The .instructions.md format is shared by both tools โ€” no conversion needed when moving instructions into APM packages.

Community

Created by @danielmeppiel. Maintained by @danielmeppiel and @sergio-sisternes-epam.


Built on open standards: AGENTS.md ยท Agent Skills ยท MCP

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.

Release History

VersionChangesUrgencyDate
v0.17.0<!-- Release notes generated using configuration in .github/release.yml at v0.17.0 --> ## What's Changed ### ๐Ÿ”ง Other Changes * fix(publish): clarify --package is required and update docs by @nadav-y in https://github.com/microsoft/apm/pull/1562 * refactor(pack)!: remove deprecated --marketplace-output flag (#1318) by @danielmeppiel in https://github.com/microsoft/apm/pull/1585 * feat(compile): make source-attribution comments opt-in to cut token overhead by @danielmeppiel in https://github.comHigh6/4/2026
v0.16.0<!-- Release notes generated using configuration in .github/release.yml at v0.16.0 --> ## What's Changed ### ๐Ÿ”ง Other Changes * feat(policy): require_pinned_constraint to ban unbounded dep ranges by @danielmeppiel in https://github.com/microsoft/apm/pull/1494 * test(policy): e2e integration tests for require_pinned_constraint (follow-up to #1494) by @danielmeppiel in https://github.com/microsoft/apm/pull/1505 * feat(deps): add 'apm deps why <pkg>' to explain transitive dependencies by @danielmeHigh5/28/2026
v0.14.2<!-- Release notes generated using configuration in .github/release.yml at v0.14.2 --> ## What's Changed ### ๐Ÿ”ง Other Changes * test(coverage): enforce 75% unit gate and push integration to 60% by @sergio-sisternes-epam in https://github.com/microsoft/apm/pull/1414 * add(coverage): Phase 3 -- unit 88% / integration 71% by @sergio-sisternes-epam in https://github.com/microsoft/apm/pull/1417 * add(coverage): raise unit and integration gates to 90% with phase-3 + phase-4 tests by @sergio-sisternesHigh5/22/2026
v0.14.0<!-- Release notes generated using configuration in .github/release.yml at v0.14.0 --> ## What's Changed ### ๐Ÿ”ง Other Changes * docs: full rewrite -- persona-led ramps + 3-promise narrative by @danielmeppiel in https://github.com/microsoft/apm/pull/1252 * docs: fix all redirect destinations to include /apm base path by @danielmeppiel in https://github.com/microsoft/apm/pull/1284 * fix: marketplace install auth host on *.ghe.com (closes #1285) by @edenfunf in https://github.com/microsoft/apm/pulHigh5/18/2026
v0.13.0<!-- Release notes generated using configuration in .github/release.yml at v0.13.0 --> ## What's Changed ### ๐Ÿ“– Documentation * [docs] Update documentation for features from 2026-05-08 by @danielmeppiel in https://github.com/microsoft/apm/pull/1205 * [docs] Update documentation for features from 2026-05-09 by @danielmeppiel in https://github.com/microsoft/apm/pull/1219 ### ๐Ÿ”ง Other Changes * chore(aw): bump microsoft/apm-action v1.7.1 -> v1.7.2 by @danielmeppiel in https://github.com/microsoft/High5/11/2026
v0.12.4<!-- Release notes generated using configuration in .github/release.yml at v0.12.4 --> ## What's Changed ### ๐Ÿ”ง Other Changes * chore: release v0.12.4 (apm-action v1.7.1 bump + audit-replay fix #1182) by @danielmeppiel in https://github.com/microsoft/apm/pull/1181 **Full Changelog**: https://github.com/microsoft/apm/compare/v0.12.3...v0.12.4High5/7/2026
v0.12.2<!-- Release notes generated using configuration in .github/release.yml at v0.12.2 --> ## What's Changed ### ๐Ÿ”ง Other Changes * docs: clarify APM's role for skills, unify plugins-as-packages, add ADO sub-path examples, state stability by @danielmeppiel in https://github.com/microsoft/apm/pull/1127 * docs: fix first-package guide (includes: auto explained, correct skill paths) by @danielmeppiel in https://github.com/microsoft/apm/pull/1129 * fix(deps): subdir-agnostic bare cache fixes parallel sHigh5/5/2026
v0.11.0<!-- Release notes generated using configuration in .github/release.yml at v0.11.0 --> ## What's Changed ### ๐Ÿ› Bug Fixes * fix(install): ADO Entra ID auth path + --update pre-flight abort (#1015) by @danielmeppiel in https://github.com/microsoft/apm/pull/1031 ### ๐Ÿ”ง Other Changes * fix(policy): unify --policy / --policy-source forms across CLI help and docs by @edenfunf in https://github.com/microsoft/apm/pull/1000 * fix: rename `token` variable to resolve CodeQL clear-text-storage alert by @CHigh4/29/2026
v0.10.0<!-- Release notes generated using configuration in .github/release.yml at v0.10.0 --> ## What's Changed ### ๐Ÿ”ง Other Changes * docs(readme): add 'Coming from npx skills add?' conversion block by @danielmeppiel in https://github.com/microsoft/apm/pull/980 * fix(docs): deploy on tag push, not on the unreachable workflow_call branch by @danielmeppiel in https://github.com/microsoft/apm/pull/981 * Add evals suite to pr-description-skill (genesis-driven) by @danielmeppiel in https://github.com/micrHigh4/27/2026
v0.9.1<!-- Release notes generated using configuration in .github/release.yml at v0.9.1 --> ## What's Changed ### ๐Ÿ”ง Other Changes * ci(docs): deploy site only on stable APM releases by @Copilot in https://github.com/microsoft/apm/pull/822 * chore: dogfood APM by migrating primitives from .github/ to .apm/ by @danielmeppiel in https://github.com/microsoft/apm/pull/823 * feat(workflows): automate apm-review-panel via github/gh-aw by @danielmeppiel in https://github.com/microsoft/apm/pull/824 * fix(worHigh4/22/2026
v0.9.0<!-- Release notes generated using configuration in .github/release.yml at v0.9.0 --> ## What's Changed ### ๐Ÿš€ New Features * feat(install): add --mcp flag for declaratively adding MCP servers to apm.yml by @danielmeppiel in https://github.com/microsoft/apm/pull/810 * feat(validation): reject shell-string command in MCP stdio entries by @danielmeppiel in https://github.com/microsoft/apm/pull/809 ### ๐Ÿ”ง Other Changes * docs(instrumentation): APM Review Panel - 7-agent expert review for non-triviHigh4/21/2026
v0.8.12<!-- Release notes generated using configuration in .github/release.yml at v0.8.12 --> ## What's Changed ### ๐Ÿš€ New Features * ci: adopt GitHub Merge Queue with tiered CI (#770) by @danielmeppiel in https://github.com/microsoft/apm/pull/771 ### ๐Ÿ”ง Other Changes * chore: add @sergio-sisternes-epam as maintainer by @danielmeppiel in https://github.com/microsoft/apm/pull/623 * feat: add apm info, apm outdated, and list_remote_refs by @sergio-sisternes-epam in https://github.com/microsoft/apm/pull/High4/19/2026
v0.8.11<!-- Release notes generated using configuration in .github/release.yml at v0.8.11 --> ## What's Changed ### ๐Ÿ”ง Other Changes * [fix] warn when two packages deploy a native skill with the same name by @edenfunf in https://github.com/microsoft/apm/pull/545 * [fix] detect remote default branch instead of hardcoding main (#573) by @edenfunf in https://github.com/microsoft/apm/pull/574 * refactor: unify integration dispatch, result types, and hook dedup by @danielmeppiel in https://github.com/microHigh4/6/2026
v0.8.10<!-- Release notes generated using configuration in .github/release.yml at v0.8.10 --> ## What's Changed ### ๐Ÿ› Bug Fixes * fix: process `windows` hook key for script copying and path rewriting by @Copilot in https://github.com/microsoft/apm/pull/521 ### ๐Ÿ”ง Other Changes * docs: add marketplace highlight and example to README by @danielmeppiel in https://github.com/microsoft/apm/pull/513 * Add agent-guide: teach AI agents how to use APM by @cabird in https://github.com/microsoft/apm/pull/516 * Medium4/3/2026
v0.8.9<!-- Release notes generated using configuration in .github/release.yml at v0.8.9 --> ## What's Changed ### ๐Ÿ”ง Other Changes * fix: respect metadata.pluginRoot + prepare v0.8.9 hotfix by @danielmeppiel in https://github.com/microsoft/apm/pull/512 **Full Changelog**: https://github.com/microsoft/apm/compare/v0.8.8...v0.8.9Medium3/31/2026
v0.8.8<!-- Release notes generated using configuration in .github/release.yml at v0.8.8 --> ## What's Changed ### ๐Ÿš€ New Features * feat: Marketplace integration -- read marketplace.json for plugin discovery + governance by @Copilot in https://github.com/microsoft/apm/pull/503 * feat: add --global / -g flag for scoped package installation by @Copilot in https://github.com/microsoft/apm/pull/452 * feat: Support Codex CLI as integration target by @Copilot in https://github.com/microsoft/apm/pull/504 ##Medium3/31/2026
v0.8.7<!-- Release notes generated using configuration in .github/release.yml at v0.8.7 --> ## What's Changed ### ๐Ÿ”ง Other Changes * fix: apm deps update was a no-op -- delegate to install engine by @danielmeppiel in https://github.com/microsoft/apm/pull/493 * fix: mitigate Windows Defender false positive on APM binary by @sergio-sisternes-epam in https://github.com/microsoft/apm/pull/490 * DX: Improve auth error messages, sparse checkout token consistency, and error deduplication by @Copilot in httpMedium3/31/2026
v0.8.6<!-- Release notes generated using configuration in .github/release.yml at v0.8.6 --> ## What's Changed ### ๐Ÿ”ง Other Changes * fix: batch bug fixes -- installer fallback, target registry, lockfile idempotency by @danielmeppiel in https://github.com/microsoft/apm/pull/456 * Fix Windows antivirus file-lock errors during apm install by @Copilot in https://github.com/microsoft/apm/pull/440 * fix: allow spaces in ADO repository names when parsing URLs by @PremKumarML in https://github.com/microsoft/Medium3/27/2026
v0.8.5<!-- Release notes generated using configuration in .github/release.yml at v0.8.5 --> ## What's Changed ### ๐Ÿ“– Documentation * [docs] Update documentation for features from 2026-03-23 by @danielmeppiel in https://github.com/microsoft/apm/pull/416 ### ๐Ÿ”ง Other Changes * [Test Improver] test: add unit tests for AgentsCompiler (65%โ†’82% coverage) by @danielmeppiel in https://github.com/microsoft/apm/pull/221 * [Test Improver] Add unit tests for commands/_helpers.py I/O and config helpers by @danielMedium3/24/2026
v0.8.4<!-- Release notes generated using configuration in .github/release.yml at v0.8.4 --> ## What's Changed ### ๐Ÿš€ New Features * feat: Auth + Logging Architecture Overhaul (#393) by @danielmeppiel in https://github.com/microsoft/apm/pull/394 ### ๐Ÿ”ง Other Changes * Remove unused files: copilot-banner.png, copilot-cli-screenshot.png, dummy by @Copilot in https://github.com/microsoft/apm/pull/391 * docs: document ${input:...} variable support in MCP server headers and env by @Copilot in https://githuLow3/22/2026
v0.8.3<!-- Release notes generated using configuration in .github/release.yml at v0.8.3 --> ## What's Changed ### ๐Ÿ”ง Other Changes * feat: improve VS Code runtime detection with .vscode/ directory fallback by @sergio-sisternes-epam in https://github.com/microsoft/apm/pull/359 * Align CLI docs with current `compile`, `audit`, and planned drift behavior by @Copilot in https://github.com/microsoft/apm/pull/373 * fix: Refactor command and model modules for readability and maintainability (#231) by @sergiLow3/20/2026
v0.8.2<!-- Release notes generated using configuration in .github/release.yml at v0.8.2 --> ## What's Changed ### ๐Ÿ› Bug Fixes * fix: harden dependency path validation by @danielmeppiel in https://github.com/microsoft/apm/pull/364 ### ๐Ÿ”ง Other Changes * fix: credential fill returns garbage token in tokenless CI (gh-aw regression) by @danielmeppiel in https://github.com/microsoft/apm/pull/356 * chore: prepare v0.8.2 release by @danielmeppiel in https://github.com/microsoft/apm/pull/357 * fix: gh-aw coLow3/19/2026
v0.8.1<!-- Release notes generated using configuration in .github/release.yml at v0.8.1 --> ## What's Changed ### ๐Ÿ”ง Other Changes * fix: close auth asymmetry between folder and file downloads by @danielmeppiel in https://github.com/microsoft/apm/pull/332 * feat: audit hardening โ€” unpack scanning, SARIF/JSON/Markdown output by @danielmeppiel in https://github.com/microsoft/apm/pull/330 * fix: preserve GHE custom domain host in lockfile download refs by @Copilot in https://github.com/microsoft/apm/pulLow3/18/2026
v0.8.0<!-- Release notes generated using configuration in .github/release.yml at v0.8.0 --> ## What's Changed ### ๐Ÿ“– Documentation * [docs] Update docs landing page to include Cursor and OpenCode by @danielmeppiel in https://github.com/microsoft/apm/pull/310 ### ๐Ÿ”ง Other Changes * feat: native Cursor IDE integration by @danielmeppiel in https://github.com/microsoft/apm/pull/301 * docs: update all doc pages to reflect full Cursor native support by @danielmeppiel in https://github.com/microsoft/apm/pulLow3/16/2026
v0.7.9<!-- Release notes generated using configuration in .github/release.yml at v0.7.9 --> ## What's Changed ### ๐Ÿ”ง Other Changes * feat: add phase 1 Windows native support by @sergio-sisternes-epam in https://github.com/microsoft/apm/pull/227 * [DOCS] Add Windows as first-class install option across docs site by @Copilot in https://github.com/microsoft/apm/pull/278 * fix: restore CWD before TemporaryDirectory cleanup on Windows by @sergio-sisternes-epam in https://github.com/microsoft/apm/pull/281 Low3/14/2026
v0.7.8<!-- Release notes generated using configuration in .github/release.yml at v0.7.8 --> ## What's Changed ### ๐Ÿ”ง Other Changes * Refactor cli.py and apm_package.py into focused modules (#172) by @sergio-sisternes-epam in https://github.com/microsoft/apm/pull/224 * fix: resolve WinError 32 during sparse-checkout fallback on Windows by @JanDeDobbeleer in https://github.com/microsoft/apm/pull/235 * docs: migrate to Astro Starlight documentation site by @danielmeppiel in https://github.com/microsoft/Low3/13/2026
v0.7.7<!-- Release notes generated using configuration in .github/release.yml at v0.7.7 --> ## What's Changed ### ๐Ÿ”ง Other Changes * feat: add 'copilot' as primary target name (alias for vscode) by @danielmeppiel in https://github.com/microsoft/apm/pull/228 * chore: update version to 0.7.7 and document changes in changelog by @danielmeppiel in https://github.com/microsoft/apm/pull/229 **Full Changelog**: https://github.com/microsoft/apm/compare/v0.7.6...v0.7.7Low3/10/2026
v0.7.6<!-- Release notes generated using configuration in .github/release.yml at v0.7.6 --> ## What's Changed ### ๐Ÿ”ง Other Changes * fix: plugin agents not deployed due to directory nesting bug by @danielmeppiel in https://github.com/microsoft/apm/pull/214 * refactor: extract MCPIntegrator from cli.py by @danielmeppiel in https://github.com/microsoft/apm/pull/215 * fix: address unresolved review comments on apm pack/unpack by @Copilot in https://github.com/microsoft/apm/pull/219 * fix: skip already-cLow3/10/2026
v0.7.5<!-- Release notes generated using configuration in .github/release.yml at v0.7.5 --> ## What's Changed ### ๐Ÿš€ New Features * feat: MCP dependency config overlays, transitive trust flag, and bug fixes by @sergio-sisternes-epam in https://github.com/microsoft/apm/pull/166 * Implement plugin management system and CLI commands by @SebastienDegodez in https://github.com/microsoft/apm/pull/83 ### ๐Ÿ› Bug Fixes * fix: handle multiple brace groups in applyTo glob patterns by @sergio-sisternes-epam in hLow3/9/2026
v0.7.4<!-- Release notes generated using configuration in .github/release.yml at v0.7.4 --> ## What's Changed ### ๐Ÿš€ New Features * feat: Promote sub-skills inside packages to top-level .github/skills/ entries by @sergio-sisternes-epam in https://github.com/microsoft/apm/pull/102 * feat: Deploy agents to .claude/agents/ during install by @Copilot in https://github.com/microsoft/apm/pull/95 * feat: Support Hooks as an Agent Primitive by @Copilot in https://github.com/microsoft/apm/pull/97 ### ๐Ÿ› Bug FLow3/3/2026
v0.7.3<!-- Release notes generated using configuration in .github/release.yml at v0.7.3 --> ## What's Changed ### ๐Ÿ”ง Other Changes * Fix CI: Integration Tests venv conflict on ubuntu-24.04 by @Copilot in https://github.com/microsoft/apm/pull/76 * Microsoft open source compliance: policy docs, license, and trademark notice by @Copilot in https://github.com/microsoft/apm/pull/75 * fix: source integrity for all integrators + README restructure by @danielmeppiel in https://github.com/microsoft/apm/pull/8Low2/15/2026
v0.7.2<!-- Release notes generated using configuration in .github/release.yml at v0.7.2 --> ## What's Changed ### ๐Ÿ”ง Other Changes * feat: transitive dependencies with apm.lock support by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/70 **Full Changelog**: https://github.com/danielmeppiel/apm/compare/v0.7.1...v0.7.2Low1/23/2026
v0.7.1<!-- Release notes generated using configuration in .github/release.yml at v0.7.1 --> ## What's Changed ### ๐Ÿ”ง Other Changes * fix: prevent double .collection.yml extension when user specifies fulโ€ฆ by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/67 * feat: actionable error messages for unsupported Git hosts by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/68 * fix: parse SKILL.md directly without generating apm.yml by @danielmeppiel in https://github.com/danielmeppiLow1/22/2026
v0.7.0<!-- Release notes generated using configuration in .github/release.yml at v0.7.0 --> ## What's Changed ### ๐Ÿ”ง Other Changes * Fix/claude skills and formatting by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/50 * Fix/selective install by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/52 * Add configurable directory exclusion for apm compile by @Copilot in https://github.com/danielmeppiel/apm/pull/53 * Add automatic version update notifications and `apm update` commanLow12/19/2025
v0.6.3<!-- Release notes generated using configuration in .github/release.yml at v0.6.3 --> **Full Changelog**: https://github.com/danielmeppiel/apm/compare/v0.6.2...v0.6.3Low12/9/2025
v0.6.2<!-- Release notes generated using configuration in .github/release.yml at v0.6.2 --> **Full Changelog**: https://github.com/danielmeppiel/apm/compare/v0.6.1...v0.6.2Low12/9/2025
v0.6.1<!-- Release notes generated using configuration in .github/release.yml at v0.6.1 --> ## What's Changed ### ๐Ÿ”ง Other Changes * fix: virtual package uninstall and orphan detection architecture by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/46 * Feature/claude integration by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/47 * feat: Claude Skills installation support by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/48 * docs: comprehensive Skills and ClauLow12/9/2025
v0.6.0<!-- Release notes generated using configuration in .github/release.yml at v0.6.0 --> **Full Changelog**: https://github.com/danielmeppiel/apm/compare/v0.5.9...v0.6.0Low12/8/2025
v0.5.9<!-- Release notes generated using configuration in .github/release.yml at v0.5.9 --> ## What's Changed ### ๐Ÿ”ง Other Changes * Fix orphaned package detection and discovery for Azure DevOps packages by @Copilot in https://github.com/danielmeppiel/apm/pull/45 **Full Changelog**: https://github.com/danielmeppiel/apm/compare/v0.5.8...v0.5.9Low12/4/2025
v0.5.8<!-- Release notes generated using configuration in .github/release.yml at v0.5.8 --> ## What's Changed ### ๐Ÿ”ง Other Changes * fix: ADO dependencies use 3-part path structure (org/project/repo) by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/43 **Full Changelog**: https://github.com/danielmeppiel/apm/compare/v0.5.7...v0.5.8Low12/2/2025
v0.5.7<!-- Release notes generated using configuration in .github/release.yml at v0.5.7 --> ## What's Changed ### ๐Ÿ”ง Other Changes * Add Azure DevOps support with proper org/project/repo URL structure by @Copilot in https://github.com/danielmeppiel/apm/pull/40 **Full Changelog**: https://github.com/danielmeppiel/apm/compare/v0.5.6...v0.5.7Low12/1/2025
v0.5.6<!-- Release notes generated using configuration in .github/release.yml at v0.5.6 --> ## What's Changed ### ๐Ÿ”ง Other Changes * Fixes for fqdn and github_host by @richgo in https://github.com/danielmeppiel/apm/pull/33 * Update macos versions by @richgo in https://github.com/danielmeppiel/apm/pull/34 **Full Changelog**: https://github.com/danielmeppiel/apm/compare/v0.5.5...v0.5.6Low12/1/2025
v0.5.5<!-- Release notes generated using configuration in .github/release.yml at v0.5.5 --> ## What's Changed ### ๐Ÿ”ง Other Changes * Refactor prompt integration and add agent integration by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/31 * feat: implement context link resolution with direct linking strategy by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/32 **Full Changelog**: https://github.com/danielmeppiel/apm/compare/v0.5.4...v0.5.5Low11/17/2025
v0.5.4<!-- Release notes generated using configuration in .github/release.yml at v0.5.4 --> **Full Changelog**: https://github.com/danielmeppiel/apm/compare/v0.5.3...v0.5.4Low11/17/2025
v0.5.3<!-- Release notes generated using configuration in .github/release.yml at v0.5.3 --> ## What's Changed ### ๐Ÿ”ง Other Changes * Change integrated prompts to -apm suffix by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/30 **Full Changelog**: https://github.com/danielmeppiel/apm/compare/v0.5.2...v0.5.3Low11/16/2025
v0.5.2<!-- Release notes generated using configuration in .github/release.yml at v0.5.2 --> ## What's Changed ### ๐Ÿ”ง Other Changes * Fixed package validation logic an url construction by @richgo in https://github.com/danielmeppiel/apm/pull/26 * Improve UX, add prompt integration with GitHub by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/29 **Full Changelog**: https://github.com/danielmeppiel/apm/compare/v0.5.1...v0.5.2Low11/14/2025
v0.5.1<!-- Release notes generated using configuration in .github/release.yml at v0.5.1 --> ## What's Changed ### ๐Ÿ› Bug Fixes * Fix virtual package orphan detection in deps list by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/23 * Added FQDN support for packages by @richgo in https://github.com/danielmeppiel/apm/pull/25 ### ๐Ÿ”ง Other Changes * feat: add support for Awesome Copilot Collections as APM packages by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/22 **Full ChaLow11/8/2025
v0.5.0<!-- Release notes generated using configuration in .github/release.yml at v0.5.0 --> ## What's Changed ### ๐Ÿ”ง Other Changes * feat: implement runnable prompts auto-discovery by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/21 **Full Changelog**: https://github.com/danielmeppiel/apm/compare/v0.4.3...v0.5.0Low10/30/2025
v0.4.3<!-- Release notes generated using configuration in .github/release.yml at v0.4.3 --> ## What's Changed ### ๐Ÿ”ง Other Changes * fix: pass env dict to setup_runtime_environment to preserve CI tokens by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/11 * Add GitHub Enterprise (GHE) hostname support to dependency parsing by @richgo in https://github.com/danielmeppiel/apm/pull/8 * Add ARM64 Linux support to CI/CD pipeline by @pofallon in https://github.com/danielmeppiel/apm/pull/4 * RefLow10/29/2025
v0.4.2<!-- Release notes generated using configuration in .github/release.yml at v0.4.2 --> ## What's Changed ### ๐Ÿ”ง Other Changes * Integrate copilot runtime by @danielmeppiel in https://github.com/danielmeppiel/apm/pull/2 ## New Contributors * @danielmeppiel made their first contribution in https://github.com/danielmeppiel/apm/pull/2 **Full Changelog**: https://github.com/danielmeppiel/apm/compare/v0.4.1...v0.4.2Low9/25/2025
v0.4.1<!-- Release notes generated using configuration in .github/release.yml at v0.4.1 --> **Full Changelog**: https://github.com/danielmeppiel/apm/compare/v0.4.0...v0.4.1Low9/18/2025
v0.4.0<!-- Release notes generated using configuration in .github/release.yml at v0.4.0 --> **Full Changelog**: https://github.com/danielmeppiel/apm/commits/v0.4.0Low9/18/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

MeowKitProduction ready. AI Agent Workflow System for Claude Codev2.10.2
ContextPilotAccelerating Long Context LLM Inference with Accuracy-Preserving Context Optimization in SGLang, vLLM, llama.cpp, OpenClaw, RAG, and Agentic AI.v0.4.2
hermes-agentThe agent that grows with youv2026.6.5
awesome-copilotCommunity-contributed instructions, agents, skills, and configurations to help you make the most of GitHub Copilot.main@2026-06-05
ring89 skills and 38 specialized agents that enforce proven engineering practices for AI-assisted development. TDD, systematic debugging, parallel code review, and 10-gate development cycles โ€” as a Claudemain@2026-06-03

More from microsoft

generative-ai-for-beginners21 Lessons, Get Started Building with Generative AI
autogenA programming framework for agentic AI
playwright-mcpPlaywright MCP server
semantic-kernelIntegrate cutting-edge LLM technology quickly and easily into your apps

More in AI Agents

hermes-agentThe agent that grows with you
awesome-copilotCommunity-contributed instructions, agents, skills, and configurations to help you make the most of GitHub Copilot.
CopilotKitThe Frontend Stack for Agents & Generative UI. React + Angular. Makers of the AG-UI Protocol
e2bE2B SDK that give agents cloud environments