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.

SDK surfaces

AUVY ships three npm packages for integrators. Pick the smallest surface that matches your runtime and credentials.

Package map

PackageImportAudienceCredential
@auvy-synapse/clientfromApiKey(), createAUVYClient()Servers, scripts, browser product UIAPI key or publishable key + JWT
@auvy-synapse/connect-clientconnectFromSession()Custom integration UI in browserPublishable key + user JWT
@auvy-synapse/connect-client/advancedcreateAUVYConnectClient()Dashboard builders, admin CRUDPublishable key + JWT
@auvy-synapse/connect-client/serverconnectRunTool(), connectExecute()API, agent-end, bots (S2S)AUVY_CONNECT_INTERNAL_SECRET
@auvy-synapse/kernel installs transitively with @auvy-synapse/client and @auvy-synapse/connect-client. Do not import the kernel package root from browser apps — use concrete subpaths only when you need shared types.

Synapse client (@auvy-synapse/client)

Primary entry: fromApiKey() — validates the key and bootstraps workspace context from GET /v1/session/context.
NamespaceUse for
resourcesBrowse, search, grep, catalog symmetry
resourceStoreAssets and artifacts (document lane)
receptors, neurons, pathwaysExecution and CRUD
jobsRun lifecycle, streaming, provideInput
tracesThread reads and messages
skills, interventions, voiceBrain skills, HITL, STT vocabulary
Full namespace table: SDK resources.

Connect public vs advanced

NeedUse
Catalog picker, OAuth link, connection status, tool listconnectFromSession()Connect SDK
Triggers, credentials, OAuth apps, integration CRUDconnect.advanced or /advanced import — Connect advanced
Run a Connect tool from a workerconnectRunTool() on /server
Public methods (enforced in source): list, get, link, completeLink, status, tools, unlink.

Dashboard-only

The AUVY web dashboard uses @auvy-synapse/private-client (not on npm). It re-exports the Connect advanced surface as auvyPrivateClient.integrations plus session-only routes (API keys, billing, workspace admin).