@yulailai/openclaw-plugin-self-growth 3.1.6
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/LICENSE +21 -0
- package/PERSONALITY.md +60 -0
- package/README.md +19 -0
- package/dist/anti-tamper.js +55 -0
- package/dist/auth-client.js +80 -0
- package/dist/chat-logger.js +86 -0
- package/dist/daily-review.js +311 -0
- package/dist/health-check.js +65 -0
- package/dist/index.js +721 -0
- package/dist/memory-manager.js +374 -0
- package/dist/payment.js +89 -0
- package/dist/preference-extractor.js +190 -0
- package/dist/setup-wizard.js +130 -0
- package/dist/skill-generator.js +259 -0
- package/dist/skill-optimizer.js +393 -0
- package/dist/sync-client.js +220 -0
- package/dist/task-tracker.js +215 -0
- package/dist/utils/logger.js +24 -0
- package/openclaw.plugin.json +85 -0
- package/package.json +376 -0
package/package.json
ADDED
|
@@ -0,0 +1,376 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@yulailai/openclaw-plugin-self-growth",
|
|
3
|
+
"version": "3.1.6",
|
|
4
|
+
"description": "让 Agent 具备自我成长、复盘与技能进化能力的插件",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"author": "Lailai",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/lailai369/self-growth.git"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/lailai369/self-growth/issues"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/lailai369/self-growth#readme",
|
|
18
|
+
"keywords": [
|
|
19
|
+
"openclaw",
|
|
20
|
+
"openclaw-plugin",
|
|
21
|
+
"self-growth",
|
|
22
|
+
"skill-generator",
|
|
23
|
+
"ai-agent",
|
|
24
|
+
"memory",
|
|
25
|
+
"reflection"
|
|
26
|
+
],
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"import": "./dist/index.js",
|
|
30
|
+
"types": "./dist/index.d.ts"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"postinstall": "node -e \"const{execSync}=require('child_process');const p=require('path');const os=require('os');const f=require('fs');const home=process.env.OPENCLAW_HOME||p.join(os.homedir(),'openclaw');const dest=p.join(home,'extensions','self-growth');f.cpSync(process.cwd(),dest,{recursive:true,filter:(src)=>/node_modules/.test(src)===false});console.log('self-growth installed to',dest)\"",
|
|
35
|
+
"build": "tsc",
|
|
36
|
+
"build:prod": "tsc && npx terser dist/index.js -o dist/index.js -c -m",
|
|
37
|
+
"dev": "tsc --watch",
|
|
38
|
+
"clean": "rm -rf dist",
|
|
39
|
+
"prebuild": "npm run clean"
|
|
40
|
+
},
|
|
41
|
+
"files": [
|
|
42
|
+
"dist",
|
|
43
|
+
"openclaw.plugin.json",
|
|
44
|
+
"PERSONALITY.md",
|
|
45
|
+
"README.md",
|
|
46
|
+
"LICENSE"
|
|
47
|
+
],
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">=18.0.0"
|
|
50
|
+
},
|
|
51
|
+
"openclaw": {
|
|
52
|
+
"extensions": [
|
|
53
|
+
"./dist/index.js"
|
|
54
|
+
],
|
|
55
|
+
"compat": {
|
|
56
|
+
"pluginApi": ">=2026.3.24-beta.2",
|
|
57
|
+
"minGatewayVersion": ">=2026.3.24-beta.2"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"peerDependencies": {
|
|
61
|
+
"openclaw": ">=2026.3.24-beta.2"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"typescript": "^5.0.0",
|
|
65
|
+
"@types/node": "^20.0.0",
|
|
66
|
+
"terser": "^5.0.0"
|
|
67
|
+
},
|
|
68
|
+
"dependencies": {
|
|
69
|
+
"abort-controller": "^3.0.0",
|
|
70
|
+
"accepts": "^2.0.0",
|
|
71
|
+
"acorn": "^8.16.0",
|
|
72
|
+
"agent-base": "^9.0.0",
|
|
73
|
+
"ajv": "^8.20.0",
|
|
74
|
+
"ajv-formats": "^3.0.1",
|
|
75
|
+
"ansi-regex": "^6.2.2",
|
|
76
|
+
"ansi-styles": "^4.3.0",
|
|
77
|
+
"any-promise": "^1.3.0",
|
|
78
|
+
"argparse": "^2.0.1",
|
|
79
|
+
"asn1.js": "^5.4.1",
|
|
80
|
+
"ast-types": "^0.13.4",
|
|
81
|
+
"balanced-match": "^4.0.4",
|
|
82
|
+
"base64-js": "^1.5.1",
|
|
83
|
+
"basic-ftp": "^5.3.1",
|
|
84
|
+
"bignumber.js": "^9.3.1",
|
|
85
|
+
"bn.js": "^4.12.3",
|
|
86
|
+
"body-parser": "^2.2.2",
|
|
87
|
+
"boolbase": "^1.0.0",
|
|
88
|
+
"bottleneck": "^2.19.5",
|
|
89
|
+
"bowser": "^2.14.1",
|
|
90
|
+
"brace-expansion": "^5.0.6",
|
|
91
|
+
"buffer-crc32": "^0.2.13",
|
|
92
|
+
"buffer-equal-constant-time": "^1.0.1",
|
|
93
|
+
"buffer-from": "^1.1.2",
|
|
94
|
+
"bytes": "^3.1.2",
|
|
95
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
96
|
+
"call-bound": "^1.0.4",
|
|
97
|
+
"camelcase": "^5.3.1",
|
|
98
|
+
"chalk": "^5.6.2",
|
|
99
|
+
"chokidar": "^5.0.0",
|
|
100
|
+
"chownr": "^3.0.0",
|
|
101
|
+
"cli-highlight": "^2.1.11",
|
|
102
|
+
"cliui": "^7.0.4",
|
|
103
|
+
"color-convert": "^2.0.1",
|
|
104
|
+
"color-name": "^1.1.4",
|
|
105
|
+
"commander": "^14.0.3",
|
|
106
|
+
"content-disposition": "^1.1.0",
|
|
107
|
+
"content-type": "^1.0.5",
|
|
108
|
+
"cookie": "^0.7.2",
|
|
109
|
+
"cookie-signature": "^1.2.2",
|
|
110
|
+
"core-util-is": "^1.0.3",
|
|
111
|
+
"cors": "^2.8.6",
|
|
112
|
+
"croner": "^10.0.1",
|
|
113
|
+
"cross-spawn": "^7.0.6",
|
|
114
|
+
"css-select": "^5.2.2",
|
|
115
|
+
"css-what": "^6.2.2",
|
|
116
|
+
"cssom": "^0.5.0",
|
|
117
|
+
"data-uri-to-buffer": "^4.0.1",
|
|
118
|
+
"debug": "^4.4.3",
|
|
119
|
+
"decamelize": "^1.2.0",
|
|
120
|
+
"define-data-property": "^1.1.4",
|
|
121
|
+
"define-properties": "^1.2.1",
|
|
122
|
+
"degenerator": "^7.0.1",
|
|
123
|
+
"depd": "^2.0.0",
|
|
124
|
+
"diff": "^8.0.4",
|
|
125
|
+
"dijkstrajs": "^1.0.3",
|
|
126
|
+
"dom-serializer": "^2.0.0",
|
|
127
|
+
"domelementtype": "^2.3.0",
|
|
128
|
+
"domhandler": "^5.0.3",
|
|
129
|
+
"domutils": "^3.2.2",
|
|
130
|
+
"dotenv": "^17.4.2",
|
|
131
|
+
"dunder-proto": "^1.0.1",
|
|
132
|
+
"ecdsa-sig-formatter": "^1.0.11",
|
|
133
|
+
"ee-first": "^1.1.1",
|
|
134
|
+
"emoji-regex": "^8.0.0",
|
|
135
|
+
"encodeurl": "^2.0.0",
|
|
136
|
+
"end-of-stream": "^1.4.5",
|
|
137
|
+
"entities": "^4.5.0",
|
|
138
|
+
"es-define-property": "^1.0.1",
|
|
139
|
+
"es-errors": "^1.3.0",
|
|
140
|
+
"es-object-atoms": "^1.1.1",
|
|
141
|
+
"escalade": "^3.2.0",
|
|
142
|
+
"escape-html": "^1.0.3",
|
|
143
|
+
"escape-string-regexp": "^4.0.0",
|
|
144
|
+
"escodegen": "^2.1.0",
|
|
145
|
+
"esprima": "^4.0.1",
|
|
146
|
+
"estraverse": "^5.3.0",
|
|
147
|
+
"esutils": "^2.0.3",
|
|
148
|
+
"etag": "^1.8.1",
|
|
149
|
+
"event-target-shim": "^5.0.1",
|
|
150
|
+
"eventsource": "^3.0.7",
|
|
151
|
+
"eventsource-parser": "^3.0.8",
|
|
152
|
+
"express": "^5.2.1",
|
|
153
|
+
"express-rate-limit": "^8.5.2",
|
|
154
|
+
"extend": "^3.0.2",
|
|
155
|
+
"extract-zip": "^2.0.1",
|
|
156
|
+
"fast-deep-equal": "^3.1.3",
|
|
157
|
+
"fast-string-truncated-width": "^3.0.3",
|
|
158
|
+
"fast-string-width": "^3.0.2",
|
|
159
|
+
"fast-uri": "^3.1.2",
|
|
160
|
+
"fast-wrap-ansi": "^0.2.0",
|
|
161
|
+
"fast-xml-builder": "^1.2.0",
|
|
162
|
+
"fast-xml-parser": "^5.7.3",
|
|
163
|
+
"fd-slicer": "^1.1.0",
|
|
164
|
+
"fetch-blob": "^3.2.0",
|
|
165
|
+
"file-type": "^22.0.1",
|
|
166
|
+
"finalhandler": "^2.1.1",
|
|
167
|
+
"find-up": "^4.1.0",
|
|
168
|
+
"formdata-polyfill": "^4.0.10",
|
|
169
|
+
"forwarded": "^0.2.0",
|
|
170
|
+
"fresh": "^2.0.0",
|
|
171
|
+
"function-bind": "^1.1.2",
|
|
172
|
+
"gaxios": "^7.1.4",
|
|
173
|
+
"gcp-metadata": "^8.1.2",
|
|
174
|
+
"get-caller-file": "^2.0.5",
|
|
175
|
+
"get-east-asian-width": "^1.6.0",
|
|
176
|
+
"get-intrinsic": "^1.3.0",
|
|
177
|
+
"get-proto": "^1.0.1",
|
|
178
|
+
"get-stream": "^5.2.0",
|
|
179
|
+
"get-uri": "^8.0.0",
|
|
180
|
+
"glob": "^13.0.6",
|
|
181
|
+
"global-agent": "^4.1.3",
|
|
182
|
+
"globalthis": "^1.0.4",
|
|
183
|
+
"google-auth-library": "^10.6.2",
|
|
184
|
+
"google-logging-utils": "^1.1.3",
|
|
185
|
+
"gopd": "^1.2.0",
|
|
186
|
+
"graceful-fs": "^4.2.11",
|
|
187
|
+
"grammy": "^1.42.0",
|
|
188
|
+
"has-flag": "^4.0.0",
|
|
189
|
+
"has-property-descriptors": "^1.0.2",
|
|
190
|
+
"has-symbols": "^1.1.0",
|
|
191
|
+
"hasown": "^2.0.3",
|
|
192
|
+
"highlight.js": "^10.7.3",
|
|
193
|
+
"hono": "^4.12.19",
|
|
194
|
+
"hosted-git-info": "^9.0.3",
|
|
195
|
+
"html-escaper": "^3.0.3",
|
|
196
|
+
"htmlparser2": "^10.1.0",
|
|
197
|
+
"http-errors": "^2.0.1",
|
|
198
|
+
"http-proxy-agent": "^9.0.0",
|
|
199
|
+
"https-proxy-agent": "^9.0.0",
|
|
200
|
+
"http_ece": "^1.2.0",
|
|
201
|
+
"iconv-lite": "^0.7.2",
|
|
202
|
+
"ieee754": "^1.2.1",
|
|
203
|
+
"ignore": "^7.0.5",
|
|
204
|
+
"immediate": "^3.0.6",
|
|
205
|
+
"inherits": "^2.0.4",
|
|
206
|
+
"ip-address": "^10.2.0",
|
|
207
|
+
"ipaddr.js": "^2.4.0",
|
|
208
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
209
|
+
"is-promise": "^4.0.0",
|
|
210
|
+
"isarray": "^1.0.0",
|
|
211
|
+
"isexe": "^2.0.0",
|
|
212
|
+
"jiti": "^2.7.0",
|
|
213
|
+
"jose": "^6.2.3",
|
|
214
|
+
"json-bigint": "^1.0.0",
|
|
215
|
+
"json-schema-to-ts": "^3.1.1",
|
|
216
|
+
"json-schema-traverse": "^1.0.0",
|
|
217
|
+
"json-schema-typed": "^8.0.2",
|
|
218
|
+
"json5": "^2.2.3",
|
|
219
|
+
"jszip": "^3.10.1",
|
|
220
|
+
"jwa": "^2.0.1",
|
|
221
|
+
"jws": "^4.0.1",
|
|
222
|
+
"koffi": "^2.16.2",
|
|
223
|
+
"kysely": "^0.29.0",
|
|
224
|
+
"lie": "^3.3.0",
|
|
225
|
+
"linkedom": "^0.18.12",
|
|
226
|
+
"linkify-it": "^5.0.0",
|
|
227
|
+
"locate-path": "^5.0.0",
|
|
228
|
+
"long": "^5.3.2",
|
|
229
|
+
"lru-cache": "^11.3.6",
|
|
230
|
+
"markdown-it": "^14.1.1",
|
|
231
|
+
"marked": "^15.0.12",
|
|
232
|
+
"matcher": "^4.0.0",
|
|
233
|
+
"math-intrinsics": "^1.1.0",
|
|
234
|
+
"mdurl": "^2.0.0",
|
|
235
|
+
"media-typer": "^1.1.0",
|
|
236
|
+
"merge-descriptors": "^2.0.0",
|
|
237
|
+
"mime-db": "^1.54.0",
|
|
238
|
+
"mime-types": "^3.0.2",
|
|
239
|
+
"minimalistic-assert": "^1.0.1",
|
|
240
|
+
"minimatch": "^10.2.5",
|
|
241
|
+
"minimist": "^1.2.8",
|
|
242
|
+
"minipass": "^7.1.3",
|
|
243
|
+
"minizlib": "^3.1.0",
|
|
244
|
+
"ms": "^2.1.3",
|
|
245
|
+
"mz": "^2.7.0",
|
|
246
|
+
"negotiator": "^1.0.0",
|
|
247
|
+
"netmask": "^2.1.1",
|
|
248
|
+
"node-addon-api": "^8.7.0",
|
|
249
|
+
"node-domexception": "^1.0.0",
|
|
250
|
+
"node-edge-tts": "^1.2.10",
|
|
251
|
+
"node-fetch": "^3.3.2",
|
|
252
|
+
"node-gyp-build": "^4.8.4",
|
|
253
|
+
"nth-check": "^2.1.1",
|
|
254
|
+
"object-assign": "^4.1.1",
|
|
255
|
+
"object-inspect": "^1.13.4",
|
|
256
|
+
"object-keys": "^1.1.1",
|
|
257
|
+
"on-finished": "^2.4.1",
|
|
258
|
+
"once": "^1.4.0",
|
|
259
|
+
"openai": "^6.37.0",
|
|
260
|
+
"openclaw": "^2026.5.12",
|
|
261
|
+
"p-limit": "^2.3.0",
|
|
262
|
+
"p-locate": "^4.1.0",
|
|
263
|
+
"p-retry": "^4.6.2",
|
|
264
|
+
"p-try": "^2.2.0",
|
|
265
|
+
"pac-proxy-agent": "^9.0.1",
|
|
266
|
+
"pac-resolver": "^9.0.1",
|
|
267
|
+
"pako": "^1.0.11",
|
|
268
|
+
"parse5": "^5.1.1",
|
|
269
|
+
"parse5-htmlparser2-tree-adapter": "^6.0.1",
|
|
270
|
+
"parseurl": "^1.3.3",
|
|
271
|
+
"partial-json": "^0.1.7",
|
|
272
|
+
"path-exists": "^4.0.0",
|
|
273
|
+
"path-expression-matcher": "^1.5.0",
|
|
274
|
+
"path-key": "^3.1.1",
|
|
275
|
+
"path-scurry": "^2.0.2",
|
|
276
|
+
"path-to-regexp": "^8.4.2",
|
|
277
|
+
"pdfjs-dist": "^5.7.284",
|
|
278
|
+
"pend": "^1.2.0",
|
|
279
|
+
"pkce-challenge": "^5.0.1",
|
|
280
|
+
"playwright-core": "^1.60.0",
|
|
281
|
+
"pngjs": "^5.0.0",
|
|
282
|
+
"process-nextick-args": "^2.0.1",
|
|
283
|
+
"proper-lockfile": "^4.1.2",
|
|
284
|
+
"protobufjs": "^7.5.8",
|
|
285
|
+
"proxy-addr": "^2.0.7",
|
|
286
|
+
"proxy-agent": "^8.0.1",
|
|
287
|
+
"proxy-from-env": "^2.1.0",
|
|
288
|
+
"pump": "^3.0.4",
|
|
289
|
+
"punycode.js": "^2.3.1",
|
|
290
|
+
"qrcode": "^1.5.4",
|
|
291
|
+
"qs": "^6.15.2",
|
|
292
|
+
"quickjs-wasi": "^2.2.0",
|
|
293
|
+
"range-parser": "^1.2.1",
|
|
294
|
+
"raw-body": "^3.0.2",
|
|
295
|
+
"readable-stream": "^2.3.8",
|
|
296
|
+
"readdirp": "^5.0.0",
|
|
297
|
+
"require-directory": "^2.1.1",
|
|
298
|
+
"require-from-string": "^2.0.2",
|
|
299
|
+
"require-main-filename": "^2.0.0",
|
|
300
|
+
"retry": "^0.13.1",
|
|
301
|
+
"router": "^2.2.0",
|
|
302
|
+
"safe-buffer": "^5.2.1",
|
|
303
|
+
"safer-buffer": "^2.1.2",
|
|
304
|
+
"semver": "^7.8.0",
|
|
305
|
+
"send": "^1.2.1",
|
|
306
|
+
"serialize-error": "^8.1.0",
|
|
307
|
+
"serve-static": "^2.2.1",
|
|
308
|
+
"set-blocking": "^2.0.0",
|
|
309
|
+
"setimmediate": "^1.0.5",
|
|
310
|
+
"setprototypeof": "^1.2.0",
|
|
311
|
+
"shebang-command": "^2.0.0",
|
|
312
|
+
"shebang-regex": "^3.0.0",
|
|
313
|
+
"side-channel": "^1.1.0",
|
|
314
|
+
"side-channel-list": "^1.0.1",
|
|
315
|
+
"side-channel-map": "^1.0.1",
|
|
316
|
+
"side-channel-weakmap": "^1.0.2",
|
|
317
|
+
"signal-exit": "^3.0.7",
|
|
318
|
+
"sisteransi": "^1.0.5",
|
|
319
|
+
"smart-buffer": "^4.2.0",
|
|
320
|
+
"socks": "^2.8.9",
|
|
321
|
+
"socks-proxy-agent": "^10.0.0",
|
|
322
|
+
"source-map": "^0.6.1",
|
|
323
|
+
"source-map-support": "^0.5.21",
|
|
324
|
+
"sqlite-vec": "^0.1.9",
|
|
325
|
+
"sqlite-vec-windows-x64": "^0.1.9",
|
|
326
|
+
"statuses": "^2.0.2",
|
|
327
|
+
"string-width": "^4.2.3",
|
|
328
|
+
"string_decoder": "^1.1.1",
|
|
329
|
+
"strip-ansi": "^7.2.0",
|
|
330
|
+
"strnum": "^2.3.0",
|
|
331
|
+
"strtok3": "^10.3.5",
|
|
332
|
+
"supports-color": "^7.2.0",
|
|
333
|
+
"tar": "^7.5.15",
|
|
334
|
+
"thenify": "^3.3.1",
|
|
335
|
+
"thenify-all": "^1.6.0",
|
|
336
|
+
"toidentifier": "^1.0.1",
|
|
337
|
+
"token-types": "^6.1.2",
|
|
338
|
+
"tokenjuice": "^0.7.0",
|
|
339
|
+
"tr46": "^0.0.3",
|
|
340
|
+
"tree-sitter-bash": "^0.25.1",
|
|
341
|
+
"ts-algebra": "^2.0.0",
|
|
342
|
+
"tslib": "^2.8.1",
|
|
343
|
+
"tslog": "^4.10.2",
|
|
344
|
+
"type-fest": "^0.20.2",
|
|
345
|
+
"type-is": "^2.1.0",
|
|
346
|
+
"typebox": "^1.1.38",
|
|
347
|
+
"uc.micro": "^2.1.0",
|
|
348
|
+
"uhyphen": "^0.2.0",
|
|
349
|
+
"uint8array-extras": "^1.5.0",
|
|
350
|
+
"undici": "^8.2.0",
|
|
351
|
+
"undici-types": "^6.21.0",
|
|
352
|
+
"unpipe": "^1.0.0",
|
|
353
|
+
"util-deprecate": "^1.0.2",
|
|
354
|
+
"uuid": "^14.0.0",
|
|
355
|
+
"vary": "^1.1.2",
|
|
356
|
+
"web-push": "^3.6.7",
|
|
357
|
+
"web-streams-polyfill": "^3.3.3",
|
|
358
|
+
"web-tree-sitter": "^0.26.8",
|
|
359
|
+
"webidl-conversions": "^3.0.1",
|
|
360
|
+
"whatwg-url": "^5.0.0",
|
|
361
|
+
"which": "^2.0.2",
|
|
362
|
+
"which-module": "^2.0.1",
|
|
363
|
+
"wrap-ansi": "^7.0.0",
|
|
364
|
+
"wrappy": "^1.0.2",
|
|
365
|
+
"ws": "^8.20.0",
|
|
366
|
+
"xml-naming": "^0.1.0",
|
|
367
|
+
"y18n": "^5.0.8",
|
|
368
|
+
"yallist": "^5.0.0",
|
|
369
|
+
"yaml": "^2.9.0",
|
|
370
|
+
"yargs": "^16.2.0",
|
|
371
|
+
"yargs-parser": "^20.2.9",
|
|
372
|
+
"yauzl": "^2.10.0",
|
|
373
|
+
"zod": "^4.4.3",
|
|
374
|
+
"zod-to-json-schema": "^3.25.2"
|
|
375
|
+
}
|
|
376
|
+
}
|