warpmetal 0.1.0 → 0.1.1

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.
package/README.md CHANGED
@@ -69,7 +69,9 @@ alternate state directory.
69
69
  - Destructive or state-changing commands require explicit confirmations and
70
70
  generate idempotency keys by default.
71
71
 
72
- ## Publishing status
72
+ ## Release status
73
73
 
74
- This package is an initial development release. Choose the public-source
75
- license and replace `UNLICENSED` before publishing it to npm.
74
+ The initial development release is published at
75
+ `https://www.npmjs.com/package/warpmetal`. The source is publicly visible but
76
+ remains `UNLICENSED`; choose an explicit license before describing the project
77
+ as open source or inviting third-party reuse.
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "warpmetal",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Agent-safe CLI and skill for purchasing and managing WarpMetal VPS servers",
5
5
  "type": "module",
6
6
  "bin": {
7
- "warpmetal": "./bin/warpmetal.js"
7
+ "warpmetal": "bin/warpmetal.js"
8
8
  },
9
9
  "files": [
10
10
  "bin/",
package/src/api.js CHANGED
@@ -61,7 +61,7 @@ export class WarpMetalClient {
61
61
  const url = new URL(path, `${this.baseUrl}/`);
62
62
  const headers = {
63
63
  Accept: "application/json",
64
- "User-Agent": "warpmetal-cli/0.1.0",
64
+ "User-Agent": "warpmetal-cli/0.1.1",
65
65
  };
66
66
  let requestBody;
67
67
  if (bodyText !== undefined) {
package/src/cli.js CHANGED
@@ -15,7 +15,7 @@ import { installSkill } from "./install-skill.js";
15
15
  import { readSshPublicKey, signSshChallenge } from "./ssh.js";
16
16
  import { resolveStateDirectory, StateStore } from "./state.js";
17
17
 
18
- const VERSION = "0.1.0";
18
+ const VERSION = "0.1.1";
19
19
  const TASK_TERMINAL_STATES = new Set([
20
20
  "ready",
21
21
  "expired",