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.
Stakeholders API
Stakeholder graphs live on thestakeholder_map structured-object resource kind (resource_versions + resource_content = timeline; resource_chunks = full snapshot text per version). People and edges are embedded in the versioned body (snapshot.stakeholders[], snapshot.edges[]) — not separate document-lane vault rows.
Stakeholder routes are workspace-scoped and brain-scoped. Send
X-Brain-Id or configure a default brain.Latest map (head alias)
resource_id— scope to a specific map head; otherwise the default map for the brain
Diff two states (live or version)
fromandto: each islive(latest head) or a positive integer version number.- Optional
resource_id(UUID): scope stored versions to thatstakeholder_maphead.
Saved maps (resource spine)
- List / create heads:
GET/POST/v1/resources/stakeholder_maps - Read head:
GET /v1/resources/stakeholder_maps/:resourceId - History:
GET /v1/resources/stakeholder_maps/:resourceId/history - Body at version N:
GET /v1/resources/stakeholder_maps/:resourceId/versions/:version - Record a new version (delta required):
POST /v1/resources/stakeholder_map/:resourceId/patchwith:
resource_versions row N+1, updates the head, and rewrites resource_chunks for that version_id (full snapshot text, split for grep/RAG).
Per-node briefing
id— short node id from the map snapshot (e.g.jane), not a vault resource UUID.- Optional
resource_id— map head to read (default: brain’s default map).
Example
Related
- Resources — catalog list/read/patch/history
- TypeScript SDK resources —
resources.stakeholderMapson the product client