Skip to content

Tier Matrix Open-Core

Four separate pages each describe part of the boundary between what Intutic does with no account at all and what it does once a control plane is involved: Getting Started has the standalone architecture, Security has the Standalone-vs-Connected data-flow diagrams and the Enterprise-tier identity/compliance summary, Security & Identity has the full team-role table, and the FAQ has the upgrade narrative. This page is the one place that states the whole boundary at once — everything below is drawn from those pages, not new content, so treat this as the index and follow the links for the full detail on any row.

There are three tiers, not two:

  1. Standalone (Open-Core) — no account, no control plane, runs entirely on your machine.
  2. Connected, Freeintutic connect to a workspace with no paid plan.
  3. Connected, Paid (Pro / Team / Enterprise) — a workspace with a plan attached.

What runs 100% locally, with no account

Everything here works fully offline, today, in open core — nothing on this list is a trial or a degraded preview of a paid feature:

  • Local rule sync — the sync daemon compiles your .intutic/sops/ markdown into .cursorrules, CLAUDE.md, .windsurfrules, and every other harness's own config format as files change.
  • Local policy enforcement — the Rust proxy intercepts every LLM request/response, evaluates it against local WASM rules, blocks prohibited tool calls, and injects steering warnings into the stream in real time.
  • Local cost and token ledger — session traces and daily spend land in local JSONL logs (~/.intutic/logs/); intutic predict-cost reads that same history for pre-flight estimates.
  • Local spend caps — a daily budget ceiling (~/.intutic/config.json), enforced natively inside the proxy on every request.
  • Intelligent routing and the bandit — the routing engine and its cache-honest guard (see Intelligent Routing) run locally; arm state persists to ~/.intutic/bandit-state.json.
  • DLP scanning and prompt-injection detection — pattern-based, no LLM call, no network egress.

What a control plane adds

StandaloneConnected
Bandit arm state~/.intutic/bandit-state.jsonbandit:{workspaceId} in Valkey — shared and durable
Who updates routing armsthis proxy, deterministicallythe control plane's judge, if it claims the workspace
Feature flagsconfig.yamlcontrol plane, authoritative
Auth & budgetslocal daily spend capworkspace virtual keys and per-member budgets
Response cacheper-processshared across every proxy in the workspace
Team dashboardweb UI: spend, audits, compliance scores
Ticket board integration (Jira/Linear)cost attribution to a ticket key
Corporate SOP distributionlocal files onlycentralized, tamper-proof, pushed to every developer
LLM-as-judge (L2/L3 semantic checks)requires server compute

Arm state carries over rather than resetting when you connect: a workspace that learned standalone keeps that learning, and the local loop stands down within 60 seconds of the control plane taking over. See Getting Started for the mechanics.

Nothing that requires a control plane was ever available in open core — so "what standalone gives up" is exactly the right-hand column above, never something silently downgraded. Provider credentials are held in memory only and never written to disk in either mode.

Upgrading

No CLI or proxy binary changes at any step — the progression is entirely config and billing state:

  1. Standaloneintutic start, budget enforced against ~/.intutic/config.json.
  2. Connected, Free — register on the dashboard, then intutic connect --workspace-id <wk_id> --api-key <api_key>. The sync daemon uploads buffered local traces and starts syncing workspace rules immediately; no reinstall.
  3. Connected, Paid — an administrator sets limits and unlocks tier features from the dashboard; the next sync-daemon handshake picks them up.

See the FAQ (Q17) for the full upgrade narrative, including how onboarding provisions new members.

  • Getting Started — standalone architecture, what Valkey adds, and the standalone/connected mode switch in detail
  • Security — Standalone-vs-Connected data-flow diagrams, encryption, and the Enterprise-tier identity/compliance summary
  • Security & Identity — the full team-role table, SSO setup, and API key management
  • FAQ — the upgrade narrative and the standalone works/doesn't-work split this page draws from

The circuit breaker for AI agents