Agent Package Manager
# Add to your Claude Code skills
git clone https://github.com/danielmeppiel/apmnpm for AI coding agents. The package manager for AGENTS.md, Agent Skills, and MCP servers.
GitHub Copilot · Cursor · Claude · Codex · Gemini
📐 Built on open standards: APM generates AGENTS.md instructions, installs Agent Skills natively, and manages MCP servers.
curl -sSL https://raw.githubusercontent.com/danielmeppiel/apm/main/install.sh | sh
One package. Every AI agent. Native format for each.
# Install a skill — give your agent new capabilities
apm install danielmeppiel/form-builder
# Install guardrails — keep your agent compliant
apm install danielmeppiel/compliance-rules
# Compile for your AI tools
apm compile
Done. Type /gdpr-assessment or /code-review in Copilot or Claude. It just works.
┌─────────────────────────────────────────────────────────────────┐
│ APM Packages (from GitHub, Azure DevOps) │
│ ├── Instructions → Coding standards, guardrails (AGENTS.md) │
│ ├── Skills → AI capabilities, workflows (agentskills.io) │
│ ├── Prompts → Reusable commands and templates │
│ └── MCP Servers → Tool integrations │
└─────────────────────────────────────────────────────────────────┘
│
apm install && apm compile
│
▼
┌─────────────────────────────────────────────────────────────────┐
│ Universal Output (auto-detected from .github/ and .claude/) │
│ ├── AGENTS.md → Instructions for Copilot, Cursor, Codex │
│ ├── CLAUDE.md → Instructions for Claude Code │
│ ├── .github/ → VSCode native prompts & agents │
│ └── .claude/ → Claude commands & skills │
└─────────────────────────────────────────────────────────────────┘
One package. Every AI agent. Native format for each.
A production project using APM with skills and layered guardrails:
# apm.yml
name: corporate-website
dependencies:
apm:
- danielmeppiel/form-builder # Build forms with React Hook Form + Zod
- danielmeppiel/compliance-rules # GDPR, security
- danielmeppiel/design-guidelines # UI standards
...