clawprobe 0.1.0 → 0.1.2
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/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
1
|
+
#!/usr/bin/env -S node --disable-warning=ExperimentalWarning
|
|
2
2
|
import { Command } from "commander";
|
|
3
3
|
import { resolveConfig, assertOpenClawExists } from "./core/config.js";
|
|
4
4
|
import { startDaemon } from "./daemon.js";
|
|
@@ -9,7 +9,7 @@ import { runCompacts } from "./cli/commands/compacts.js";
|
|
|
9
9
|
import { runContext } from "./cli/commands/context.js";
|
|
10
10
|
import { runSuggest } from "./cli/commands/suggest.js";
|
|
11
11
|
import { runMemoryList, runMemorySearch, runMemoryAdd, runMemoryEdit, runMemoryDelete, runMemorySaveCompact, } from "./cli/commands/memory.js";
|
|
12
|
-
const VERSION = "0.1.
|
|
12
|
+
const VERSION = "0.1.2";
|
|
13
13
|
const program = new Command();
|
|
14
14
|
program
|
|
15
15
|
.name("clawprobe")
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clawprobe",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "The missing observability layer for OpenClaw agents",
|
|
5
5
|
"keywords": ["openclaw", "ai-agent", "context", "observability", "llm"],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"files": ["dist", "README.md"],
|
|
9
9
|
"bin": {
|
|
10
|
-
"clawprobe": "
|
|
10
|
+
"clawprobe": "dist/index.js"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
13
|
"prepublishOnly": "npm run build",
|