Stats
Actions
Tags
From kognitos
Integrate Kognitos APIs and clients through explicit adapters, stable request contracts, and predictable error handling.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kognitos:kognitos-api-clientThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when you are wiring application code to Kognitos APIs or SDKs, or when you need to create and run automations programmatically.
assets/client-adapter-template.tsassets/node-sdk-example.tsassets/run-report-template.mdreferences/analytics-api.mdreferences/automation-agent-api.mdreferences/books-api.mdreferences/curl-examples.mdreferences/error-handling.mdreferences/exceptions-api.mdreferences/files-api.mdreferences/integration-shape.mdreferences/public-assets.mdreferences/runs-api.mdreferences/scheduling-api.mdUse this skill when you are wiring application code to Kognitos APIs or SDKs, or when you need to create and run automations programmatically.
curl-first exploration and reproductions: references/curl-examples.mdkind: AUTOMATION_KIND_QUILL2, open a Quill thread on it, and converse with the agent. The agent id in URL paths is quill2. See references/automation-agent-api.md.isMutation procedures like sending email or creating records): each test is a real run with side effects, so keep those deliberate.POST .../input), observe events (GET .../events poll, or GET .../stream SSE) until the turn ends, then respond. The agent is non-deterministic and may ask clarifying questions (interrupts) or request connections. Drive the conversation interactively rather than scripting it end-to-end.major.minor: Quill's autosaves create draft minor versions (major == 0 = never published) — Quill never publishes. Publishing (:publish) is an explicit step that bumps the major. Running uses :invoke, where stage selects the version: AUTOMATION_STAGE_DRAFT (test/preview) or AUTOMATION_STAGE_PUBLISHED (production, after publishing).TEST runs and user MANUAL draft invokes) disable exception handling — failures surface inline with a traceback and no Astral, so you can invoke a draft yourself and ask Quill to monitor and debug that run. Published runs are managed by Astral's guidance-center flow (exceptions-api.md).english_code on the automation, read-only). The SPy code is internal.https://app.<region>-1[.<env>].kognitos.com (e.g. https://app.us-1.kognitos.com, or https://app.us-1.dev.kognitos.com for dev). EU customers swap us-1 for eu-1.kgn_pat_ prefix). The token identifies the user, not an org or workspace.curl for exploration, debugging, reproductions, and confirming request shape.@kognitos/node SDK for application code when it covers the required endpoint.npx claudepluginhub kognitos/kognitos-plugin --plugin kognitosGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.