Movi | Review-first file organization docs

Developer And Agent Guide

This page is for people who want to extend Movi, wire it into automation, or plug an agent into the current product surface without breaking the safety contract.

Surface Map

Use the entry surface that matches the job:

Surface Best for Entry point
CLI full operator runs and repeatable shell workflows bash tooling/runtime/run_analyze.sh, run_apply.sh, run_rollback.sh
Web API local app integration, debugging, and explicit route calls contracts/api/web_api.openapi.yaml
Generated TypeScript client builder-facing WebUI or local tool integrations that want typed API calls contracts/api/generated/webui/client.ts + contracts/api/generated/webui/types.ts
WebUI human review, triage, and job orchestration npm run dev:stack
Movi MCP v1 stdio/local-first agent integrations bash tooling/runtime/run_mcp_stdio.sh (default) or movi-mcp when the installed console entrypoint is available

Think of it like choosing the right door into the same building. The CLI is the loading dock, the WebUI is the front desk, the Web API is the service corridor, and Movi MCP is the guarded service window for agents.

Quick Picks

If you already know the client you care about, start here:

Use this Navigation table as a search-before-write shortcut: it tells you which builder surface is the right first stop before you wire code against the wrong lane.

I want to build or use… Start here Why this is the shortest honest route
a Codex workflow Movi MCP For Codex it gives the client-specific MCP install path without pretending Codex can bypass review
a Claude Code workflow Movi MCP For Claude Code same local-first MCP lane, but written in Claude Code terms
a generic MCP-capable agent Movi MCP v1 this is the current stdio-first extension contract
a local app or script using HTTP contracts/api/web_api.openapi.yaml the Web API contract is still the public machine-readable truth source
a typed TypeScript integration contracts/api/generated/webui/client.ts this is the fastest path when you want typed request helpers instead of hand-writing fetch calls
the whole operator flow before integrating Operator Guide it shows the review-first workflow end-to-end before you wire a client into it

Current Contract And Client Substrate

Movi is not just a page app anymore. The current extension stack already has a thin substrate shape:

In plain language: the API contract is the signed blueprint, the generated client is the shared wiring harness, and the MCP layer is another supervised door into the same building.

What this means today:

One important boundary to keep straight:

That means WebUI locale work should happen in the display layer and shared copy layer, not by silently rewriting manifest/category compatibility values that the runtime still treats as canonical.

The Core Safety Boundary

Everything still revolves around the same chain:

  1. analyze drafts a manifest
  2. review surfaces inspect or edit the overlay
  3. Movi resolves a snapshot from base manifest + overlay
  4. apply starts with a dry run before real execution
  5. rollback stays bounded and auditable

That means:

When To Use Movi MCP v1

Use Movi MCP v1 when you want an agent to:

Use the Web API directly when you are:

Honest Hotness Binding Matrix

This is the shortest accurate ecosystem map for the current repo:

Ecosystem Current fit Why
Codex primary current stdio-first MCP surface already fits local agent workflows
Claude Code primary current stdio-first MCP surface already fits local agent workflows
Cursor / generic MCP clients secondary real MCP surface exists, but the repo does not need to brand them as the headline
OpenHands comparison / ecosystem only real API + MCP substrate exists, but no dedicated first-party setup page or product flow is shipped
OpenCode comparison / ecosystem only same honest boundary as OpenHands
OpenClaw submission-ready-unlisted current repo ships a dedicated bundle and install/proof note, but still does not claim a live listing

If you want the client-specific landing page first:

Current Agent-Safe Moves

These actions fit the current product promise:

These actions do not fit the current product promise:

Docs To Keep Nearby

If You Extend The Product Later

Keep this order:

  1. add or adjust the underlying safe workflow first
  2. expose it through Web API or application services
  3. only then expose it through Movi MCP
  4. update docs and discoverability copy to match the real shipped boundary

That order matters because the docs are the road signs, not the road. If the road does not exist yet, the sign should not pretend it does.