vaultit
mcp-name: io.github.TheRealDataBoss/vaultit

Zero model drift between AI agents.
Install
pip install vaultit
Quickstart
vaultit init
vaultit sync --agent claude
vaultit bootstrap --clipboard
CLI Reference
init | Scaffold project context — state vector, conventions, tasks |
sync | Scan repo and update state vector with current project state |
bootstrap | Generate paste-ready briefing for any AI agent |
status | Show tracked projects and their current state |
doctor | Validate context files for consistency and missing fields |
migrate | Run database schema migrations |
export | Export project context to JSON/Markdown |
diff | Show what changed since last sync |
serve | Start the REST API server (FastAPI + Uvicorn) |
sessions | List and manage agent sessions |
tasks | List and manage project tasks |
decisions | List and manage architectural decisions |
auth | Create and revoke API keys (ck_ prefix, SHA-256 stored) |
Python SDK
from vaultit import VaultItClient
client = VaultItClient()
session = client.create_session(agent="claude", project="myproject")
client.end_session(session.id, summary="Implemented auth module")
client.create_task(project="myproject", title="Add rate limiting")
client.create_decision(project="myproject", title="Use PostgreSQL", rationale="Need JSONB")
handoff = client.create_handoff(from_session=s1.id, to_agent="gpt-4")
MCP Server
10 tools — native Claude Code integration via Model Context Protocol.
Add to claude_desktop_config.json:
{
"mcpServers": {
"vaultit": {
"command": "python",
"args": ["-m", "vaultit.mcp"]
}
}
}
Backends
vaultit init
vaultit init --backend sqlite
vaultit init --backend postgres --db-url postgresql://user:pass@localhost/ck
REST API
14 endpoints + 3 auth endpoints. FastAPI with OpenAPI spec.
vaultit serve --port 8420
Auth header: Authorization: Bearer ck_your_api_key
Multi-Agent Coordination
Three modes for concurrent agent access:
- sequential — one agent at a time (default)
- lock-based — pessimistic locking per resource
- merge — optimistic merge with conflict resolution
Links
License
MIT © TheRealDataBoss