@unity-china/codely-cli 1.0.0-beta.52 → 1.0.0-rc.10
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 +140 -0
- package/bundle/builtin/skill-creator/scripts/validate_skill.cjs +137 -0
- package/bundle/builtin-agents/explore.toml +54 -0
- package/bundle/builtin-agents/general-purpose.toml +34 -0
- package/bundle/builtin-agents/plan.toml +69 -0
- package/bundle/example-prompts/analyze.toml +2 -2
- package/bundle/gemini.js +2426 -2087
- package/bundle/gemini.js.LEGAL.txt +88 -51
- package/bundle/policies/plan.toml +58 -8
- 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 +63 -45
- package/package.json +11 -5
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.10",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.0.0"
|
|
6
6
|
},
|
|
@@ -24,18 +24,21 @@
|
|
|
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",
|
|
34
37
|
"test:integration:sandbox:docker": "npm run build:sandbox && cross-env GEMINI_SANDBOX=docker vitest run --root ./integration-tests",
|
|
35
38
|
"test:integration:sandbox:podman": "cross-env GEMINI_SANDBOX=podman vitest run --root ./integration-tests",
|
|
36
|
-
"lint": "eslint . --ext .ts,.tsx --ignore-pattern qwen-code --ignore-pattern gemini-cli --ignore-pattern opencode && eslint integration-tests",
|
|
37
|
-
"lint:fix": "eslint . --fix --ignore-pattern qwen-code --ignore-pattern gemini-cli --ignore-pattern opencode && eslint integration-tests --fix",
|
|
38
|
-
"lint:ci": "eslint . --ext .ts,.tsx --max-warnings 0 --ignore-pattern qwen-code --ignore-pattern gemini-cli --ignore-pattern opencode && eslint integration-tests --max-warnings 0",
|
|
39
|
+
"lint": "eslint . --ext .ts,.tsx --ignore-pattern qwen-code --ignore-pattern gemini-cli --ignore-pattern opencode --ignore-pattern claude-code && eslint integration-tests --ext .ts",
|
|
40
|
+
"lint:fix": "eslint . --ext .ts,.tsx --fix --ignore-pattern qwen-code --ignore-pattern gemini-cli --ignore-pattern opencode --ignore-pattern claude-code && eslint integration-tests --ext .ts --fix",
|
|
41
|
+
"lint:ci": "eslint . --ext .ts,.tsx --max-warnings 0 --ignore-pattern qwen-code --ignore-pattern gemini-cli --ignore-pattern opencode --ignore-pattern claude-code && eslint integration-tests --ext .ts --max-warnings 0",
|
|
39
42
|
"format": "prettier --experimental-cli --ignore-path .gitignore --write .",
|
|
40
43
|
"typecheck": "npm run typecheck --workspaces --if-present",
|
|
41
44
|
"preflight": "npm run clean && npm ci && npm run format && npm run lint:ci && npm run build && npm run typecheck && npm run test:ci",
|
|
@@ -44,6 +47,8 @@
|
|
|
44
47
|
"release:version": "node scripts/version.js",
|
|
45
48
|
"telemetry": "node scripts/telemetry.js",
|
|
46
49
|
"verify-external-platforms": "node scripts/verify-external-platforms-disabled.js",
|
|
50
|
+
"export:system-prompt": "node scripts/export-system-prompt.mjs",
|
|
51
|
+
"export:system-prompt:unity": "node scripts/export-system-prompt.mjs --with-unity",
|
|
47
52
|
"clean": "node scripts/clean.js",
|
|
48
53
|
"install-cli": "npm install -g ./packages/cli",
|
|
49
54
|
"pack": "node scripts/ensure-dist.js && npm run build && npm pack --pack-destination ./dist",
|
|
@@ -86,7 +91,6 @@
|
|
|
86
91
|
"cross-env": "^7.0.3",
|
|
87
92
|
"esbuild": "^0.25.0",
|
|
88
93
|
"eslint": "^9.24.0",
|
|
89
|
-
"postject": "^1.0.0-alpha.6",
|
|
90
94
|
"eslint-config-prettier": "^10.1.2",
|
|
91
95
|
"eslint-plugin-import": "^2.31.0",
|
|
92
96
|
"eslint-plugin-license-header": "^0.8.0",
|
|
@@ -101,7 +105,9 @@
|
|
|
101
105
|
"mnemonist": "^0.40.3",
|
|
102
106
|
"mock-fs": "^5.5.0",
|
|
103
107
|
"msw": "^2.10.4",
|
|
108
|
+
"postject": "^1.0.0-alpha.6",
|
|
104
109
|
"prettier": "^3.5.3",
|
|
110
|
+
"rcedit": "^4.0.1",
|
|
105
111
|
"react-devtools-core": "^6.1.2",
|
|
106
112
|
"rimraf": "^6.0.1",
|
|
107
113
|
"tsx": "^4.20.3",
|