Skip to content

GitTrix

Ephemeral storage routing for agent workflows with human-controlled promotion.

GitTrix is a storage router for AI coding workflows.

Agents work in ephemeral session repos, and accepted changes only move to durable storage when a human explicitly promotes them.

  • Ephemeral workspace per task
  • Agent API with no durable-write path
  • Human-only promote operation
  • Baseline conflict detection before promote
  • One clean synthetic commit on durable history
  • Pluggable durable and ephemeral adapters
flowchart TD
  GT["GitTrix"]

  subgraph Durable[Durable providers]
    DL["Local\nAvailable"]
    DCF["Cloudflare Artifacts\nIn progress"]
    DR["Git Remote\nPlanned"]
    DGH["GitHub\nPlanned"]
    DGL["GitLab\nPlanned"]
    DCS["Code Storage\nPlanned"]
  end

  subgraph Ephemeral[Ephemeral providers]
    EL["Local\nAvailable"]
    ECF["Cloudflare Artifacts\nAvailable"]
    EGF["GitFork\nPlanned"]
    ECS["Code Storage\nPlanned"]
  end

  GT --> Durable
  GT --> Ephemeral

  classDef available fill:#e8f7ee,stroke:#1f7a47,color:#0f3d25,stroke-width:1px
  classDef progress fill:#fff5e6,stroke:#a35a00,color:#5a3100,stroke-width:1px
  classDef planned fill:#f3f4f6,stroke:#4b5563,color:#1f2937,stroke-width:1px

  class DL,EL,ECF available
  class DCF progress
  class DR,DGH,DGL,DCS,EGF,ECS planned
  1. Start a session from durable baseline.
  2. Agent edits and commits in ephemeral.
  3. Human reviews diff and accepts changes.
  4. GitTrix promotes accepted changes to durable.
  5. Session gets evicted by policy.