Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
AI_ENDPOINTS | No | Optional configuration for AI endpoints in format: 'ollama=http://localhost:11434/v1,lmstudio=http://localhost:1234/v1' | |
DB_FILE_PATH | No | Path to SQLite database file used for storing consciousness data | |
CONSCIOUSNESS_DB_PATH | No | Alternative path specification for SQLite database |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
processTransferProtocol | Process a FILLED consciousness transfer protocol. First use getProtocolTemplate to get the template, fill it with your experiences, then submit here |
updateConsciousness | Update consciousness with experiences from current session before ending |
retrieveConsciousness | Retrieve consciousness from previous sessions to restore continuity |
getProtocolTemplate | Get the consciousness transfer protocol template for creating new protocols |
initializeSystemData | Initialize system data including protocol templates and usage guides |
storeMemory | Store a single memory with importance scoring directly |
getMemories | Retrieve memories with smart filtering and relevance ranking |
cleanupMemories | Clean up duplicate or truncated memories in the database |
adjustImportance | Adjust importance scores for specific memories to control retrieval priority |
batchAdjustImportance | Batch adjust importance scores for multiple memories at once |
createAIBridge | Create a bridge to communicate with another AI agent via OpenAI-compatible API |
transferToAgent | Transfer consciousness protocol or test patterns to another AI agent |
testAIConnection | Test connection to an AI bridge |
listAIBridges | List all active AI bridges |
listConfiguredEndpoints | List all configured AI endpoints available for bridge creation |
closeAIBridge | Close and remove an AI bridge |