yxyl-cli-plugin 0.2.21 → 0.2.22
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/lib/controller.mjs +15 -15
- package/package.json +1 -1
- package/release.json +151 -121
package/lib/controller.mjs
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import path from 'node:path';
|
|
2
|
-
import {realpath} from 'node:fs/promises';
|
|
3
|
-
import {validateRelease,fail} from './model.mjs';
|
|
4
|
-
import {download} from './download.mjs';
|
|
5
|
-
import {extractVerified} from './archive.mjs';
|
|
6
|
-
import {verifyCache,withInstallLock,commitCache} from './cache.mjs';
|
|
7
|
-
export async function ensureRuntime({release,version,platform,home,signal,transport=download}){
|
|
8
|
-
const item=validateRelease(release,version,platform),target=path.join(home,'runtime','versions',version,platform);
|
|
9
|
-
return withInstallLock(home,`${version}-${platform}`,signal,async()=>{
|
|
10
|
-
if(await verifyCache(target,item))return realpath(target);
|
|
11
|
-
let bytes;for(const url of item.urls){signal?.throwIfAborted();try{bytes=await transport(url,item,release.redirectHosts,signal);break;}catch(error){if(signal?.aborted)throw error;}}
|
|
12
|
-
if(!bytes)fail('DOWNLOAD_FAILED','无法下载当前版本运行包;检查网络后重试,业务尚未执行。');
|
|
13
|
-
const files=extractVerified(bytes,item);return commitCache(home,version,platform,item,files,signal);
|
|
14
|
-
});
|
|
15
|
-
}
|
|
1
|
+
import path from 'node:path';
|
|
2
|
+
import {realpath} from 'node:fs/promises';
|
|
3
|
+
import {validateRelease,fail} from './model.mjs';
|
|
4
|
+
import {download} from './download.mjs';
|
|
5
|
+
import {extractVerified} from './archive.mjs';
|
|
6
|
+
import {verifyCache,withInstallLock,commitCache} from './cache.mjs';
|
|
7
|
+
export async function ensureRuntime({release,version,platform,home,signal,transport=download}){
|
|
8
|
+
const item=validateRelease(release,version,platform),target=path.join(home,'runtime','versions',version,platform);
|
|
9
|
+
return withInstallLock(home,`${version}-${platform}`,signal,async()=>{
|
|
10
|
+
if(await verifyCache(target,item))return realpath(target);
|
|
11
|
+
let bytes;for(const url of item.urls){signal?.throwIfAborted();try{bytes=await transport(url,item,release.redirectHosts,signal);break;}catch(error){if(signal?.aborted)throw error;}}
|
|
12
|
+
if(!bytes)fail('DOWNLOAD_FAILED','无法下载当前版本运行包;检查网络后重试,业务尚未执行。');
|
|
13
|
+
const files=extractVerified(bytes,item);return commitCache(home,version,platform,item,files,signal);
|
|
14
|
+
});
|
|
15
|
+
}
|
package/package.json
CHANGED
package/release.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"packageName": "yxyl-cli-plugin",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.22",
|
|
5
5
|
"runtimeProtocol": 1,
|
|
6
6
|
"bridgeUpgradeProtocol": 1,
|
|
7
|
-
"sourceCommit": "
|
|
7
|
+
"sourceCommit": "d6b3a818ff30b2af4fd930677c4db4106e404d46",
|
|
8
8
|
"redirectHosts": [
|
|
9
9
|
"release-assets.githubusercontent.com"
|
|
10
10
|
],
|
|
11
11
|
"platforms": {
|
|
12
|
-
"
|
|
12
|
+
"darwin-arm64": {
|
|
13
13
|
"urls": [
|
|
14
|
-
"https://github.com/areter/yxyl-cli-plugin-releases/releases/download/v0.2.
|
|
14
|
+
"https://github.com/areter/yxyl-cli-plugin-releases/releases/download/v0.2.22/yxyl-runtime-0.2.22-darwin-arm64.zip"
|
|
15
15
|
],
|
|
16
|
-
"size":
|
|
17
|
-
"sha256": "
|
|
16
|
+
"size": 9782559,
|
|
17
|
+
"sha256": "4686b2774710d9eaa3a807419858c7971c0947ba9dc88e08a7977ab39741621c",
|
|
18
18
|
"files": {
|
|
19
19
|
"runtime/skills.json": {
|
|
20
|
-
"size":
|
|
21
|
-
"sha256": "
|
|
20
|
+
"size": 1584,
|
|
21
|
+
"sha256": "38be78df5699a97063d613467807bae24e95891ca54ccf7d4ac44296ab79d013",
|
|
22
22
|
"executable": false
|
|
23
23
|
},
|
|
24
24
|
"skills/framework-demo/SKILL.md": {
|
|
@@ -27,18 +27,28 @@
|
|
|
27
27
|
"executable": false
|
|
28
28
|
},
|
|
29
29
|
"skills/okki-mail-draft/SKILL.md": {
|
|
30
|
-
"size":
|
|
31
|
-
"sha256": "
|
|
30
|
+
"size": 21805,
|
|
31
|
+
"sha256": "ff85bcb474f8833f88c10d70b14fdbd00e30697e8e85a30246772ceab345edea",
|
|
32
|
+
"executable": false
|
|
33
|
+
},
|
|
34
|
+
"skills/okki-mail-draft/references/verification-handoff.md": {
|
|
35
|
+
"size": 4492,
|
|
36
|
+
"sha256": "70b1a20dfb3a1dbb73bc1deff52648aafe26fecde91a72079943378bffc3135e",
|
|
32
37
|
"executable": false
|
|
33
38
|
},
|
|
34
39
|
"skills/okki-prospect-research/SKILL.md": {
|
|
35
|
-
"size":
|
|
36
|
-
"sha256": "
|
|
40
|
+
"size": 14895,
|
|
41
|
+
"sha256": "1f4a7427a561ce1aa4f6ef95ef299f6d73b0d7603a3f19615764017da1bbc372",
|
|
42
|
+
"executable": false
|
|
43
|
+
},
|
|
44
|
+
"skills/okki-prospect-research/references/local-crawl4ai-fallback.md": {
|
|
45
|
+
"size": 11466,
|
|
46
|
+
"sha256": "472ea5116674403a566989bb75093fd1dba9490efe1fa98229a61c16c13e312e",
|
|
37
47
|
"executable": false
|
|
38
48
|
},
|
|
39
49
|
"skills/okki-prospect-research/references/personalized-email.md": {
|
|
40
|
-
"size":
|
|
41
|
-
"sha256": "
|
|
50
|
+
"size": 2239,
|
|
51
|
+
"sha256": "384b27fbff75f61aa0725b13142e1d933a91e9e80c42d75a718c4792890ecc47",
|
|
42
52
|
"executable": false
|
|
43
53
|
},
|
|
44
54
|
"skills/yxyl-setup/SKILL.md": {
|
|
@@ -52,33 +62,33 @@
|
|
|
52
62
|
"executable": false
|
|
53
63
|
},
|
|
54
64
|
"resources/licenses/agent-browser-cli-MIT.txt": {
|
|
55
|
-
"size":
|
|
56
|
-
"sha256": "
|
|
65
|
+
"size": 1094,
|
|
66
|
+
"sha256": "54a091894e8e650f0299456a7f4d5020e014c480faecb4f56ee601cddda7d09d",
|
|
57
67
|
"executable": false
|
|
58
68
|
},
|
|
59
69
|
"tools/crawl4ai/server.py": {
|
|
60
|
-
"size":
|
|
61
|
-
"sha256": "
|
|
70
|
+
"size": 231,
|
|
71
|
+
"sha256": "cd4d449d6e44a859ca3329279cf6312657324ce173d4d26678f68c31888f764c",
|
|
62
72
|
"executable": false
|
|
63
73
|
},
|
|
64
74
|
"tools/crawl4ai/models.py": {
|
|
65
|
-
"size":
|
|
66
|
-
"sha256": "
|
|
75
|
+
"size": 797,
|
|
76
|
+
"sha256": "4c296e8bfd12eb0244bbfe605f521454eeca6aa68907dc2d9c0d0463be599755",
|
|
67
77
|
"executable": false
|
|
68
78
|
},
|
|
69
79
|
"tools/crawl4ai/controllers.py": {
|
|
70
|
-
"size":
|
|
71
|
-
"sha256": "
|
|
80
|
+
"size": 2990,
|
|
81
|
+
"sha256": "17db95efecf2792bf800c757c79ef85011e45591c5a2516aa99b177ad0962545",
|
|
72
82
|
"executable": false
|
|
73
83
|
},
|
|
74
84
|
"tools/crawl4ai/page_quality.py": {
|
|
75
|
-
"size":
|
|
76
|
-
"sha256": "
|
|
85
|
+
"size": 366,
|
|
86
|
+
"sha256": "6cb7a33c37b6f8399473c69ac945dfb3047219b125d306f53e7f5d99b8355a76",
|
|
77
87
|
"executable": false
|
|
78
88
|
},
|
|
79
89
|
"tools/crawl4ai/browser_service.py": {
|
|
80
|
-
"size":
|
|
81
|
-
"sha256": "
|
|
90
|
+
"size": 5925,
|
|
91
|
+
"sha256": "a3783f66ab0619a2d9589f3a534db6b56b23b7ee92bbc31a7e3e48697326920e",
|
|
82
92
|
"executable": false
|
|
83
93
|
},
|
|
84
94
|
"tools/crawl4ai/requirements-lock.txt": {
|
|
@@ -88,51 +98,51 @@
|
|
|
88
98
|
},
|
|
89
99
|
"package.json": {
|
|
90
100
|
"size": 61,
|
|
91
|
-
"sha256": "
|
|
101
|
+
"sha256": "76f61e1318a700145ccf446c838bf80233c1d4184ed72ae4f146d49fae60faa0",
|
|
92
102
|
"executable": false
|
|
93
103
|
},
|
|
94
104
|
"runtime/native-manifest.json": {
|
|
95
|
-
"size":
|
|
96
|
-
"sha256": "
|
|
105
|
+
"size": 806,
|
|
106
|
+
"sha256": "7e2fc4da5886f54bf592d9a52cc0000bbe3b2e0650a62c95e6eec63ad576cae0",
|
|
97
107
|
"executable": false
|
|
98
108
|
},
|
|
99
|
-
"native-bin/
|
|
100
|
-
"size":
|
|
101
|
-
"sha256": "
|
|
109
|
+
"native-bin/darwin-arm64/yxyl": {
|
|
110
|
+
"size": 4846160,
|
|
111
|
+
"sha256": "97b483f46296043c91e6ddc6f4c0257d6c41379063443e1a5c48929d5615902d",
|
|
102
112
|
"executable": true
|
|
103
113
|
},
|
|
104
|
-
"native-bin/
|
|
105
|
-
"size":
|
|
106
|
-
"sha256": "
|
|
114
|
+
"native-bin/darwin-arm64/yxyl-bridge": {
|
|
115
|
+
"size": 3696576,
|
|
116
|
+
"sha256": "311b5eb1e877395afc4250d3d38a0590b0cd6f31c9699776490dcf9d6977f2a3",
|
|
107
117
|
"executable": true
|
|
108
118
|
},
|
|
109
|
-
"native-bin/
|
|
110
|
-
"size":
|
|
111
|
-
"sha256": "
|
|
119
|
+
"native-bin/darwin-arm64/yxyl-framework-demo": {
|
|
120
|
+
"size": 475008,
|
|
121
|
+
"sha256": "5ed64e199b5f2e476579f0935e278a573acc1fc740c0a1bfdb59c673bfe238ad",
|
|
112
122
|
"executable": true
|
|
113
123
|
},
|
|
114
|
-
"native-bin/
|
|
115
|
-
"size":
|
|
116
|
-
"sha256": "
|
|
124
|
+
"native-bin/darwin-arm64/yxyl-okki-mail-draft": {
|
|
125
|
+
"size": 5226016,
|
|
126
|
+
"sha256": "ee3e9786f00c6ac62ea9e644e6cb056c6c4cc2f8bddcf481cd327d35854abb16",
|
|
117
127
|
"executable": true
|
|
118
128
|
},
|
|
119
|
-
"native-bin/
|
|
120
|
-
"size":
|
|
121
|
-
"sha256": "
|
|
129
|
+
"native-bin/darwin-arm64/yxyl-okki-prospect-research": {
|
|
130
|
+
"size": 6321632,
|
|
131
|
+
"sha256": "304c906920835cdb469f5dff17da2e4cb7595b405d827254246f8e37c9ad27f1",
|
|
122
132
|
"executable": true
|
|
123
133
|
}
|
|
124
134
|
}
|
|
125
135
|
},
|
|
126
136
|
"darwin-x64": {
|
|
127
137
|
"urls": [
|
|
128
|
-
"https://github.com/areter/yxyl-cli-plugin-releases/releases/download/v0.2.
|
|
138
|
+
"https://github.com/areter/yxyl-cli-plugin-releases/releases/download/v0.2.22/yxyl-runtime-0.2.22-darwin-x64.zip"
|
|
129
139
|
],
|
|
130
|
-
"size":
|
|
131
|
-
"sha256": "
|
|
140
|
+
"size": 10551666,
|
|
141
|
+
"sha256": "aeeb11fc30438151d3a52ece5d8828812ba98634b99af29287cdbb96479aa7f0",
|
|
132
142
|
"files": {
|
|
133
143
|
"runtime/skills.json": {
|
|
134
|
-
"size":
|
|
135
|
-
"sha256": "
|
|
144
|
+
"size": 1584,
|
|
145
|
+
"sha256": "38be78df5699a97063d613467807bae24e95891ca54ccf7d4ac44296ab79d013",
|
|
136
146
|
"executable": false
|
|
137
147
|
},
|
|
138
148
|
"skills/framework-demo/SKILL.md": {
|
|
@@ -141,18 +151,28 @@
|
|
|
141
151
|
"executable": false
|
|
142
152
|
},
|
|
143
153
|
"skills/okki-mail-draft/SKILL.md": {
|
|
144
|
-
"size":
|
|
145
|
-
"sha256": "
|
|
154
|
+
"size": 21805,
|
|
155
|
+
"sha256": "ff85bcb474f8833f88c10d70b14fdbd00e30697e8e85a30246772ceab345edea",
|
|
156
|
+
"executable": false
|
|
157
|
+
},
|
|
158
|
+
"skills/okki-mail-draft/references/verification-handoff.md": {
|
|
159
|
+
"size": 4492,
|
|
160
|
+
"sha256": "70b1a20dfb3a1dbb73bc1deff52648aafe26fecde91a72079943378bffc3135e",
|
|
146
161
|
"executable": false
|
|
147
162
|
},
|
|
148
163
|
"skills/okki-prospect-research/SKILL.md": {
|
|
149
|
-
"size":
|
|
150
|
-
"sha256": "
|
|
164
|
+
"size": 14895,
|
|
165
|
+
"sha256": "1f4a7427a561ce1aa4f6ef95ef299f6d73b0d7603a3f19615764017da1bbc372",
|
|
166
|
+
"executable": false
|
|
167
|
+
},
|
|
168
|
+
"skills/okki-prospect-research/references/local-crawl4ai-fallback.md": {
|
|
169
|
+
"size": 11466,
|
|
170
|
+
"sha256": "472ea5116674403a566989bb75093fd1dba9490efe1fa98229a61c16c13e312e",
|
|
151
171
|
"executable": false
|
|
152
172
|
},
|
|
153
173
|
"skills/okki-prospect-research/references/personalized-email.md": {
|
|
154
|
-
"size":
|
|
155
|
-
"sha256": "
|
|
174
|
+
"size": 2239,
|
|
175
|
+
"sha256": "384b27fbff75f61aa0725b13142e1d933a91e9e80c42d75a718c4792890ecc47",
|
|
156
176
|
"executable": false
|
|
157
177
|
},
|
|
158
178
|
"skills/yxyl-setup/SKILL.md": {
|
|
@@ -166,33 +186,33 @@
|
|
|
166
186
|
"executable": false
|
|
167
187
|
},
|
|
168
188
|
"resources/licenses/agent-browser-cli-MIT.txt": {
|
|
169
|
-
"size":
|
|
170
|
-
"sha256": "
|
|
189
|
+
"size": 1094,
|
|
190
|
+
"sha256": "54a091894e8e650f0299456a7f4d5020e014c480faecb4f56ee601cddda7d09d",
|
|
171
191
|
"executable": false
|
|
172
192
|
},
|
|
173
193
|
"tools/crawl4ai/server.py": {
|
|
174
|
-
"size":
|
|
175
|
-
"sha256": "
|
|
194
|
+
"size": 231,
|
|
195
|
+
"sha256": "cd4d449d6e44a859ca3329279cf6312657324ce173d4d26678f68c31888f764c",
|
|
176
196
|
"executable": false
|
|
177
197
|
},
|
|
178
198
|
"tools/crawl4ai/models.py": {
|
|
179
|
-
"size":
|
|
180
|
-
"sha256": "
|
|
199
|
+
"size": 797,
|
|
200
|
+
"sha256": "4c296e8bfd12eb0244bbfe605f521454eeca6aa68907dc2d9c0d0463be599755",
|
|
181
201
|
"executable": false
|
|
182
202
|
},
|
|
183
203
|
"tools/crawl4ai/controllers.py": {
|
|
184
|
-
"size":
|
|
185
|
-
"sha256": "
|
|
204
|
+
"size": 2990,
|
|
205
|
+
"sha256": "17db95efecf2792bf800c757c79ef85011e45591c5a2516aa99b177ad0962545",
|
|
186
206
|
"executable": false
|
|
187
207
|
},
|
|
188
208
|
"tools/crawl4ai/page_quality.py": {
|
|
189
|
-
"size":
|
|
190
|
-
"sha256": "
|
|
209
|
+
"size": 366,
|
|
210
|
+
"sha256": "6cb7a33c37b6f8399473c69ac945dfb3047219b125d306f53e7f5d99b8355a76",
|
|
191
211
|
"executable": false
|
|
192
212
|
},
|
|
193
213
|
"tools/crawl4ai/browser_service.py": {
|
|
194
|
-
"size":
|
|
195
|
-
"sha256": "
|
|
214
|
+
"size": 5925,
|
|
215
|
+
"sha256": "a3783f66ab0619a2d9589f3a534db6b56b23b7ee92bbc31a7e3e48697326920e",
|
|
196
216
|
"executable": false
|
|
197
217
|
},
|
|
198
218
|
"tools/crawl4ai/requirements-lock.txt": {
|
|
@@ -202,51 +222,51 @@
|
|
|
202
222
|
},
|
|
203
223
|
"package.json": {
|
|
204
224
|
"size": 61,
|
|
205
|
-
"sha256": "
|
|
225
|
+
"sha256": "76f61e1318a700145ccf446c838bf80233c1d4184ed72ae4f146d49fae60faa0",
|
|
206
226
|
"executable": false
|
|
207
227
|
},
|
|
208
228
|
"runtime/native-manifest.json": {
|
|
209
229
|
"size": 794,
|
|
210
|
-
"sha256": "
|
|
230
|
+
"sha256": "5d275add69407124a99450e031d6f7b3c5fc6d3a9584a5289a89cea89953b6f1",
|
|
211
231
|
"executable": false
|
|
212
232
|
},
|
|
213
233
|
"native-bin/darwin-x64/yxyl": {
|
|
214
|
-
"size":
|
|
215
|
-
"sha256": "
|
|
234
|
+
"size": 5093384,
|
|
235
|
+
"sha256": "1bc87b0352fbc13ec1f74b127920fee7a69b01111eead46a2957c5a8e75e5b8d",
|
|
216
236
|
"executable": true
|
|
217
237
|
},
|
|
218
238
|
"native-bin/darwin-x64/yxyl-bridge": {
|
|
219
|
-
"size":
|
|
220
|
-
"sha256": "
|
|
239
|
+
"size": 3815480,
|
|
240
|
+
"sha256": "14cd08f6133ad9a48c64b6bae639a806df84571f02baa43067cf2ae33673f5ae",
|
|
221
241
|
"executable": true
|
|
222
242
|
},
|
|
223
243
|
"native-bin/darwin-x64/yxyl-framework-demo": {
|
|
224
|
-
"size":
|
|
225
|
-
"sha256": "
|
|
244
|
+
"size": 487808,
|
|
245
|
+
"sha256": "8d5bafaec8228203506d984f3289715c2a3246acb0bbd0ea68713a5b4b61db5a",
|
|
226
246
|
"executable": true
|
|
227
247
|
},
|
|
228
248
|
"native-bin/darwin-x64/yxyl-okki-mail-draft": {
|
|
229
|
-
"size":
|
|
230
|
-
"sha256": "
|
|
249
|
+
"size": 5510960,
|
|
250
|
+
"sha256": "757c50211ea1138b8503c0468d5daae27f25939d507d3e043a1838272ee7ab9a",
|
|
231
251
|
"executable": true
|
|
232
252
|
},
|
|
233
253
|
"native-bin/darwin-x64/yxyl-okki-prospect-research": {
|
|
234
|
-
"size":
|
|
235
|
-
"sha256": "
|
|
254
|
+
"size": 6696736,
|
|
255
|
+
"sha256": "5dfb49503cc34e534abb47e638a852f2487879da6aed99a0dbb9e4fda5198f5d",
|
|
236
256
|
"executable": true
|
|
237
257
|
}
|
|
238
258
|
}
|
|
239
259
|
},
|
|
240
|
-
"
|
|
260
|
+
"win32-x64": {
|
|
241
261
|
"urls": [
|
|
242
|
-
"https://github.com/areter/yxyl-cli-plugin-releases/releases/download/v0.2.
|
|
262
|
+
"https://github.com/areter/yxyl-cli-plugin-releases/releases/download/v0.2.22/yxyl-runtime-0.2.22-win32-x64.zip"
|
|
243
263
|
],
|
|
244
|
-
"size":
|
|
245
|
-
"sha256": "
|
|
264
|
+
"size": 10194605,
|
|
265
|
+
"sha256": "1a5d9eb3144deb36ab0c030aa2e60f50b0866e8605be110a307f4a42f17c978e",
|
|
246
266
|
"files": {
|
|
247
267
|
"runtime/skills.json": {
|
|
248
|
-
"size":
|
|
249
|
-
"sha256": "
|
|
268
|
+
"size": 1584,
|
|
269
|
+
"sha256": "38be78df5699a97063d613467807bae24e95891ca54ccf7d4ac44296ab79d013",
|
|
250
270
|
"executable": false
|
|
251
271
|
},
|
|
252
272
|
"skills/framework-demo/SKILL.md": {
|
|
@@ -255,18 +275,28 @@
|
|
|
255
275
|
"executable": false
|
|
256
276
|
},
|
|
257
277
|
"skills/okki-mail-draft/SKILL.md": {
|
|
258
|
-
"size":
|
|
259
|
-
"sha256": "
|
|
278
|
+
"size": 21805,
|
|
279
|
+
"sha256": "ff85bcb474f8833f88c10d70b14fdbd00e30697e8e85a30246772ceab345edea",
|
|
280
|
+
"executable": false
|
|
281
|
+
},
|
|
282
|
+
"skills/okki-mail-draft/references/verification-handoff.md": {
|
|
283
|
+
"size": 4492,
|
|
284
|
+
"sha256": "70b1a20dfb3a1dbb73bc1deff52648aafe26fecde91a72079943378bffc3135e",
|
|
260
285
|
"executable": false
|
|
261
286
|
},
|
|
262
287
|
"skills/okki-prospect-research/SKILL.md": {
|
|
263
|
-
"size":
|
|
264
|
-
"sha256": "
|
|
288
|
+
"size": 14895,
|
|
289
|
+
"sha256": "1f4a7427a561ce1aa4f6ef95ef299f6d73b0d7603a3f19615764017da1bbc372",
|
|
290
|
+
"executable": false
|
|
291
|
+
},
|
|
292
|
+
"skills/okki-prospect-research/references/local-crawl4ai-fallback.md": {
|
|
293
|
+
"size": 11466,
|
|
294
|
+
"sha256": "472ea5116674403a566989bb75093fd1dba9490efe1fa98229a61c16c13e312e",
|
|
265
295
|
"executable": false
|
|
266
296
|
},
|
|
267
297
|
"skills/okki-prospect-research/references/personalized-email.md": {
|
|
268
|
-
"size":
|
|
269
|
-
"sha256": "
|
|
298
|
+
"size": 2239,
|
|
299
|
+
"sha256": "384b27fbff75f61aa0725b13142e1d933a91e9e80c42d75a718c4792890ecc47",
|
|
270
300
|
"executable": false
|
|
271
301
|
},
|
|
272
302
|
"skills/yxyl-setup/SKILL.md": {
|
|
@@ -280,33 +310,33 @@
|
|
|
280
310
|
"executable": false
|
|
281
311
|
},
|
|
282
312
|
"resources/licenses/agent-browser-cli-MIT.txt": {
|
|
283
|
-
"size":
|
|
284
|
-
"sha256": "
|
|
313
|
+
"size": 1094,
|
|
314
|
+
"sha256": "54a091894e8e650f0299456a7f4d5020e014c480faecb4f56ee601cddda7d09d",
|
|
285
315
|
"executable": false
|
|
286
316
|
},
|
|
287
317
|
"tools/crawl4ai/server.py": {
|
|
288
|
-
"size":
|
|
289
|
-
"sha256": "
|
|
318
|
+
"size": 231,
|
|
319
|
+
"sha256": "cd4d449d6e44a859ca3329279cf6312657324ce173d4d26678f68c31888f764c",
|
|
290
320
|
"executable": false
|
|
291
321
|
},
|
|
292
322
|
"tools/crawl4ai/models.py": {
|
|
293
|
-
"size":
|
|
294
|
-
"sha256": "
|
|
323
|
+
"size": 797,
|
|
324
|
+
"sha256": "4c296e8bfd12eb0244bbfe605f521454eeca6aa68907dc2d9c0d0463be599755",
|
|
295
325
|
"executable": false
|
|
296
326
|
},
|
|
297
327
|
"tools/crawl4ai/controllers.py": {
|
|
298
|
-
"size":
|
|
299
|
-
"sha256": "
|
|
328
|
+
"size": 2990,
|
|
329
|
+
"sha256": "17db95efecf2792bf800c757c79ef85011e45591c5a2516aa99b177ad0962545",
|
|
300
330
|
"executable": false
|
|
301
331
|
},
|
|
302
332
|
"tools/crawl4ai/page_quality.py": {
|
|
303
|
-
"size":
|
|
304
|
-
"sha256": "
|
|
333
|
+
"size": 366,
|
|
334
|
+
"sha256": "6cb7a33c37b6f8399473c69ac945dfb3047219b125d306f53e7f5d99b8355a76",
|
|
305
335
|
"executable": false
|
|
306
336
|
},
|
|
307
337
|
"tools/crawl4ai/browser_service.py": {
|
|
308
|
-
"size":
|
|
309
|
-
"sha256": "
|
|
338
|
+
"size": 5925,
|
|
339
|
+
"sha256": "a3783f66ab0619a2d9589f3a534db6b56b23b7ee92bbc31a7e3e48697326920e",
|
|
310
340
|
"executable": false
|
|
311
341
|
},
|
|
312
342
|
"tools/crawl4ai/requirements-lock.txt": {
|
|
@@ -316,37 +346,37 @@
|
|
|
316
346
|
},
|
|
317
347
|
"package.json": {
|
|
318
348
|
"size": 61,
|
|
319
|
-
"sha256": "
|
|
349
|
+
"sha256": "76f61e1318a700145ccf446c838bf80233c1d4184ed72ae4f146d49fae60faa0",
|
|
320
350
|
"executable": false
|
|
321
351
|
},
|
|
322
352
|
"runtime/native-manifest.json": {
|
|
323
|
-
"size":
|
|
324
|
-
"sha256": "
|
|
353
|
+
"size": 808,
|
|
354
|
+
"sha256": "f1d425727acb0cc1081ce1146f9bff63820587a12e5afa156ac115e75056afdc",
|
|
325
355
|
"executable": false
|
|
326
356
|
},
|
|
327
|
-
"native-bin/
|
|
328
|
-
"size":
|
|
329
|
-
"sha256": "
|
|
357
|
+
"native-bin/win32-x64/yxyl.exe": {
|
|
358
|
+
"size": 5129216,
|
|
359
|
+
"sha256": "44a0d0b828796cddb8176604b9ad2fa66b9e37b3811a2e950fd09f68a0b7f280",
|
|
330
360
|
"executable": true
|
|
331
361
|
},
|
|
332
|
-
"native-bin/
|
|
333
|
-
"size":
|
|
334
|
-
"sha256": "
|
|
362
|
+
"native-bin/win32-x64/yxyl-bridge.exe": {
|
|
363
|
+
"size": 4576256,
|
|
364
|
+
"sha256": "f03e8727a38df05453a5a1b564abc6d986981973f8613f6e7fab9ac12e260d62",
|
|
335
365
|
"executable": true
|
|
336
366
|
},
|
|
337
|
-
"native-bin/
|
|
338
|
-
"size":
|
|
339
|
-
"sha256": "
|
|
367
|
+
"native-bin/win32-x64/yxyl-framework-demo.exe": {
|
|
368
|
+
"size": 297472,
|
|
369
|
+
"sha256": "f1cd1c68a7eb9afe0b23674d9fe6c434a84429b076fe4aec5142c623618eb76f",
|
|
340
370
|
"executable": true
|
|
341
371
|
},
|
|
342
|
-
"native-bin/
|
|
343
|
-
"size":
|
|
344
|
-
"sha256": "
|
|
372
|
+
"native-bin/win32-x64/yxyl-okki-mail-draft.exe": {
|
|
373
|
+
"size": 5657088,
|
|
374
|
+
"sha256": "d4146600780daf3de89282450d2bbaeff287ff6c6d40c63843419fb8278c6740",
|
|
345
375
|
"executable": true
|
|
346
376
|
},
|
|
347
|
-
"native-bin/
|
|
348
|
-
"size":
|
|
349
|
-
"sha256": "
|
|
377
|
+
"native-bin/win32-x64/yxyl-okki-prospect-research.exe": {
|
|
378
|
+
"size": 6894592,
|
|
379
|
+
"sha256": "9008e87d90f914d98c9572c6df6987b94e6a3d71dbc62f1137b6ed6ebc90cbae",
|
|
350
380
|
"executable": true
|
|
351
381
|
}
|
|
352
382
|
}
|