omega-stenographer-mcp
Omega Stenographer MCP is the passive observation layer of the VERITAS & Sovereign Ecosystem (Omega Universe). Where Omega Brain enforces governance and VERITAS gates evaluate artifact integrity, Stenographer observes: it ingests every conversation turn, extracts decisions and blockers from agent reasoning, builds live running notes, and compresses stale context into searchable briefs before it ca
Ask AI about omega-stenographer-mcp
Powered by Claude Β· Grounded in docs
I know everything about omega-stenographer-mcp. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
OMEGA STENOGRAPHER MCP
Passive Session Observer β Turn Ingestion Β· Decision Extraction Β· Context Compression Β· Searchable Briefs
Ecosystem Canon
Omega Stenographer MCP is the passive observation layer of the VERITAS & Sovereign Ecosystem (Omega Universe). Where Omega Brain enforces governance and VERITAS gates evaluate artifact integrity, Stenographer observes: it ingests every conversation turn, extracts decisions and blockers from agent reasoning, builds live running notes, and compresses stale context into searchable briefs before it can be lost to context window eviction. It does not govern β it remembers. In the Omega Universe, Omega Stenographer MCP is the institutional memory: the layer that ensures no decision, no blocker, and no hard-won insight evaporates when the context window scrolls past.
SYSTEM INVARIANT: Stenographer does not interpret. It extracts, indexes, and compresses. Every brief is traceable to its source turns. Every search result cites its provenance. No synthesized narrative substitutes for the original record.
Table of Contents
- Overview
- Features
- Architecture
- Requirements
- Installation
- Quickstart
- Configuration
- Integrations
- Usage Examples
- Tools Reference (5 Tools)
- Resources (2)
- Compression Model
- Troubleshooting
- Security & Sovereignty
- Threat Model
- Roadmap
- Omega Universe
- License
Overview
What It Is
Omega Stenographer MCP is a self-contained Model Context Protocol (MCP) server that runs as a local process alongside any MCP-compatible AI client. It exposes 5 tools and 2 resources covering three observation domains:
- Turn ingestion β every user and assistant message is captured with structured metadata (role, session ID, extracted decisions, extracted blockers)
- Context compression β when unprocessed turns exceed
STENO_TURN_LIMIT, they are compressed into a tiered brief fragment and indexed for later retrieval - Searchable memory β full-text search (FTS5) over all exchanges; semantic similarity search over compressed briefs; live running notes document
One Python file. One pip dependency. Zero external services.
Compatible clients: Claude Desktop, VS Code Copilot, Cursor, Windsurf, AutoGen, LangChain, CrewAI, LlamaIndex, and any MCP-compliant host.
What It Is Not
- Not a governance layer. Stenographer does not approve, block, or steer agent tool calls. It observes and records.
- Not a cloud service. No network egress, no API keys, no telemetry. All data remains on the operator's machine under
~/.omega-stenographer/(orOMEGA_STENOGRAPHER_DIR). - Not a language model. Stenographer does not generate text. It ingests, extracts, indexes, and compresses agent conversation.
- Not a policy authority. Stenographer tags decisions and blockers heuristically; it does not determine correctness or enforce constraints.
Features
Turn Ingestion
- Every turn captured β role, content, session ID, timestamp
- Automatic decision extraction β regex-based patterns detect decision-like statements (decided, chose, settled on, key finding, β)
- Automatic blocker extraction β detects stuck states, errors, crashes, timeouts
- FTS5 full-text indexing β every exchange is immediately searchable by content, decisions, and blockers
Context Compression
- Configurable turn limit β defaults to 8 turns (
STENO_TURN_LIMIT); when exceeded, unprocessed turns are compressed - Tiered briefs β tier-A briefs contain extracted decisions; tier-B briefs preserve raw context excerpts
- Traceable provenance β every brief records its source turn IDs; no synthesized narrative replaces the original record
- Automatic FTS indexing β compressed briefs are immediately searchable
Searchable Memory
- FTS5 keyword search β
stenographer_query_historysearches all exchanges by content, decisions, and blockers - Semantic similarity search β
stenographer_compact_guarduses TF-IDF cosine similarity to rank compressed briefs against a query - Live running notes β
stenographer_get_briefreturns a formatted document with milestones, compressed briefs, and recent exchanges - Milestone marking β
stenographer_mark_milestoneelevates critical exchanges to tier-A priority
Operational Characteristics
- Two transports β stdio (default, MCP standard) and SSE (HTTP streaming for web clients)
- Docker-ready β single
Dockerfile, non-root user, unbuffered I/O - Single dependency β
mcp>=1.0.0 - Fully local β no cloud, no API keys, no external server required
- Venv auto-activation shim β the standalone script re-execs itself with the venv Python if deps are isolated
Architecture
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β MCP CLIENT β
β (Claude Desktop / VS Code Copilot / Cursor / AutoGen / ...) β
βββββββββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββββββββ
β MCP stdio / SSE (JSON-RPC 2.0)
βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β OMEGA STENOGRAPHER MCP SERVER β
β omega_stenographer_mcp_standalone.py β
β β
β ββββββββββββββββββββββββββββ ββββββββββββββββββββββββββββββββ β
β β INGESTION ENGINE β β COMPRESSION ENGINE β β
β β β β β β
β β Turn Capture β β Turn Counting β β
β β (role, content, SID) β β (unprocessed tally) β β
β β β β β β
β β Decision Extraction β β Fragment Generation β β
β β (regex patterns) β β (combined context + β β
β β β β decision summary) β β
β β Blocker Extraction β β β β
β β (problem detection) β β Tier Assignment β β
β β β β (A: decisions, B: context) β β
β β FTS5 Indexing β β β β
β β (content, decisions, β β Source Turn Tracking β β
β β blockers) β β (brief β turns mapping) β β
β ββββββββββββ¬ββββββββββββββββ ββββββββββββββββββ¬ββββββββββββββ β
β β β β
β ββββββββββββ΄ββββββββββββββββββββββββββββββββββββ΄ββββββββββββββ β
β β SEARCH & RETRIEVAL β β
β β β β
β β FTS5 Search (exchanges) TF-IDF Similarity (briefs) β β
β β Running Notes Builder Milestone Manager β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β
βΌ SQLite
βββββββββββββββββββββββββββββ
β ~/.omega-stenographer/ β
β steno.db β
β (exchanges + briefs + β
β FTS5 indexes) β
βββββββββββββββββββββββββββββ
Component Roles
| Layer | Component | Role |
|---|---|---|
| Ingestion | Turn Capture | Records every user/assistant message with structured metadata |
| Ingestion | Decision Extraction | Regex-based detection of decision-like statements in agent reasoning |
| Ingestion | Blocker Extraction | Regex-based detection of stuck states, errors, and problems |
| Ingestion | FTS5 Indexing | Full-text search index across content, decisions, and blockers |
| Compression | Turn Counting | Tracks unprocessed exchanges; triggers compression at STENO_TURN_LIMIT |
| Compression | Fragment Generation | Condenses multiple turns into a single brief with decision summaries |
| Compression | Tier Assignment | Tier-A for decision-bearing context; tier-B for raw context excerpts |
| Compression | Source Tracking | Every brief records its constituent turn IDs for traceability |
| Retrieval | FTS5 Search | Keyword search over all exchanges |
| Retrieval | TF-IDF Similarity | Cosine similarity ranking of compressed briefs |
| Retrieval | Running Notes | Formatted document builder: milestones β briefs β recent exchanges |
ποΈ Protocol Standard: The
omega-stenographer-mcpis the passive observation counterpart to Omega Brain MCP. Where Omega Brain enforces the VERITAS Ξ©-CODE v2.0 governance gates, Stenographer captures the institutional memory those gates operate on β preserving decisions, blockers, and context that would otherwise be lost to context window pressure.
Requirements
| Requirement | Details |
|---|---|
| Python | 3.11 or 3.12 |
| Core dependency | mcp >= 1.0.0 |
| OS | Linux, macOS, Windows (WSL2 recommended on Windows) |
| Disk | ~5 MB for source + SQLite data dir (default ~/.omega-stenographer/) |
No external embedding service required. Stenographer uses built-in TF-IDF n-gram (128-dim) for semantic similarity β no GPU, no model download, always available.
Installation
From PyPI
pip install omega-stenographer-mcp
From Source
git clone https://github.com/VrtxOmega/omega-stenographer-mcp.git
cd omega-stenographer-mcp
pip install mcp
Docker
docker build -t omega-stenographer-mcp .
docker run --rm -i omega-stenographer-mcp # stdio mode (MCP standard)
docker run --rm -p 8056:8056 omega-stenographer-mcp --sse --port 8056 # SSE mode
Run Tests
pip install pytest pytest-asyncio pytest-cov
PYTHONUTF8=1 OMEGA_STENOGRAPHER_DIR=/tmp/steno-test pytest tests/ -v --tb=short
Quickstart
1 β Verify the server starts
python omega_stenographer_mcp_standalone.py --help
2 β Run in stdio mode (default)
The server reads JSON-RPC 2.0 messages from stdin and writes responses to stdout. MCP clients manage this process automatically via the config below.
python omega_stenographer_mcp_standalone.py
3 β Run in SSE mode (HTTP streaming)
python omega_stenographer_mcp_standalone.py --sse --port 8056
# GET http://localhost:8056/sse β event stream
# POST http://localhost:8056/messages β send tool calls
4 β Test a tool call manually (stdio)
echo '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"stenographer_ingest_exchange","arguments":{"role":"user","content":"Hello, world!"}}}' \
| python omega_stenographer_mcp_standalone.py
5 β Configure your MCP client (see Configuration)
Configuration
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"omega-stenographer": {
"command": "python",
"args": ["/absolute/path/to/omega_stenographer_mcp_standalone.py"],
"env": { "PYTHONUTF8": "1" }
}
}
}
VS Code / GitHub Copilot
Add to .vscode/mcp.json in your workspace (or user settings):
{
"servers": {
"omega-stenographer": {
"type": "stdio",
"command": "python",
"args": ["/absolute/path/to/omega_stenographer_mcp_standalone.py"],
"env": { "PYTHONUTF8": "1" }
}
}
}
Cursor
In Cursor Settings β MCP β Add Server:
{
"mcpServers": {
"omega-stenographer": {
"command": "python",
"args": ["/absolute/path/to/omega_stenographer_mcp_standalone.py"],
"env": { "PYTHONUTF8": "1" }
}
}
}
Windsurf / Cascade
In ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"omega-stenographer": {
"command": "python",
"args": ["/absolute/path/to/omega_stenographer_mcp_standalone.py"],
"env": { "PYTHONUTF8": "1" }
}
}
}
SSE / HTTP Client
{
"mcpServers": {
"omega-stenographer": {
"type": "sse",
"url": "http://localhost:8056/sse"
}
}
}
Environment Variables
| Variable | Default | Description |
|---|---|---|
PYTHONUTF8 | 0 | Set to 1 on Windows to avoid encoding errors |
OMEGA_STENOGRAPHER_DIR | ~/.omega-stenographer/ | Override the data directory for the SQLite database |
STENO_TURN_LIMIT | 8 | Number of unprocessed turns before compression triggers |
STENO_TOP_K | 5 | Number of briefs returned by stenographer_compact_guard |
Integrations
Omega Stenographer MCP integrates with any MCP-compatible client using standard JSON-RPC 2.0 over stdio or SSE. For framework-specific integration patterns (LangChain, CrewAI, AutoGen, LlamaIndex) see INTEGRATIONS.md and the examples/ directory.
Recommended Integration Pattern
For production use, keep one persistent server process across all calls.
import subprocess, json
class StenoClient:
def __init__(self, server_path):
self.proc = subprocess.Popen(
["python", server_path],
stdin=subprocess.PIPE, stdout=subprocess.PIPE,
text=True
)
def call(self, tool_name, args):
msg = {
"jsonrpc": "2.0", "id": 1,
"method": "tools/call",
"params": {"name": tool_name, "arguments": args}
}
self.proc.stdin.write(json.dumps(msg) + "\n")
self.proc.stdin.flush()
return json.loads(self.proc.stdout.readline())
client = StenoClient("/path/to/omega_stenographer_mcp_standalone.py")
# Ingest a turn
client.call("stenographer_ingest_exchange", {
"role": "user",
"content": "Fix the authentication bug",
"session_id": "session-001"
})
# Get running notes
notes = client.call("stenographer_get_brief", {})
# Search history
results = client.call("stenographer_query_history", {"query": "authentication"})
client.close()
Quick-Reference Pattern Table
| Goal | Tool | Notes |
|---|---|---|
| Capture a turn | stenographer_ingest_exchange | Call after every user/assistant message |
| View live notes | stenographer_get_brief | Returns milestones + compressed briefs + recent exchanges |
| Context window rescue | stenographer_compact_guard | Returns compressed briefing + top-K relevant briefs |
| Flag critical decision | stenographer_mark_milestone | Elevates to tier-A |
| Keyword search history | stenographer_query_history | FTS5 search across all exchanges |
Usage Examples
All examples use JSON-RPC 2.0. In practice, your MCP client sends these automatically when you invoke a tool. The shell one-liner form is useful for testing.
Ingest a turn
echo '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"stenographer_ingest_exchange","arguments":{"role":"assistant","content":"I found the bug in the auth module β the JWT validation was using the wrong secret key. Fix applied to auth.py line 42.","session_id":"debug-session"}}}' \
| python omega_stenographer_mcp_standalone.py
Response (abbreviated):
{
"result": {
"content": [{
"type": "text",
"text": "Ingested [assistant] #1 (119 chars; decisions: 1; blockers: 0)"
}]
}
}
Get running notes
{
"jsonrpc": "2.0", "id": 2,
"method": "tools/call",
"params": {
"name": "stenographer_get_brief",
"arguments": {}
}
}
Response:
# Running Session Notes
## π Recent Exchanges
### [1] ASSISTANT (π‘ 1 decisions)
I found the bug in the auth module β the JWT validation was using the wrong secret key...
### [2] USER
Deploy to staging and monitor for 24 hours.
Search history by keyword
{
"jsonrpc": "2.0", "id": 3,
"method": "tools/call",
"params": {
"name": "stenographer_query_history",
"arguments": {
"query": "JWT OR auth",
"limit": 5
}
}
}
Compact guard β rescue from context pressure
{
"jsonrpc": "2.0", "id": 4,
"method": "tools/call",
"params": {
"name": "stenographer_compact_guard",
"arguments": {
"query": "authentication deployment"
}
}
}
Response:
# Compaction Guard Briefing
Query: authentication deployment
## π΄ Live (Uncompressed)
- [assistant] I found the bug in the auth module... [Decisions: JWT validation fix applied]
## π¦ Compressed Briefs (Top-K)
- [A] Batch 1-5: Decisions: Switched to setuptools for build; Fixed JWT secret key rotation
Mark a milestone
{
"jsonrpc": "2.0", "id": 5,
"method": "tools/call",
"params": {
"name": "stenographer_mark_milestone",
"arguments": {
"exchange_id": 1,
"label": "Auth bug root cause identified"
}
}
}
Tools Reference (5 Tools)
| Tool | Purpose |
|---|---|
stenographer_ingest_exchange | Capture a conversation turn with role, content, and session ID. Auto-extracts decisions and blockers. |
stenographer_get_brief | Build and return the live running notes document: milestones, compressed briefs, recent exchanges. |
stenographer_compact_guard | Get compressed briefing + top-K relevant briefs. Call when context window pressure hits or before compaction. |
stenographer_mark_milestone | Flag a critical exchange for tier-A priority β survives compression and appears in running notes. |
stenographer_query_history | FTS5 keyword search over all ingested exchanges by content, decisions, and blockers. |
Resources (2)
| URI | Description |
|---|---|
omega-stenographer://session/notes | Live running notes document β formatted markdown |
omega-stenographer://session/guard | Auto-compressed briefing + relevant RAG fragments |
Compression Model
Stenographer's compression is designed to solve a specific problem: context window eviction. When an agent session runs long, early turns scroll out of the context window. Those early turns may contain critical decisions, blocker discoveries, or architectural choices that the agent needs later.
How It Works
-
Turn counting: Every ingested turn increments the unprocessed counter. Stenographer tracks this via
SELECT COUNT(*) FROM exchanges WHERE compressed=0. -
Threshold trigger: When unprocessed turns β₯
STENO_TURN_LIMIT(default: 8),compress_unprocessed()fires automatically. -
Fragment generation: All unprocessed turns are combined. If decisions were extracted, the brief summarizes them. If no decisions, raw context (first 300 chars) is preserved.
-
Tier assignment:
- Tier A β brief contains extracted decisions (highest signal)
- Tier B β brief contains raw context excerpts (medium signal)
-
Source tracking: Every brief records its
source_turnsas a JSON array of exchange IDs. No record is lost β the brief is always traceable back to the original turns. -
Compaction marking: Source turns are marked
compressed=1so they won't appear in running notes (they're summarized in the brief), but they remain in the database for FTS5 search.
Configuration Tuning
| Scenario | STENO_TURN_LIMIT | Rationale |
|---|---|---|
| Short sessions (10-20 turns) | 12 | Less aggressive compression; more detail in running notes |
| Long sessions (50+ turns) | 6 | Aggressive compression; prevent context window overflow |
| Default | 8 | Balanced β compresses before most context windows evict |
File Structure
omega-stenographer-mcp/
βββ omega_stenographer_mcp_standalone.py # MCP server β Ingestion + Compression + Retrieval (~374 lines)
βββ requirements.txt # mcp>=1.0.0
βββ pyproject.toml # Package config
βββ Dockerfile # Non-root, unbuffered, stdio + SSE
βββ INTEGRATIONS.md # LangChain, CrewAI, AutoGen, LlamaIndex guides
βββ SECURITY.md # Vulnerability reporting policy
βββ CHANGELOG.md # Release history
βββ docs/
β βββ integration.md # Detailed integration reference
βββ examples/
β βββ langchain_quickstart.py
β βββ crewai_quickstart.py
β βββ autogen_quickstart.py
β βββ llamaindex_quickstart.py
βββ tests/
βββ test_ingest.py # Turn ingestion + decision/blocker extraction tests
βββ test_compression.py # Compression threshold + tier assignment tests
βββ test_search.py # FTS5 search + TF-IDF similarity tests
βββ test_brief.py # Running notes + milestone tests
Troubleshooting
Server does not start / ModuleNotFoundError: mcp
pip install mcp
UnicodeDecodeError on Windows
Set the environment variable before running:
set PYTHONUTF8=1
python omega_stenographer_mcp_standalone.py
Or add "env": { "PYTHONUTF8": "1" } to your MCP client config.
Client shows "Server disconnected" immediately
- Confirm the path in your client config is absolute (e.g.,
C:\Users\you\omega-stenographer-mcp\omega_stenographer_mcp_standalone.py), not relative. - Run the server manually in a terminal to see startup errors:
python /path/to/omega_stenographer_mcp_standalone.py - Check Python version:
python --versionmust be 3.11+.
Compression not firing
- Check unprocessed count: the database should show
SELECT COUNT(*) FROM exchanges WHERE compressed=0β₯STENO_TURN_LIMIT. - Verify
STENO_TURN_LIMITis set (default: 8). - Check stderr for traceback β the
compress_unprocessedfunction logs errors to the server's stderr.
Briefs return empty or truncated
- Verify the
briefstable exists:sqlite3 ~/.omega-stenographer/steno.db ".tables" - Check that source turns had decisions extracted (non-empty
decisionsfield). - Tier-B briefs preserve raw context; if content is short, the brief will be short.
Database corruption
Delete the data directory and restart to rebuild from scratch (all persisted memory will be lost):
rm -rf ~/.omega-stenographer/
python omega_stenographer_mcp_standalone.py
To use a separate data directory per project:
OMEGA_STENOGRAPHER_DIR=/path/to/project-steno python omega_stenographer_mcp_standalone.py
SSE mode: Connection refused on port 8056
Ensure the server is running with --sse --port 8056 and that the port is not blocked by a firewall. Check with:
curl -N http://localhost:8056/sse
Security & Sovereignty
- All data is local. The SQLite database is stored in
~/.omega-stenographer/(orOMEGA_STENOGRAPHER_DIR). No data is transmitted to any external service. - No API keys required. The server requires only a local Python installation and the
mcppackage. - Passive observation only. Stenographer does not approve, block, or steer agent actions. It cannot modify agent behavior.
- Non-root Docker. The provided
Dockerfileruns as a non-rootstenouser. - Sensitive data handling. Do not ingest secrets, credentials, or PII into Stenographer. The database is unencrypted SQLite on disk; protect it with OS-level file permissions.
- Venv isolation. The standalone script includes a venv auto-activation shim β if dependencies are in a
.venvdirectory, the script re-execs itself with the venv Python, ensuring no system Python pollution.
For vulnerability reporting, see SECURITY.md.
Threat Model
In Scope
| Threat | Mitigation |
|---|---|
| Loss of critical agent decisions to context window eviction | Automatic compression at STENO_TURN_LIMIT; tier-A briefs preserve decisions |
| Inability to search past conversation | FTS5 full-text index on all exchanges; persistent across restarts |
| Compressed briefs losing provenance | Every brief records source turn IDs; traceable back to original records |
| Compression producing synthesized narrative | Briefs preserve verbatim context excerpts; no LLM-generated summary |
| Server crash on malformed input | Input validation on role enum + required fields; compress_unprocessed is exception-safe |
Out of Scope
The following threats are not addressed by Omega Stenographer MCP:
- Compromised host or operating system β if the process environment is controlled by an adversary, no application-layer protection is sufficient
- Unauthorized database access β the database is unencrypted SQLite; OS-level access controls are the operator's responsibility
- Malicious administrator β an operator with filesystem access can modify or delete the data directory directly
- Supply-chain compromise of
mcpor Python itself β dependency integrity verification is the operator's responsibility - Network-level attacks β SSE mode exposes an HTTP endpoint; TLS termination and network access control are the operator's responsibility
- Decision extraction accuracy β regex-based extraction is heuristic; false negatives and false positives are expected
Trust Boundaries
[ MCP Client / AI Agent ]
β
β Trust: MCP client provides truthful turn content.
β Stenographer does not verify accuracy.
βΌ
[ Omega Stenographer MCP Server ] β Observation boundary
β
β Trust: Local filesystem is operator-controlled.
β No external services are contacted.
βΌ
[ ~/.omega-stenographer/steno.db ]
Stenographer operates at the observation boundary β it records what it sees. It does not enforce policy, verify claims, or approve actions. If a turn contains false information, Stenographer will faithfully record, index, and compress that false information.
Roadmap
| Milestone | Status | Description |
|---|---|---|
| v1.0 β Core observation stack | Released | Turn ingestion, decision/blocker extraction, FTS5 search, compression, milestones |
| v1.1 β Enhanced extraction | Planned | LLM-assisted decision extraction for higher recall; configurable extraction patterns |
| v1.2 β Embedding upgrades | Planned | Optional fastembed ONNX or sentence-transformers for higher-quality similarity search |
| v1.3 β Multi-session merge | Planned | Cross-session brief merging for long-running projects across multiple sessions |
| v2.0 β Omega Brain bridge | Planned | Native Stenographer β Omega Brain ingestion bridge; briefs auto-ingested as RAG fragments |
Community contributions are welcome. See CONTRIBUTING.md for invariants that must not be broken.
Omega Universe
Omega Stenographer MCP is the passive observation layer of the VERITAS & Sovereign Ecosystem. The following repositories form the broader Omega Universe:
| Repository | Role |
|---|---|
| VrtxOmega/omega-stenographer-mcp | This repo β Passive session observer: turn ingestion, decision extraction, context compression |
| VrtxOmega/omega-brain-mcp | Governance control plane: Cortex gate, VERITAS pipeline, S.E.A.L. ledger |
| VrtxOmega/sswp-mcp | Deterministic build attestation protocol |
| VrtxOmega/veritas-vault | Retention substrate β deterministic storage under VERITAS constraints |
| VrtxOmega/Aegis | Policy enforcement engine β sovereign access control layer |
| VrtxOmega/SovereignMedia | Sovereign desktop media application |
| VrtxOmega/Ollama-Omega | Local LLM bridge β Ollama integration with Omega governance layer |
π Read the master narrative: Why Sovereign AI?
π VERITAS Omega Ecosystem
This project is part of the VERITAS Omega Universe β a sovereign AI infrastructure stack.
- VERITAS-Omega-CODE β Deterministic verification spec (10-gate pipeline)
- Gravity-Omega β Desktop AI operator platform
- Omega-Brain-MCP β Governance-first MCP server
- Ollama-Omega β Ollama MCP bridge for any IDE
- OmegaWallet β Desktop Ethereum wallet (renderer-cannot-sign)
- veritas-vault β Local-first AI knowledge engine
- sovereign-arcade β 8-game arcade with VERITAS design system
- SSWP β Deterministic build attestation protocol
License
MIT β see LICENSE for full text.
Report Issue Β· Changelog Β· Integrations Β· Security Policy Β· Glama MCP Registry
