ccjk 12.0.7 → 12.0.9

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.
Files changed (47) hide show
  1. package/dist/chunks/agents.mjs +1 -1
  2. package/dist/chunks/auto-fixer.mjs +93 -0
  3. package/dist/chunks/auto-updater.mjs +3 -2
  4. package/dist/chunks/boost.mjs +1 -1
  5. package/dist/chunks/ccr.mjs +4 -3
  6. package/dist/chunks/check-updates.mjs +3 -2
  7. package/dist/chunks/claude-code-incremental-manager.mjs +3 -2
  8. package/dist/chunks/codex-config-switch.mjs +2 -1
  9. package/dist/chunks/codex-provider-manager.mjs +2 -1
  10. package/dist/chunks/codex-uninstaller.mjs +1 -1
  11. package/dist/chunks/codex.mjs +1 -1
  12. package/dist/chunks/config-switch.mjs +2 -1
  13. package/dist/chunks/config2.mjs +2 -1
  14. package/dist/chunks/doctor.mjs +1 -0
  15. package/dist/chunks/features.mjs +3 -2
  16. package/dist/chunks/index10.mjs +569 -1061
  17. package/dist/chunks/index11.mjs +1076 -913
  18. package/dist/chunks/index12.mjs +951 -135
  19. package/dist/chunks/index13.mjs +184 -209
  20. package/dist/chunks/index14.mjs +210 -655
  21. package/dist/chunks/index4.mjs +1 -1
  22. package/dist/chunks/index7.mjs +201 -2182
  23. package/dist/chunks/init.mjs +5 -5
  24. package/dist/chunks/installer.mjs +2 -1
  25. package/dist/chunks/mcp-cli.mjs +2 -1
  26. package/dist/chunks/mcp.mjs +2 -1
  27. package/dist/chunks/menu.mjs +22 -11
  28. package/dist/chunks/onboarding-wizard.mjs +93 -0
  29. package/dist/chunks/onboarding.mjs +1 -0
  30. package/dist/chunks/package.mjs +1 -1
  31. package/dist/chunks/prompts.mjs +2 -1
  32. package/dist/chunks/quick-actions.mjs +1 -1
  33. package/dist/chunks/quick-provider.mjs +1 -0
  34. package/dist/chunks/quick-setup.mjs +3 -2
  35. package/dist/chunks/remote.mjs +1 -0
  36. package/dist/chunks/status.mjs +7 -2
  37. package/dist/chunks/uninstall.mjs +3 -2
  38. package/dist/chunks/update.mjs +3 -2
  39. package/dist/chunks/upgrade-manager.mjs +1 -1
  40. package/dist/chunks/wsl.mjs +1 -1
  41. package/dist/cli.mjs +19 -3
  42. package/dist/shared/{ccjk.DOwtZMk8.mjs → ccjk.BWFpnOr3.mjs} +7 -1831
  43. package/dist/shared/{ccjk.D5MFQT7w.mjs → ccjk.CNMWk_mE.mjs} +7 -7
  44. package/dist/shared/{ccjk.BRZ9ww8S.mjs → ccjk.CvChMYvB.mjs} +1 -1
  45. package/dist/shared/ccjk.DeWpAShp.mjs +1828 -0
  46. package/dist/shared/{ccjk.BwfbSKN2.mjs → ccjk.Dx-O9dWz.mjs} +1 -1
  47. package/package.json +2 -2
@@ -16,7 +16,7 @@ const agentsCheck = {
16
16
  weight: this.weight,
17
17
  message: "No agents directory",
18
18
  fix: "Create agents for specialized tasks",
19
- command: "ccjk ccjk:agents --list"
19
+ command: "ccjk agents"
20
20
  };
21
21
  }
22
22
  const files = readdirSync(CLAUDE_AGENTS_DIR).filter((f) => f.endsWith(".md"));
@@ -29,7 +29,7 @@ const agentsCheck = {
29
29
  weight: this.weight,
30
30
  message: "No agents configured",
31
31
  fix: "Create agents for your project",
32
- command: "ccjk ccjk:agents"
32
+ command: "ccjk agents"
33
33
  };
34
34
  }
35
35
  const score = Math.min(100, 40 + agentCount * 15);
@@ -124,7 +124,7 @@ const mcpCheck = {
124
124
  weight: this.weight,
125
125
  message: "No MCP services configured",
126
126
  fix: "Install MCP services for enhanced capabilities",
127
- command: "ccjk ccjk:mcp"
127
+ command: "ccjk mcp"
128
128
  };
129
129
  }
130
130
  const essentialServices = ["context7"];
@@ -141,7 +141,7 @@ const mcpCheck = {
141
141
  weight: this.weight,
142
142
  message: `${serverCount} service${serverCount > 1 ? "s" : ""} active`,
143
143
  details,
144
- ...score < 80 && { fix: "Add more MCP services", command: "ccjk ccjk:mcp" }
144
+ ...score < 80 && { fix: "Add more MCP services", command: "ccjk mcp" }
145
145
  };
146
146
  } catch {
147
147
  return {
@@ -284,7 +284,7 @@ const skillsCheck = {
284
284
  weight: this.weight,
285
285
  message: "No skills directory found",
286
286
  fix: "Install skills to enhance Claude Code",
287
- command: "ccjk ccjk:skills"
287
+ command: "ccjk skills"
288
288
  };
289
289
  }
290
290
  const files = readdirSync(CCJK_SKILLS_DIR).filter((f) => f.endsWith(".md"));
@@ -297,7 +297,7 @@ const skillsCheck = {
297
297
  weight: this.weight,
298
298
  message: "No skills installed",
299
299
  fix: "Install skills based on your project",
300
- command: "ccjk ccjk:skills"
300
+ command: "ccjk skills"
301
301
  };
302
302
  }
303
303
  const score = Math.min(100, 30 + skillCount * 10);
@@ -308,7 +308,7 @@ const skillsCheck = {
308
308
  weight: this.weight,
309
309
  message: `${skillCount} skill${skillCount > 1 ? "s" : ""} installed`,
310
310
  details: files.slice(0, 8).map((f) => ` ${f.replace(".md", "")}`),
311
- ...skillCount < 5 && { fix: "Install more project-specific skills", command: "ccjk ccjk:skills" }
311
+ ...skillCount < 5 && { fix: "Install more project-specific skills", command: "ccjk skills" }
312
312
  };
313
313
  } catch {
314
314
  return { name: this.name, status: "fail", score: 0, weight: this.weight, message: "Failed to read skills" };
@@ -87,7 +87,7 @@ async function platformSpecificImplementation() {
87
87
  }
88
88
 
89
89
  case 'linux': {
90
- const {isWsl} = await import('../chunks/index13.mjs');
90
+ const {isWsl} = await import('../chunks/index14.mjs');
91
91
  if (isWsl) {
92
92
  return import('../chunks/wsl.mjs');
93
93
  }