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.
Neuron scope
Every neuron has ascope field: core, workspace, or brain. Scope is the canonical way to describe how broadly a neuron is shared and which admin rules apply.
| Scope | Meaning |
|---|---|
brain | Default. Neuron belongs to a single brain; listed and edited in normal brain-scoped flows. |
workspace | Workspace-wide visibility. Changing to workspace requires workspace admin on the tenant. |
core | Curated “core system” neurons (e.g. templates, platform defaults). Creating or promoting to core requires core admin validation on the API. |
scope on the receptor row: when you update a neuron’s scope, the API syncs the matching receptor’s scope so gateways stay aligned.
Completion type and trace persistence
Neurons withneuron_type: completion (see Neurons API) are optimized for structured, single-shot outputs. When executed outside a pathway graph, the worker persists durable engrams as trace_type: "system" so they do not appear in default thread / Trace Chat listings—you typically omit neuron_task_options for that behavior.
For standard or agentic neurons invoked from cron, tools, or other background jobs, pass neuron_task_options: { trace_type: "system" } on POST /v1/neurons/:id/invoke or receptor invoke when you want the same hygiene. pathwayContext on the job still wins for pathway-scoped runs.
API usage
- Create: optional
scope(brainif omitted). - Update: send
scopewhen changing tier; core admin rules apply when moving to or fromcore.