This guide describes how to integrate ContextOS into your daily development workflow, visualize your workspace health via the Aether Dashboard, and connect it with your favorite AI agents.
The fastest way to get started and create your own AI-powered ContextOS workspace is using NPX.
# 1. Create a workspace folder
mkdir my-ai-context && cd my-ai-context
# 2. Initialize the entire ContextOS structure
npx @context-os/cli init
# 3. Create your first project
npx @context-os/cli init my-first-projectThe easiest way to get started is by installing the CLI globally:
npm install -g @context-os/cliOnce installed, you can use the context-os command anywhere in your terminal.
Navigate to your project root and run:
context-os init .Launch the Aether HUD. The Aether Dashboard is a high-fidelity visual control center that provides a 3D view of your workspace's structural health.
context-os dashboard --port 3000- 3D Knowledge Graph: A force-directed visualization of your files and their relationships.
- Node Inspector: Click on any file in the 3D graph to see its mission status, tags, and recent excerpts.
- Health Ticker: Real-time stream of workspace events and validation warnings.
The Sentinel (context-os watch) is a background service that monitors your filesystem and automatically re-indexes your workspace when files change.
context-os watch- Zero-Latency Intelligence: AI agents will always read the most up-to-date ADRs and context.
- Automatic Validation: Sentinel will alert you (and your dashboard) if a file edit violates a schema in real-time.
When starting work, tell the system your goals.
context-os today my-project "Implementing the Aether HUD"As you work, record major architectural decisions immediately:
context-os decide my-project "Use 3d-force-graph" "Best spatial rendering" "Accepted"Before finishing, run the sync command to compress "Hot" logs into long-term memory.
context-os sync my-projectContextOS works with any agent that supports the Model Context Protocol (MCP).
- Open Cursor Settings > General > MCP.
- Click + Add New MCP Server.
- Name:
ContextOS - Type:
command - Command:
npx -y @context-os/mcp@latest
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"context-os": {
"command": "npx",
"args": ["-y", "@context-os/mcp@latest"]
}
}
}Important
Read-Only Buckets: AI agents can READ from knowledge/ and schemas/, but they are strictly forbidden from WRITING to them.
Warning
Path Isolation: The MCP server automatically blocks any attempt to traverse outside the workspace root.
Q: How do I backup my context? A: ContextOS uses standard Git. Simply push your root repository to a private remote.