ccjk 7.0.6 → 7.1.0

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 (234) hide show
  1. package/LICENSE +1 -50
  2. package/README.en.md +760 -0
  3. package/README.ja.md +37 -1
  4. package/README.ko.md +37 -1
  5. package/README.md +811 -181
  6. package/bin/ccjk.ts +222 -0
  7. package/dist/chunks/agent.mjs +162 -162
  8. package/dist/chunks/api-providers.mjs +1 -1
  9. package/dist/chunks/api.mjs +764 -12
  10. package/dist/chunks/auto-bootstrap.mjs +1 -1
  11. package/dist/chunks/auto-updater.mjs +47 -198
  12. package/dist/chunks/ccjk-config.mjs +1 -1
  13. package/dist/chunks/ccr.mjs +16 -16
  14. package/dist/chunks/ccu.mjs +7 -7
  15. package/dist/chunks/check-updates.mjs +10 -8
  16. package/dist/chunks/claude-code-config-manager.mjs +8 -7
  17. package/dist/chunks/claude-code-incremental-manager.mjs +43 -41
  18. package/dist/chunks/claude-config.mjs +209 -0
  19. package/dist/chunks/claude-wrapper.mjs +62 -3635
  20. package/dist/chunks/cli.mjs +2203 -0
  21. package/dist/chunks/codex-config-switch.mjs +437 -0
  22. package/dist/chunks/codex-provider-manager.mjs +222 -0
  23. package/dist/chunks/codex-uninstaller.mjs +398 -0
  24. package/dist/chunks/codex.mjs +106 -130
  25. package/dist/chunks/commands.mjs +26 -26
  26. package/dist/chunks/commands2.mjs +7 -10
  27. package/dist/chunks/commit.mjs +16 -16
  28. package/dist/chunks/config-consolidator.mjs +13 -121
  29. package/dist/chunks/config-switch.mjs +45 -43
  30. package/dist/chunks/config.mjs +393 -511
  31. package/dist/chunks/config2.mjs +308 -483
  32. package/dist/chunks/config3.mjs +465 -0
  33. package/dist/chunks/constants.mjs +12 -65
  34. package/dist/chunks/context.mjs +4 -771
  35. package/dist/chunks/doctor.mjs +91 -33
  36. package/dist/chunks/features.mjs +185 -105
  37. package/dist/chunks/help.mjs +116 -116
  38. package/dist/chunks/index.mjs +162 -11
  39. package/dist/chunks/index2.mjs +1162 -151
  40. package/dist/chunks/init.mjs +265 -1501
  41. package/dist/chunks/installer.mjs +0 -2
  42. package/dist/chunks/installer2.mjs +680 -0
  43. package/dist/chunks/interview.mjs +103 -103
  44. package/dist/chunks/marketplace.mjs +232 -1207
  45. package/dist/chunks/mcp-server.mjs +3 -3
  46. package/dist/chunks/mcp.mjs +91 -89
  47. package/dist/chunks/menu.mjs +891 -565
  48. package/dist/chunks/notification.mjs +141 -141
  49. package/dist/chunks/onboarding.mjs +10 -18
  50. package/dist/chunks/package.mjs +1 -1
  51. package/dist/chunks/permission-manager.mjs +11 -88
  52. package/dist/chunks/permissions.mjs +164 -342
  53. package/dist/chunks/platform.mjs +93 -23
  54. package/dist/chunks/plugin.mjs +102 -102
  55. package/dist/chunks/prompts.mjs +18 -17
  56. package/dist/chunks/providers.mjs +66 -66
  57. package/dist/chunks/session.mjs +10 -797
  58. package/dist/chunks/silent-updater.mjs +1 -1
  59. package/dist/chunks/skill.mjs +74 -75
  60. package/dist/chunks/skills-sync.mjs +73 -73
  61. package/dist/chunks/skills.mjs +1229 -94
  62. package/dist/chunks/stats.mjs +39 -39
  63. package/dist/chunks/team.mjs +7 -7
  64. package/dist/chunks/thinking.mjs +615 -0
  65. package/dist/chunks/uninstall.mjs +41 -40
  66. package/dist/chunks/update.mjs +12 -10
  67. package/dist/chunks/upgrade-manager.mjs +5 -5
  68. package/dist/chunks/version-checker.mjs +35 -35
  69. package/dist/chunks/vim.mjs +891 -0
  70. package/dist/chunks/workflows.mjs +1 -1
  71. package/dist/chunks/workflows2.mjs +13 -13
  72. package/dist/cli.mjs +171 -160
  73. package/dist/i18n/locales/en/api.json +1 -13
  74. package/dist/i18n/locales/en/cli.json +67 -121
  75. package/dist/i18n/locales/en/config.json +108 -0
  76. package/dist/i18n/locales/en/configuration.json +97 -1
  77. package/dist/i18n/locales/en/context.json +1 -14
  78. package/dist/i18n/locales/en/errors.json +1 -30
  79. package/dist/i18n/locales/en/lsp.json +78 -0
  80. package/dist/i18n/locales/en/mcp.json +11 -0
  81. package/dist/i18n/locales/en/menu.json +1 -18
  82. package/dist/i18n/locales/en/permissions.json +53 -1
  83. package/dist/i18n/locales/en/skills.json +0 -58
  84. package/dist/i18n/locales/en/thinking.json +65 -0
  85. package/dist/i18n/locales/en/updater.json +1 -14
  86. package/dist/i18n/locales/en/vim.json +169 -0
  87. package/dist/i18n/locales/zh-CN/api.json +1 -13
  88. package/dist/i18n/locales/zh-CN/cli.json +67 -120
  89. package/dist/i18n/locales/zh-CN/config.json +108 -0
  90. package/dist/i18n/locales/zh-CN/configuration.json +97 -1
  91. package/dist/i18n/locales/zh-CN/context.json +1 -14
  92. package/dist/i18n/locales/zh-CN/errors.json +1 -30
  93. package/dist/i18n/locales/zh-CN/lsp.json +78 -0
  94. package/dist/i18n/locales/zh-CN/mcp.json +11 -0
  95. package/dist/i18n/locales/zh-CN/menu.json +1 -18
  96. package/dist/i18n/locales/zh-CN/permissions.json +53 -1
  97. package/dist/i18n/locales/zh-CN/skills.json +0 -58
  98. package/dist/i18n/locales/zh-CN/thinking.json +65 -0
  99. package/dist/i18n/locales/zh-CN/updater.json +1 -14
  100. package/dist/i18n/locales/zh-CN/vim.json +169 -0
  101. package/dist/index.d.mts +1846 -3327
  102. package/dist/index.d.ts +1846 -3327
  103. package/dist/index.mjs +3276 -48
  104. package/dist/shared/{ccjk.XgW1H2t3.mjs → ccjk.BF-4_Yho.mjs} +184 -183
  105. package/dist/shared/ccjk.BFQ7yr5S.mjs +16 -0
  106. package/dist/shared/{ccjk.DjD9Rzxq.mjs → ccjk.BpHTUkb8.mjs} +32 -73
  107. package/dist/shared/{ccjk.CcGtObYC.mjs → ccjk.CBhIZiPz.mjs} +1 -1
  108. package/dist/shared/{ccjk.CStk1q5N.mjs → ccjk.DH6cOJsf.mjs} +34 -21
  109. package/dist/shared/ccjk.DHbrGcgg.mjs +13 -0
  110. package/dist/shared/{ccjk.CGMs4Om4.mjs → ccjk.DcXM9drZ.mjs} +1 -1
  111. package/dist/shared/{ccjk.BiJujy5w.mjs → ccjk.DvIrK0wz.mjs} +6 -6
  112. package/dist/shared/{ccjk.C_3BYaWc.mjs → ccjk.DzcJpOoy.mjs} +54 -54
  113. package/dist/shared/{ccjk.CUdzQluX.mjs → ccjk.SIo9I8q3.mjs} +1 -1
  114. package/dist/shared/ccjk.pi0nsyn3.mjs +1242 -0
  115. package/package.json +63 -82
  116. package/templates/claude-code/common/settings.json +63 -30
  117. package/templates/common/error-prevention.md +267 -0
  118. package/bin/ccjk-cloud.mjs +0 -172
  119. package/dist/chunks/agent-orchestrator.mjs +0 -410
  120. package/dist/chunks/ccm.mjs +0 -49
  121. package/dist/chunks/cloud-sync2.mjs +0 -2799
  122. package/dist/chunks/cloud-v5.mjs +0 -1651
  123. package/dist/chunks/config-new.mjs +0 -2727
  124. package/dist/chunks/do.mjs +0 -743
  125. package/dist/chunks/executor.mjs +0 -1
  126. package/dist/chunks/export-metrics.mjs +0 -561
  127. package/dist/chunks/index3.mjs +0 -11
  128. package/dist/chunks/index4.mjs +0 -16
  129. package/dist/chunks/index5.mjs +0 -1171
  130. package/dist/chunks/index6.mjs +0 -4924
  131. package/dist/chunks/manager.mjs +0 -1408
  132. package/dist/chunks/marketplace2.mjs +0 -262
  133. package/dist/chunks/preset.mjs +0 -957
  134. package/dist/i18n/locales/en/agent.json +0 -15
  135. package/dist/i18n/locales/en/ccm.json +0 -48
  136. package/dist/i18n/locales/en/metrics.json +0 -5
  137. package/dist/i18n/locales/en/plugin-system.json +0 -80
  138. package/dist/i18n/locales/en/preset.json +0 -205
  139. package/dist/i18n/locales/en/session.json +0 -17
  140. package/dist/i18n/locales/en/upgrade.json +0 -24
  141. package/dist/i18n/locales/zh-CN/agent.json +0 -15
  142. package/dist/i18n/locales/zh-CN/ccm.json +0 -48
  143. package/dist/i18n/locales/zh-CN/metrics.json +0 -5
  144. package/dist/i18n/locales/zh-CN/plugin-system.json +0 -80
  145. package/dist/i18n/locales/zh-CN/preset.json +0 -205
  146. package/dist/i18n/locales/zh-CN/session.json +0 -17
  147. package/dist/i18n/locales/zh-CN/upgrade.json +0 -24
  148. package/dist/shared/ccjk.BjUZt6kx.mjs +0 -586
  149. package/dist/shared/ccjk.CnZNdDGU.mjs +0 -212
  150. package/dist/shared/ccjk.DhBeLRzf.mjs +0 -28
  151. package/dist/shared/ccjk.tI4PJA0c.mjs +0 -761
  152. package/templates/CLAUDE.md +0 -219
  153. package/templates/claude-code/CLAUDE.md +0 -250
  154. package/templates/claude-code/en/workflow/bmad/commands/bmad-init.md +0 -165
  155. package/templates/claude-code/en/workflow/common/agents/get-current-datetime.md +0 -29
  156. package/templates/claude-code/en/workflow/common/agents/init-architect.md +0 -114
  157. package/templates/claude-code/en/workflow/common/commands/init-project.md +0 -53
  158. package/templates/claude-code/en/workflow/essential/agents/get-current-datetime.md +0 -29
  159. package/templates/claude-code/en/workflow/essential/agents/init-architect.md +0 -114
  160. package/templates/claude-code/en/workflow/essential/agents/planner.md +0 -116
  161. package/templates/claude-code/en/workflow/essential/agents/ui-ux-designer.md +0 -91
  162. package/templates/claude-code/en/workflow/essential/commands/feat.md +0 -256
  163. package/templates/claude-code/en/workflow/essential/commands/init-project.md +0 -53
  164. package/templates/claude-code/en/workflow/plan/agents/planner.md +0 -116
  165. package/templates/claude-code/en/workflow/plan/agents/ui-ux-designer.md +0 -91
  166. package/templates/claude-code/en/workflow/plan/commands/feat.md +0 -105
  167. package/templates/claude-code/zh-CN/workflow/bmad/commands/bmad-init.md +0 -172
  168. package/templates/claude-code/zh-CN/workflow/common/agents/get-current-datetime.md +0 -29
  169. package/templates/claude-code/zh-CN/workflow/common/agents/init-architect.md +0 -114
  170. package/templates/claude-code/zh-CN/workflow/common/commands/init-project.md +0 -53
  171. package/templates/claude-code/zh-CN/workflow/essential/agents/get-current-datetime.md +0 -29
  172. package/templates/claude-code/zh-CN/workflow/essential/agents/init-architect.md +0 -114
  173. package/templates/claude-code/zh-CN/workflow/essential/agents/planner.md +0 -116
  174. package/templates/claude-code/zh-CN/workflow/essential/agents/ui-ux-designer.md +0 -91
  175. package/templates/claude-code/zh-CN/workflow/essential/commands/feat.md +0 -254
  176. package/templates/claude-code/zh-CN/workflow/essential/commands/init-project.md +0 -53
  177. package/templates/claude-code/zh-CN/workflow/plan/agents/planner.md +0 -116
  178. package/templates/claude-code/zh-CN/workflow/plan/agents/ui-ux-designer.md +0 -91
  179. package/templates/claude-code/zh-CN/workflow/plan/commands/feat.md +0 -105
  180. package/templates/codex/common/config.toml +0 -0
  181. package/templates/common/output-styles/en/casual-friendly.md +0 -97
  182. package/templates/common/output-styles/en/expert-concise.md +0 -93
  183. package/templates/common/output-styles/en/pair-programmer.md +0 -177
  184. package/templates/common/output-styles/en/senior-architect.md +0 -121
  185. package/templates/common/output-styles/en/speed-coder.md +0 -185
  186. package/templates/common/output-styles/en/teaching-mode.md +0 -102
  187. package/templates/common/output-styles/en/technical-precise.md +0 -101
  188. package/templates/common/output-styles/zh-CN/pair-programmer.md +0 -177
  189. package/templates/common/output-styles/zh-CN/senior-architect.md +0 -297
  190. package/templates/common/output-styles/zh-CN/speed-coder.md +0 -185
  191. package/templates/common/skills/code-review.md +0 -343
  192. package/templates/common/skills/en/agent-browser.md +0 -258
  193. package/templates/common/skills/en/brainstorming.md +0 -64
  194. package/templates/common/skills/en/code-review.md +0 -81
  195. package/templates/common/skills/en/documentation-gen.md +0 -808
  196. package/templates/common/skills/en/executing-plans.md +0 -75
  197. package/templates/common/skills/en/git-commit.md +0 -216
  198. package/templates/common/skills/en/interview.md +0 -223
  199. package/templates/common/skills/en/migration-assistant.md +0 -312
  200. package/templates/common/skills/en/performance-profiling.md +0 -576
  201. package/templates/common/skills/en/pr-review.md +0 -341
  202. package/templates/common/skills/en/refactoring.md +0 -384
  203. package/templates/common/skills/en/security-audit.md +0 -462
  204. package/templates/common/skills/en/systematic-debugging.md +0 -82
  205. package/templates/common/skills/en/tdd-workflow.md +0 -93
  206. package/templates/common/skills/en/verification.md +0 -81
  207. package/templates/common/skills/en/workflow.md +0 -370
  208. package/templates/common/skills/en/writing-plans.md +0 -78
  209. package/templates/common/skills/summarize.md +0 -312
  210. package/templates/common/skills/translate.md +0 -202
  211. package/templates/common/skills/zh-CN/agent-browser.md +0 -260
  212. package/templates/common/skills/zh-CN/documentation-gen.md +0 -807
  213. package/templates/common/skills/zh-CN/migration-assistant.md +0 -318
  214. package/templates/common/skills/zh-CN/performance-profiling.md +0 -746
  215. package/templates/common/skills/zh-CN/pr-review.md +0 -341
  216. package/templates/common/skills/zh-CN/refactoring.md +0 -384
  217. package/templates/common/skills/zh-CN/security-audit.md +0 -462
  218. package/templates/common/smart-guide/en/smart-guide.md +0 -72
  219. package/templates/common/smart-guide/zh-CN/smart-guide.md +0 -72
  220. package/templates/common/workflow/git/en/git-cleanBranches.md +0 -102
  221. package/templates/common/workflow/git/en/git-commit.md +0 -205
  222. package/templates/common/workflow/git/en/git-rollback.md +0 -90
  223. package/templates/common/workflow/git/en/git-worktree.md +0 -276
  224. package/templates/common/workflow/git/zh-CN/git-cleanBranches.md +0 -102
  225. package/templates/common/workflow/git/zh-CN/git-commit.md +0 -205
  226. package/templates/common/workflow/git/zh-CN/git-rollback.md +0 -90
  227. package/templates/common/workflow/git/zh-CN/git-worktree.md +0 -276
  228. package/templates/common/workflow/interview/en/interview.md +0 -212
  229. package/templates/common/workflow/interview/zh-CN/interview.md +0 -212
  230. package/templates/common/workflow/sixStep/en/workflow.md +0 -357
  231. package/templates/common/workflow/sixStep/zh-CN/workflow.md +0 -357
  232. package/templates/industry/devops/en/ci-cd-pipeline.md +0 -410
  233. package/templates/industry/web-dev/en/api-design.md +0 -299
  234. package/templates/industry/web-dev/en/react-nextjs-setup.md +0 -236
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025-PRESENT CCJK Contributors
3
+ Copyright (c) 2026 CCJK Contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -19,52 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
20
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
21
  SOFTWARE.
22
-
23
- ---
24
-
25
- ## 🌟 Open Source Philosophy
26
-
27
- CCJK is **completely free and open source**, following the NewAPI model:
28
-
29
- ### ✅ You CAN:
30
- - Use CCJK for any purpose (personal, commercial, enterprise)
31
- - Modify and customize the code
32
- - Deploy your own cloud services
33
- - Fork and create derivative works
34
- - Use official cloud services (optional, free)
35
- - Self-host all components
36
-
37
- ### 🎯 Official Cloud Services (Optional)
38
-
39
- We provide **free** official cloud services at cloud.iccjk.com:
40
- - ✅ Completely free, no API key required
41
- - ✅ AI orchestration and multi-agent coordination
42
- - ✅ Plugin marketplace
43
- - ✅ Configuration synchronization
44
- - ✅ No usage limits
45
- - ✅ Community support
46
-
47
- ### 🏗️ Self-Hosting (Encouraged)
48
-
49
- You are **encouraged** to self-host CCJK Cloud Platform:
50
- - ✅ Full source code available in private repo (contact for access)
51
- - ✅ Docker deployment scripts included
52
- - ✅ Kubernetes manifests provided
53
- - ✅ Complete documentation
54
- - ✅ No license fees
55
- - ✅ Community support
56
-
57
- ### 🤝 Contributing
58
-
59
- We welcome contributions! See CONTRIBUTING.md for details.
60
-
61
- ### 📧 Contact
62
-
63
- - General: support@iccjk.com
64
- - Self-hosting help: selfhost@iccjk.com
65
- - Security: security@iccjk.com
66
-
67
- ---
68
-
69
- For self-hosting guide, see: SELF_HOSTING.md
70
- For cloud services info, see: CLOUD_SERVICES.md