nextclaw 0.13.6 → 0.13.8

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/dist/cli/index.js CHANGED
@@ -3049,6 +3049,10 @@ import {
3049
3049
  buildConfiguredRemoteState,
3050
3050
  resolveRemoteStatusSnapshot
3051
3051
  } from "@nextclaw/remote";
3052
+ function hasRunningNextclawManagedService() {
3053
+ const state = readServiceState();
3054
+ return Boolean(state && isProcessRunning(state.pid));
3055
+ }
3052
3056
  function createNextclawRemotePlatformClient() {
3053
3057
  return new RemotePlatformClient({
3054
3058
  loadConfig: () => loadConfig8(getConfigPath3()),
@@ -8317,10 +8321,7 @@ var CliRuntime = class {
8317
8321
  initAuto: (source) => this.init({ source, auto: true }),
8318
8322
  remoteCommands: this.remoteCommands,
8319
8323
  restartBackgroundService: (reason) => this.restartBackgroundService(reason),
8320
- hasRunningManagedService: () => {
8321
- const state = readServiceState();
8322
- return Boolean(state && isProcessRunning(state.pid));
8323
- }
8324
+ hasRunningManagedService: hasRunningNextclawManagedService
8324
8325
  });
8325
8326
  this.diagnosticsCommands = new DiagnosticsCommands({ logo: this.logo });
8326
8327
  this.restartCoordinator = new RestartCoordinator({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextclaw",
3
- "version": "0.13.6",
3
+ "version": "0.13.8",
4
4
  "description": "Lightweight personal AI assistant with CLI, multi-provider routing, and channel integrations.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -40,15 +40,15 @@
40
40
  "commander": "^12.1.0",
41
41
  "yaml": "^2.8.1",
42
42
  "@nextclaw/core": "0.9.5",
43
- "@nextclaw/mcp": "0.1.6",
44
- "@nextclaw/remote": "0.1.2",
45
- "@nextclaw/ncp-mcp": "0.1.6",
46
- "@nextclaw/ncp-toolkit": "0.4.1",
43
+ "@nextclaw/mcp": "0.1.8",
47
44
  "@nextclaw/ncp": "0.3.1",
45
+ "@nextclaw/ncp-agent-runtime": "0.2.1",
46
+ "@nextclaw/ncp-toolkit": "0.4.1",
47
+ "@nextclaw/remote": "0.1.4",
48
+ "@nextclaw/ncp-mcp": "0.1.8",
48
49
  "@nextclaw/openclaw-compat": "0.3.8",
49
- "@nextclaw/runtime": "0.2.5",
50
- "@nextclaw/server": "0.10.6",
51
- "@nextclaw/ncp-agent-runtime": "0.2.1"
50
+ "@nextclaw/server": "0.10.8",
51
+ "@nextclaw/runtime": "0.2.5"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/node": "^20.17.6",