@unity-china/codely-cli 1.0.0-beta.52 → 1.0.0-rc.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/bundle/builtin/skill-creator/SKILL.md +381 -0
- package/bundle/builtin/skill-creator/scripts/init_skill.cjs +237 -0
- package/bundle/builtin/skill-creator/scripts/package_skill.cjs +142 -0
- package/bundle/builtin/skill-creator/scripts/validate_skill.cjs +137 -0
- package/bundle/example-prompts/analyze.toml +2 -2
- package/bundle/gemini.js +1741 -1653
- package/bundle/gemini.js.LEGAL.txt +29 -30
- package/bundle/policies/plan.toml +26 -2
- package/bundle/policies/read-only.toml +17 -3
- package/bundle/web-ui/dist/public/app.css +682 -10
- package/bundle/web-ui/dist/public/app.js +62 -44
- package/package.json +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unity-china/codely-cli",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-rc.2",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.0.0"
|
|
6
6
|
},
|
|
@@ -24,10 +24,13 @@
|
|
|
24
24
|
"build:sandbox": "node scripts/build_sandbox.js --skip-npm-install-build",
|
|
25
25
|
"bundle": "npm run generate && node esbuild.config.js && node scripts/copy_bundle_assets.js",
|
|
26
26
|
"build:single-exe": "node scripts/build_single_exe_bun.js",
|
|
27
|
+
"sign": "node scripts/sign-app.js",
|
|
28
|
+
"sign:check": "node scripts/sign-app.js --check",
|
|
27
29
|
"measure:startup": "node scripts/measure_startup.js",
|
|
28
30
|
"test": "cross-env NODE_NO_WARNINGS=1 npm run test --workspaces --if-present",
|
|
29
31
|
"test:ci": "npm run test:ci --workspaces --if-present && npm run test:scripts",
|
|
30
32
|
"test:scripts": "vitest run --config ./scripts/tests/vitest.config.ts",
|
|
33
|
+
"test:bundle-smoke": "npm run bundle && vitest run --config ./scripts/tests/vitest.config.ts -- scripts/tests/bundle-smoke.test.js",
|
|
31
34
|
"test:e2e": "cross-env VERBOSE=true KEEP_OUTPUT=true npm run test:integration:sandbox:none",
|
|
32
35
|
"test:integration:all": "npm run test:integration:sandbox:none && npm run test:integration:sandbox:docker && npm run test:integration:sandbox:podman",
|
|
33
36
|
"test:integration:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests",
|
|
@@ -102,6 +105,7 @@
|
|
|
102
105
|
"mock-fs": "^5.5.0",
|
|
103
106
|
"msw": "^2.10.4",
|
|
104
107
|
"prettier": "^3.5.3",
|
|
108
|
+
"rcedit": "^4.0.1",
|
|
105
109
|
"react-devtools-core": "^6.1.2",
|
|
106
110
|
"rimraf": "^6.0.1",
|
|
107
111
|
"tsx": "^4.20.3",
|