PermuteDocs
Go to Permute

Skills · organizationSkillsGet

Read an organization skill

Organization scope. Requires skill read permission. URL-encode nested Markdown paths; absent files return empty content, matching the shared skill library.

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

typescript
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

json
{
  "data": {
    "content": "# Revenue reporting\n\nUse the Net revenue fact for revenue analysis."
  }
}