@jonathangu/openclawbrain 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/LICENSE +21 -0
- package/README.md +412 -0
- package/bin/openclawbrain.js +15 -0
- package/docs/END_STATE.md +244 -0
- package/docs/EVIDENCE.md +128 -0
- package/docs/RELEASE_CONTRACT.md +91 -0
- package/docs/agent-tools.md +106 -0
- package/docs/architecture.md +224 -0
- package/docs/configuration.md +178 -0
- package/docs/evidence/2026-03-16/3188b50c4ed30f07dea111e35ce52aabefaced63/brain-teach-session-bound/status.json +87 -0
- package/docs/evidence/2026-03-16/3188b50c4ed30f07dea111e35ce52aabefaced63/brain-teach-session-bound/summary.md +16 -0
- package/docs/evidence/2026-03-16/3188b50c4ed30f07dea111e35ce52aabefaced63/brain-teach-session-bound/trace.json +273 -0
- package/docs/evidence/2026-03-16/3188b50c4ed30f07dea111e35ce52aabefaced63/brain-teach-session-bound/validation-report.json +652 -0
- package/docs/evidence/2026-03-16/4941429588810da5d6f7ef1509f229f83fa08031/channels-status.txt +31 -0
- package/docs/evidence/2026-03-16/4941429588810da5d6f7ef1509f229f83fa08031/config-snapshot.json +66 -0
- package/docs/evidence/2026-03-16/4941429588810da5d6f7ef1509f229f83fa08031/doctor.json +14 -0
- package/docs/evidence/2026-03-16/4941429588810da5d6f7ef1509f229f83fa08031/gateway-probe.txt +34 -0
- package/docs/evidence/2026-03-16/4941429588810da5d6f7ef1509f229f83fa08031/gateway-status.txt +41 -0
- package/docs/evidence/2026-03-16/4941429588810da5d6f7ef1509f229f83fa08031/logs.txt +428 -0
- package/docs/evidence/2026-03-16/4941429588810da5d6f7ef1509f229f83fa08031/status-all.txt +60 -0
- package/docs/evidence/2026-03-16/4941429588810da5d6f7ef1509f229f83fa08031/status.json +223 -0
- package/docs/evidence/2026-03-16/4941429588810da5d6f7ef1509f229f83fa08031/summary.md +13 -0
- package/docs/evidence/2026-03-16/4941429588810da5d6f7ef1509f229f83fa08031/trace.json +4 -0
- package/docs/evidence/2026-03-16/4941429588810da5d6f7ef1509f229f83fa08031/validation-report.json +334 -0
- package/docs/evidence/2026-03-16/7f8dbcb27e741abdeefd5656c210639d0acdd440/channels-status.txt +25 -0
- package/docs/evidence/2026-03-16/7f8dbcb27e741abdeefd5656c210639d0acdd440/config-snapshot.json +91 -0
- package/docs/evidence/2026-03-16/7f8dbcb27e741abdeefd5656c210639d0acdd440/doctor.json +14 -0
- package/docs/evidence/2026-03-16/7f8dbcb27e741abdeefd5656c210639d0acdd440/gateway-probe.txt +36 -0
- package/docs/evidence/2026-03-16/7f8dbcb27e741abdeefd5656c210639d0acdd440/gateway-status.txt +44 -0
- package/docs/evidence/2026-03-16/7f8dbcb27e741abdeefd5656c210639d0acdd440/logs.txt +428 -0
- package/docs/evidence/2026-03-16/7f8dbcb27e741abdeefd5656c210639d0acdd440/short-static-classification/preflight-doctor.json +10 -0
- package/docs/evidence/2026-03-16/7f8dbcb27e741abdeefd5656c210639d0acdd440/short-static-classification/preflight-sdk-probe.json +11 -0
- package/docs/evidence/2026-03-16/7f8dbcb27e741abdeefd5656c210639d0acdd440/short-static-classification/preflight-setup-only.json +12 -0
- package/docs/evidence/2026-03-16/7f8dbcb27e741abdeefd5656c210639d0acdd440/short-static-classification/summary.md +30 -0
- package/docs/evidence/2026-03-16/7f8dbcb27e741abdeefd5656c210639d0acdd440/short-static-classification/validation-report.json +72 -0
- package/docs/evidence/2026-03-16/7f8dbcb27e741abdeefd5656c210639d0acdd440/status-all.txt +63 -0
- package/docs/evidence/2026-03-16/7f8dbcb27e741abdeefd5656c210639d0acdd440/status.json +200 -0
- package/docs/evidence/2026-03-16/7f8dbcb27e741abdeefd5656c210639d0acdd440/summary.md +13 -0
- package/docs/evidence/2026-03-16/7f8dbcb27e741abdeefd5656c210639d0acdd440/trace.json +4 -0
- package/docs/evidence/2026-03-16/7f8dbcb27e741abdeefd5656c210639d0acdd440/validation-report.json +311 -0
- package/docs/evidence/README.md +16 -0
- package/docs/fts5.md +161 -0
- package/docs/tui.md +506 -0
- package/index.ts +1372 -0
- package/openclaw.plugin.json +136 -0
- package/package.json +66 -0
- package/src/assembler.ts +804 -0
- package/src/brain-cli.ts +316 -0
- package/src/brain-core/decay.ts +35 -0
- package/src/brain-core/episode.ts +82 -0
- package/src/brain-core/graph.ts +321 -0
- package/src/brain-core/health.ts +116 -0
- package/src/brain-core/mutator.ts +281 -0
- package/src/brain-core/pack.ts +117 -0
- package/src/brain-core/policy.ts +153 -0
- package/src/brain-core/replay.ts +1 -0
- package/src/brain-core/teacher.ts +105 -0
- package/src/brain-core/trace.ts +40 -0
- package/src/brain-core/traverse.ts +230 -0
- package/src/brain-core/types.ts +405 -0
- package/src/brain-core/update.ts +123 -0
- package/src/brain-harvest/human.ts +46 -0
- package/src/brain-harvest/scanner.ts +98 -0
- package/src/brain-harvest/self.ts +147 -0
- package/src/brain-runtime/assembler-extension.ts +230 -0
- package/src/brain-runtime/evidence-detectors.ts +68 -0
- package/src/brain-runtime/graph-io.ts +72 -0
- package/src/brain-runtime/harvester-extension.ts +98 -0
- package/src/brain-runtime/service.ts +659 -0
- package/src/brain-runtime/tools.ts +109 -0
- package/src/brain-runtime/worker-state.ts +106 -0
- package/src/brain-runtime/worker-supervisor.ts +169 -0
- package/src/brain-store/embedding.ts +179 -0
- package/src/brain-store/init.ts +347 -0
- package/src/brain-store/migrations.ts +188 -0
- package/src/brain-store/store.ts +816 -0
- package/src/brain-worker/child-runner.ts +321 -0
- package/src/brain-worker/jobs.ts +12 -0
- package/src/brain-worker/mutation-job.ts +5 -0
- package/src/brain-worker/promotion-job.ts +5 -0
- package/src/brain-worker/protocol.ts +79 -0
- package/src/brain-worker/teacher-job.ts +5 -0
- package/src/brain-worker/update-job.ts +5 -0
- package/src/brain-worker/worker.ts +422 -0
- package/src/compaction.ts +1332 -0
- package/src/db/config.ts +265 -0
- package/src/db/connection.ts +72 -0
- package/src/db/features.ts +42 -0
- package/src/db/migration.ts +561 -0
- package/src/engine.ts +1995 -0
- package/src/expansion-auth.ts +351 -0
- package/src/expansion-policy.ts +303 -0
- package/src/expansion.ts +383 -0
- package/src/integrity.ts +600 -0
- package/src/large-files.ts +527 -0
- package/src/openclaw-bridge.ts +22 -0
- package/src/retrieval.ts +357 -0
- package/src/store/conversation-store.ts +748 -0
- package/src/store/fts5-sanitize.ts +29 -0
- package/src/store/full-text-fallback.ts +74 -0
- package/src/store/index.ts +29 -0
- package/src/store/summary-store.ts +918 -0
- package/src/summarize.ts +847 -0
- package/src/tools/common.ts +53 -0
- package/src/tools/lcm-conversation-scope.ts +76 -0
- package/src/tools/lcm-describe-tool.ts +234 -0
- package/src/tools/lcm-expand-query-tool.ts +594 -0
- package/src/tools/lcm-expand-tool.delegation.ts +556 -0
- package/src/tools/lcm-expand-tool.ts +448 -0
- package/src/tools/lcm-expansion-recursion-guard.ts +286 -0
- package/src/tools/lcm-grep-tool.ts +200 -0
- package/src/transcript-repair.ts +301 -0
- package/src/types.ts +149 -0
package/docs/evidence/2026-03-16/4941429588810da5d6f7ef1509f229f83fa08031/config-snapshot.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gitSha": "4941429588810da5d6f7ef1509f229f83fa08031",
|
|
3
|
+
"artifactDir": "/Users/cormorantai/openclawbrain/docs/evidence/2026-03-16/4941429588810da5d6f7ef1509f229f83fa08031",
|
|
4
|
+
"validationMode": "sterile-lane",
|
|
5
|
+
"validationLaneName": "ocbphase1",
|
|
6
|
+
"validationRoot": "/Users/cormorantai/.openclaw-ocbphase1",
|
|
7
|
+
"validationHome": "/Users/cormorantai",
|
|
8
|
+
"validationStateDir": "/Users/cormorantai/.openclaw-ocbphase1",
|
|
9
|
+
"fixtureWorkspace": "/Users/cormorantai/.openclaw/workspace-ocbphase1",
|
|
10
|
+
"configPath": "/Users/cormorantai/.openclaw-ocbphase1/openclaw.json",
|
|
11
|
+
"lcmDbPath": "/Users/cormorantai/.openclaw-ocbphase1/lcm.db",
|
|
12
|
+
"brainRoot": "/Users/cormorantai/.openclaw-ocbphase1/openclawbrain",
|
|
13
|
+
"validationRecordFile": "/Users/cormorantai/.openclaw-ocbphase1/validation-records/validation-assemble.jsonl",
|
|
14
|
+
"validationGatewayPort": 19031,
|
|
15
|
+
"config": {
|
|
16
|
+
"meta": {
|
|
17
|
+
"lastTouchedVersion": "2026.3.13",
|
|
18
|
+
"lastTouchedAt": "2026-03-16T04:05:42.764Z"
|
|
19
|
+
},
|
|
20
|
+
"agents": {
|
|
21
|
+
"defaults": {
|
|
22
|
+
"workspace": "/Users/cormorantai/.openclaw/workspace-ocbphase1",
|
|
23
|
+
"compaction": {
|
|
24
|
+
"mode": "safeguard"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"commands": {
|
|
29
|
+
"native": "auto",
|
|
30
|
+
"nativeSkills": "auto",
|
|
31
|
+
"restart": true,
|
|
32
|
+
"ownerDisplay": "raw"
|
|
33
|
+
},
|
|
34
|
+
"gateway": {
|
|
35
|
+
"port": 19031,
|
|
36
|
+
"mode": "local"
|
|
37
|
+
},
|
|
38
|
+
"plugins": {
|
|
39
|
+
"load": {
|
|
40
|
+
"paths": [
|
|
41
|
+
"/Users/cormorantai/openclawbrain"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
"slots": {
|
|
45
|
+
"contextEngine": "openclawbrain"
|
|
46
|
+
},
|
|
47
|
+
"entries": {
|
|
48
|
+
"openclawbrain": {
|
|
49
|
+
"enabled": true,
|
|
50
|
+
"config": {
|
|
51
|
+
"enabled": true
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"installs": {
|
|
56
|
+
"openclawbrain": {
|
|
57
|
+
"source": "path",
|
|
58
|
+
"sourcePath": "/Users/cormorantai/openclawbrain",
|
|
59
|
+
"installPath": "/Users/cormorantai/openclawbrain",
|
|
60
|
+
"version": "0.3.0",
|
|
61
|
+
"installedAt": "2026-03-16T04:05:42.761Z"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"command": "openclaw",
|
|
3
|
+
"args": [
|
|
4
|
+
"doctor",
|
|
5
|
+
"--non-interactive"
|
|
6
|
+
],
|
|
7
|
+
"cwd": "/Users/cormorantai/openclawbrain",
|
|
8
|
+
"exitCode": 0,
|
|
9
|
+
"signal": null,
|
|
10
|
+
"ok": true,
|
|
11
|
+
"stdout": "▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄\n██░▄▄▄░██░▄▄░██░▄▄▄██░▀██░██░▄▄▀██░████░▄▄▀██░███░██\n██░███░██░▀▀░██░▄▄▄██░█░█░██░█████░████░▀▀░██░█░█░██\n██░▀▀▀░██░█████░▀▀▀██░██▄░██░▀▀▄██░▀▀░█░██░██▄▀▄▀▄██\n▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀\n 🦞 OPENCLAW 🦞 \n \n┌ OpenClaw doctor\n│\n◇ Install ─────────────────────────────────────────────────────────╮\n│ │\n│ - package-lock.json present in a pnpm workspace. If you ran npm │\n│ install, remove it and reinstall with pnpm. │\n│ │\n├───────────────────────────────────────────────────────────────────╯\n│\n◇ Config warnings ────────────────────────────────────────────────────────╮\n│ │\n│ - plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest │\n│ uses \"ollama\", entry hints \"ollama-provider\") │\n│ - plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest │\n│ uses \"sglang\", entry hints \"sglang-provider\") │\n│ - plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses │\n│ \"vllm\", entry hints \"vllm-provider\") │\n│ │\n├──────────────────────────────────────────────────────────────────────────╯\n│\n◇ Doctor changes ──────────────────────────────╮\n│ │\n│ Telegram configured, enabled automatically. │\n│ │\n├───────────────────────────────────────────────╯\n│\n◇ Doctor ──────────────────────────────────────────────╮\n│ │\n│ Run \"openclaw doctor --fix\" to apply these changes. │\n│ │\n├───────────────────────────────────────────────────────╯\n│\n◇ Gateway auth ──────────────────────────────────────────────────╮\n│ │\n│ Gateway auth is off or missing a token. Token auth is now the │\n│ recommended default (including loopback). │\n│ │\n├─────────────────────────────────────────────────────────────────╯\n│\n◇ State integrity ────────────────────────────────────────────────────────╮\n│ │\n│ - OAuth dir not present (~/.openclaw-ocbphase1/credentials). Skipping │\n│ create because no WhatsApp/pairing channel config is active. │\n│ - CRITICAL: Session store dir missing │\n│ (~/.openclaw-ocbphase1/agents/main/sessions). │\n│ - Multiple state directories detected. This can split session history. │\n│ - ~/.openclaw │\n│ Active state dir: ~/.openclaw-ocbphase1 │\n│ │\n├──────────────────────────────────────────────────────────────────────────╯\n│\n◇ Other gateway-like services detected ───────────────────────────────────────╮\n│ │\n│ - com.openclawbrain.daemon.activation.0ec88212fa7d (user, plist: │\n│ /Users/cormorantai/Library/LaunchAgents/com.openclawbrain.daemon.activat │\n│ ion.0ec88212fa7d.plist) │\n│ - com.openclawbrain.daemon.activation.546e84bf06ac (user, plist: │\n│ /Users/cormorantai/Library/LaunchAgents/com.openclawbrain.daemon.activat │\n│ ion.546e84bf06ac.plist) │\n│ - com.openclawbrain.daemon.activation.b3eeb450ca08 (user, plist: │\n│ /Users/cormorantai/Library/LaunchAgents/com.openclawbrain.daemon.activat │\n│ ion.b3eeb450ca08.plist) │\n│ │\n├──────────────────────────────────────────────────────────────────────────────╯\n│\n◇ Cleanup hints ─────────────────────────────────────────╮\n│ │\n│ - launchctl bootout gui/$UID/ai.openclaw.gateway │\n│ - rm ~/Library/LaunchAgents/ai.openclaw.gateway.plist │\n│ │\n├─────────────────────────────────────────────────────────╯\n│\n◇ Gateway recommendation ───────────────────────────────────────────────╮\n│ │\n│ Recommendation: run a single gateway per machine for most setups. │\n│ One gateway supports multiple agents. │\n│ If you need multiple gateways (e.g., a rescue bot on the same host), │\n│ isolate ports + config/state (see docs: │\n│ /gateway#multiple-gateways-same-host). │\n│ │\n├────────────────────────────────────────────────────────────────────────╯\n│\n◇ Security ─────────────────────────────────╮\n│ │\n│ - No channel security warnings detected. │\n│ - Run: openclaw security audit --deep │\n│ │\n├────────────────────────────────────────────╯\n│\n◇ Skills status ────────────╮\n│ │\n│ Eligible: 9 │\n│ Missing requirements: 43 │\n│ Blocked by allowlist: 0 │\n│ │\n├────────────────────────────╯\n│\n◇ Plugins ──────╮\n│ │\n│ Loaded: 5 │\n│ Disabled: 37 │\n│ Errors: 0 │\n│ │\n├────────────────╯\n│\n◇ Plugin diagnostics ─────────────────────────────────────────────────────╮\n│ │\n│ - WARN ollama: plugin id mismatch (manifest uses \"ollama\", entry hints │\n│ \"ollama-provider\") │\n│ (/Users/cormorantai/opencormorant/extensions/ollama/index.ts) │\n│ - WARN sglang: plugin id mismatch (manifest uses \"sglang\", entry hints │\n│ \"sglang-provider\") │\n│ (/Users/cormorantai/opencormorant/extensions/sglang/index.ts) │\n│ - WARN vllm: plugin id mismatch (manifest uses \"vllm\", entry hints │\n│ \"vllm-provider\") │\n│ (/Users/cormorantai/opencormorant/extensions/vllm/index.ts) │\n│ │\n├──────────────────────────────────────────────────────────────────────────╯\n│\n◇ Gateway ──────────────╮\n│ │\n│ Gateway not running. │\n│ │\n├────────────────────────╯\n│\n◇ Gateway connection ───────────────────────────────────────────╮\n│ │\n│ Gateway target: ws://127.0.0.1:19031 │\n│ Source: local loopback │\n│ Config: /Users/cormorantai/.openclaw-ocbphase1/openclaw.json │\n│ Bind: loopback │\n│ │\n├────────────────────────────────────────────────────────────────╯\n│\n◇ Gateway ────────────────────────╮\n│ │\n│ Gateway service not installed. │\n│ │\n├──────────────────────────────────╯\nRun \"openclaw doctor --fix\" to apply changes.\n│\n└ Doctor complete.\n\n",
|
|
12
|
+
"stderr": "Config warnings:\\n- plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest uses \"ollama\", entry hints \"ollama-provider\")\n- plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest uses \"sglang\", entry hints \"sglang-provider\")\n- plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses \"vllm\", entry hints \"vllm-provider\")\n",
|
|
13
|
+
"error": null
|
|
14
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
│
|
|
2
|
+
◇ Config warnings ────────────────────────────────────────────────────────╮
|
|
3
|
+
│ │
|
|
4
|
+
│ - plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest │
|
|
5
|
+
│ uses "ollama", entry hints "ollama-provider") │
|
|
6
|
+
│ - plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest │
|
|
7
|
+
│ uses "sglang", entry hints "sglang-provider") │
|
|
8
|
+
│ - plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses │
|
|
9
|
+
│ "vllm", entry hints "vllm-provider") │
|
|
10
|
+
│ │
|
|
11
|
+
├──────────────────────────────────────────────────────────────────────────╯
|
|
12
|
+
│
|
|
13
|
+
◇ Doctor changes ──────────────────────────────╮
|
|
14
|
+
│ │
|
|
15
|
+
│ Telegram configured, enabled automatically. │
|
|
16
|
+
│ │
|
|
17
|
+
├───────────────────────────────────────────────╯
|
|
18
|
+
│
|
|
19
|
+
◇ Doctor ──────────────────────────────────────────────╮
|
|
20
|
+
│ │
|
|
21
|
+
│ Run "openclaw doctor --fix" to apply these changes. │
|
|
22
|
+
│ │
|
|
23
|
+
├───────────────────────────────────────────────────────╯
|
|
24
|
+
Gateway Status
|
|
25
|
+
Reachable: no
|
|
26
|
+
Probe budget: 3000ms
|
|
27
|
+
|
|
28
|
+
Discovery (this machine)
|
|
29
|
+
Found 4 gateway(s) via Bonjour (local.)
|
|
30
|
+
|
|
31
|
+
Targets
|
|
32
|
+
Local loopback ws://127.0.0.1:19031
|
|
33
|
+
Connect: failed - connect failed: connect ECONNREFUSED 127.0.0.1:19031
|
|
34
|
+
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
│
|
|
2
|
+
◇ Config warnings ────────────────────────────────────────────────────────╮
|
|
3
|
+
│ │
|
|
4
|
+
│ - plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest │
|
|
5
|
+
│ uses "ollama", entry hints "ollama-provider") │
|
|
6
|
+
│ - plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest │
|
|
7
|
+
│ uses "sglang", entry hints "sglang-provider") │
|
|
8
|
+
│ - plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses │
|
|
9
|
+
│ "vllm", entry hints "vllm-provider") │
|
|
10
|
+
│ │
|
|
11
|
+
├──────────────────────────────────────────────────────────────────────────╯
|
|
12
|
+
│
|
|
13
|
+
◇ Doctor changes ──────────────────────────────╮
|
|
14
|
+
│ │
|
|
15
|
+
│ Telegram configured, enabled automatically. │
|
|
16
|
+
│ │
|
|
17
|
+
├───────────────────────────────────────────────╯
|
|
18
|
+
│
|
|
19
|
+
◇ Doctor ──────────────────────────────────────────────╮
|
|
20
|
+
│ │
|
|
21
|
+
│ Run "openclaw doctor --fix" to apply these changes. │
|
|
22
|
+
│ │
|
|
23
|
+
├───────────────────────────────────────────────────────╯
|
|
24
|
+
Service: LaunchAgent (not loaded)
|
|
25
|
+
File logs: /tmp/openclaw/openclaw-2026-03-15.log
|
|
26
|
+
|
|
27
|
+
Config (cli): ~/.openclaw-ocbphase1/openclaw.json
|
|
28
|
+
Config (service): ~/.openclaw-ocbphase1/openclaw.json
|
|
29
|
+
|
|
30
|
+
Gateway: bind=loopback (127.0.0.1), port=19031 (env/config)
|
|
31
|
+
Probe target: ws://127.0.0.1:19031
|
|
32
|
+
Dashboard: http://127.0.0.1:19031/
|
|
33
|
+
Probe note: Loopback-only gateway; only local clients can connect.
|
|
34
|
+
|
|
35
|
+
Runtime: unknown (Bad request.
|
|
36
|
+
Could not find service "ai.openclaw.gateway" in domain for user gui: 501)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
Troubles: run openclaw status
|
|
41
|
+
Troubleshooting: https://docs.openclaw.ai/troubleshooting
|
|
@@ -0,0 +1,428 @@
|
|
|
1
|
+
## openclaw status --all
|
|
2
|
+
|
|
3
|
+
[plugins] [openclawbrain] Plugin loaded (enabled=true, db=/Users/cormorantai/.openclaw-ocbphase1/lcm.db, threshold=0.75)
|
|
4
|
+
OpenClaw status --all
|
|
5
|
+
|
|
6
|
+
Overview
|
|
7
|
+
┌─────────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────┐
|
|
8
|
+
│ Item │ Value │
|
|
9
|
+
├─────────────────┼────────────────────────────────────────────────────────────────────────────────────────────────────┤
|
|
10
|
+
│ Version │ 2026.3.13 │
|
|
11
|
+
│ OS │ macos 26.3 (arm64) │
|
|
12
|
+
│ Node │ 22.22.0 │
|
|
13
|
+
│ Config │ ~/.openclaw-ocbphase1/openclaw.json │
|
|
14
|
+
│ Dashboard │ http://127.0.0.1:19031/ │
|
|
15
|
+
│ Tailscale │ off · Running · cormorantais-mac-mini.tail499c70.ts.net │
|
|
16
|
+
│ Channel │ dev (main) │
|
|
17
|
+
│ Git │ main · @ 66e02b29 │
|
|
18
|
+
│ Update │ git main · ↔ origin/main · behind 338 · npm latest 2026.3.13 · deps stale │
|
|
19
|
+
│ Gateway │ local · ws://127.0.0.1:19031 (local loopback) · unreachable (connect failed: connect ECONNREFUSED │
|
|
20
|
+
│ │ 127.0.0.1:19031) │
|
|
21
|
+
│ Security │ Run: openclaw security audit --deep │
|
|
22
|
+
│ Gateway self │ unknown │
|
|
23
|
+
│ Gateway service │ LaunchAgent not installed │
|
|
24
|
+
│ Node service │ LaunchAgent not installed │
|
|
25
|
+
│ Agents │ 1 total · 0 bootstrapping · 0 active · 0 sessions │
|
|
26
|
+
└─────────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────┘
|
|
27
|
+
|
|
28
|
+
Channels
|
|
29
|
+
┌──────────┬─────────┬────────┬────────────────────────────────────────────────────────────────────────────────────────┐
|
|
30
|
+
│ Channel │ Enabled │ State │ Detail │
|
|
31
|
+
├──────────┼─────────┼────────┼────────────────────────────────────────────────────────────────────────────────────────┤
|
|
32
|
+
└──────────┴─────────┴────────┴────────────────────────────────────────────────────────────────────────────────────────┘
|
|
33
|
+
|
|
34
|
+
Agents
|
|
35
|
+
┌────────────┬────────────────┬──────────┬──────────┬──────────────────────────────────────────────────────────────────┐
|
|
36
|
+
│ Agent │ Bootstrap file │ Sessions │ Active │ Store │
|
|
37
|
+
├────────────┼────────────────┼──────────┼──────────┼──────────────────────────────────────────────────────────────────┤
|
|
38
|
+
│ main │ ABSENT │ 0 │ unknown │ ~/.openclaw-ocbphase1/agents/main/sessions/sessions.json │
|
|
39
|
+
└────────────┴────────────────┴──────────┴──────────┴──────────────────────────────────────────────────────────────────┘
|
|
40
|
+
|
|
41
|
+
Diagnosis (read-only)
|
|
42
|
+
|
|
43
|
+
Gateway connection details:
|
|
44
|
+
Gateway target: ws://127.0.0.1:19031
|
|
45
|
+
Source: local loopback
|
|
46
|
+
Config: /Users/cormorantai/.openclaw-ocbphase1/openclaw.json
|
|
47
|
+
Bind: loopback
|
|
48
|
+
|
|
49
|
+
✓ Config: /Users/cormorantai/.openclaw-ocbphase1/openclaw.json
|
|
50
|
+
✓ Restart sentinel: none
|
|
51
|
+
✓ Port 19031
|
|
52
|
+
✓ Tailscale: off · Running · cormorantais-mac-mini.tail499c70.ts.net
|
|
53
|
+
ips: 100.73.247.26, fd7a:115c:a1e0::e932:f71a
|
|
54
|
+
✓ Skills: 9 eligible · 0 missing · /Users/cormorantai/.openclaw/workspace-ocbphase1
|
|
55
|
+
! Channel issues skipped (gateway unreachable)
|
|
56
|
+
|
|
57
|
+
Gateway health:
|
|
58
|
+
connect failed: connect ECONNREFUSED 127.0.0.1:19031
|
|
59
|
+
|
|
60
|
+
Pasteable debug report. Auth tokens redacted.
|
|
61
|
+
Troubleshooting: https://docs.openclaw.ai/troubleshooting
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
[stderr]
|
|
66
|
+
Config warnings:\n- plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest uses "ollama", entry hints "ollama-provider")
|
|
67
|
+
- plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest uses "sglang", entry hints "sglang-provider")
|
|
68
|
+
- plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses "vllm", entry hints "vllm-provider")
|
|
69
|
+
[plugins] plugins.allow is empty; discovered non-bundled plugins may auto-load: openclawbrain (/Users/cormorantai/openclawbrain/index.ts). Set plugins.allow to explicit trusted ids.
|
|
70
|
+
[plugins] [brain] Teacher disabled: No model configured for LCM summarization.
|
|
71
|
+
[plugins] [brain] Embedding model is unset; learned retrieval is disabled until init/configuration is complete
|
|
72
|
+
Config warnings:\n- plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest uses "ollama", entry hints "ollama-provider")
|
|
73
|
+
- plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest uses "sglang", entry hints "sglang-provider")
|
|
74
|
+
- plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses "vllm", entry hints "vllm-provider")
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
## openclaw gateway probe
|
|
79
|
+
|
|
80
|
+
│
|
|
81
|
+
◇ Config warnings ────────────────────────────────────────────────────────╮
|
|
82
|
+
│ │
|
|
83
|
+
│ - plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest │
|
|
84
|
+
│ uses "ollama", entry hints "ollama-provider") │
|
|
85
|
+
│ - plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest │
|
|
86
|
+
│ uses "sglang", entry hints "sglang-provider") │
|
|
87
|
+
│ - plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses │
|
|
88
|
+
│ "vllm", entry hints "vllm-provider") │
|
|
89
|
+
│ │
|
|
90
|
+
├──────────────────────────────────────────────────────────────────────────╯
|
|
91
|
+
│
|
|
92
|
+
◇ Doctor changes ──────────────────────────────╮
|
|
93
|
+
│ │
|
|
94
|
+
│ Telegram configured, enabled automatically. │
|
|
95
|
+
│ │
|
|
96
|
+
├───────────────────────────────────────────────╯
|
|
97
|
+
│
|
|
98
|
+
◇ Doctor ──────────────────────────────────────────────╮
|
|
99
|
+
│ │
|
|
100
|
+
│ Run "openclaw doctor --fix" to apply these changes. │
|
|
101
|
+
│ │
|
|
102
|
+
├───────────────────────────────────────────────────────╯
|
|
103
|
+
Gateway Status
|
|
104
|
+
Reachable: no
|
|
105
|
+
Probe budget: 3000ms
|
|
106
|
+
|
|
107
|
+
Discovery (this machine)
|
|
108
|
+
Found 4 gateway(s) via Bonjour (local.)
|
|
109
|
+
|
|
110
|
+
Targets
|
|
111
|
+
Local loopback ws://127.0.0.1:19031
|
|
112
|
+
Connect: failed - connect failed: connect ECONNREFUSED 127.0.0.1:19031
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
[stderr]
|
|
117
|
+
Config warnings:\n- plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest uses "ollama", entry hints "ollama-provider")
|
|
118
|
+
- plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest uses "sglang", entry hints "sglang-provider")
|
|
119
|
+
- plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses "vllm", entry hints "vllm-provider")
|
|
120
|
+
Config warnings:\n- plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest uses "ollama", entry hints "ollama-provider")
|
|
121
|
+
- plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest uses "sglang", entry hints "sglang-provider")
|
|
122
|
+
- plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses "vllm", entry hints "vllm-provider")
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
## openclaw gateway status
|
|
127
|
+
|
|
128
|
+
│
|
|
129
|
+
◇ Config warnings ────────────────────────────────────────────────────────╮
|
|
130
|
+
│ │
|
|
131
|
+
│ - plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest │
|
|
132
|
+
│ uses "ollama", entry hints "ollama-provider") │
|
|
133
|
+
│ - plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest │
|
|
134
|
+
│ uses "sglang", entry hints "sglang-provider") │
|
|
135
|
+
│ - plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses │
|
|
136
|
+
│ "vllm", entry hints "vllm-provider") │
|
|
137
|
+
│ │
|
|
138
|
+
├──────────────────────────────────────────────────────────────────────────╯
|
|
139
|
+
│
|
|
140
|
+
◇ Doctor changes ──────────────────────────────╮
|
|
141
|
+
│ │
|
|
142
|
+
│ Telegram configured, enabled automatically. │
|
|
143
|
+
│ │
|
|
144
|
+
├───────────────────────────────────────────────╯
|
|
145
|
+
│
|
|
146
|
+
◇ Doctor ──────────────────────────────────────────────╮
|
|
147
|
+
│ │
|
|
148
|
+
│ Run "openclaw doctor --fix" to apply these changes. │
|
|
149
|
+
│ │
|
|
150
|
+
├───────────────────────────────────────────────────────╯
|
|
151
|
+
Service: LaunchAgent (not loaded)
|
|
152
|
+
File logs: /tmp/openclaw/openclaw-2026-03-15.log
|
|
153
|
+
|
|
154
|
+
Config (cli): ~/.openclaw-ocbphase1/openclaw.json
|
|
155
|
+
Config (service): ~/.openclaw-ocbphase1/openclaw.json
|
|
156
|
+
|
|
157
|
+
Gateway: bind=loopback (127.0.0.1), port=19031 (env/config)
|
|
158
|
+
Probe target: ws://127.0.0.1:19031
|
|
159
|
+
Dashboard: http://127.0.0.1:19031/
|
|
160
|
+
Probe note: Loopback-only gateway; only local clients can connect.
|
|
161
|
+
|
|
162
|
+
Runtime: unknown (Bad request.
|
|
163
|
+
Could not find service "ai.openclaw.gateway" in domain for user gui: 501)
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
Troubles: run openclaw status
|
|
168
|
+
Troubleshooting: https://docs.openclaw.ai/troubleshooting
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
[stderr]
|
|
172
|
+
Config warnings:\n- plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest uses "ollama", entry hints "ollama-provider")
|
|
173
|
+
- plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest uses "sglang", entry hints "sglang-provider")
|
|
174
|
+
- plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses "vllm", entry hints "vllm-provider")
|
|
175
|
+
Config warnings:\n- plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest uses "ollama", entry hints "ollama-provider")
|
|
176
|
+
- plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest uses "sglang", entry hints "sglang-provider")
|
|
177
|
+
- plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses "vllm", entry hints "vllm-provider")
|
|
178
|
+
Config warnings:\n- plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest uses "ollama", entry hints "ollama-provider")
|
|
179
|
+
- plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest uses "sglang", entry hints "sglang-provider")
|
|
180
|
+
- plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses "vllm", entry hints "vllm-provider")
|
|
181
|
+
Config warnings:\n- plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest uses "ollama", entry hints "ollama-provider")
|
|
182
|
+
- plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest uses "sglang", entry hints "sglang-provider")
|
|
183
|
+
- plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses "vllm", entry hints "vllm-provider")
|
|
184
|
+
Service config looks out of date or non-standard.
|
|
185
|
+
Service config issue: Gateway service PATH is not set; the daemon should use a minimal PATH.
|
|
186
|
+
Recommendation: run "openclaw doctor" (or "openclaw doctor --repair").
|
|
187
|
+
RPC probe: failed
|
|
188
|
+
RPC target: ws://127.0.0.1:19031
|
|
189
|
+
gateway url override requires explicit credentials
|
|
190
|
+
Fix: pass --token or --password (or gatewayToken in tools).
|
|
191
|
+
Config: /Users/cormorantai/.openclaw-ocbphase1/openclaw.json
|
|
192
|
+
Service unit not found.
|
|
193
|
+
Service not installed. Run: openclaw gateway install
|
|
194
|
+
File logs: /tmp/openclaw/openclaw-2026-03-15.log
|
|
195
|
+
Other gateway-like services detected (best effort):
|
|
196
|
+
- com.openclawbrain.daemon.activation.0ec88212fa7d (user, plist: /Users/cormorantai/Library/LaunchAgents/com.openclawbrain.daemon.activation.0ec88212fa7d.plist)
|
|
197
|
+
- com.openclawbrain.daemon.activation.546e84bf06ac (user, plist: /Users/cormorantai/Library/LaunchAgents/com.openclawbrain.daemon.activation.546e84bf06ac.plist)
|
|
198
|
+
- com.openclawbrain.daemon.activation.b3eeb450ca08 (user, plist: /Users/cormorantai/Library/LaunchAgents/com.openclawbrain.daemon.activation.b3eeb450ca08.plist)
|
|
199
|
+
Cleanup hint: launchctl bootout gui/$UID/ai.openclaw.gateway
|
|
200
|
+
Cleanup hint: rm ~/Library/LaunchAgents/ai.openclaw.gateway.plist
|
|
201
|
+
Recommendation: run a single gateway per machine for most setups. One gateway supports multiple agents (see docs: /gateway#multiple-gateways-same-host).
|
|
202
|
+
If you need multiple gateways (e.g., a rescue bot on the same host), isolate ports + config/state (see docs: /gateway#multiple-gateways-same-host).
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
## openclaw doctor --non-interactive
|
|
207
|
+
|
|
208
|
+
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
|
|
209
|
+
██░▄▄▄░██░▄▄░██░▄▄▄██░▀██░██░▄▄▀██░████░▄▄▀██░███░██
|
|
210
|
+
██░███░██░▀▀░██░▄▄▄██░█░█░██░█████░████░▀▀░██░█░█░██
|
|
211
|
+
██░▀▀▀░██░█████░▀▀▀██░██▄░██░▀▀▄██░▀▀░█░██░██▄▀▄▀▄██
|
|
212
|
+
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
|
|
213
|
+
🦞 OPENCLAW 🦞
|
|
214
|
+
|
|
215
|
+
┌ OpenClaw doctor
|
|
216
|
+
│
|
|
217
|
+
◇ Install ─────────────────────────────────────────────────────────╮
|
|
218
|
+
│ │
|
|
219
|
+
│ - package-lock.json present in a pnpm workspace. If you ran npm │
|
|
220
|
+
│ install, remove it and reinstall with pnpm. │
|
|
221
|
+
│ │
|
|
222
|
+
├───────────────────────────────────────────────────────────────────╯
|
|
223
|
+
│
|
|
224
|
+
◇ Config warnings ────────────────────────────────────────────────────────╮
|
|
225
|
+
│ │
|
|
226
|
+
│ - plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest │
|
|
227
|
+
│ uses "ollama", entry hints "ollama-provider") │
|
|
228
|
+
│ - plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest │
|
|
229
|
+
│ uses "sglang", entry hints "sglang-provider") │
|
|
230
|
+
│ - plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses │
|
|
231
|
+
│ "vllm", entry hints "vllm-provider") │
|
|
232
|
+
│ │
|
|
233
|
+
├──────────────────────────────────────────────────────────────────────────╯
|
|
234
|
+
│
|
|
235
|
+
◇ Doctor changes ──────────────────────────────╮
|
|
236
|
+
│ │
|
|
237
|
+
│ Telegram configured, enabled automatically. │
|
|
238
|
+
│ │
|
|
239
|
+
├───────────────────────────────────────────────╯
|
|
240
|
+
│
|
|
241
|
+
◇ Doctor ──────────────────────────────────────────────╮
|
|
242
|
+
│ │
|
|
243
|
+
│ Run "openclaw doctor --fix" to apply these changes. │
|
|
244
|
+
│ │
|
|
245
|
+
├───────────────────────────────────────────────────────╯
|
|
246
|
+
│
|
|
247
|
+
◇ Gateway auth ──────────────────────────────────────────────────╮
|
|
248
|
+
│ │
|
|
249
|
+
│ Gateway auth is off or missing a token. Token auth is now the │
|
|
250
|
+
│ recommended default (including loopback). │
|
|
251
|
+
│ │
|
|
252
|
+
├─────────────────────────────────────────────────────────────────╯
|
|
253
|
+
│
|
|
254
|
+
◇ State integrity ────────────────────────────────────────────────────────╮
|
|
255
|
+
│ │
|
|
256
|
+
│ - OAuth dir not present (~/.openclaw-ocbphase1/credentials). Skipping │
|
|
257
|
+
│ create because no WhatsApp/pairing channel config is active. │
|
|
258
|
+
│ - CRITICAL: Session store dir missing │
|
|
259
|
+
│ (~/.openclaw-ocbphase1/agents/main/sessions). │
|
|
260
|
+
│ - Multiple state directories detected. This can split session history. │
|
|
261
|
+
│ - ~/.openclaw │
|
|
262
|
+
│ Active state dir: ~/.openclaw-ocbphase1 │
|
|
263
|
+
│ │
|
|
264
|
+
├──────────────────────────────────────────────────────────────────────────╯
|
|
265
|
+
│
|
|
266
|
+
◇ Other gateway-like services detected ───────────────────────────────────────╮
|
|
267
|
+
│ │
|
|
268
|
+
│ - com.openclawbrain.daemon.activation.0ec88212fa7d (user, plist: │
|
|
269
|
+
│ /Users/cormorantai/Library/LaunchAgents/com.openclawbrain.daemon.activat │
|
|
270
|
+
│ ion.0ec88212fa7d.plist) │
|
|
271
|
+
│ - com.openclawbrain.daemon.activation.546e84bf06ac (user, plist: │
|
|
272
|
+
│ /Users/cormorantai/Library/LaunchAgents/com.openclawbrain.daemon.activat │
|
|
273
|
+
│ ion.546e84bf06ac.plist) │
|
|
274
|
+
│ - com.openclawbrain.daemon.activation.b3eeb450ca08 (user, plist: │
|
|
275
|
+
│ /Users/cormorantai/Library/LaunchAgents/com.openclawbrain.daemon.activat │
|
|
276
|
+
│ ion.b3eeb450ca08.plist) │
|
|
277
|
+
│ │
|
|
278
|
+
├──────────────────────────────────────────────────────────────────────────────╯
|
|
279
|
+
│
|
|
280
|
+
◇ Cleanup hints ─────────────────────────────────────────╮
|
|
281
|
+
│ │
|
|
282
|
+
│ - launchctl bootout gui/$UID/ai.openclaw.gateway │
|
|
283
|
+
│ - rm ~/Library/LaunchAgents/ai.openclaw.gateway.plist │
|
|
284
|
+
│ │
|
|
285
|
+
├─────────────────────────────────────────────────────────╯
|
|
286
|
+
│
|
|
287
|
+
◇ Gateway recommendation ───────────────────────────────────────────────╮
|
|
288
|
+
│ │
|
|
289
|
+
│ Recommendation: run a single gateway per machine for most setups. │
|
|
290
|
+
│ One gateway supports multiple agents. │
|
|
291
|
+
│ If you need multiple gateways (e.g., a rescue bot on the same host), │
|
|
292
|
+
│ isolate ports + config/state (see docs: │
|
|
293
|
+
│ /gateway#multiple-gateways-same-host). │
|
|
294
|
+
│ │
|
|
295
|
+
├────────────────────────────────────────────────────────────────────────╯
|
|
296
|
+
│
|
|
297
|
+
◇ Security ─────────────────────────────────╮
|
|
298
|
+
│ │
|
|
299
|
+
│ - No channel security warnings detected. │
|
|
300
|
+
│ - Run: openclaw security audit --deep │
|
|
301
|
+
│ │
|
|
302
|
+
├────────────────────────────────────────────╯
|
|
303
|
+
│
|
|
304
|
+
◇ Skills status ────────────╮
|
|
305
|
+
│ │
|
|
306
|
+
│ Eligible: 9 │
|
|
307
|
+
│ Missing requirements: 43 │
|
|
308
|
+
│ Blocked by allowlist: 0 │
|
|
309
|
+
│ │
|
|
310
|
+
├────────────────────────────╯
|
|
311
|
+
│
|
|
312
|
+
◇ Plugins ──────╮
|
|
313
|
+
│ │
|
|
314
|
+
│ Loaded: 5 │
|
|
315
|
+
│ Disabled: 37 │
|
|
316
|
+
│ Errors: 0 │
|
|
317
|
+
│ │
|
|
318
|
+
├────────────────╯
|
|
319
|
+
│
|
|
320
|
+
◇ Plugin diagnostics ─────────────────────────────────────────────────────╮
|
|
321
|
+
│ │
|
|
322
|
+
│ - WARN ollama: plugin id mismatch (manifest uses "ollama", entry hints │
|
|
323
|
+
│ "ollama-provider") │
|
|
324
|
+
│ (/Users/cormorantai/opencormorant/extensions/ollama/index.ts) │
|
|
325
|
+
│ - WARN sglang: plugin id mismatch (manifest uses "sglang", entry hints │
|
|
326
|
+
│ "sglang-provider") │
|
|
327
|
+
│ (/Users/cormorantai/opencormorant/extensions/sglang/index.ts) │
|
|
328
|
+
│ - WARN vllm: plugin id mismatch (manifest uses "vllm", entry hints │
|
|
329
|
+
│ "vllm-provider") │
|
|
330
|
+
│ (/Users/cormorantai/opencormorant/extensions/vllm/index.ts) │
|
|
331
|
+
│ │
|
|
332
|
+
├──────────────────────────────────────────────────────────────────────────╯
|
|
333
|
+
│
|
|
334
|
+
◇ Gateway ──────────────╮
|
|
335
|
+
│ │
|
|
336
|
+
│ Gateway not running. │
|
|
337
|
+
│ │
|
|
338
|
+
├────────────────────────╯
|
|
339
|
+
│
|
|
340
|
+
◇ Gateway connection ───────────────────────────────────────────╮
|
|
341
|
+
│ │
|
|
342
|
+
│ Gateway target: ws://127.0.0.1:19031 │
|
|
343
|
+
│ Source: local loopback │
|
|
344
|
+
│ Config: /Users/cormorantai/.openclaw-ocbphase1/openclaw.json │
|
|
345
|
+
│ Bind: loopback │
|
|
346
|
+
│ │
|
|
347
|
+
├────────────────────────────────────────────────────────────────╯
|
|
348
|
+
│
|
|
349
|
+
◇ Gateway ────────────────────────╮
|
|
350
|
+
│ │
|
|
351
|
+
│ Gateway service not installed. │
|
|
352
|
+
│ │
|
|
353
|
+
├──────────────────────────────────╯
|
|
354
|
+
Run "openclaw doctor --fix" to apply changes.
|
|
355
|
+
│
|
|
356
|
+
└ Doctor complete.
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
[stderr]
|
|
361
|
+
Config warnings:\n- plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest uses "ollama", entry hints "ollama-provider")
|
|
362
|
+
- plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest uses "sglang", entry hints "sglang-provider")
|
|
363
|
+
- plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses "vllm", entry hints "vllm-provider")
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
## openclaw channels status --probe
|
|
368
|
+
|
|
369
|
+
│
|
|
370
|
+
◇ Config warnings ────────────────────────────────────────────────────────╮
|
|
371
|
+
│ │
|
|
372
|
+
│ - plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest │
|
|
373
|
+
│ uses "ollama", entry hints "ollama-provider") │
|
|
374
|
+
│ - plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest │
|
|
375
|
+
│ uses "sglang", entry hints "sglang-provider") │
|
|
376
|
+
│ - plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses │
|
|
377
|
+
│ "vllm", entry hints "vllm-provider") │
|
|
378
|
+
│ │
|
|
379
|
+
├──────────────────────────────────────────────────────────────────────────╯
|
|
380
|
+
│
|
|
381
|
+
◇ Doctor changes ──────────────────────────────╮
|
|
382
|
+
│ │
|
|
383
|
+
│ Telegram configured, enabled automatically. │
|
|
384
|
+
│ │
|
|
385
|
+
├───────────────────────────────────────────────╯
|
|
386
|
+
│
|
|
387
|
+
◇ Doctor ──────────────────────────────────────────────╮
|
|
388
|
+
│ │
|
|
389
|
+
│ Run "openclaw doctor --fix" to apply these changes. │
|
|
390
|
+
│ │
|
|
391
|
+
├───────────────────────────────────────────────────────╯
|
|
392
|
+
[plugins] [openclawbrain] Plugin loaded (enabled=true, db=/Users/cormorantai/.openclaw-ocbphase1/lcm.db, threshold=0.75)
|
|
393
|
+
Checking channel status (probe)…
|
|
394
|
+
Gateway not reachable; showing config-only status.
|
|
395
|
+
Config: /Users/cormorantai/.openclaw-ocbphase1/openclaw.json
|
|
396
|
+
Mode: local
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
Tip: https://docs.openclaw.ai/cli#status adds gateway health probes to status output (requires a reachable gateway).
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
[stderr]
|
|
403
|
+
Config warnings:\n- plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest uses "ollama", entry hints "ollama-provider")
|
|
404
|
+
- plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest uses "sglang", entry hints "sglang-provider")
|
|
405
|
+
- plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses "vllm", entry hints "vllm-provider")
|
|
406
|
+
Config warnings:\n- plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest uses "ollama", entry hints "ollama-provider")
|
|
407
|
+
- plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest uses "sglang", entry hints "sglang-provider")
|
|
408
|
+
- plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses "vllm", entry hints "vllm-provider")
|
|
409
|
+
[plugins] plugins.allow is empty; discovered non-bundled plugins may auto-load: openclawbrain (/Users/cormorantai/openclawbrain/index.ts). Set plugins.allow to explicit trusted ids.
|
|
410
|
+
[plugins] [brain] Teacher disabled: No model configured for LCM summarization.
|
|
411
|
+
[plugins] [brain] Embedding model is unset; learned retrieval is disabled until init/configuration is complete
|
|
412
|
+
Config warnings:\n- plugins.entries.ollama: plugin ollama: plugin id mismatch (manifest uses "ollama", entry hints "ollama-provider")
|
|
413
|
+
- plugins.entries.sglang: plugin sglang: plugin id mismatch (manifest uses "sglang", entry hints "sglang-provider")
|
|
414
|
+
- plugins.entries.vllm: plugin vllm: plugin id mismatch (manifest uses "vllm", entry hints "vllm-provider")
|
|
415
|
+
Gateway not reachable: Error: gateway closed (1006 abnormal closure (no close frame)): no close reason
|
|
416
|
+
Gateway target: ws://127.0.0.1:19031
|
|
417
|
+
Source: local loopback
|
|
418
|
+
Config: /Users/cormorantai/.openclaw-ocbphase1/openclaw.json
|
|
419
|
+
Bind: loopback
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
## file:/Users/cormorantai/.openclaw-ocbphase1/logs/config-audit.jsonl
|
|
424
|
+
|
|
425
|
+
{"ts":"2026-03-16T04:04:15.354Z","source":"config-io","event":"config.write","configPath":"/Users/cormorantai/.openclaw-ocbphase1/openclaw.json","pid":68382,"ppid":68381,"cwd":"/Users/cormorantai/openclawbrain","argv":["/opt/homebrew/Cellar/node@22/22.22.0/bin/node","/opt/homebrew/bin/openclaw","plugins","install","--link","/Users/cormorantai/openclawbrain"],"execArgv":["--disable-warning=ExperimentalWarning"],"watchMode":false,"watchSession":null,"watchCommand":null,"existsBefore":false,"previousHash":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","nextHash":"91f275980114a67741b7f7e76c22409dada3581a5c8b0d901465ee80897e5d3e","previousBytes":null,"nextBytes":693,"changedPathCount":null,"hasMetaBefore":false,"hasMetaAfter":true,"gatewayModeBefore":null,"gatewayModeAfter":null,"suspicious":[],"result":"rename"}
|
|
426
|
+
{"ts":"2026-03-16T04:05:42.764Z","source":"config-io","event":"config.write","configPath":"/Users/cormorantai/.openclaw-ocbphase1/openclaw.json","pid":68908,"ppid":68907,"cwd":"/Users/cormorantai/openclawbrain","argv":["/opt/homebrew/Cellar/node@22/22.22.0/bin/node","/opt/homebrew/bin/openclaw","plugins","install","--link","/Users/cormorantai/openclawbrain"],"execArgv":["--disable-warning=ExperimentalWarning"],"watchMode":false,"watchSession":null,"watchCommand":null,"existsBefore":true,"previousHash":"21f78c45f162e963520a409452bec17e90ecf01601f27cee9a9c80ac60fbf559","nextHash":"755ca625612a011a5343ba5340d2d861956ed45ab6405c64bb7ce8d0ff7bbb0b","previousBytes":983,"nextBytes":1042,"changedPathCount":null,"hasMetaBefore":true,"hasMetaAfter":true,"gatewayModeBefore":"local","gatewayModeAfter":"local","suspicious":[],"result":"rename"}
|
|
427
|
+
|
|
428
|
+
|