Skip to content

Share

Share session timelines safely.

AlphaBase can generate shareable links for session timelines.

What Happens On Share

  1. a share secret is created for the session
  2. session metadata/messages are synced to the share backend
  3. a public URL is returned

In cloud deployments, this is handled by the share function endpoints (for example /share_create, /share_sync, /share_poll, /share_data).

Share Modes

Configure with share in alphabase.json:

{
"$schema": "https://alphabase.ai/config.json",
"share": "manual"
}

Allowed values:

  • manual: explicit share action
  • auto: share new sessions automatically
  • disabled: prevent sharing

Security Guidance

  • treat share links as public
  • do not share secrets or proprietary payloads
  • disable sharing in regulated environments
{
"$schema": "https://alphabase.ai/config.json",
"share": "disabled"
}