@zenalexa/unicli 0.216.0 → 0.216.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/AGENTS.md +1 -1
- package/README.md +2 -2
- package/README.zh-CN.md +2 -2
- package/dist/manifest.json +1 -1
- package/package.json +55 -54
package/AGENTS.md
CHANGED
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
</p>
|
|
29
29
|
|
|
30
30
|
<p align="center">
|
|
31
|
-
<sub><!-- STATS:site_count -->235<!-- /STATS --> sites · <!-- STATS:command_count -->1448<!-- /STATS --> commands · <!-- STATS:pipeline_step_count -->59<!-- /STATS --> pipeline steps · <!-- STATS:test_count -->
|
|
31
|
+
<sub><!-- STATS:site_count -->235<!-- /STATS --> sites · <!-- STATS:command_count -->1448<!-- /STATS --> commands · <!-- STATS:pipeline_step_count -->59<!-- /STATS --> pipeline steps · <!-- STATS:test_count -->7391<!-- /STATS --> tests</sub>
|
|
32
32
|
</p>
|
|
33
33
|
|
|
34
34
|
<p align="center">
|
|
@@ -306,5 +306,5 @@ npm run verify
|
|
|
306
306
|
[Apache-2.0](./LICENSE)
|
|
307
307
|
|
|
308
308
|
<p align="center">
|
|
309
|
-
<sub>
|
|
309
|
+
<sub>v0.216.2 — Apollo · Aldrin</sub>
|
|
310
310
|
</p>
|
package/README.zh-CN.md
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
</p>
|
|
29
29
|
|
|
30
30
|
<p align="center">
|
|
31
|
-
<sub><!-- STATS:site_count -->235<!-- /STATS --> 个站点 · <!-- STATS:command_count -->1448<!-- /STATS --> 条命令 · <!-- STATS:pipeline_step_count -->59<!-- /STATS --> 个 pipeline step · <!-- STATS:test_count -->
|
|
31
|
+
<sub><!-- STATS:site_count -->235<!-- /STATS --> 个站点 · <!-- STATS:command_count -->1448<!-- /STATS --> 条命令 · <!-- STATS:pipeline_step_count -->59<!-- /STATS --> 个 pipeline step · <!-- STATS:test_count -->7391<!-- /STATS --> 个测试</sub>
|
|
32
32
|
</p>
|
|
33
33
|
|
|
34
34
|
<p align="center">
|
|
@@ -306,5 +306,5 @@ npm run verify
|
|
|
306
306
|
[Apache-2.0](./LICENSE)
|
|
307
307
|
|
|
308
308
|
<p align="center">
|
|
309
|
-
<sub>
|
|
309
|
+
<sub>v0.216.2 — Apollo · Aldrin</sub>
|
|
310
310
|
</p>
|
package/dist/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenalexa/unicli",
|
|
3
|
-
"version": "0.216.
|
|
3
|
+
"version": "0.216.2",
|
|
4
4
|
"description": "The universal interface between AI agents and the world's software",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -118,6 +118,59 @@
|
|
|
118
118
|
"import": "./dist/engine/executor.js"
|
|
119
119
|
}
|
|
120
120
|
},
|
|
121
|
+
"scripts": {
|
|
122
|
+
"dev": "tsx src/main.ts",
|
|
123
|
+
"build": "tsc && tsx scripts/build-manifest.js && tsx scripts/count-stats.ts && tsx scripts/build-readme.ts && tsx scripts/build-agents.ts && prettier --write AGENTS.md",
|
|
124
|
+
"postbuild": "node -e \"require('fs').chmodSync('dist/main.js', 0o755)\"",
|
|
125
|
+
"stats": "tsx scripts/build-manifest.js && tsx scripts/count-stats.ts && tsx scripts/build-readme.ts && tsx scripts/build-agents.ts",
|
|
126
|
+
"stats:check": "tsx scripts/count-consistency.ts",
|
|
127
|
+
"build:agents": "tsx scripts/build-agents.ts",
|
|
128
|
+
"test": "vitest run --project unit",
|
|
129
|
+
"test:adapter": "vitest run --project adapter",
|
|
130
|
+
"coverage:adapter-test": "tsx scripts/check-adapter-test-coverage.ts --threshold 50",
|
|
131
|
+
"adapter:bootstrap": "tsx scripts/bootstrap-adapter-tests.ts",
|
|
132
|
+
"adapter:health": "tsx scripts/adapter-health-probe.ts",
|
|
133
|
+
"test:all": "vitest run",
|
|
134
|
+
"typecheck": "tsc --noEmit",
|
|
135
|
+
"lint": "oxlint src/",
|
|
136
|
+
"format": "prettier --write .",
|
|
137
|
+
"format:check": "prettier --check .",
|
|
138
|
+
"lint:context": "bash scripts/lint-context.sh",
|
|
139
|
+
"build:manifest": "tsx scripts/build-manifest.js",
|
|
140
|
+
"changeset": "changeset",
|
|
141
|
+
"changeset:version": "changeset version",
|
|
142
|
+
"changeset:status": "changeset status --since=origin/main",
|
|
143
|
+
"verify:changesets": "tsx scripts/verify-changesets.ts",
|
|
144
|
+
"conformance": "tsx scripts/conformance-report.ts",
|
|
145
|
+
"check:exports": "tsx scripts/check-exports-count.ts",
|
|
146
|
+
"lint:adapters": "tsx src/main.ts lint src/adapters",
|
|
147
|
+
"lint:schema-v2": "tsx scripts/lint-schema-v2.ts",
|
|
148
|
+
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
149
|
+
"validate:agents-size": "tsx scripts/validate-agents-size.ts",
|
|
150
|
+
"verify": "npm run format:check && npm run typecheck && npm run lint && npm run lint:context && npm run build:manifest && npm run lint:adapters && npm run lint:schema-v2 && npm run build && npm run test && npm run test:adapter && npm run coverage:adapter-test && npm run validate:agents-size && npm run stats:check && npm run conformance && npm run check:exports && npm run verify:changesets",
|
|
151
|
+
"verify:full": "npm run verify && npm run refs:verify && npm run adapter:health",
|
|
152
|
+
"verify:clean": "npm run clean && npm run verify",
|
|
153
|
+
"docs:prepare": "tsx scripts/generate-docs-agent-assets.ts",
|
|
154
|
+
"docs:dev": "npm run docs:prepare && vitepress dev docs",
|
|
155
|
+
"docs:check-public": "tsx scripts/check-public-docs.ts",
|
|
156
|
+
"docs:build": "npm run docs:prepare && node -e \"require('node:fs').rmSync('docs/.vitepress/dist',{recursive:true,force:true})\" && vitepress build docs && npm run docs:check-public",
|
|
157
|
+
"docs:preview": "vitepress preview docs",
|
|
158
|
+
"doctor": "tsx src/doctor.ts",
|
|
159
|
+
"mcp": "tsx src/mcp/server.ts",
|
|
160
|
+
"release": "npm run build && tsx scripts/release.ts",
|
|
161
|
+
"release:check": "tsx scripts/release-check.ts",
|
|
162
|
+
"prepare": "lefthook install >/dev/null 2>&1 || true",
|
|
163
|
+
"preversion": "npm run verify",
|
|
164
|
+
"postversion": "npm run build && tsx scripts/release.ts",
|
|
165
|
+
"bench": "tsx bench/report.ts",
|
|
166
|
+
"bench:self-discovery": "tsx bench/self-discovery.ts",
|
|
167
|
+
"bench:opencli-parity": "tsx bench/opencli-parity.ts",
|
|
168
|
+
"bench:quick": "tsx bench/agent/report.ts",
|
|
169
|
+
"bench:agent": "tsx bench/agent/sdk-runner.ts",
|
|
170
|
+
"bench:gate": "node scripts/bench/check-ship-gate.js",
|
|
171
|
+
"refs:verify": "tsx scripts/verify-refs.ts",
|
|
172
|
+
"sync:ref": "bash scripts/sync-ref.sh"
|
|
173
|
+
},
|
|
121
174
|
"keywords": [
|
|
122
175
|
"cli",
|
|
123
176
|
"ai-agent",
|
|
@@ -176,57 +229,5 @@
|
|
|
176
229
|
"vitepress": "^1.6.0",
|
|
177
230
|
"vitest": "^3.2.4",
|
|
178
231
|
"yaml": "^2.8.3"
|
|
179
|
-
},
|
|
180
|
-
"scripts": {
|
|
181
|
-
"dev": "tsx src/main.ts",
|
|
182
|
-
"build": "tsc && tsx scripts/build-manifest.js && tsx scripts/count-stats.ts && tsx scripts/build-readme.ts && tsx scripts/build-agents.ts && pnpm exec prettier --write AGENTS.md",
|
|
183
|
-
"postbuild": "node -e \"require('fs').chmodSync('dist/main.js', 0o755)\"",
|
|
184
|
-
"stats": "tsx scripts/build-manifest.js && tsx scripts/count-stats.ts && tsx scripts/build-readme.ts && tsx scripts/build-agents.ts",
|
|
185
|
-
"stats:check": "tsx scripts/count-consistency.ts",
|
|
186
|
-
"build:agents": "tsx scripts/build-agents.ts",
|
|
187
|
-
"test": "vitest run --project unit",
|
|
188
|
-
"test:adapter": "vitest run --project adapter",
|
|
189
|
-
"coverage:adapter-test": "tsx scripts/check-adapter-test-coverage.ts --threshold 50",
|
|
190
|
-
"adapter:bootstrap": "tsx scripts/bootstrap-adapter-tests.ts",
|
|
191
|
-
"adapter:health": "tsx scripts/adapter-health-probe.ts",
|
|
192
|
-
"test:all": "vitest run",
|
|
193
|
-
"typecheck": "tsc --noEmit",
|
|
194
|
-
"lint": "oxlint src/",
|
|
195
|
-
"format": "prettier --write .",
|
|
196
|
-
"format:check": "prettier --check .",
|
|
197
|
-
"lint:context": "bash scripts/lint-context.sh",
|
|
198
|
-
"build:manifest": "tsx scripts/build-manifest.js",
|
|
199
|
-
"changeset": "changeset",
|
|
200
|
-
"changeset:version": "changeset version",
|
|
201
|
-
"changeset:status": "changeset status --since=origin/main",
|
|
202
|
-
"verify:changesets": "tsx scripts/verify-changesets.ts",
|
|
203
|
-
"conformance": "tsx scripts/conformance-report.ts",
|
|
204
|
-
"check:exports": "tsx scripts/check-exports-count.ts",
|
|
205
|
-
"lint:adapters": "tsx src/main.ts lint src/adapters",
|
|
206
|
-
"lint:schema-v2": "tsx scripts/lint-schema-v2.ts",
|
|
207
|
-
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
208
|
-
"validate:agents-size": "tsx scripts/validate-agents-size.ts",
|
|
209
|
-
"verify": "pnpm run format:check && pnpm run typecheck && pnpm run lint && pnpm run lint:context && pnpm run build:manifest && pnpm run lint:adapters && pnpm run lint:schema-v2 && pnpm run build && pnpm run test && pnpm run test:adapter && pnpm run coverage:adapter-test && pnpm run validate:agents-size && pnpm run stats:check && pnpm run conformance && pnpm run check:exports && pnpm run verify:changesets",
|
|
210
|
-
"verify:full": "pnpm run verify && pnpm run refs:verify && pnpm run adapter:health",
|
|
211
|
-
"verify:clean": "pnpm run clean && pnpm run verify",
|
|
212
|
-
"docs:prepare": "tsx scripts/generate-docs-agent-assets.ts",
|
|
213
|
-
"docs:dev": "pnpm run docs:prepare && vitepress dev docs",
|
|
214
|
-
"docs:check-public": "tsx scripts/check-public-docs.ts",
|
|
215
|
-
"docs:build": "pnpm run docs:prepare && node -e \"require('node:fs').rmSync('docs/.vitepress/dist',{recursive:true,force:true})\" && vitepress build docs && pnpm run docs:check-public",
|
|
216
|
-
"docs:preview": "vitepress preview docs",
|
|
217
|
-
"doctor": "tsx src/doctor.ts",
|
|
218
|
-
"mcp": "tsx src/mcp/server.ts",
|
|
219
|
-
"release": "pnpm run build && tsx scripts/release.ts",
|
|
220
|
-
"release:check": "tsx scripts/release-check.ts",
|
|
221
|
-
"preversion": "pnpm run verify",
|
|
222
|
-
"postversion": "pnpm run build && tsx scripts/release.ts",
|
|
223
|
-
"bench": "tsx bench/report.ts",
|
|
224
|
-
"bench:self-discovery": "tsx bench/self-discovery.ts",
|
|
225
|
-
"bench:opencli-parity": "tsx bench/opencli-parity.ts",
|
|
226
|
-
"bench:quick": "tsx bench/agent/report.ts",
|
|
227
|
-
"bench:agent": "tsx bench/agent/sdk-runner.ts",
|
|
228
|
-
"bench:gate": "node scripts/bench/check-ship-gate.js",
|
|
229
|
-
"refs:verify": "tsx scripts/verify-refs.ts",
|
|
230
|
-
"sync:ref": "bash scripts/sync-ref.sh"
|
|
231
232
|
}
|
|
232
|
-
}
|
|
233
|
+
}
|