skill.md) provides AI agents with everything they need to discover and use APIs - no integration required.
What is skill.md?
A skill file is a markdown document that teaches AI agents how to use a service. When an agent reads the Orthogonal skill file, it learns:- How to authenticate
- Available tools (search, details, integrate, run)
- Request/response formats
- Example workflows
Fetching the Skill
Your agent can fetch the latest skill file from:Using with AI Agents
Claude / Cursor / OpenClaw
Add Orthogonal to your agent’s skills directory, or have it fetch dynamically:Custom Agents
Inject the skill content into your agent’s context:What’s in the Skill File
The skill file includes:Authentication
Available Tools
| Tool | Endpoint | Description |
|---|---|---|
| search | POST /v1/search | Find APIs with natural language |
| get_details | POST /v1/details | Get endpoint parameters |
| integrate | POST /v1/integrate | Get code snippets |
| use | POST /v1/run | Execute API calls |
| list_all | GET /v1/list-endpoints | List all APIs |
Typical Workflow
Code Examples
The skill includes curl examples for each tool, plus SDK and x402 integration patterns.Benefits
Always Up-to-Date
Fetching dynamically ensures your agent has the latest API information.
No Integration
Agents can start using Orthogonal immediately just by reading the skill.
Self-Documenting
The skill teaches agents the full workflow, not just endpoints.
Universal
Works with any agent that can read markdown and make HTTP requests.
