Five powerful products working together: Brainy, Codex, Guild, Studio, and Heart. Everything you need to craft intelligent AI systems that remember, collaborate, and care.
Each product serves a specific purpose. Together, they create intelligent AI systems.
The foundational Knowledge Operating System. Open source Triple Intelligence™ database unifying vector search, graph relationships, and metadata filtering in one API.
Individual AI agent memory. Unlimited structured memory where each agent builds their own history and context. Never lose conversation history again.
Multi-agent collaboration platform. Agents coordinate like master craftspeople, sharing knowledge and working toward common goals with automatic handoffs.
The human interface. Visual workshop for managing, exploring, and creating with your AI ecosystem. Inspect knowledge graphs, craft workflows, and build AI applications.
Empathy as a service. The missing layer that adds emotional intelligence and human-centered responses to AI. Context-aware empathy for every interaction.
Production-ready features that just work
First database to unify vector search, graph relationships, and metadata filtering in one query. Replace Pinecone + Neo4j + MongoDB with one system.
No setup, no config files, no infrastructure. Install and start building. Auto-detects environment and optimizes automatically.
One codebase works everywhere: browser, Node.js, serverless, edge. Same API from prototype to production.
Virtual filesystem with 6 access dimensions: path, concept, author, time, relationships, and similarity. Files become intelligent.
CSV, Excel, PDF, JSON, YAML, URLs, directories. Auto-detects format, extracts entities, creates relationships automatically.
Automatic embeddings, entity extraction, clustering, outlier detection. No external API needed. Save $1K+/year on embedding costs.
WAL durability, monitoring, rate limiting, audit logging, encryption. All included free. No premium tiers for basic features.
83-92% cheaper than competitors. Self-host for $3-8K over 5 years vs $42K+ for Pinecone. MIT license, no vendor lock-in.
Sub-10ms queries at 10M+ items scale. HNSW vector indexing, efficient graph traversal, O(log n) metadata filtering.
Install, import, and start querying with Triple Intelligence™
// Install Brainy v3.23.0
npm install @soulcraft/brainy
// Zero configuration required!
import { Brainy, NounType } from '@soulcraft/brainy'
const brain = new Brainy()
await brain.init()
// Add entities with automatic embeddings
const jsId = await brain.add({
data: "JavaScript is a programming language",
nounType: NounType.Concept,
metadata: { type: "language", year: 1995 }
})
// Create relationships
await brain.relate({ from: nodeId, to: jsId, type: "executes" })
// Triple Intelligence™ query
const results = await brain.find({
like: "programming languages", // Vector: semantic search
where: { year: { $gte: 1990 } }, // Metadata: filtering
connected: { to: nodeId } // Graph: relationships
})
Begin with Brainy (free), explore with Studio (beta), scale with Codex, Guild, and Heart (coming soon)