1. Open your real project
Choose a folder already on your machine. ReplicaMD does not upload or duplicate it into a cloud workspace.
Docs
The whole operating model on one readable page. No architecture maze and no separate how-it-works page.
Choose a folder already on your machine. ReplicaMD does not upload or duplicate it into a cloud workspace.
Pick Codex, Claude Code, Gemini, OpenCode, Copilot, Cursor, or a local Ollama model. Each member has an editable role and instructions.
Write the outcome you need. ReplicaMD keeps the work visible so you can inspect decisions instead of trusting a hidden chain.
Members use separate Git worktrees. One experiment cannot silently overwrite another or damage your main checkout.
Terminals, Git state, notes, and files stay close together. You decide what becomes part of the project.
Close ReplicaMD when the day is done. Your local workspace and project memory are there when you come back.
Local first
Your repositories, notes, terminal sessions, and provider sign-ins remain under your control. ReplicaMD stores only the local workspace information needed to put your day back together.
JS
This small example shows the shape of a command plugin. JavaScript details are highlighted so the important behavior is easy to scan.
export const plugin = {
name: "focus-check",
description: "Show the next useful action",
async run({ project }) {
const next = await project.findNextAction();
return { message: next ?? "Choose one clear goal" };
},
};