Skip to content
AdCrunch
Esc
↑↓navigate↵open⌘Jpreview
On this page

skill_list

List your organization's ad-ops playbooks (Skills) by slug, name, and description.

Lists the Skills (ad-ops playbooks) in your organization, newest first. Returns each Skill’s slug, name, and description only — never the body. This is progressive disclosure: the agent picks the right Skill from its description, then loads the full instructions with skill_get.

Input

The active organization is resolved from your OAuth token.

Field Type Required Description
limit number no The greatest number of rows in the answer, from 1 to 500. The default is 100.
cursor string no The nextCursor of the previous answer. Omit it to get the first page.

Output

{ skills: [...], nextCursor? }. Each Skill is { slug, name, description }. Soft-deleted Skills are excluded. When nextCursor is present, more Skills exist: call skill_list again with cursor set to that value.

Example

“What ad-ops playbooks do I have?”

skill_list({});
// → { skills: [{ slug: 'weekly-meta-audit', name: 'Weekly Meta Audit', description: '…' }, …] }

Errors

  • invalid_cursor — the cursor is not a nextCursor of this tool, with the same arguments. Send it with no change, or omit it.
  • 401 or 403 — see Errors, which every tool shares. This one needs skill:read.

Was this page helpful?