mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-21 00:02:30 +00:00
* feat(cli): add consistent get/list/new subcommands for all item types Make the CLI consistent so every item type (script, flow, app, resource, resource-type, variable, schedule, folder, trigger) supports get/list/new subcommands, enabling the CLI to be used as a full API client in bash scripts with jq piping. - Add --json flag to all list commands for machine-readable output - Register explicit "list" subcommand alongside default action - Add "get <path> [--json]" subcommand to fetch single items from API - Rename "bootstrap" to "new" for script/flow, keep "bootstrap" as alias - Add "new" subcommand for resource, resource-type, variable, schedule, folder, and trigger to create local template YAML files - Update cli-commands skill documentation for wmill init - Add integration tests for all new commands Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * all * feat: install wmill CLI in Docker images and use it for bash variable/resource access - Install windmill-cli via bun in all Dockerfiles that include bun - DockerfileCli: switch from node:slim to oven/bun:slim - CLI: auto-configure from WM_WORKSPACE/WM_TOKEN/BASE_INTERNAL_URL env vars as last-resort fallback when no workspace is configured - Frontend: replace curl-based bash snippets with wmill variable/resource get - Add backend integration tests for wmill CLI in bash scripts Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(ci): install windmill-cli in backend test workflow Ensures wmill is available on PATH for bash integration tests that use `wmill variable get` and `wmill resource get`. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor(cli): replace @std/* Deno dependencies with Node.js equivalents Replace @std/log with a lightweight custom logger (core/log.ts), @std/path with node:path, and @std/yaml with the yaml npm package. Also fix process hang on exit, add --node option to install_dev.sh, and add missing hasRequiredPermissions to NpmProvider. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * all * all * all * refactor(cli): replace @ayonli/jsext and @std/encoding with lightweight alternatives Replace @ayonli/jsext (8.4MB) with tar-stream (32kB) for tar creation, replace @std/encoding with Node.js Buffer.toString("hex"), and fix @windmill-labs/shared-utils to use direct npm instead of JSR mirror. Also resolve merge conflicts in sync.ts and fix pre-existing type errors. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(cli): use singleQuote YAML output and pass yamlOptions in gitsync pull The yaml library defaults to double quotes, but the codebase (and tests) expect single-quoted strings. Add singleQuote: true to yamlOptions and pass yamlOptions to gitsync-settings pull writeFile calls. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * all * all * fix(cli): address code review feedback - Install CLI from source in backend tests instead of npm - Fix script bootstrap catch block to re-throw "File already exists" - Add type-safe local variable after trigger kind validation - Use created_by instead of policy.on_behalf_of for app get output - Note --kind is recommended for faster trigger lookup in help text - Document node symlink purpose in Dockerfiles Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(ci): use /usr/bin for wmill wrapper to ensure it's in PATH Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(ci): install wmill to ~/.local/bin to avoid permission issues Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * ci(backend): switch to Blacksmith runner and add cargo caching - Switch from ubicloud-standard-16 to blacksmith-16vcpu-ubuntu-2404 for faster NVMe-backed builds - Add stickydisk for cargo target directory (persistent NVMe cache across runs) - Add cache for cargo registry and git dependencies - Upgrade DuckDB FFI cache from actions/cache@v3 to useblacksmith/cache@v1 - Enable CARGO_INCREMENTAL=1 to benefit from persistent target cache Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix ci --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
591 lines
17 KiB
TypeScript
591 lines
17 KiB
TypeScript
import { readFile, writeFile, open as fsOpen } from "node:fs/promises";
|
|
import process from "node:process";
|
|
import { GlobalOptions } from "../../types.ts";
|
|
import {
|
|
getActiveWorkspaceConfigFilePath,
|
|
getWorkspaceConfigFilePath,
|
|
} from "../../../windmill-utils-internal/src/config/config.ts";
|
|
import { loginInteractive, tryGetLoginInfo } from "../../core/login.ts";
|
|
import { colors } from "@cliffy/ansi/colors";
|
|
import { Command } from "@cliffy/command";
|
|
import { Confirm } from "@cliffy/prompt/confirm";
|
|
import { Input } from "@cliffy/prompt/input";
|
|
import { Table } from "@cliffy/table";
|
|
import * as log from "../../core/log.ts";
|
|
import { setClient } from "../../core/client.ts";
|
|
import { requireLogin } from "../../core/auth.ts";
|
|
import { createWorkspaceFork, deleteWorkspaceFork } from "./fork.ts";
|
|
|
|
import * as wmill from "../../../gen/services.gen.ts";
|
|
|
|
export interface Workspace {
|
|
remote: string;
|
|
workspaceId: string;
|
|
name: string;
|
|
token: string;
|
|
}
|
|
|
|
export async function allWorkspaces(
|
|
configDirOverride?: string
|
|
): Promise<Workspace[]> {
|
|
try {
|
|
const file = await getWorkspaceConfigFilePath(configDirOverride);
|
|
const txt = await readFile(file, "utf-8");
|
|
return txt
|
|
.split("\n")
|
|
.map((line) => {
|
|
if (line.length <= 2) {
|
|
return;
|
|
}
|
|
const instance = JSON.parse(line) as Workspace;
|
|
return instance;
|
|
})
|
|
.filter(Boolean) as Workspace[];
|
|
} catch (_) {
|
|
return [];
|
|
}
|
|
}
|
|
|
|
async function getActiveWorkspaceName(
|
|
opts: GlobalOptions | undefined
|
|
): Promise<string | undefined> {
|
|
if (opts?.workspace) {
|
|
return opts?.workspace;
|
|
}
|
|
try {
|
|
const file = await getActiveWorkspaceConfigFilePath(opts?.configDir);
|
|
return await readFile(file, "utf-8");
|
|
} catch {
|
|
return undefined;
|
|
}
|
|
}
|
|
|
|
export async function getActiveWorkspace(
|
|
opts: GlobalOptions | undefined = undefined
|
|
): Promise<Workspace | undefined> {
|
|
const name = await getActiveWorkspaceName(opts);
|
|
if (!name) {
|
|
return undefined;
|
|
}
|
|
return await getWorkspaceByName(name, opts?.configDir);
|
|
}
|
|
|
|
export async function getWorkspaceByName(
|
|
workspaceName: string,
|
|
configDirOverride?: string
|
|
): Promise<Workspace | undefined> {
|
|
const workspaceStream = await allWorkspaces(configDirOverride);
|
|
for await (const workspace of workspaceStream) {
|
|
if (workspace.name === workspaceName) {
|
|
return workspace;
|
|
}
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
export async function list(opts: GlobalOptions) {
|
|
const workspaces = await allWorkspaces(opts.configDir);
|
|
const activeName = await getActiveWorkspaceName(opts);
|
|
|
|
new Table()
|
|
.header(["name", "remote", "workspace id"])
|
|
.padding(2)
|
|
.border(true)
|
|
.body(
|
|
workspaces.map((x) => {
|
|
const a = [x.name, x.remote, x.workspaceId];
|
|
if (x.name === activeName) {
|
|
return a.map((x) => colors.underline(x));
|
|
} else {
|
|
return a;
|
|
}
|
|
})
|
|
)
|
|
.render();
|
|
|
|
log.info("Active: " + colors.green.bold(activeName || "none"));
|
|
}
|
|
|
|
async function switchC(opts: GlobalOptions, workspaceName: string) {
|
|
if (opts.workspace) {
|
|
log.info(
|
|
colors.red.bold(
|
|
"! Workspace needs to be specified as positional argument, not as option."
|
|
)
|
|
);
|
|
return;
|
|
}
|
|
|
|
const all = await allWorkspaces(opts.configDir);
|
|
if (all.findIndex((x) => x.name === workspaceName) === -1) {
|
|
log.info(
|
|
colors.red.bold(
|
|
`! This workspace profile ${workspaceName} does not exist locally.`
|
|
)
|
|
);
|
|
log.info("available workspace profiles:");
|
|
for (const w of all) {
|
|
log.info(" - " + w.name);
|
|
}
|
|
return;
|
|
}
|
|
|
|
await setActiveWorkspace(workspaceName, opts.configDir);
|
|
const workspace = await getWorkspaceByName(workspaceName, opts.configDir);
|
|
log.info(
|
|
colors.green.bold(
|
|
`Switched to workspace ${workspaceName} (${workspace?.workspaceId} on ${workspace?.remote})`
|
|
)
|
|
);
|
|
return;
|
|
}
|
|
|
|
export async function setActiveWorkspace(
|
|
workspaceName: string,
|
|
configDirOverride?: string
|
|
) {
|
|
const file = await getActiveWorkspaceConfigFilePath(configDirOverride);
|
|
await writeFile(file, workspaceName, "utf-8");
|
|
}
|
|
|
|
export async function add(
|
|
opts: GlobalOptions & {
|
|
create: boolean;
|
|
createWorkspaceName: string | undefined;
|
|
createUsername: string | undefined;
|
|
},
|
|
workspaceName: string | undefined,
|
|
workspaceId: string | undefined,
|
|
remote: string | undefined
|
|
) {
|
|
if (opts.workspace) {
|
|
log.info(
|
|
colors.red.bold(
|
|
"! Workspace needs to be specified as positional argument, not as option."
|
|
)
|
|
);
|
|
return;
|
|
}
|
|
|
|
while (workspaceName === undefined) {
|
|
if (!workspaceName) {
|
|
workspaceName = await Input.prompt("Name this workspace:");
|
|
}
|
|
}
|
|
|
|
if (!workspaceId) {
|
|
workspaceId = await Input.prompt({
|
|
message: "Enter the ID of this workspace",
|
|
default: workspaceName,
|
|
suggestions: [workspaceName],
|
|
});
|
|
}
|
|
|
|
if (!remote) {
|
|
// first check whether workspaceId is actually a URL
|
|
try {
|
|
const url = new URL(workspaceId);
|
|
workspaceId = workspaceName;
|
|
remote = url.toString();
|
|
} catch {
|
|
// not a url
|
|
remote = new URL(
|
|
await Input.prompt({
|
|
message: "Enter the Remote URL",
|
|
suggestions: ["https://app.windmill.dev/"],
|
|
default: "https://app.windmill.dev/",
|
|
})
|
|
).toString();
|
|
}
|
|
}
|
|
remote = new URL(remote).toString(); // add trailing slash in all cases!
|
|
|
|
let token = await tryGetLoginInfo(opts);
|
|
if (!token && !(process.stdin.isTTY ?? false)) {
|
|
log.info("Not a TTY, can't login interactively. Pass the token in --token");
|
|
return;
|
|
}
|
|
while (!token) {
|
|
token = await loginInteractive(remote);
|
|
}
|
|
|
|
setClient(
|
|
token,
|
|
remote.endsWith("/") ? remote.substring(0, remote.length - 1) : remote
|
|
);
|
|
let alreadyExists = false;
|
|
try {
|
|
alreadyExists = await wmill.existsWorkspace({
|
|
requestBody: { id: workspaceId },
|
|
});
|
|
} catch (e) {
|
|
log.info(
|
|
colors.red.bold("! Credentials or instance is invalid. Aborting.")
|
|
);
|
|
throw e;
|
|
}
|
|
if (opts.create) {
|
|
if (!alreadyExists) {
|
|
log.info(
|
|
colors.yellow(
|
|
`Workspace at id ${workspaceId} on ${remote} does not exist. Creating...`
|
|
)
|
|
);
|
|
const automateUsernameCreation: boolean =
|
|
((await wmill.getGlobal({
|
|
key: "automate_username_creation",
|
|
})) as any) ?? false;
|
|
await wmill.createWorkspace({
|
|
requestBody: {
|
|
id: workspaceId,
|
|
name: opts.createWorkspaceName ?? workspaceName,
|
|
username: automateUsernameCreation ? undefined : opts.createUsername,
|
|
},
|
|
});
|
|
}
|
|
} else if (!alreadyExists) {
|
|
log.info(
|
|
colors.red.bold(
|
|
`! Workspace at id ${workspaceId} on ${remote} does not exist. Re-run with --create to create it. Aborting.`
|
|
)
|
|
);
|
|
log.info(
|
|
"On that instance and with those credentials, the workspaces that you can access are:"
|
|
);
|
|
const workspaces = await wmill.listWorkspaces();
|
|
for (const workspace of workspaces) {
|
|
log.info(`- ${workspace.id} (name: ${workspace.name})`);
|
|
}
|
|
process.exit(1);
|
|
}
|
|
|
|
const added = await addWorkspace(
|
|
{
|
|
name: workspaceName,
|
|
remote: remote,
|
|
workspaceId: workspaceId,
|
|
token: token,
|
|
},
|
|
opts
|
|
);
|
|
if (!added) {
|
|
return;
|
|
}
|
|
await setActiveWorkspace(workspaceName, opts.configDir);
|
|
|
|
log.info(
|
|
colors.green.underline(
|
|
`Added workspace ${workspaceName} for ${workspaceId} on ${remote}!`
|
|
)
|
|
);
|
|
}
|
|
|
|
export async function addWorkspace(workspace: Workspace, opts: any): Promise<boolean> {
|
|
workspace.remote = new URL(workspace.remote).toString(); // add trailing slash in all cases!
|
|
|
|
// Check for conflicts before adding
|
|
const existingWorkspaces = await allWorkspaces(opts.configDir);
|
|
const isInteractive =
|
|
(process.stdin.isTTY ?? false) && (process.stdout.isTTY ?? false) && !opts.force;
|
|
|
|
// Check 1: Workspace name already exists
|
|
const nameConflict = existingWorkspaces.find(
|
|
(w) => w.name === workspace.name
|
|
);
|
|
if (nameConflict) {
|
|
// If it's the exact same workspace (same remote + workspaceId), just update the token
|
|
if (
|
|
nameConflict.remote === workspace.remote &&
|
|
nameConflict.workspaceId === workspace.workspaceId
|
|
) {
|
|
log.info(
|
|
colors.yellow(
|
|
`Updating token for existing workspace "${workspace.name}"`
|
|
)
|
|
);
|
|
} else {
|
|
// Different remote or workspaceId - this is a conflict
|
|
log.info(
|
|
colors.red.bold(`❌ Workspace name "${workspace.name}" already exists!`)
|
|
);
|
|
log.info(
|
|
` Existing: ${nameConflict.workspaceId} on ${nameConflict.remote}`
|
|
);
|
|
log.info(` New: ${workspace.workspaceId} on ${workspace.remote}`);
|
|
|
|
if (!isInteractive) {
|
|
// In non-interactive mode (tests, scripts), auto-overwrite with force flag
|
|
if (opts.force) {
|
|
log.info(
|
|
colors.yellow("Force flag enabled, overwriting existing workspace.")
|
|
);
|
|
} else {
|
|
throw new Error(
|
|
"Workspace name conflict. Use --force to overwrite or choose a different name."
|
|
);
|
|
}
|
|
} else {
|
|
const overwrite = await Confirm.prompt({
|
|
message: "Do you want to overwrite the existing workspace?",
|
|
default: false,
|
|
});
|
|
|
|
if (!overwrite) {
|
|
log.info(colors.yellow("Operation cancelled."));
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Check 2: Same (remote, workspaceId) already exists with a different name
|
|
const backendConflict = existingWorkspaces.find(
|
|
(w) =>
|
|
w.remote === workspace.remote &&
|
|
w.workspaceId === workspace.workspaceId &&
|
|
w.name !== workspace.name
|
|
);
|
|
if (backendConflict) {
|
|
if (opts.force) {
|
|
// Remove the conflicting workspace before adding the new one
|
|
await removeWorkspace(backendConflict.name, true, opts);
|
|
} else {
|
|
throw new Error(
|
|
`Backend constraint violation: (${workspace.remote}, ${workspace.workspaceId}) already exists as "${backendConflict.name}". Use --force to overwrite.`
|
|
);
|
|
}
|
|
}
|
|
|
|
// Remove existing workspace with same name (if updating)
|
|
await removeWorkspace(workspace.name, true, opts);
|
|
|
|
// Add the new workspace
|
|
const filePath = await getWorkspaceConfigFilePath(opts.configDir);
|
|
const fh = await fsOpen(filePath, "a");
|
|
await fh.write(JSON.stringify(workspace) + "\n");
|
|
await fh.close();
|
|
return true;
|
|
}
|
|
|
|
export async function removeWorkspace(
|
|
name: string,
|
|
silent: boolean,
|
|
opts: any
|
|
) {
|
|
const orgWorkspaces = await allWorkspaces(opts.configDir);
|
|
if (orgWorkspaces.findIndex((x) => x.name === name) === -1) {
|
|
if (!silent) {
|
|
log.info(
|
|
colors.red.bold(`! Workspace profile ${name} does not exist locally`)
|
|
);
|
|
log.info("available workspace profiles:");
|
|
await list(opts);
|
|
}
|
|
return;
|
|
}
|
|
if (!silent) {
|
|
log.info(colors.yellow(`Removing existing workspace ${name}`));
|
|
}
|
|
|
|
const filePath = await getWorkspaceConfigFilePath(opts.configDir);
|
|
await writeFile(
|
|
filePath,
|
|
orgWorkspaces
|
|
.filter((x) => x.name !== name)
|
|
.map((x) => JSON.stringify(x))
|
|
.join("\n") + "\n",
|
|
"utf-8"
|
|
);
|
|
|
|
if (!silent) {
|
|
log.info(colors.green.underline(`Succesfully removed workspace ${name}!`));
|
|
}
|
|
}
|
|
|
|
async function remove(_opts: GlobalOptions, name: string) {
|
|
await removeWorkspace(name, false, _opts);
|
|
}
|
|
|
|
async function whoami(_opts: GlobalOptions) {
|
|
await requireLogin(_opts);
|
|
log.info(await wmill.globalWhoami());
|
|
const activeName = await getActiveWorkspaceName(_opts);
|
|
log.info("Active: " + colors.green.bold(activeName || "none"));
|
|
}
|
|
|
|
async function listRemote(_opts: GlobalOptions) {
|
|
const { resolveWorkspace } = await import("../../core/context.ts");
|
|
const workspace = await resolveWorkspace(_opts);
|
|
await requireLogin(_opts);
|
|
const userWorkspaces = await wmill.listUserWorkspaces();
|
|
|
|
new Table()
|
|
.header(["id", "name", "username", "disabled"])
|
|
.padding(2)
|
|
.border(true)
|
|
.body(
|
|
userWorkspaces.workspaces.map((x) => [
|
|
x.id,
|
|
x.name,
|
|
x.username,
|
|
x.disabled ? colors.red("true") : "false",
|
|
])
|
|
)
|
|
.render();
|
|
|
|
log.info(`Remote: ${colors.bold(workspace.remote)}`);
|
|
log.info(`Logged in as: ${colors.green.bold(userWorkspaces.email)}`);
|
|
}
|
|
|
|
export async function getActiveWorkspaceOrFallback(opts: GlobalOptions) {
|
|
let activeWorkspace = await getActiveWorkspace(opts);
|
|
if (!activeWorkspace && opts.baseUrl && opts.workspace) {
|
|
activeWorkspace = {
|
|
name: opts.workspace,
|
|
remote: opts.baseUrl,
|
|
workspaceId: opts.workspace,
|
|
token: "",
|
|
};
|
|
}
|
|
return activeWorkspace;
|
|
}
|
|
async function bind(
|
|
opts: GlobalOptions & { branch?: string },
|
|
bindWorkspace?: boolean
|
|
) {
|
|
const { isGitRepository, getCurrentGitBranch } = await import(
|
|
"../../utils/git.ts"
|
|
);
|
|
|
|
if (!isGitRepository()) {
|
|
log.error(colors.red("Not in a Git repository"));
|
|
return;
|
|
}
|
|
|
|
const branch = opts.branch || getCurrentGitBranch();
|
|
if (!branch) {
|
|
log.error(colors.red("Could not determine current Git branch"));
|
|
return;
|
|
}
|
|
|
|
const { readConfigFile } = await import("../../core/conf.ts");
|
|
const config = await readConfigFile();
|
|
|
|
const activeWorkspace = await getActiveWorkspaceOrFallback(opts);
|
|
if (!activeWorkspace && bindWorkspace) {
|
|
log.error(
|
|
colors.red(
|
|
"No active workspace. Use 'wmill workspace add' or 'wmill workspace switch' first"
|
|
)
|
|
);
|
|
return;
|
|
}
|
|
|
|
// For unbind, check if branch exists
|
|
if (!bindWorkspace && (!config.gitBranches || !config.gitBranches[branch])) {
|
|
log.error(
|
|
colors.red(`Branch '${branch}' not found in wmill.yaml gitBranches`)
|
|
);
|
|
return;
|
|
}
|
|
|
|
// Update the branch configuration with workspace binding
|
|
if (!config.gitBranches) {
|
|
config.gitBranches = {};
|
|
}
|
|
if (!config.gitBranches[branch]) {
|
|
config.gitBranches[branch] = { overrides: {} };
|
|
}
|
|
|
|
if (bindWorkspace && activeWorkspace) {
|
|
config.gitBranches[branch].baseUrl = activeWorkspace.remote;
|
|
config.gitBranches[branch].workspaceId = activeWorkspace.workspaceId;
|
|
|
|
log.info(
|
|
colors.green(
|
|
`✓ Bound branch '${branch}' to workspace '${activeWorkspace.name}'\n` +
|
|
` ${activeWorkspace.workspaceId} on ${activeWorkspace.remote}`
|
|
)
|
|
);
|
|
} else {
|
|
// Unbind
|
|
delete config.gitBranches[branch].baseUrl;
|
|
delete config.gitBranches[branch].workspaceId;
|
|
|
|
log.info(
|
|
colors.green(`✓ Removed workspace binding from branch '${branch}'`)
|
|
);
|
|
}
|
|
|
|
// Write back the updated config
|
|
const { stringify: yamlStringify } = await import("yaml");
|
|
try {
|
|
await writeFile("wmill.yaml", yamlStringify(config), "utf-8");
|
|
} catch (error) {
|
|
log.error(colors.red(`Failed to save configuration: ${(error as Error).message}`));
|
|
return;
|
|
}
|
|
}
|
|
|
|
const command = new Command()
|
|
.alias("profile")
|
|
.description("workspace related commands")
|
|
.action(list as any)
|
|
.command("switch")
|
|
.complete("workspace", async () => (await allWorkspaces()).map((x) => x.name))
|
|
.description("Switch to another workspace")
|
|
.arguments("<workspace_name:string:workspace>")
|
|
.action(switchC as any)
|
|
.command("add")
|
|
.description("Add a workspace")
|
|
.arguments("[workspace_name:string] [workspace_id:string] [remote:string]")
|
|
.option("-c --create", "Create the workspace if it does not exist")
|
|
.option(
|
|
"--create-workspace-name <workspace_name:string>",
|
|
"Specify the workspace name. Ignored if --create is not specified or the workspace already exists. Will default to the workspace id."
|
|
)
|
|
.option(
|
|
"--create-username <username:string>",
|
|
"Specify your own username in the newly created workspace. Ignored if --create is not specified, the workspace already exists or automatic username creation is enabled on the instance.",
|
|
{
|
|
default: "admin",
|
|
}
|
|
)
|
|
.action(add as any)
|
|
.command("remove")
|
|
.description("Remove a workspace")
|
|
.arguments("<workspace_name:string>")
|
|
.action(remove as any)
|
|
.command("whoami")
|
|
.description("Show the currently active user")
|
|
.action(whoami as any)
|
|
.command("list")
|
|
.description("List local workspace profiles")
|
|
.action(list as any)
|
|
.command("list-remote")
|
|
.description("List workspaces on the remote server that you have access to")
|
|
.action(listRemote as any)
|
|
.command("bind")
|
|
.description("Bind the current Git branch to the active workspace")
|
|
.option("--branch <branch:string>", "Specify branch (defaults to current)")
|
|
.action((opts) => bind(opts as any, true))
|
|
.command("unbind")
|
|
.description("Remove workspace binding from the current Git branch")
|
|
.option("--branch <branch:string>", "Specify branch (defaults to current)")
|
|
.action((opts) => bind(opts as any, false))
|
|
.command("fork")
|
|
.description("Create a forked workspace")
|
|
.arguments("[workspace_name:string] [workspace_id:string]")
|
|
.option(
|
|
"--create-workspace-name <workspace_name:string>",
|
|
"Specify the workspace name. Ignored if --create is not specified or the workspace already exists. Will default to the workspace id."
|
|
)
|
|
.action(createWorkspaceFork as any)
|
|
.command("delete-fork")
|
|
.description("Delete a forked workspace and git branch")
|
|
.arguments("<fork_name:string>")
|
|
.option("-y --yes", "Skip confirmation prompt")
|
|
.action(deleteWorkspaceFork as any);
|
|
|
|
export default command;
|