@supen-ai/cli 1.4.7 → 1.4.9

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supen-ai/daemon",
3
- "version": "1.4.7",
3
+ "version": "1.4.9",
4
4
  "description": "Supen Daemon — self-contained agent runtime for the Supen platform. Runs multiple agents on a host machine.",
5
5
  "type": "module",
6
6
  "bin": {
package/dist/computer.js CHANGED
@@ -11,7 +11,7 @@ import { hostOsIdentityEnv } from './os-identity.js';
11
11
  import { createTransport, resolveTransportConfig } from './transport/index.js';
12
12
  const DEFAULT_LOCAL_GATEWAY_URL = 'http://127.0.0.1:2755';
13
13
  const DEFAULT_PRODUCTION_HUB_URL = 'https://hub.supen.ai';
14
- const HOST_DAEMON_PACKAGE_SPEC = '@supen-ai/cli@1.4.7';
14
+ const HOST_DAEMON_PACKAGE_SPEC = '@supen-ai/cli@1.4.9';
15
15
  const DEFAULT_NPM_REGISTRY = 'https://registry.npmjs.org';
16
16
  function normalizeGatewayUrl(raw) {
17
17
  const trimmed = (raw || '').trim();
package/dist/index.js CHANGED
@@ -78,7 +78,7 @@ const program = new Command();
78
78
  program
79
79
  .name('supen')
80
80
  .description('Supen CLI — bootstrap, manage skills, agents, and control the service')
81
- .version('1.4.7');
81
+ .version('1.4.8');
82
82
  program
83
83
  .command('bootstrap')
84
84
  .description('First-time setup: choose gateway mode or local Docker daemon mode')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supen-ai/cli",
3
- "version": "1.4.7",
3
+ "version": "1.4.9",
4
4
  "description": "Supen CLI — command-line tool to manage local Supen daemon, agents, and skills",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",