@gianfrancopiana/openclaw-autoresearch 1.0.7 → 1.0.8
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/README.md +1 -0
- package/RELEASING.md +9 -3
- package/openclaw.plugin.json +1 -1
- package/package.json +10 -3
package/README.md
CHANGED
|
@@ -129,6 +129,7 @@ npm test
|
|
|
129
129
|
npm run validate
|
|
130
130
|
npm run release:verify
|
|
131
131
|
npm run smoke:openclaw-host -- /absolute/path/to/openclaw
|
|
132
|
+
npm run smoke:registry-openclaw-host -- <published-version> /absolute/path/to/openclaw
|
|
132
133
|
```
|
|
133
134
|
|
|
134
135
|
Release instructions, including npm 2FA publishing, live in [`RELEASING.md`](RELEASING.md).
|
package/RELEASING.md
CHANGED
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
npm run release:verify
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
CI runs the same release verification,
|
|
27
|
-
publish
|
|
26
|
+
CI runs the same release verification, and `prepublishOnly` runs it again
|
|
27
|
+
before `npm publish`.
|
|
28
28
|
|
|
29
29
|
3. Smoke-test against a current local OpenClaw checkout:
|
|
30
30
|
|
|
@@ -40,7 +40,13 @@
|
|
|
40
40
|
|
|
41
41
|
Replace `123456` with the current code from your authenticator app.
|
|
42
42
|
|
|
43
|
-
5. Verify
|
|
43
|
+
5. Verify the published registry tarball against the same host:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
npm run smoke:registry-openclaw-host -- <published-version> /absolute/path/to/openclaw
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
6. Verify install:
|
|
44
50
|
|
|
45
51
|
```bash
|
|
46
52
|
openclaw plugins install @gianfrancopiana/openclaw-autoresearch
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gianfrancopiana/openclaw-autoresearch",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Faithful OpenClaw port of pi-autoresearch.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.ts",
|
|
@@ -11,7 +11,9 @@
|
|
|
11
11
|
"test": "vitest run",
|
|
12
12
|
"validate": "npm run check:release-metadata && npm run typecheck && npm run test",
|
|
13
13
|
"release:verify": "npm run validate && npm pack --dry-run",
|
|
14
|
-
"
|
|
14
|
+
"prepublishOnly": "npm run release:verify",
|
|
15
|
+
"smoke:openclaw-host": "node ./scripts/smoke-openclaw-host.mjs",
|
|
16
|
+
"smoke:registry-openclaw-host": "node ./scripts/smoke-openclaw-registry.mjs"
|
|
15
17
|
},
|
|
16
18
|
"keywords": [
|
|
17
19
|
"openclaw",
|
|
@@ -50,7 +52,12 @@
|
|
|
50
52
|
"@sinclair/typebox": "0.34.48"
|
|
51
53
|
},
|
|
52
54
|
"peerDependencies": {
|
|
53
|
-
"openclaw": "
|
|
55
|
+
"openclaw": ">=2026.4.25"
|
|
56
|
+
},
|
|
57
|
+
"peerDependenciesMeta": {
|
|
58
|
+
"openclaw": {
|
|
59
|
+
"optional": true
|
|
60
|
+
}
|
|
54
61
|
},
|
|
55
62
|
"publishConfig": {
|
|
56
63
|
"access": "public"
|