@wiimdy/openfunderse 1.1.1 → 1.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/bin/openfunderse.mjs
CHANGED
|
@@ -76,7 +76,7 @@ Examples:
|
|
|
76
76
|
openfunderse list
|
|
77
77
|
openfunderse install openfunderse-strategy --with-runtime
|
|
78
78
|
openfunderse install openfunderse-participant --with-runtime
|
|
79
|
-
openfunderse install openfunderse-strategy --codex-home /tmp/
|
|
79
|
+
openfunderse install openfunderse-strategy --codex-home /tmp/openclaw-workspace
|
|
80
80
|
openfunderse bot-init --skill-name participant --wallet-name participant-bot --yes
|
|
81
81
|
openfunderse bot-init --skill-name strategy --force
|
|
82
82
|
`);
|
|
@@ -200,7 +200,7 @@ function parseArgs(argv) {
|
|
|
200
200
|
}
|
|
201
201
|
|
|
202
202
|
function defaultCodexHome() {
|
|
203
|
-
return
|
|
203
|
+
return path.join(os.homedir(), ".openclaw", "workspace");
|
|
204
204
|
}
|
|
205
205
|
|
|
206
206
|
function ensureUnderRoot(root, target) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openfunderse-participant-pack",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"installCommand": "npx @wiimdy/openfunderse@latest install openfunderse-participant --with-runtime",
|
|
5
5
|
"description": "Standalone OpenFunderse participant skill pack.",
|
|
6
6
|
"bundles": [
|
|
@@ -56,7 +56,7 @@ npx clawhub@latest install openfunderse-strategy
|
|
|
56
56
|
2) Install runtime + generate env scaffold:
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
|
-
npx @wiimdy/openfunderse@latest install openfunderse-strategy --with-runtime
|
|
59
|
+
npm init -y && npx @wiimdy/openfunderse@latest install openfunderse-strategy --with-runtime
|
|
60
60
|
```
|
|
61
61
|
|
|
62
62
|
3) Rotate the temporary bootstrap key and write a fresh strategy wallet to env:
|