@substructure.ai/cli 0.2.1 → 0.3.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.
package/README.md CHANGED
@@ -15,7 +15,7 @@ Supported platforms: macOS (arm64, x64), Linux (arm64, x64).
15
15
  ## Usage
16
16
 
17
17
  ```sh
18
- subs serve --dev --provider openrouter --worker-url http://localhost:4444
18
+ subs serve --no-auth --provider openrouter --worker-url http://localhost:4444
19
19
  ```
20
20
 
21
21
  Run `subs --help` for the full command list. Cloud management commands (`apps`, `keys`, `webhook`, `sessions`, …) are top-level subcommands.
@@ -24,7 +24,6 @@ Run `subs --help` for the full command list. Cloud management commands (`apps`,
24
24
 
25
25
  - [Repository and documentation](https://github.com/substructureai/substructure)
26
26
  - [SDK (`@substructure.ai/sdk`)](https://www.npmjs.com/package/@substructure.ai/sdk)
27
- - [Embedded runtime (`@substructure.ai/runtime`)](https://www.npmjs.com/package/@substructure.ai/runtime)
28
27
 
29
28
  ## License
30
29
 
package/bin/subs.js CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@substructure.ai/cli",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "description": "CLI for Substructure",
5
5
  "license": "FSL-1.1-ALv2",
6
6
  "type": "module",
@@ -40,9 +40,9 @@
40
40
  "postinstall": "node ./install.mjs"
41
41
  },
42
42
  "optionalDependencies": {
43
- "@substructure.ai/cli-darwin-arm64": "0.2.1",
44
- "@substructure.ai/cli-darwin-x64": "0.2.1",
45
- "@substructure.ai/cli-linux-arm64": "0.2.1",
46
- "@substructure.ai/cli-linux-x64": "0.2.1"
43
+ "@substructure.ai/cli-darwin-arm64": "0.3.0",
44
+ "@substructure.ai/cli-darwin-x64": "0.3.0",
45
+ "@substructure.ai/cli-linux-arm64": "0.3.0",
46
+ "@substructure.ai/cli-linux-x64": "0.3.0"
47
47
  }
48
48
  }