Why coding agents should use Corsair discovery
Coding agents work best when they can discover integrations and schemas directly instead of inferring APIs from source files. Corsair provides two CLI commands designed for discovery, without making any external API calls to integrated services:pnpm corsair listpnpm corsair schema <path>
CLI commands
Discover available operations
Usepnpm corsair list to inspect all available plugins and operations.
Inspect schemas
Usepnpm corsair schema <path> to inspect the input and output schema for a specific operation.
- request schema
- response schema
- entity shapes
- webhook payload structures
Example skill file
You can provide these instructions to coding agents using a reusable markdown skill file.Where to place the skill file
For Claude Code:Recommended workflow for coding agents
- Discover available operations using
pnpm corsair list - Inspect operation schemas using
pnpm corsair schema - Generate integration code from the schema output
- Avoid inferring APIs from implementation details