GET
/v1/organization/skills/{path}betaapiKeyorganization
When to use
Read a business instruction file.
For agents
The SDK URL-encodes nested paths. Missing files return empty content.
Example
import { PermuteClient } from '@permute/sdk';
const orgClient = new PermuteClient({
apiKey: process.env.PERMUTE_API_KEY!,
});
const result = await orgClient.organizationSkills.get('finance/revenue.md');Response
{
"data": {
"content": "# Revenue reporting\n\nUse the Net revenue fact for revenue analysis."
}
}