# Search

> Search the APM registry for agent skills. Use when asked to find, discover, or browse skills.

- Skill: `orthogonalhq/search` (Agent Skill)
- Install (CLI): `npx skillmds@latest add orthogonalhq/search`
- Raw SKILL.md: https://api.skillmd.com/api/skills/orthogonalhq/search/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: orthogonalhq (https://skillmd.com/u/orthogonalhq)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/orthogonalhq/search

---


## Search the registry

```
GET https://apm.orthg.nl/api/search?q=<query>
```

Returns up to 50 results ranked by relevance.

```json
{
  "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.

