Tasuku
Reference

API reference

Tasuku API authentication, error envelopes, pagination, and generated endpoint documentation.

The versioned control-plane API is served under:

/api/v1

The generated endpoint pages in this section come directly from api/openapi.yaml during the static documentation build. They are read-only documentation: this site does not proxy requests or forward browser cookies or tokens.

Authentication

The bootstrap endpoints use a bearer TASUKU_BOOTSTRAP_TOKEN during initial setup. Browser manifest authorization is exchanged for an HttpOnly cookie that expires after five minutes.

Authenticated product endpoints accept the active session cookie. The contract also describes bearer session use where supported. Authorization remains organization-scoped and role/capability checked.

Errors

API errors use a stable machine-readable code and human-readable message in the documented error envelope. Treat the code as the programmatic branch and the message as operator context.

Common status meanings:

StatusMeaning
400Invalid input, cursor, provider configuration, or workflow command.
401Missing, expired, revoked, or invalid authentication.
403Authenticated user lacks the required role or capability.
404Organization-scoped resource is absent or inaccessible.
409State conflict, duplicate operation, or protected last-super-user change.

Pagination

List endpoints that can grow use cursor pagination. Pass the returned cursor to request the next page and keep the documented page size within its limit. Cursors are opaque; do not parse or construct them.

Endpoint groups

The generated reference contains all 93 operations grouped as:

  • Bootstrap
  • Authentication
  • Organizations
  • Users
  • GitHub
  • Connected Apps
  • Slack
  • Linear
  • Configuration
  • Workflows
  • Work Items
  • Memories
  • Repositories
  • Secrets
  • Reviews

Use the sidebar or search to open a generated operation. Request examples are illustrative and do not execute from this static site.

On this page