@unity-china/codely-cli 1.0.0-beta.51 → 1.0.0-rc.1
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 +1691 -1596
- package/bundle/gemini.js.LEGAL.txt +9 -10
- package/bundle/policies/plan.toml +26 -2
- package/bundle/policies/read-only.toml +17 -3
- package/bundle/web-ui/dist/public/app.css +1654 -264
- package/bundle/web-ui/dist/public/app.js +57 -39
- package/package.json +4 -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.1",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.0.0"
|
|
6
6
|
},
|
|
@@ -24,6 +24,8 @@
|
|
|
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",
|
|
@@ -102,6 +104,7 @@
|
|
|
102
104
|
"mock-fs": "^5.5.0",
|
|
103
105
|
"msw": "^2.10.4",
|
|
104
106
|
"prettier": "^3.5.3",
|
|
107
|
+
"rcedit": "^4.0.1",
|
|
105
108
|
"react-devtools-core": "^6.1.2",
|
|
106
109
|
"rimraf": "^6.0.1",
|
|
107
110
|
"tsx": "^4.20.3",
|