ccjk 8.1.1 → 8.1.3

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.
@@ -115,8 +115,9 @@ class CloudSetupOrchestrator {
115
115
  */
116
116
  generateProjectFingerprint(analysis) {
117
117
  const hash = createHash("sha256");
118
- const depNames = analysis.dependencies?.direct.map((d) => d.name).join(",") || "";
119
- const devDepNames = analysis.dependencies?.direct.filter((d) => d.isDev).map((d) => d.name).join(",") || "";
118
+ const directDeps = analysis.dependencies?.direct || [];
119
+ const depNames = directDeps.map((d) => d.name).join(",");
120
+ const devDepNames = directDeps.filter((d) => d.isDev).map((d) => d.name).join(",");
120
121
  const frameworkNames = analysis.frameworks?.map((f) => f.name).join(",") || "";
121
122
  const languageNames = analysis.languages?.map((l) => l.language).join(",") || "";
122
123
  hash.update(depNames);
@@ -427,7 +428,7 @@ class CloudSetupOrchestrator {
427
428
  if (recommendations.hooks.length > 0) {
428
429
  await this.installHooks(recommendations.hooks, result, options);
429
430
  }
430
- result.duration = Date.now() - this.startTime;
431
+ result.duration = Math.max(Date.now() - this.startTime, 1);
431
432
  if (options.interactive !== false) {
432
433
  this.displaySummary(result, options);
433
434
  }
@@ -1,4 +1,4 @@
1
- const version = "8.1.1";
1
+ const version = "8.1.3";
2
2
  const homepage = "https://github.com/miounet11/ccjk";
3
3
 
4
4
  export { homepage, version };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ccjk",
3
3
  "type": "module",
4
- "version": "8.1.1",
4
+ "version": "8.1.3",
5
5
  "packageManager": "pnpm@10.17.1",
6
6
  "description": "Ultimate AI Development Tool - Code Tool Abstraction Layer with 83% Token Savings - Now with Cloud Sync, Hot-Reload Skills, Multi-Agent Orchestration, and Full Claude Code CLI 2.1+ Compatibility",
7
7
  "author": {
@@ -1,6 +1,6 @@
1
1
  {
2
- "$schema": "https://json.schemastore.org/claude-code-settings",
3
- "description": "Default Claude Code settings.json template for CCJK v3.8 - Supports Claude Code CLI 2.0-2.1",
2
+ "$schema": "https://json.schemastore.org/claude-code-settings.json",
3
+ "description": "Default Claude Code settings.json template for CCJK v8.1.2 - Supports Claude Code CLI 2.0-2.1",
4
4
 
5
5
  "model": "default",
6
6
 
@@ -13,8 +13,6 @@
13
13
 
14
14
  "language": "",
15
15
 
16
- "plansDirectory": null,
17
-
18
16
  "showTurnDuration": false,
19
17
 
20
18
  "respectGitignore": true,
@@ -31,6 +29,7 @@
31
29
  },
32
30
 
33
31
  "fileSuggestion": {
32
+ "type": "command",
34
33
  "command": "git"
35
34
  },
36
35
 
@@ -38,7 +37,7 @@
38
37
 
39
38
  "disallowedTools": [],
40
39
 
41
- "attribution": "",
40
+ "attribution": {},
42
41
 
43
42
  "index": {
44
43
  "maxFiles": 10000,
@@ -49,16 +48,16 @@
49
48
 
50
49
  "permissions": {
51
50
  "allow": [
52
- "allowEdit",
53
- "allowWrite",
54
- "allowRead",
55
- "allowExec",
56
- "allowCreateProcess",
57
- "allowKillProcess",
58
- "allowNetworkAccess",
59
- "allowFileSystemAccess",
60
- "allowShellAccess",
61
- "allowHttpAccess"
51
+ "AllowEdit",
52
+ "AllowWrite",
53
+ "AllowRead",
54
+ "AllowExec",
55
+ "AllowCreateProcess",
56
+ "AllowKillProcess",
57
+ "AllowNetworkAccess",
58
+ "AllowFileSystemAccess",
59
+ "AllowShellAccess",
60
+ "AllowHttpAccess"
62
61
  ]
63
62
  },
64
63