openclaw-openviking-setup-helper 0.1.0 → 0.1.1
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/cli.js +1 -1
- package/install.js +9 -2
- package/package.json +4 -3
package/cli.js
CHANGED
package/install.js
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
3
|
* OpenClaw + OpenViking cross-platform installer
|
|
4
|
-
*
|
|
5
|
-
*
|
|
4
|
+
*
|
|
5
|
+
* One-liner (after npm publish; use package name + bin name):
|
|
6
|
+
* npx -p openclaw-openviking-setup-helper ov-install [ -y ] [ --zh ]
|
|
7
|
+
* Or install globally then run:
|
|
8
|
+
* npm i -g openclaw-openviking-setup-helper
|
|
9
|
+
* ov-install
|
|
10
|
+
* openclaw-openviking-install
|
|
11
|
+
*
|
|
12
|
+
* Direct run: node install.js [ -y | --yes ] [ --zh ] [ --openviking-version=V ]
|
|
6
13
|
*
|
|
7
14
|
* Environment variables (see install.sh / install.ps1):
|
|
8
15
|
* REPO, BRANCH, OPENVIKING_INSTALL_YES, SKIP_OPENCLAW, SKIP_OPENVIKING
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-openviking-setup-helper",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Setup helper for installing OpenViking memory plugin into OpenClaw",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"openclaw-openviking-setup-helper": "cli.js",
|
|
8
|
-
"openclaw-openviking-install": "install.js"
|
|
7
|
+
"openclaw-openviking-setup-helper": "./cli.js",
|
|
8
|
+
"openclaw-openviking-install": "./install.js",
|
|
9
|
+
"ov-install": "./install.js"
|
|
9
10
|
},
|
|
10
11
|
"keywords": [
|
|
11
12
|
"openviking",
|