@clawops/cli 0.2.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -45,7 +45,7 @@ async function generatePlan(intent, _opts) {
45
45
  "plan/apply is not supported for the local provider. Use `clawops up` directly."
46
46
  );
47
47
  }
48
- const { version } = await import("./package-YZFYSSQM.js");
48
+ const { version } = await import("./package-RCGVJCON.js");
49
49
  const config = getConfig();
50
50
  const instanceType = intent.instanceType ?? "small";
51
51
  const openclawVersion = intent.openclawVersion ?? "latest";
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/dist/cli.js CHANGED
@@ -445,7 +445,7 @@ var plan_default = defineCommand5({
445
445
  },
446
446
  async run({ args }) {
447
447
  const { buildContext } = await import("./context-T52JWL3P.js");
448
- const { generatePlan } = await import("./generate-Y6O465VB.js");
448
+ const { generatePlan } = await import("./generate-H3D7VQUP.js");
449
449
  const ctx = buildContext(args);
450
450
  if (ctx.adapter.name === "local") {
451
451
  throw new UsageError(
@@ -1635,7 +1635,7 @@ var mcp_default = defineCommand17({
1635
1635
  }
1636
1636
  return;
1637
1637
  }
1638
- const { serveMcp } = await import("./server-TKDURITQ.js");
1638
+ const { serveMcp } = await import("./server-YO4JFQND.js");
1639
1639
  await serveMcp({
1640
1640
  port: args.http ? Number(args.http) : void 0,
1641
1641
  bind: args.bind,
File without changes
File without changes
File without changes
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  generatePlan,
4
4
  planId
5
- } from "./chunk-ENQY5OW2.js";
5
+ } from "./chunk-2MJFYG7U.js";
6
6
  import "./chunk-PERSDQMT.js";
7
7
  import "./chunk-PRYLTCS4.js";
8
8
  import "./chunk-YTH4L2GN.js";
File without changes
File without changes
@@ -2,7 +2,7 @@
2
2
 
3
3
  // package.json
4
4
  var name = "@clawops/cli";
5
- var version = "0.2.0";
5
+ var version = "1.0.0";
6
6
  var description = "Deploy and manage self-hosted OpenClaw instances across clouds";
7
7
  var type = "module";
8
8
  var bin = {
@@ -14,6 +14,14 @@ var exports = {
14
14
  var files = [
15
15
  "dist"
16
16
  ];
17
+ var repository = {
18
+ type: "git",
19
+ url: "git+https://github.com/dfridkin/clawops.git"
20
+ };
21
+ var publishConfig = {
22
+ access: "public",
23
+ provenance: true
24
+ };
17
25
  var engines = {
18
26
  node: ">=22"
19
27
  };
@@ -84,6 +92,8 @@ var package_default = {
84
92
  bin,
85
93
  exports,
86
94
  files,
95
+ repository,
96
+ publishConfig,
87
97
  engines,
88
98
  packageManager,
89
99
  scripts,
@@ -103,6 +113,8 @@ export {
103
113
  name,
104
114
  packageManager,
105
115
  pnpm,
116
+ publishConfig,
117
+ repository,
106
118
  scripts,
107
119
  type,
108
120
  version
File without changes
File without changes
@@ -8,7 +8,7 @@ import {
8
8
  } from "./chunk-LT24GUUO.js";
9
9
  import {
10
10
  generatePlan
11
- } from "./chunk-ENQY5OW2.js";
11
+ } from "./chunk-2MJFYG7U.js";
12
12
  import {
13
13
  applyPlan
14
14
  } from "./chunk-RZE35FQF.js";
@@ -1317,7 +1317,7 @@ If none of the above resolves the issue:
1317
1317
 
1318
1318
  // src/mcp/server.ts
1319
1319
  async function serveMcp(opts) {
1320
- const { version } = await import("./package-YZFYSSQM.js");
1320
+ const { version } = await import("./package-RCGVJCON.js");
1321
1321
  const server = new McpServer({ name: "clawops", version });
1322
1322
  registerTools(server, opts);
1323
1323
  registerResources(server);
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawops/cli",
3
- "version": "0.2.0",
3
+ "version": "1.0.0",
4
4
  "description": "Deploy and manage self-hosted OpenClaw instances across clouds",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,22 +12,17 @@
12
12
  "files": [
13
13
  "dist"
14
14
  ],
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/dfridkin/clawops.git"
18
+ },
19
+ "publishConfig": {
20
+ "access": "public",
21
+ "provenance": true
22
+ },
15
23
  "engines": {
16
24
  "node": ">=22"
17
25
  },
18
- "packageManager": "pnpm@10.12.1",
19
- "scripts": {
20
- "dev": "tsx src/cli/index.ts",
21
- "build": "tsup",
22
- "test": "vitest run",
23
- "test:pulumi": "vitest run tests/providers/aws/program.test.ts tests/providers/azure/program.test.ts",
24
- "test:changed": "vitest --changed",
25
- "typecheck": "tsc --noEmit",
26
- "lint": "eslint --max-warnings=0 src tests scripts",
27
- "gen:schemas": "tsx scripts/gen-schemas.ts",
28
- "changeset": "changeset",
29
- "release": "pnpm build && changeset publish"
30
- },
31
26
  "dependencies": {
32
27
  "@modelcontextprotocol/sdk": "^1.0.0",
33
28
  "@pulumi/aws": "^6.0.0",
@@ -62,16 +57,16 @@
62
57
  "typescript-eslint": "^8.0.0",
63
58
  "vitest": "^2.0.0"
64
59
  },
65
- "pnpm": {
66
- "overrides": {
67
- "@pulumi/pulumi": "^3.0.0"
68
- },
69
- "onlyBuiltDependencies": [
70
- "@pulumi/command",
71
- "cpu-features",
72
- "esbuild",
73
- "protobufjs",
74
- "ssh2"
75
- ]
60
+ "scripts": {
61
+ "dev": "tsx src/cli/index.ts",
62
+ "build": "tsup",
63
+ "test": "vitest run",
64
+ "test:pulumi": "vitest run tests/providers/aws/program.test.ts tests/providers/azure/program.test.ts",
65
+ "test:changed": "vitest --changed",
66
+ "typecheck": "tsc --noEmit",
67
+ "lint": "eslint --max-warnings=0 src tests scripts",
68
+ "gen:schemas": "tsx scripts/gen-schemas.ts",
69
+ "changeset": "changeset",
70
+ "release": "pnpm build && changeset publish"
76
71
  }
77
- }
72
+ }