You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stop copy-pasting prompts and instructions. Start packaging them.
✅ Works with GitHub Copilot, Cursor, Claude, Codex, Gemini and all AGENTS.md adherents
✅ 2-minute setup – zero config
✅ Team collaboration – composable context, without wheel reinvention
What Goes in Packages
📦 Mix and match what your team needs:
Agents – Agentic workflows (.prompt.md files)
Context – Company rules, standards, knowledge (.instructions.md files) and domain boundaries (.chatmode.md)
# Set up APM (one-time)export GITHUB_COPILOT_PAT=your_token_here
curl -sSL "https://raw.githubusercontent.com/danielmeppiel/apm/main/install.sh"| sh
# 3. Set up GitHub Copilot CLI
apm runtime setup copilot
# Run any prompt from GitHub - zero config needed
apm run github/awesome-copilot/prompts/architecture-blueprint-generator
2 Minutes: Guardrailing with packaged context
# Create project with layered context from multiple APM packages
apm init my-project &&cd my-project
# Install context + workflows from packages
apm install danielmeppiel/design-guidelines
apm install danielmeppiel/compliance-rules
# Compile into single AGENTS.md guardrails# Now all agents respect design + compliance rules automatically
apm compile
# Run a prompt from the installed packages above
apm run design-review
That’s it! Your project now has reliable AI workflows that work with any coding agent.
GitHub Enterprise: Works with GitHub Enterprise Server and Data Residency Cloud. Configuration →
Example apm.yml – Like package.json for AI Native projects
Here’s what your apm.yml configuration file looks like (similar to package.json in npm):