Search
APM is the Agent Package Manager. A registry and management tool for Skills, Workflows, and Agent Apps.
npx -y skills add orthogonalhq/apm --skill searchAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Search the APM registry for agent skills. Use when asked to find, discover, or browse skills.
SKILL.md
0.9 KB, as published. Nobody here has run it
Search the registry
GET https://apm.orthg.nl/api/search?q=<query>
Returns up to 50 results ranked by relevance.
{
"results": [
{
"scope": "anthropics",
"name": "code-review",
"description": "Systematic code review checklist",
"repoStars": 87,
"license": "MIT"
}
],
"total": 3
}
Present results to the user with scope, name, description, stars, and license.
Review before installing
Before installing, fetch the full SKILL.md to verify it matches the user's needs:
GET https://apm.orthg.nl/api/packages/@<scope>/<name>/skill-md
Returns raw SKILL.md content as plain text. Read it and confirm with the user that the skill does what they're looking for.