Skip to Content
GuidesOrchable - Tier Features Matrix

Orchable - Tier Features Matrix

Based on the Orchable Lite 3-Tier Architecture Implementation Plan, Orchable runs on a unified codebase that progressively unlocks features as users authenticate and upgrade.

1. Core Tier Model

TierAuthenticationStorage EngineExecution EngineCost
AnonymousNone (Guest)IndexedDB (Local only)Web Worker β†’ Direct Gemini APIFree
FreeSupabase AuthIndexedDB + Cloud Sync (Supabase)Web Worker (Local)Free
PremiumSupabase AuthCloud-first (Supabase)Cloud + 24/7 BackgroundPaid

2. Feature Unlock Matrix

FeatureAnonymous (Guest)Free (Registered)Premium (Subscriber)
Visual Designerβœ…βœ…βœ…
Batch Execution (local web worker)βœ…βœ…βœ…
Custom TSX Sandboxβœ…βœ…βœ…
Export CSV/JSONβœ…βœ…βœ…
Cost Calculatorβœ…βœ…βœ…
Cloud sync (Storage)βŒβœ… (Limited e.g. 500 tasks/mo)βœ… Unlimited
Persistent History across devices❌ (Cleared if cache deleted)βœ… Limitedβœ…
Background Processing (Cloud)βŒβŒβœ…
Team Workspace & CollaborationβŒβŒβœ…
Auto API Key RotationβŒβŒβœ…
Custom Server EnvironmentβŒβŒβœ… (n8n background)

3. Storage Behavior by Tier

  • Anonymous: All data (Batches, Tasks, Templates, Components) resdies purely in the browser’s IndexedDB. If the user clears browser data or changes devices, the history is lost.
  • Free: Uses IndexedDB for quick local execution, but enables pushing completed batches and pulling templates to/from Supabase to persist data across sessions/devices.
  • Premium: Directly reads/writes to Supabase, enabling cross-device real-time sync and server-side execution of long-running workflows while the browser is closed.

This document outlines the target feature gates implemented via the TierContext system.

Last updated on