Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.auvy.ai/llms.txt

Use this file to discover all available pages before exploring further.

Choose a package

Use this page when you know what you want to build but not which import path to use.

By workflow

I want to…PackageEntryCredential
Invoke receptors / neurons from a backend@auvy-synapse/clientfromApiKey()API key
Browse assets, search the vault, run jobs@auvy-synapse/clientfromApiKey()API key
Stream job tokens from a server script@auvy-synapse/clientauvy.jobs + streamingAPI key
Embed Synapse in a browser app@auvy-synapse/clientcreateAUVYClient({ publishableKey, getAccessToken })Publishable key + JWT
Show an integration catalog and OAuth link@auvy-synapse/connect-clientconnectFromSession()Publishable key + JWT
Manage triggers / credentials / OAuth apps@auvy-synapse/connect-client/advancedcreateAUVYConnectClient()Publishable key + JWT
Execute a Connect tool from agent-end or API@auvy-synapse/connect-client/serverconnectRunTool()Internal secret

By credential

CredentialWhere to get itPackages
API keyCortex → Workspace Settings → API Keys@auvy-synapse/client
Publishable keyCortex workspace settings (browser)@auvy-synapse/client, @auvy-synapse/connect-client
User JWTYour auth provider (Supabase session in dashboard)Browser entries above
Share tokenReceptor/trace share links@auvy-synapse/client (public.*, stream options)
Connect internal secretOperator env on API/agent-end@auvy-synapse/connect-client/server

Synapse API vs Connect

ServiceBase URL envIntegrations CRUD
Synapse APIAUVY_API_URLReturns 410 — do not use
ConnectAUVY_CONNECT_URLGET/POST /v1/integrations
Custom integration UIs talk to Connect, not the Synapse API, for OAuth and tool catalogs.

Common combinations

Backend automation (no Connect UI)

npm install @auvy-synapse/client
const auvy = await fromApiKey()
await auvy.receptors.invoke(workspaceSlug, 'support-bot', { message: 'Hello' })

Full-stack app with OAuth integrations

npm install @auvy-synapse/client @auvy-synapse/connect-client
  • Product features → fromApiKey() or browser createAUVYClient()
  • Integration picker + OAuth → connectFromSession()

Self-hosted operator stack

  • Set AUVY_API_URL, AUVY_CONNECT_URL, and secrets per docs/SETUP.md in the monorepo
  • Workers use connectRunTool() with AUVY_CONNECT_INTERNAL_SECRET

Not on npm

PackageUse
@auvy-synapse/private-clientAUVY dashboard only
Monorepo server packagesServer-only — never import from browser integrator apps