Product concepts
AUVY OS nouns for AUVY SDK integrators.
Product concepts
Short glossary for harness and SDK users. For vault workflows see Vault discovery; for invoke and streaming see Jobs and streaming.
| Noun | What it is |
|---|---|
| Workspace | Tenant — resolved from your API key or session |
| Brain | Project context inside a workspace; scope lists and runs with X-Brain-Id |
| API key | User-scoped credential; access limited to brains the creator participates in |
| Neuron | Configurable agent (model, tools, memory) — invoke with neurons.invoke |
| Pathway | Workflow graph — run with pathways.execute |
| Receptor | Catalog entry + share surface over a neuron/pathway; channel triggers configured in Cortex |
| Job | Async run — every invoke returns job_id; stream or poll |
| Trace | Conversation thread and message history |
| Vault | Folder-indexed workspace documents — browse and search via MCP/CLI |
Execution model
Integrators run work directly on neurons or pathways:
auvy.neurons.invoke(neuronId, { message, stream: true })auvy.pathways.execute(pathwayId, { input })
Cache neuron/pathway UUIDs from the dashboard or a one-time catalog list — not per message.
Receptors are for catalog, share links, and automation wiring in Cortex — not the primary HTTP invoke path for scripts.
Where to go next
| Goal | Page |
|---|---|
| API keys and brain scope | Authentication |
| Browse or search content | Vault discovery |
| Connect an assistant | MCP server |
| Terminal automation | CLI |
| Invoke from app code | First SDK call |
| HTTP / curl | HTTP reference |