Skip to content

Capture & Manage

arx_add

Add a new thought to your knowledge graph. The server auto-generates embeddings for semantic search.

Parameters:

NameTypeRequiredDescription
contentstringYesThought content (include [TAG] prefix)

Tag conventions:

TagUse for
[DECISION]Architectural or strategic choices
[PATTERN]Reusable learnings
[INSIGHT]Key realizations
[TASK]Action items
[QUESTION]Open questions to revisit
[SESSION]Work session summaries
[RESEARCH]Prior art findings

Example prompt: "Capture this as a decision: We chose VitePress for docs because it's markdown-native and has built-in search"

What happens:

  1. Thought is saved with a unique UUID
  2. Server generates an embedding vector (nomic-embed-text-v1.5)
  3. Hebbian auto-association finds and links similar existing thoughts
  4. Thought is immediately searchable via keyword and semantic search

arx_update

Update an existing thought's content. The embedding is regenerated automatically.

Parameters:

NameTypeRequiredDescription
idstringYesThought UUID
contentstringYesNew content

arx_delete

Delete a thought and all its edges.

Parameters:

NameTypeRequiredDescription
idstringYesThought UUID

WARNING

Deletion is permanent. Edges connected to this thought are also removed.

Built by Arc Labs