commanderclaw 1.1.13 → 1.1.14
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/utils.js +4 -0
- package/dist/plugin/index.d.ts +1 -1
- package/package.json +4 -2
package/dist/cli/utils.js
CHANGED
|
@@ -21,6 +21,10 @@ export function getPlatforms() {
|
|
|
21
21
|
configPath: path.join(homeDir, '.openclaw', 'openclaw.json'),
|
|
22
22
|
extDir: path.join(homeDir, '.openclaw', 'extensions'),
|
|
23
23
|
detectFunc: () => {
|
|
24
|
+
const configDir = path.join(homeDir, '.openclaw');
|
|
25
|
+
if (fs.existsSync(configDir)) {
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
24
28
|
try {
|
|
25
29
|
require('child_process').execSync('which openclaw', { stdio: 'ignore' });
|
|
26
30
|
return true;
|
package/dist/plugin/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "commanderclaw",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.14",
|
|
4
4
|
"description": "Multi-device Agent Coordination Framework - CLI and OpenClaw/QClaw Plugin",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -48,7 +48,8 @@
|
|
|
48
48
|
"node": ">=18.0.0"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@sinclair/typebox": "^0.32.0"
|
|
51
|
+
"@sinclair/typebox": "^0.32.0",
|
|
52
|
+
"commanderclaw": "^1.1.13"
|
|
52
53
|
},
|
|
53
54
|
"devDependencies": {
|
|
54
55
|
"@rollup/plugin-commonjs": "^29.0.2",
|
|
@@ -58,6 +59,7 @@
|
|
|
58
59
|
"@types/node": "^20.0.0",
|
|
59
60
|
"@types/ws": "^8.5.0",
|
|
60
61
|
"rollup": "^4.59.0",
|
|
62
|
+
"tslib": "^2.8.1",
|
|
61
63
|
"typescript": "^5.0.0"
|
|
62
64
|
},
|
|
63
65
|
"openclaw": {
|