The package manager for AI agent artifacts.
Package, share, and deploy skills, agents, prompts, and instructions across Cursor, Claude, GitHub Copilot, and more.
pip install "git+https://github.com/spazyCZ/agent-package-manager.git#subdirectory=apps/aam-cli"We know how to manage software dependencies with npm and pip. But when it comes to agentic development β prompts, skills, agent configurations, and instruction sets β the ecosystem is still fragmented.
AAM makes agent artifacts versionable, packageable, and shareable β just like software dependencies.
| Status | Problem | Description |
|---|---|---|
| β Solved | Tracking distributed skills | Skills live across multiple repositories and providers. AAM's git sources workflow unifies discovery, versioning, and synchronization. |
| π In progress | Packaging artifacts | Real use-cases combine skills, agent configs, and prompts. AAM packages them into reusable, shareable units. |
| π In progress | Registry for agent artifacts | There's no npm for agent artifacts. AAM provides a registry to publish, discover, and install them. |
flowchart TB
subgraph Package["π¦ Your AAM Package"]
direction LR
Skills["π οΈ Skills"]
Agents["π€ Agents"]
Prompts["π¬ Prompts"]
Instructions["π Instructions"]
end
Package --> Cursor["<b>Cursor</b><br/>.cursor/"]
Package --> Claude["<b>Claude</b><br/>CLAUDE.md"]
Package --> Copilot["<b>Copilot</b><br/>.github/"]
Package --> Codex["<b>Codex</b><br/>~/.codex/"]
style Package fill:#e1f5fe,stroke:#01579b
style Cursor fill:#fff3e0,stroke:#e65100
style Claude fill:#fce4ec,stroke:#880e4f
style Copilot fill:#e8f5e9,stroke:#1b5e20
style Codex fill:#f3e5f5,stroke:#4a148c
Set up default sources and fetch community skills:
aam init # First time: configure platform + default sources
aam source update --all # Clone and scan upstream repositories
aam search python # Search for skills
aam install code-reviewer # Install a skill to your workspaceFrom an existing project (autodetect skills and agents):
cd my-project/
aam pkg create
# Scanning for artifacts not managed by AAM...
# Found 3 artifacts:
# [x] 1. code-reviewer .cursor/skills/code-reviewer/SKILL.md
# [x] 2. security-auditor .cursor/rules/agent-security-auditor.mdc
# [x] 3. python-rules .cursor/rules/python-rules.mdc
#
# β Package created: my-project@1.0.0From scratch:
mkdir my-awesome-skill && cd my-awesome-skill
aam pkg init
# β Created my-awesome-skill/
# βββ aam.yaml
# βββ skills/
# βββ prompts/
# βββ instructions/Validate, pack, and publish:
aam pkg validate # Check package is valid
aam pkg pack # Build the archive
aam pkg publish # Upload to registryOn first run or when you run aam source enable-defaults, AAM registers 4 curated community repositories:
| Source | Repository | Path |
|---|---|---|
github/awesome-copilot |
github/awesome-copilot | skills |
openai/skills:.curated |
openai/skills | skills/.curated |
anthropics/skills |
anthropics/skills | skills |
microsoft/skills |
microsoft/skills | .github/skills |
After enabling defaults, run aam source update --all to clone and scan. Remove sources with aam source remove, re-enable with aam source enable-defaults.
AAM tracks and unifies skills from multiple community repositories:
flowchart LR
subgraph Upstreams["π Upstream Sources"]
direction TB
A["github/awesome-copilot"]
B["openai/skills"]
C["anthropics/skills"]
D["microsoft/skills"]
Custom["+ Your own<br/>aam source add <url>"]
end
subgraph AAM["π§ AAM"]
Cache["~/.aam/sources-cache/"]
Scan["Scan & Index"]
Cache --> Scan
end
subgraph Deploy["π¦ Your Workspace"]
Cursor[".cursor/skills/"]
end
A -->|clone| Cache
B -->|clone| Cache
C -->|clone| Cache
D -->|clone| Cache
Custom -->|clone| Cache
Scan -->|install| Cursor
style Upstreams fill:#fff3e0,stroke:#e65100
style Custom fill:#e8f5e9,stroke:#1b5e20
style AAM fill:#e1f5fe,stroke:#01579b
style Deploy fill:#e8f5e9,stroke:#1b5e20
AAM includes a built-in Model Context Protocol server, allowing IDE agents to interact with AAM directly β search packages, manage sources, install skills, and get recommendations without leaving the editor.
# Start read-only server (default, safe for any IDE)
aam mcp serve
# Enable write operations (install, publish, source management)
aam mcp serve --allow-writeIDE configuration (Cursor, Claude Desktop, Windsurf, VS Code):
{
"mcpServers": {
"aam": {
"command": "aam",
"args": ["mcp", "serve"]
}
}
}The server exposes 29 tools and 9 resources:
| Category | Read-only tools | Write tools (opt-in) |
|---|---|---|
| Packages | search, list, info, validate |
install, uninstall, publish, create_package |
| Sources | source_list, source_scan, source_candidates, source_diff |
source_add, source_remove, source_update |
| Config | config_get, doctor, registry_list |
config_set, registry_add, init |
| Discovery | recommend_skills, available, outdated |
upgrade, init_package |
| Integrity | verify, diff |
β |
Options:
| Flag | Description |
|---|---|
--transport |
stdio (default) or http |
--port PORT |
HTTP port (default: 8000, HTTP transport only) |
--allow-write |
Enable write tools (install, publish, source management). Without this flag, only read-only tools are available. |
--log-file PATH |
Log to file instead of stderr |
--log-level |
DEBUG, INFO, WARNING, ERROR |
- One package, all platforms β Write once, deploy to Cursor, Claude, GitHub Copilot, and Codex
- Dependency management β Declare dependencies, AAM resolves them automatically
- Local & centralized registries β Work offline or share with the community
- Package signing β Sigstore (keyless) and GPG signature support
- MCP server β IDE agents can use AAM tools directly via Model Context Protocol
- Simple CLI β Intuitive commands:
init,install,pkg publish,source
| Command | Description |
|---|---|
aam init |
Set up AAM (platform, default sources) |
aam install <pkg> |
Install a package and dependencies |
aam uninstall <pkg> |
Remove an installed package |
aam upgrade |
Update packages to latest compatible versions |
aam list |
List installed packages |
aam search <query> |
Search registry and sources for packages |
aam info <pkg> |
Show package details |
aam source |
Manage git artifact sources (add, list, update, remove) |
aam registry |
Manage registries (init, add, list) |
aam config |
Manage configuration |
| Command | Description |
|---|---|
aam pkg create |
Create package from existing project (autodetect + interactive) |
aam pkg init |
Create a new package from scratch (interactive) |
aam pkg validate |
Validate package manifest and artifacts |
aam pkg pack |
Build distributable .aam archive |
aam pkg publish |
Publish package to registry |
my-package/
βββ aam.yaml # Package manifest (required)
βββ agents/ # Agent definitions
β βββ my-agent/
β βββ agent.yaml
β βββ system-prompt.md
βββ skills/ # Skills
β βββ my-skill/
β βββ SKILL.md
βββ prompts/ # Prompt templates
β βββ my-prompt.md
βββ instructions/ # Platform rules
βββ coding-standards.md
name: my-package
version: 1.0.0
description: "My awesome AI agent package"
author: your-username
license: Apache-2.0
artifacts:
skills:
- name: my-skill
path: skills/my-skill/
description: "Does something useful"
prompts:
- name: my-prompt
path: prompts/my-prompt.md
dependencies:
common-utils: "^1.0.0"
platforms:
cursor:
skill_scope: project
claude:
merge_instructions: trueAAM automatically deploys artifacts to the correct locations for each platform:
| Platform | Skills | Agents | Prompts | Instructions |
|---|---|---|---|---|
| Cursor | .cursor/skills/ |
.cursor/rules/ |
.cursor/prompts/ |
.cursor/rules/ |
| Claude | .claude/skills/ |
.claude/agents/ |
.claude/prompts/ |
CLAUDE.md |
| Copilot | .github/skills/ |
.github/agents/ |
.github/prompts/ |
.github/instructions/ |
| Codex | ~/.codex/skills/ |
AGENTS.md |
~/.codex/prompts/ |
AGENTS.md |
default_platform: cursor
active_platforms:
- cursor
- claude
registries:
- name: aam-central
url: https://registry.aam.dev
type: http
security:
require_signature: false
on_unsigned: warndefault_platform: cursor
platforms:
cursor:
skill_scope: project- User Guide β Complete walkthrough with examples
- Design Document β Architecture and technical details
- HTTP Registry Spec β API specification for registry service
Contributions welcome! See CONTRIBUTING.md for development setup and guidelines.
Apache License 2.0 β see LICENSE for details.
Built for the AI agent ecosystem.
Package once. Deploy everywhere.
