GET
/v1/skills/{path}betaapiKeyworkspace
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 client = orgClient.withWorkspace(process.env.PERMUTE_WORKSPACE_ID!);
const result = await client.skills.get('finance/revenue.md');Response
{
"data": {
"content": "# Revenue reporting\n\nUse the Net revenue fact for revenue analysis."
}
}