The Soulcraft Ecosystem

Five powerful products working together: Brainy, Codex, Guild, Studio, and Heart. Everything you need to craft intelligent AI systems that remember, collaborate, and care.

Five Products, One Ecosystem

Each product serves a specific purpose. Together, they create intelligent AI systems.

Open Source • MIT
🧠

Soulcraft Brainy

The foundational Knowledge Operating System. Open source Triple Intelligence™ database unifying vector search, graph relationships, and metadata filtering in one API.

  • Zero configuration required
  • Works everywhere (browser to cloud)
  • Built-in embeddings (no API costs)
  • Virtual filesystem with semantic access
  • Import anything (CSV, PDF, JSON)
  • 3.37MB • Sub-10ms queries
View on GitHub →
Coming Q1 2026
💭

Soulcraft Codex

Individual AI agent memory. Unlimited structured memory where each agent builds their own history and context. Never lose conversation history again.

  • Unlimited memory per agent
  • Each agent maintains own history
  • Works with Claude, GPT, Gemini
  • Semantic context retrieval
  • Cross-session persistence
  • MCP integration ready
View Pricing →
Coming Q2 2026
🤝

Soulcraft Guild

Multi-agent collaboration platform. Agents coordinate like master craftspeople, sharing knowledge and working toward common goals with automatic handoffs.

  • Coordinate multiple AI agents
  • Shared knowledge base
  • Automatic task routing
  • Collaborative workflows
  • Cross-agent context sharing
  • Team-based problem solving
View Pricing →
Live Beta
🛠️

Soulcraft Studio

The human interface. Visual workshop for managing, exploring, and creating with your AI ecosystem. Inspect knowledge graphs, craft workflows, and build AI applications.

  • Interactive 3D graph visualization
  • AI-powered creation tools
  • Import & explore data
  • VFS navigation & semantic search
  • Workflow designer
  • Real-time collaboration
Try Studio Beta →
Coming Q2 2026
❤️

Soulcraft Heart

Empathy as a service. The missing layer that adds emotional intelligence and human-centered responses to AI. Context-aware empathy for every interaction.

  • Emotional intelligence layer
  • Human-centered AI responses
  • Context-aware empathy
  • Sentiment understanding
  • Tone adaptation
  • Compassionate communication
View Pricing →

Why Developers Choose Soulcraft

Production-ready features that just work

Triple Intelligence™

First database to unify vector search, graph relationships, and metadata filtering in one query. Replace Pinecone + Neo4j + MongoDB with one system.

🚀

Zero Configuration

No setup, no config files, no infrastructure. Install and start building. Auto-detects environment and optimizes automatically.

🌍

Universal Runtime

One codebase works everywhere: browser, Node.js, serverless, edge. Same API from prototype to production.

💾

Semantic VFS

Virtual filesystem with 6 access dimensions: path, concept, author, time, relationships, and similarity. Files become intelligent.

🔌

Import Anything

CSV, Excel, PDF, JSON, YAML, URLs, directories. Auto-detects format, extracts entities, creates relationships automatically.

🧬

Built-in AI

Automatic embeddings, entity extraction, clustering, outlier detection. No external API needed. Save $1K+/year on embedding costs.

🔒

Enterprise Ready

WAL durability, monitoring, rate limiting, audit logging, encryption. All included free. No premium tiers for basic features.

💰

Cost Effective

83-92% cheaper than competitors. Self-host for $3-8K over 5 years vs $42K+ for Pinecone. MIT license, no vendor lock-in.

📊

Performance

Sub-10ms queries at 10M+ items scale. HNSW vector indexing, efficient graph traversal, O(log n) metadata filtering.

Zero to Knowledge Graph in 60 Seconds

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
})

Start Crafting Today

Begin with Brainy (free), explore with Studio (beta), scale with Codex, Guild, and Heart (coming soon)