Documentation Index
Fetch the complete documentation index at: https://docs.kataven.ai/llms.txt
Use this file to discover all available pages before exploring further.
PlaybooksResource is reachable on every Kataven Node client as client.playbooks. Each method maps to one HTTP endpoint on the Hub API; links to the underlying spec entry are inline below.
Playbooks are reusable knowledge bundles (system-prompt fragments + tool lists) you attach to agents. CRUD via client.playbooks; attach/detach via client.agents.attachPlaybook.
Methods at a glance
| Method | HTTP | Summary |
|---|---|---|
list | GET /api/playbooks | List playbooks |
get | GET /api/playbooks/{idOrName} | Get a single playbook |
create | POST /api/playbooks | Create a custom playbook |
update | PUT /api/playbooks/{idOrName} | Update a playbook |
delete | DELETE /api/playbooks/{idOrName} | Delete a custom playbook |
Reference
client.playbooks.list(...)
List playbooks
HTTP — GET /api/playbooks · API reference →
client.playbooks.get(...)
Get a single playbook
HTTP — GET /api/playbooks/{id} · API reference →
client.playbooks.create(...)
Create a custom playbook
HTTP — POST /api/playbooks · API reference →
client.playbooks.update(...)
Update a playbook
HTTP — PUT /api/playbooks/{id} · API reference →
client.playbooks.delete(...)
Delete a custom playbook
HTTP — DELETE /api/playbooks/{id} · API reference →

