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 Resources
How to work with the spine in TypeScript: (1)auvy.resources — browse.list, browse.resourceTree, search.searchSemantic / search.search, patchCentral, and resources.neurons (catalog GETs, history, soft-delete, restore). (2) auvy.resourceStore — document lane list/get/ingest/chunks aligned with /v1/assets and /v1/artifacts. (3) Vertical clients — neurons, pathways, reflexes, receptors — for create/update, invoke, slug reads, and pathway execute when that HTTP shape fits best.
Most namespaces map directly to documented REST endpoints; backend and v1 exist for advanced or escape-hatch calls.
Stable resource clients
| Namespace | Purpose | Reference |
|---|---|---|
resources | Unified browse/search, central patch, meetings vertical, synaptic SDK symmetry | /api-reference/resources |
neurons | Create and update agents (model, memory, tools, scope) | /api-reference/neurons |
pathways | Manage and execute visual workflows | /api-reference/pathways |
reflexes | Manage tool collections and execution bindings | /api-reference/reflexes |
receptors | Gateway: list, share, and invoke neurons/pathways | /api-reference/receptors |
jobs | Execute async work, inspect status, stream progress, transcribe audio | /api-reference/jobs |
resourceStore | Document lane: assets, artifacts, ingest, chunks, versions | /api-reference/assets-artifacts |
traces | Inspect conversation threads and add messages | /api-reference/traces |
recollections | Knowledge scopes for traces and owners (RAG retrieval) | /api-reference/recollections |
search | searchSemantic (match-only POST /v1/search), grepSemantic (list/match + optional grep_keywords), async GET /v1/search | /api-reference/search |
usage | Usage and billing visibility | /api-reference/usage |
activity | Workspace activity feed and engrams | /api-reference/activity |
public | Share-token based receptor and trace flows | /api-reference/public |
health | Liveness and authenticated workspace context | /api-reference/health |
config | Model catalog, embedding config, and cost estimates | /api-reference/config |
Advanced helpers
These namespaces are exposed publicly but are closer to first-party tooling than the core REST contract:| Namespace | Includes | Notes |
|---|---|---|
backend | validatePathway, compilePathway, getNeuronCards, chatCompletion, chatNeuron, raw tools metadata | Useful for builders and internal tooling. Some helpers front endpoints that may evolve faster than the core resource CRUD surfaces. |
v1 | get, post, put, patch, delete helpers under /v1/* | Escape hatch for new endpoints before a typed namespace is added. |
Streaming helpers
These package-level exports are part of the intended SDK surface:Pagination helpers
Every list-style namespace exposes eitherpaginate(), listAll(), or both.
Contract boundaries
@auvy-synapse/clientis the public package and is appropriate for product integrations.@auvy-synapse/private-clientis dashboard-only and not published to npm.- JWT-only workspace integration management is intentionally outside this API-key-focused docs set.
- The public Connect base URL (
NUXT_PUBLIC_AUVY_CONNECT_URL/AUVY_CONNECT_URL) is implemented in@auvy-synapse/kernel/config/connectPublicUrland re-exported from@auvy-synapse/connect-clientfor dashboard and service code that already imports Connect types.
Related
- TypeScript SDK for installation and auth setup
- API Reference for REST details
- Developer overview for app/package boundaries