Horizon Fidelity Monitor
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Horizon Fidelity Monitoranalyze the last 5 turns for semantic drift"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Horizon Fidelity Monitor
"Quality is not a model property — it is a conversation property."
Horizon is a real-time conversation health monitor for AI agents. It tracks the structural dynamics of multi-turn conversations — semantic drift, information gain, ontological gap width, temporal desynchronisation, circadian cognitive load, conversation velocity, and causal reachability — dimensions that LLMs do not reliably surface from inside the conversation.
Horizon ships two measurement planes. The conversation plane (above, always present) measures the health of a dialogue turn by turn. The optional mission plane — Memento Mori — measures elapsed calendar time against goals: ages, deadlines, stalls, per-entity latency, and share of a finite horizon. It is inert until you configure a store. See Mission plane.
Horizon is not a manipulation, sycophancy, or human-influence detector — it measures conversation dynamics, not whether an agent is steering or flattering the user. See LEGAL.md §1.
Why an external monitor? LLMs have limited and unreliable self-knowledge: introspection research shows partial self-access that is brittle and degrades on complex or out-of-distribution tasks (Binder et al. 2024; arXiv:2512.12411). So rather than depend on a model reporting its own conversation dynamics, Horizon measures them externally with cheap, deterministic, always-on arithmetic that does not call the model at all.
Why this exists
Multi-turn AI agents lose accuracy. The ICLR 2026 Outstanding Paper "LLMs Get Lost In Multi-Turn Conversation" (Laban, Hayashi, Zhou & Neville — Microsoft Research / Salesforce Research) reports 39% average accuracy degradation across multi-turn evaluation — a structural property that standard observability tools (LangSmith, RAGAS, DeepEval) cannot see because they measure responses, not conversations.
Horizon was built to close that gap. It is observability first: it surfaces conversation dynamics that response-level tools miss, using cheap deterministic arithmetic with zero model calls. In four controlled A/B scenarios where Horizon events drove a re-grounding intervention we measured a +15.7% composite quality lift and 87% fewer hallucination events — but those are synthetic, scripted scenarios with a hand-tuned controller, not a production result. Treat them as promising in-house evidence, not a guaranteed outcome (see Validation and LEGAL.md §5). Every signal — information gain, divergence, estimated ontological gap width, causal reachability — is a standard information-theory or arithmetic measure computed on text embeddings and timestamps; see 4D Spacetime Signals for the full definitions.
Read the demand proof → ICLR 2026 Outstanding Paper (Laban et al.)
Read the category argument →
docs/content/naming-the-category-conversation-dynamics-monitoring.mdRead the engineering case →
docs/content/why-every-production-agent-needs-conversation-dynamics-monitoring.md
Related MCP server: nautilus-compass
Getting started
Three paths — pick the one that fits your workflow:
Path 1 — Hosted MCP (fastest, zero install)
The fastest way to add Horizon to any Cursor, VS Code, or Claude Desktop workspace. No Python required.
Request an alpha key → open a Discussion, then add the config for your client:
Cursor (~/.cursor/mcp.json):
{
"mcpServers": {
"horizon": {
"url": "https://horizon.leocelis.com/sse",
"headers": { "Authorization": "Bearer YOUR_KEY_HERE" }
}
}
}VS Code / GitHub Copilot (.vscode/mcp.json in your workspace):
{
"servers": {
"horizon": {
"type": "http",
"url": "https://horizon.leocelis.com/sse",
"headers": { "Authorization": "Bearer YOUR_KEY_HERE" }
}
}
}VS Code note: Use
"servers"(not"mcpServers") and"type": "http"— VS Code tries Streamable HTTP first and falls back to SSE automatically, so"type": "http"works with the/sseURL.
Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"horizon": {
"url": "https://horizon.leocelis.com/sse",
"headers": { "Authorization": "Bearer YOUR_KEY_HERE" }
}
}
}That's it. Reload your MCP client and three tools appear: new_conversation, process_turn, configure_session.
Alpha access: Horizon's hosted endpoint is in private alpha. Keys are distributed to agent developers who want to monitor real projects. Open a Discussion to request one — describe your use case and we'll send a key.
Path 2 — pip install (library integration)
Not yet published to PyPI — until it is, use Path 3 (install from source) below.
pip install horizon-monitorVerify your install (exercises the full pipeline on 5 canonical scenarios, ~25s):
horizon-validatePath 3 — MCP server from source
pip install 'horizon-monitor[mcp]'
horizon serve # stdio — for Cursor, Claude Desktop
horizon serve --transport sse --port 3847 # SSE — for web/team deploymentsAdd to ~/.cursor/mcp.json:
{
"mcpServers": {
"horizon": { "command": "horizon", "args": ["serve"] }
}
}Full Cursor and Claude Desktop setup guides: docs/integrations/
What it monitors
Standard observability tools evaluate individual response quality. Horizon evaluates conversation quality — a structurally different problem:
Tool | What it sees | What it misses |
LangSmith, Braintrust | Latency, cost, per-response quality | Deterministic, every-turn structural signals |
RAGAS, DeepEval | Faithfulness, relevance per turn (DeepEval also has sampled multi-turn LLM-judge metrics) | Zero-LLM-call, real-time scoring on every turn |
Langfuse, Arize Phoenix | Session-level LLM-judge evaluation | Deterministic, always-on scoring at sub-50ms |
Human raters | Subjective quality | Systematic structural decay |
Horizon | Conversation dynamics | Intentionally nothing |
Horizon does not replace per-response or LLM-judge quality tools. The differentiator is how it measures: deterministic, zero-LLM-call arithmetic on every single turn — effectively free and always-on — versus the alternative of sampled LLM-judge evaluations, which cost per sample and typically run offline or async rather than in real time.
Quickstart
from horizon_monitor import FidelityMonitor
from datetime import datetime, timezone
monitor = FidelityMonitor()
session_id = monitor.new_conversation(metadata={"domain": "technical"})
result = monitor.process_turn(
session_id,
human_message="How does Python handle memory management?",
agent_response="Python uses reference counting and a cyclic garbage collector...",
timestamp=datetime.now(timezone.utc).isoformat(),
)
print(f"Fidelity: {result.fidelity_score:.2f}")
print(f"Health: {result.health_status}")
print(f"Circadian factor: {result.circadian_factor:.2f}")
print(f"Causal horizon: {result.reachable_turns} reachable turns")
for event in result.events:
print(f" Event: {event.type} (confidence={event.confidence:.2f})")Framework integrations
OpenAI SDK
from openai import OpenAI
from horizon_monitor import FidelityMonitor
monitor = FidelityMonitor()
session_id = monitor.new_conversation()
client = monitor.wrap(OpenAI(), session_id)
response = client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Tell me about quantum computing."}]
)
traj = monitor.get_trajectory(session_id)
print(f"Fidelity: {traj.current_fidelity:.2f} T*: {traj.estimated_t_star}")monitor.wrap() accepts custom timestamp and context providers for testing and replay.
Anthropic SDK
from anthropic import Anthropic
from horizon_monitor import FidelityMonitor
monitor = FidelityMonitor()
session_id = monitor.new_conversation()
client = monitor.wrap(Anthropic(), session_id)
response = client.messages.create(
model="claude-3-5-sonnet-20241022",
max_tokens=1024,
messages=[{"role": "user", "content": "Explain RLHF."}]
)LangChain
from langchain_openai import ChatOpenAI
from horizon_monitor import FidelityMonitor
from horizon_monitor.integrations.langchain import HorizonCallback
monitor = FidelityMonitor()
session_id = monitor.new_conversation()
callback = HorizonCallback(monitor, session_id)
llm = ChatOpenAI(callbacks=[callback])
llm.invoke("Explain the CAP theorem.")
print(f"Fidelity: {callback.last_result.fidelity_score:.2f}")OpenAI Agents SDK
from agents import Agent, Runner
from horizon_monitor import FidelityMonitor
monitor = FidelityMonitor()
session_id = monitor.new_conversation()
agent = Agent(name="assistant", model="gpt-4o-mini", instructions="You are helpful.")
for user_message in conversation:
result = Runner.run_sync(agent, user_message)
monitor.process_turn(session_id, human_message=user_message,
agent_response=result.final_output, timestamp=datetime.now(timezone.utc).isoformat())4D Spacetime Signals
"Spacetime" here is a metaphor, not physics. The relativity vocabulary (Minkowski interval, light cone, proper time) is design inspiration — it shaped which quantities we compute. Every signal below reduces to a standard information-theory or arithmetic measure on text embeddings and timestamps, listed in the Plain definition column. Nothing in Horizon's behavior or validation depends on the analogy being literally true, and the Lorentzian
interval_classis emitted as descriptive metadata only — no event or score depends on it.
Every process_turn() returns a TurnResult with 32 fields across five signal families:
Core (always present)
Signal | Description |
| Composite conversation health [0, 1] |
| Information Gain per Turn — semantic novelty |
| Jensen-Shannon proxy for intent/response gap |
| Token Waste Ratio — semantic redundancy |
| Bipredictability — structural coherence |
| Estimated ontological gap width [0, 1] |
|
|
|
|
Temporal (requires timestamp)
Signal | Description |
| Wall-clock gap since last turn |
| Human memory retention (Ebbinghaus half-life model) |
| Human cognitive capacity at this hour [0.3, 1.0] |
| Penalty for temporal desync |
|
|
| Resolved deictic expressions ("yesterday", "last week") |
Pace (requires timestamp + turn ≥ 2)
Signal | Description |
| Semantic displacement / proper time |
| Velocity delta (requires turn ≥ 3) |
Spacetime (requires timestamp + turn ≥ 2) — descriptive metadata only
Signal | Description (metaphor) | Plain definition (what it computes) |
| ds² with Minkowski-like signature (−,+,+,+) | A 4-term weighted distance: |
|
| The sign bucket of |
Causal (requires timestamp)
Signal | Description (metaphor) | Plain definition (what it computes) |
| Turns still inside the causal light cone | Count of prior turns where |
| Fraction of history still causally reachable |
|
Spatial (requires client_context)
Signal | Description |
|
|
| Attention budget, screen capacity, max response length |
| Context switch magnitude |
16 Event Types (conversation plane)
All events default to observe mode (emitted, not acted on). Enable active mode via configure() once your event achieves ≥ 0.7 precision/recall on your domain.
Event | Fires when |
| D_JS above clarification threshold |
| Consistency drops below threshold |
| Fidelity declining for |
| Bipredictability below consistency threshold |
| Token Waste Ratio above verbosity threshold |
| IGT trend consistently low — natural endpoint approaching |
| T* (estimated optimal length) reached |
| IGT trend strongly positive — conversation expanding |
| Large temporal gap with low retention |
| Gap + retention drop below desync threshold |
| Reachable fraction drops below broken-reference threshold |
| Spatial constraint shifts significantly |
| Conversation acceleration above pace threshold |
| Reachable fraction below light-cone threshold |
| Heuristic grounding-need score crosses threshold — agent should hedge or cite grounding evidence |
| User replied faster than a previously flagged deferred action could plausibly complete, with no completion signal |
Mission plane (Memento Mori)
"Progress is not a turn property — it is a calendar property."
The conversation plane answers is this dialogue degrading? The mission plane answers a different question: is this goal still moving, and against what clock? A month of individually healthy conversations that advance nothing is, to a conversation monitor, a month of perfect health.
The name is the design. Every store has exactly one root horizon — a finite end date you choose. Everything else hangs off it, so every day an item spends is a share of a budget that is visibly running out. Without a finite root, deferring work costs nothing and "later" is free forever. That is the failure this plane exists to make visible.
It is off by default. With no store configured, its six tools do not register and nothing in your integration changes.
The problem it catches
A task was given until 20 July. It is now 18 August and nobody has touched the mission since 2 July. A decision was parked "until things calm down" with a revisit date of 10 August that has quietly passed. The work has been sitting with one party for three weeks. None of that is visible in any conversation, in any tracker's status column, or in a model's context window — and each turn of each conversation about it looks healthy.
The mission plane reports it as: mission 78 days old, 47 days since progress, task
lifespan expired, park 8 days overdue, currently blocked on operator for 21 days and
counting.
Vocabulary
Everything is an item in a tree under the root horizon. There are eight kinds:
Kind | What it is |
| the finite root — exactly one per store, and the denominator for every share |
| a goal with a clock; the thing that can stall |
| a unit of work with a TTL — an agreed window whose expiry means investigate, never you estimated badly |
| an external date (regulatory, contractual, market), ideally linked to the internal work it gates |
| a checkpoint with an age budget |
| something the work passes through and waits on — a queue, a vendor, a system, you |
| a park. Requires a revisit date; the store refuses one without it |
| a small, dated trial of an alternative way of working, so routes are compared by measurement rather than opinion |
Two more terms appear in the outputs: a sojourn is one recorded stay in a stage (enter → exit), and the incumbent is the way you are working today, as opposed to a probe of some alternative.
Quickstart
export HORIZON_MEMENTO_STORE_PATH=~/.horizon/missions.db # the default: one local fileA file-backed store is the right default, but it is the wrong choice on any host whose filesystem resets between deploys — the plane would look correct and silently forget everything, which is worse than not running at all. For those, point it at MySQL 8:
pip install "horizon-monitor[mysql]"
export HORIZON_MEMENTO_STORE_DSN='mysql://user:pass@host:3306/horizon' # wins over _PATH
export HORIZON_MYSQL_SSL_CA=/path/to/server-ca.pem # or ..._CA_B64 for a PEM in an env varTLS verification is mandatory — the backend refuses to connect without a CA. Each API key
maps to an assigned tenant id (scripts/provision_tenant.py), so rotating a key keeps
that tenant's history; unknown or revoked keys get no mission access at all.
A clock is only as good as what reaches it, and a record that depends on remembering to write is worth nothing on the day you forget. So the plane can derive events from append-only sources you already produce:
python scripts/ingest_artifacts.py --store ~/.horizon/missions.db \
--repo /path/to/repo --item-id <mission-id>Each commit becomes an ARTIFACT event carrying the source's own provenance, and
the event's valid_time is the commit's timestamp — not the moment you ingested
it. Safe to run from cron: it dedupes on the source's native id and asks only for
what is new.
Two things it will not do. It will not guess which mission an artifact belongs to
— --item-id is required, and the adapter interface has no parameter capable of
attaching one. And it will not judge what counts as progress. Those are yours.
Not sure what to register in the first place? Ask what your history suggests:
python scripts/ingest_artifacts.py --store ~/.horizon/missions.db \
--repo /path/to/repo --proposeIt reports the shape — how many artifacts, over what span, starting when — and
proposes a created_valid equal to the earliest one. It proposes no title,
because what the work is cannot be read off a commit log. Nothing is written;
registering the mission is your call.
GitLocalAdapter is the reference implementation; trackers and mail metadata fit
the same ArtifactAdapter interface.
from datetime import date, datetime, timezone
from horizon_monitor.memento import (
EventKind, ItemKind, MementoConfig, MementoStore, evaluate,
)
store = MementoStore("missions.db") # a real file; set this up once
root = store.register_item(
kind=ItemKind.HORIZON, title="engagement horizon",
created_valid=datetime(2026, 1, 1, tzinfo=timezone.utc),
end_date=date(2030, 1, 1),
)
mission = store.register_item(
kind=ItemKind.MISSION, title="ship-the-thing", parent_id=root,
stall_days=14, # silence longer than this is a stall
created_valid=datetime(2026, 6, 1, tzinfo=timezone.utc),
)
store.record_event( # progress: a side-effect of the work
item_id=mission, kind=EventKind.PROGRESS,
valid_time=datetime(2026, 7, 2, tzinfo=timezone.utc),
)
# The evaluation instant is always a parameter — the engine never reads a clock,
# so the same store at the same instant always yields the same report.
report = evaluate(
store.snapshot(), datetime(2026, 8, 18, 12, tzinfo=timezone.utc), MementoConfig()
)
row = next(r for r in report.items if r.item_id == mission)
print(f"age: {row.age_days} days") # 78 days
print(f"since progress: {row.days_since_progress} days") # 47 days
print(f"recording path: {row.recording_path}") # no recent work
print(f"horizon share: {row.horizon_share:.4f}") # 0.0595The store is a real database, so run the setup once — registering a second root raises
DuplicateRootError by design, which is the one-finite-root guarantee working, not a
bug. For the full picture — an expired task, an overdue park, the blocking entity, a
refused write and a fired signal — run
examples/memento_mori_mission_clock.py (no
arguments, no network, no API key; it uses a fresh temporary store each time).
What it measures
Output | Meaning |
Age, days-remaining, TTL state | how old work is, how long is left, whether a task outlived its window |
Days-since-progress + recording-path check | a stall — and whether it is no work or no records, never conflated |
Slowest entity / blocking entity | the longest recorded wait, and separately what the work waits on right now |
Horizon share | what fraction of the remaining root horizon this item has consumed |
Cost-of-delay, break-even date | only when you declare an hourly rate and amounts |
Path comparison | a probe's recorded sojourn beside the incumbent's accrued delay |
12 signal types (mission plane)
Separate from the conversation plane's 16 event types, not an extension of them. Each fires once on an edge — when its predicate becomes true — never again while the condition persists, and at most one new signal per turn, so a bad week cannot flood you. Tiers order that cap: P1 is time-critical, P2 structural, P3 informational.
Signal | Fires when | Tier |
| an external deadline enters its warning window | P1 |
| a task outlives its ratified lifespan — investigate the blocker | P1 |
| a deferral passes its revisit date | P2 |
| a gate exceeds its age budget with no progress | P2 |
| no progress events for the mission's threshold (paired with the recording-path check) | P2 |
| the identity of a mission's slowest recorded entity changes | P2 |
| a deadline exists with no linked internal state | P2 |
| an item's elapsed time crosses a threshold share of the remaining root horizon | P3 |
| accrued cost-of-delay crosses an operator threshold (rate + amount + threshold all declared) | P3 |
| a probe sojourn completes — enough to compare numbers, never a powered test | P3 |
| a probe's recorded sojourn is shorter than the incumbent's accrued delay (descriptive only) | P3 |
| a ratified break-even date passes without the measured improvement | P3 |
These ride the existing process_turn contract for sessions bound with
associate_mission. Every event carries plane: "mission", and the contract is
deliberately loud — mission signals are surfaced to the operator with their numbers,
unlike conversation signals, which apply silently. See
agent rules for the block to paste into your
host.
What it refuses
Accounting, never estimation. The engine never invents a duration, date, or amount:
no forecasts, no completion predictions, no counterfactual "what the other path would have cost"
no NPV/IRR/DCF, no discount rates, no currency conversion — money only ever multiplies measured time
no p-values, confidence intervals, or sequential tests on path latencies: at single-operator sample sizes no dominance claim survives audit, so comparison is descriptive only
no people analytics — entity latency is reported on functional slots; a person's wait is measured but never becomes a score, a ranking, or a resolvable identifier
missing inputs degrade by omission with an explanatory field, never by substitution
Every row carries a derivation string spelling out the arithmetic it came from, and
any summary statistic additionally carries the n it summarised. Identical store plus
identical evaluation instant produces a byte-identical report.
Docs: product requirements · technical spec · agent rules · acceptance test plan
Configure
# Per-session override
monitor.configure(
session_id=session_id,
clarification_threshold=0.25, # tighter D_JS gate
event_modes={"alert.drift": "active"}, # activate one event
)
# Compound weight override
monitor.configure(
fidelity_weights={"alpha": 0.35, "lambda_r": 0.12, "lambda_i": 0.28, "beta": 0.25},
temporal_weights={"gamma": 0.08, "delta": 0.04},
spacetime_coefficients={"alpha": 1.0, "beta": 1.0, "gamma": 0.8, "delta_st": 0.5},
)Export
# JSON
result = monitor.export_to(session_id, target="json")
# LangSmith / Langfuse / OpenTelemetry / Arize
result = monitor.export_to(session_id, target="langsmith",
connection={"api_key": "ls__..."})Not yet published to PyPI — see Path 3 for a source install in the meantime.
pip install horizon-monitor[langsmith] # or langfuse, otel, arizeArchitecture
Input: plain strings (human_message, agent_response, optional timestamp, optional client_context)
Core pipeline (< 50ms on CPU):
1. Embed both turns (local sentence-transformers, lazy-loaded)
2–6. IGT · D_JS · TWR · Bipredictability · Epsilon
7. Temporal signals — gap, retention, circadian, deictic
8. Fidelity dynamics — composite score
9. Health classification
10. Pace signals — velocity, acceleration
11. Spacetime interval — ds² and interval class
12. Causal reachability — light-cone membership
13. Spatial signals — device, location, frame shift
14. Mode detection — auto-classify conversation type
15. Event evaluation — 16 threshold checks
16. Optional: SQLite persistence
Output: TurnResult dataclass (32 fields)Design constraints (test-enforced):
Zero LLM calls — pure arithmetic and local embeddings
Zero external network calls by default — fully local
Zero transitive framework dependencies in core
< 50ms core pipeline on CPU — soft target (CI flags regressions past 50ms and hard-fails at 150ms)
< 100MB memory for 100-turn conversations — hard-enforced at the claimed value
All events observe-by-default — never interferes unless explicitly configured
Validation
What is proven, and what is not. Horizon's signals are correlational, in-domain measurements that track human quality ratings well. They are observability, not a proven outcome guarantee. Here is the honest status of each claim:
Claim | Status | Where |
Fidelity correlates with human ratings (in-domain) | ✅ measured (ρ ≈ 0.6–0.7) | gates below |
Signal beats naive heuristics | ✅ measured | V3 |
Holds on a third-party corpus (out-of-domain) | ❌ tested — ρ = 0.039 on MT-Bench expert judgments (n=80; below 0.3 floor); needs direct quality labels | |
Events predict degradation (leading, not lagging) | ⚠️ tested on MT-Bench — insufficient-data (2-turn chats; events rarely fire); tool works | |
Acting on events improves outcomes (+15.7%) | ⚠️ synthetic A/B only; needs an independent corpus |
The four gates below pass on a labelled 5,602-record corpus (not bundled — see the
evidence pack; scripts/build_validation_corpus.py
regenerates a synthetic corpus that exercises the gate logic, not these exact numbers):
Gate | Constraint | v0.2.0 |
V1 — proxy correlation | per-conv ρ ≥ 0.6, per-turn ρ ≥ 0.5 | 0.685 / 0.659 |
V2 — per-event P/R | every event P ≥ 0.7 AND R ≥ 0.7 | all 16 events ≥ 0.70 / 0.70 |
V3 — beats heuristics | rho lift > 25%, structural P ≥ 0.6 | +202.4% lift, P=R=1.00 |
V5 — cross-domain | per-turn ρ ≥ 0.4 AND per-conv ρ ≥ 0.48 | min 0.517 / 0.718 |
Cross-embedding stability: ρ_conv spread 0.026, ρ_turn spread 0.018 across three sentence-transformer backends (22M / 33M / 110M params). The fidelity signal lives in conversational structure, not in the embedding manifold. (Note: cross-embedding stability on the same corpus is distinct from cross-corpus OOD — first third-party run on MT-Bench pairwise labels gave ρ = 0.039; see evidence pack §Fix 4.)
Remediation gaps source: DESIGN_FIXES_redteam_remediation.md
Full evidence pack: docs/reviews/V0_2_0_EVIDENCE.md
Deployment
Self-hosted Docker (MCP server on port 3847)
cd deploy/docker
docker compose upHorizon serves the MCP API via SSE. Point .cursor/mcp.json to http://localhost:3847/sse. The Dockerfile pre-caches the all-MiniLM-L6-v2 weights at build time — zero cold start.
Hosted (DigitalOcean App Platform)
The official hosted endpoint is live at https://horizon.leocelis.com. It runs on DigitalOcean App Platform (single instance, in-process session state — sessions do not survive a restart) and requires a Bearer token, rate-limited and isolated per key. See Path 1 above.
Development
git clone https://github.com/leocelis/horizon.git
cd horizon
python -m venv .venv && source .venv/bin/activate
pip install -r requirements-dev.txt
pytest tests/ -v # full suite
pytest tests/unit tests/integration tests/e2e -v # fast path (~6 min)
ruff check src/ tests/
black --check src/ tests/
./scripts/compliance/check.sh # EU AI Act offline gateComplyEdge TrustLint — EU AI Act
Horizon integrates ComplyEdge TrustLint on LLM-facing artifacts — same offline + runtime + trust pattern as IVD.
Layer | What |
Offline (required) |
|
Runtime (BYOK) |
|
CI gate |
|
Agent rule |
|
Integration guide: docs/integrations/COMPLYEDGE.md. CE adoption guide: oss-trustlint-adoption-guide.md.
Repository layout
horizon/
├── src/horizon/ # package source (PEP 517/518 src/ layout)
│ ├── engines/ # IGT, D_JS, TWR, coherence, fidelity, epsilon, mode
│ ├── spacetime/ # temporal, circadian, deictic, velocity, interval, light cone, spatial
│ ├── events/ # 16-event evaluator
│ ├── integrations/ # OpenAI, Anthropic, LangChain, export targets
│ ├── mcp/ # MCP server + CLI
│ └── storage/ # optional SQLite persistence
├── tests/ # unit / integration / e2e / perf / validation
├── examples/ # runnable framework demos
├── deploy/ # Procfile, build.sh, runtime.txt, docker/
├── docs/
│ ├── product/ # public product overview
│ ├── content/ # published pieces on conversation dynamics monitoring
│ ├── integrations/ # Cursor / Claude Desktop / Copilot setup guides
│ ├── cursor-rules/ # horizon-monitor.mdc (canonical Cursor agent rule)
│ ├── spec/ # HORIZON_TECH_SPEC.md + intent.yaml
│ └── reviews/ # E2E reviews, validation evidence
└── pyproject.tomlBackground
Horizon's design was inspired by the Trans-Horizon Communication Protocol (THCP), a speculative framework that maps human–AI communication onto general-relativity metaphors. The five THCP "conjectures" are design intuitions, not proven laws — each is useful only because it pointed at a concrete, computable signal:
THCP conjecture (metaphor) | Computable signal it inspired |
THCP-1 — irreducible ontological loss ε > 0 |
|
THCP-2 — an optimal length T* exists beyond which fidelity decays | IGT-trend convergence detection ( |
THCP-3 — communication requires encode/decode adjunction |
|
THCP-4 — global coherence requires "sheaf gluing" across turns | cross-turn contradiction / claim-consistency checks |
THCP-5 — optimal trajectories lie near the "light cone" |
|
THCP is design motivation only — see docs/product/THCP_FIDELITY_MONITOR_PRD.md for the full conjecture-to-signal mapping.
Community
Request alpha access: Open a Discussion →
Ask a question: GitHub Discussions
Bug reports: GitHub Issues
Contributing: CONTRIBUTING.md
License
MIT — see LICENSE.
Legal
Document | Purpose |
Full legal notices: what Horizon is/is not, high-stakes domain warnings, performance claim scope, EU AI Act classification, grounding hook privacy, limitation of liability | |
Binding terms governing hosted server access and commercial use | |
GDPR Art. 13 compliant privacy notice — what data is collected and your rights | |
GDPR Art. 28 DPA template for EU enterprise users (request via email) | |
Responsible disclosure policy; known self-hosted security considerations |
Performance claims: The +15.7% quality lift and 87% fewer hallucination events figures in this README are from synthetic, scripted controlled A/B scenarios with hand-tuned reference controllers — not production traffic and not the in-domain validation corpus (V1–V5 gates use a separate labelled set). Results may vary by domain, model, and deployment configuration. Do not use these figures in external marketing without conducting your own domain-specific evaluation. See LEGAL.md §5 for full scope and evidentiary basis.
High-stakes domains: Do not enable event types in active mode in healthcare,
legal, financial, or emergency service contexts without domain-specific validation and
human oversight. See LEGAL.md §4.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Related MCP Connectors
Persistent memory and drift detection for AI agents across session restarts.
AI agent observability for production traces, natural-language insights, and improvement loops.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceStructural observability for AI conversations. Detects loops, stuck states, breakthroughs, and convergence across 17 channels without analyzing content.2MIT
- AlicenseNot gradedqualityAmaintenanceEnables AI agents to retain memory of past interactions and detect behavioral drift, preventing repeated mistakes without LLM token extraction.447MIT
- AlicenseNot gradedqualityCmaintenanceA visual canary that detects context rot and silent model degradation in long agent conversations by embedding externally verified checkpoints and self-reported status into each response.13MIT
- AlicenseNot gradedqualityFmaintenanceProvides AI agents with real-time cognitive health monitoring, detecting context rot through token utilization, retrieval accuracy, and session fatigue analysis.4713MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/leocelis/horizon'
If you have feedback or need assistance with the MCP directory API, please join our Discord server