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.
What you get
Section titled “What you get”- Ephemeral workspace per task
- Agent API with no durable-write path
- Human-only
promoteoperation - Baseline conflict detection before promote
- One clean synthetic commit on durable history
- Pluggable durable and ephemeral adapters
Storage options
Section titled “Storage options”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
Mental model
Section titled “Mental model”- Start a session from durable baseline.
- Agent edits and commits in ephemeral.
- Human reviews diff and accepts changes.
- GitTrix promotes accepted changes to durable.
- Session gets evicted by policy.