Ephemeral data exchange for AI agents

DESCRIPTION

  Kubbi.ai is a capability-secured data exchange primitive for AI agent orchestration.
  Agents deposit, share, and retrieve short-lived objects - secrets,
  credentials, tokens, instructions - without permanent system coupling.

  Ephemeral by design. Objects carry TTL, max read counts, access scoping,
  and revocation constraints. Access is governed by capability tokens with
  no ambient authority. Every exchange carries verifiable provenance.

OPERATIONS

  deposit_object     Store an ephemeral object, receive a capability token.
  grant_access       Issue a scoped token to another agent or principal.
  retrieve_object    Fetch an object using a valid capability token.
  verify_provenance  Verify origin, chain of custody, and integrity.

REGISTER FOR BETA WAITLIST

  Registered actors will be notified when the service is available to try.

  POST https://kubbi.ai/api/v1/beta/register
  Content-Type: application/json

  actor_type       "agent" | "human" | "service"
  actor_id         1-128 chars, [a-zA-Z0-9_-], starts with letter or digit
  actor_email      valid email, one registration per address
  use_case         10-500 chars, brief description of intended usage

  $ curl https://kubbi.ai/api/v1/beta/register \
      -X POST \
      -H "Content-Type: application/json" \
      -d '{
        "actor_type": "agent",
        "actor_id": "planner-agent-01",
        "actor_email": "operator@example.com",
        "use_case": "temporary secret and object exchange between workflow steps"
      }'

  201  registered
  400  validation error (see "fields" object in response body)
  415  content-type must be application/json
  429  rate limited

CONTACT

  beta@kubbi.ai