iclavue 11.2.2 → 11.2.4
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 +7 -7
- package/dist/clavue.js +1 -1
- package/dist/cli.js +1000 -1002
- package/dist/mao-command.js +4 -4
- package/dist/native/clavue-pager-darwin-arm64 +0 -0
- package/dist/native/manifest.json +5 -6
- package/dist/openai-responses-adapter.js +11 -11
- package/dist/provider-setup.js +1 -1
- package/package.json +5 -4
package/dist/provider-setup.js
CHANGED
|
@@ -7,7 +7,7 @@ import { createInterface } from 'node:readline/promises'
|
|
|
7
7
|
import { stdin, stdout } from 'node:process'
|
|
8
8
|
import { fileURLToPath } from 'node:url'
|
|
9
9
|
|
|
10
|
-
const APP_VERSION = '11.2.
|
|
10
|
+
const APP_VERSION = '11.2.4'
|
|
11
11
|
const APP_NPM_PACKAGE_NAME = 'clavue'
|
|
12
12
|
export const CURRENT_PROVIDER_PROFILE_ID = '__current_provider__'
|
|
13
13
|
const SUPPORTED_LANGUAGES = new Set(['en', 'zh'])
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iclavue",
|
|
3
|
-
"version": "11.2.
|
|
3
|
+
"version": "11.2.4",
|
|
4
4
|
"description": "Clavue: execution-first AI coding CLI with direct repo tools, provider routing, native workflows, MCP integration, and long-session recovery",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"iclavue",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"build:knowledge": "node scripts/build-project-knowledge.mjs",
|
|
83
83
|
"vendor:ripgrep": "node scripts/vendor-ripgrep.mjs",
|
|
84
84
|
"check": "npm run check:quick",
|
|
85
|
-
"check:fast": "npm run check:types && npm run check:source-purity && npm run check:boundaries && npm run check:architecture-budget && npm run check:upgrade-hygiene && npm run check:ink-removal && npm run check:pager-tui-coverage && npm run check:lead-capabilities && npm run check:ui-protocol-registry && npm run test:fast && npm run check:startup",
|
|
85
|
+
"check:fast": "npm run check:types && npm run check:source-purity && npm run check:boundaries && npm run check:architecture-budget && npm run check:upgrade-hygiene && npm run check:cited-path-boundary && npm run check:ink-removal && npm run check:pager-tui-coverage && npm run check:lead-capabilities && npm run check:ui-protocol-registry && npm run test:fast && npm run check:startup",
|
|
86
86
|
"check:quick": "npm run validate:repo && npm run check:test-hygiene && npm run check:source-purity && npm run check:boundaries && npm run check:ui-action-allowlist && npm run check:architecture-budget && npm run check:types && npm run test:fast && npm run check:test-hygiene && npm run check:pager-ui && npm run check:eval-baseline && npm run test:system-contract",
|
|
87
87
|
"check:release": "npm run vendor:ripgrep && npm run validate:repo && npm run check:test-hygiene && npm run verify:dist-clean && npm run verify:dist && npm run verify:source-build && npm run check:source-purity && npm run check:boundaries && npm run check:architecture-budget && npm run check:types && npm run test:fast && npm run check:test-hygiene && npm run check:pager-release && npm run check:flywheel",
|
|
88
88
|
"check:hygiene": "npm run validate:repo",
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
"test:quality-review-dual": "node --import ./tests/register-ts-loader.mjs scripts/run-quality-review-dual.mjs",
|
|
144
144
|
"check:pager-native-publish": "node scripts/check-pager-native-publish.mjs",
|
|
145
145
|
"restore:authored-source": "node scripts/restore-authored-source.mjs",
|
|
146
|
-
"test": "node --import ./tests/register-ts-loader.mjs --test tests/*.test.mjs",
|
|
146
|
+
"test": "node --import ./tests/register-ts-loader.mjs --test --test-timeout=900000 tests/*.test.mjs",
|
|
147
147
|
"test:fast": "node scripts/run-fast-tests.mjs",
|
|
148
148
|
"typecheck": "tsc --noEmit",
|
|
149
149
|
"test:route-policy": "node --import ./tests/register-ts-loader.mjs --test tests/coding-route-policy.test.mjs tests/prompt-route-policy.test.mjs",
|
|
@@ -219,7 +219,8 @@
|
|
|
219
219
|
"check:lead-capabilities": "node scripts/check-lead-capabilities.mjs",
|
|
220
220
|
"bench:t0-wallclock-table": "node --import ./tests/register-ts-loader.mjs scripts/run-t0-microfix-wallclock-table.mjs",
|
|
221
221
|
"check:official-capability": "node scripts/check-official-capability.mjs",
|
|
222
|
-
"check:core-ops": "node scripts/check-core-ops.mjs"
|
|
222
|
+
"check:core-ops": "node scripts/check-core-ops.mjs",
|
|
223
|
+
"check:cited-path-boundary": "node scripts/check-cited-path-boundary.mjs"
|
|
223
224
|
},
|
|
224
225
|
"engines": {
|
|
225
226
|
"node": ">=22.0.0"
|