From 5f4eb8b5098ce7f673f8a823301a8eaf6daa6164 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 9 Jan 2026 15:34:41 +0100 Subject: [PATCH] style: format cli files --- src/cli/gateway-cli.ts | 5 ++++- src/cli/profile.test.ts | 7 +------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/cli/gateway-cli.ts b/src/cli/gateway-cli.ts index 11ecd42b9..f478b3293 100644 --- a/src/cli/gateway-cli.ts +++ b/src/cli/gateway-cli.ts @@ -180,7 +180,10 @@ async function ensureDevWorkspace(dir: string) { path.join(resolvedDir, "TOOLS.md"), DEV_TOOLS_TEMPLATE, ); - await writeFileIfMissing(path.join(resolvedDir, "USER.md"), DEV_USER_TEMPLATE); + await writeFileIfMissing( + path.join(resolvedDir, "USER.md"), + DEV_USER_TEMPLATE, + ); await writeFileIfMissing( path.join(resolvedDir, "HEARTBEAT.md"), DEV_HEARTBEAT_TEMPLATE, diff --git a/src/cli/profile.test.ts b/src/cli/profile.test.ts index daf51071d..e67657713 100644 --- a/src/cli/profile.test.ts +++ b/src/cli/profile.test.ts @@ -23,12 +23,7 @@ describe("parseCliProfileArgs", () => { }); it("still accepts global --dev before subcommand", () => { - const res = parseCliProfileArgs([ - "node", - "clawdbot", - "--dev", - "gateway", - ]); + const res = parseCliProfileArgs(["node", "clawdbot", "--dev", "gateway"]); if (!res.ok) throw new Error(res.error); expect(res.profile).toBe("dev"); expect(res.argv).toEqual(["node", "clawdbot", "gateway"]);