How DalexorMI works
Complete Data Flow
STEP 1: Local Detection
You save a file in your editor
The monitor detects the change
Sentinel checks the file vs last version
If changed, it marks the exact differences
Measures how important the change is
Detects code connections (imports)
Adds to local memory buffer
Sends grouping of changes to the cloud
STEP 2: Cloud Sending
Payload sent to /ingest endpoint with API key
Server validates key and resolves organization context
Check rate limits and atom quotas based on subscription tier
Verify project ownership (prevent cross-tenant poisoning)
If E2EE enabled, encrypt content with team secret
Send diff to AI for summarization
Generate embedding vector from summary
Search for parent atom (same file, recent version)
Insert into atoms table with parent_atom_id link
Create synaptic links to dependencies
Perform reverse healing (find files that import this file)
STEP 3: Searching
AI assistant uses a tool (e.g., search for code)
Server receives the request
Checks your access and security
Runs search in the private history
Decrypts if needed
Returns results to the AI
AI explains the answer to you This is the main flow


Replies