···7777 .command("start")
7878 .argument("<sandbox>", "the sandbox to start")
7979 .option("--ssh, -s", "connect to the Sandbox and automatically open a shell")
8080+ .option(
8181+ "--repo, -r <repo>",
8282+ "the repository to clone into the sandbox (e.g., github:user/repo, tangled:user/repo, or a Git URL)",
8383+ )
8084 .description("start the given sandbox")
8185 .action(start);
8286···9599 "the base sandbox to use for the sandbox, e.g. openclaw, claude-code, codex, copilot ...",
96100 )
97101 .option("--ssh, -s", "connect to the Sandbox and automatically open a shell")
102102+ .option(
103103+ "--repo, -r <repo>",
104104+ "the repository to clone into the sandbox (e.g., github:user/repo, tangled:user/repo, or a Git URL)",
105105+ )
98106 .argument("[name]", "the name of the sandbox to create")
99107 .description("create a new sandbox")
100108 .action(createSandbox);