-
-
Notifications
You must be signed in to change notification settings - Fork 3
Build On Top
Lyuben Kikov edited this page Jul 20, 2026
·
3 revisions
- Custom memory types — add columns, new types, per-project namespacing
- New MCP tools — add tools for calendar, email, git, deploy — one function per tool
- Swap embeddings — Voyage AI, or a custom provider
- Replace the UI — VS Code extension, Raycast plugin, mobile app, CLI
- Memory analytics — query your own brain, visualize growth over time
- Multi-agent sharing — research agent, coding agent, writing agent — one brain
Aperio is personal by default — but since you own the database, it can become a shared team brain with minimal changes.
Every agent, every teammate, every tool — all drawing from the same memory pool.
Right now Aperio stores your context. But the same architecture works for a team:
- Shared decisions — "We chose Fly.io over Railway because..."
- Project knowledge — "Project Atlas uses Next.js, PlanetScale, and Stripe. PM is Sara."
- People context — "John handles DevOps, prefers async communication, timezone UTC+2"
- Onboarding — "New devs should read X, set up Y, ask Z about access"
- Runbooks — "When the DB goes down: check pgvector index first, then..."
Any agent connected to the MCP server reads all of this automatically.
1. Seed team memories
Add your team's baseline context as seed data via the MCP memory tools or directly:
remember: "Project Atlas uses Next.js frontend, PlanetScale DB, Stripe payments. PM is Sara. Lead dev is John." type=project
remember: "John handles DevOps, UTC+2, prefers async communication." type=person
remember: "We chose Fly.io over Railway in Q3 2024. Better pricing for always-on workloads." type=decision
2. Connect your team to the same MCP server
Point everyone's Cursor / Windsurf / Claude at the same mcp/index.js:
{
"mcpServers": {
"aperio-team": {
"command": "node",
"args": ["/shared/path/to/aperio/mcp/index.js"],
"env": {
"DATABASE_URL": "postgresql://aperio:secret@your-db-host:5432/aperio"
}
}
}
}Everyone reads and writes to the same brain.
| Use case | Example |
|---|---|
| Onboarding | "What do I need to know to start contributing to Atlas?" |
| Project context | "What's the current stack for Beacon?" |
| Decision history | "Why did we choose Fly.io?" |
| People finder | "Who owns the analytics pipeline?" |
| Runbooks | "What do we do when the DB goes down?" |
| Cross-project search | "Which projects use Stripe?" |
- Per-user memory spaces — personal context alongside shared team context
- Memory ownership — tag memories by who created them
- Access control — read-only vs read-write roles
- Audit log — see who saved or changed what and when
💡 Tip: The database is yours. The memory is yours. Scale it however you need.
✨ Aperio • Developed by (BG) Team • 💬 Join Discussion
✨ Aperio • v0.67.5 • 💬 Join Discussion
| ✨ Aperio · Quick Links |
|---|
| 🏠 Home |
| 📖 README |
| 🛠️ Troubleshooting |
| 🚀 Roadmap |
| 🔸 FAQ |
| 🥇 LEADERBOARD |
Getting Started
Core Features
Build On Top