ccjk 6.0.2 → 7.0.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/LICENSE +1 -50
- package/README.en.md +760 -0
- package/README.ja.md +37 -1
- package/README.ko.md +37 -1
- package/README.md +676 -356
- package/bin/ccjk.ts +222 -0
- package/dist/chunks/agent.mjs +162 -162
- package/dist/chunks/api-providers.mjs +1 -1
- package/dist/chunks/api.mjs +764 -12
- package/dist/chunks/auto-bootstrap.mjs +1 -1
- package/dist/chunks/auto-updater.mjs +47 -198
- package/dist/chunks/ccjk-config.mjs +1 -1
- package/dist/chunks/ccr.mjs +16 -16
- package/dist/chunks/ccu.mjs +7 -7
- package/dist/chunks/check-updates.mjs +10 -8
- package/dist/chunks/claude-code-config-manager.mjs +8 -7
- package/dist/chunks/claude-code-incremental-manager.mjs +43 -41
- package/dist/chunks/claude-config.mjs +209 -0
- package/dist/chunks/claude-wrapper.mjs +62 -3635
- package/dist/chunks/cli.mjs +2203 -0
- package/dist/chunks/codex-config-switch.mjs +437 -0
- package/dist/chunks/codex-provider-manager.mjs +222 -0
- package/dist/chunks/codex-uninstaller.mjs +398 -0
- package/dist/chunks/codex.mjs +106 -130
- package/dist/chunks/commands.mjs +26 -26
- package/dist/chunks/commands2.mjs +7 -10
- package/dist/chunks/commit.mjs +16 -16
- package/dist/chunks/config-consolidator.mjs +13 -121
- package/dist/chunks/config-switch.mjs +45 -43
- package/dist/chunks/config.mjs +393 -511
- package/dist/chunks/config2.mjs +309 -411
- package/dist/chunks/config3.mjs +465 -0
- package/dist/chunks/constants.mjs +12 -65
- package/dist/chunks/context.mjs +4 -771
- package/dist/chunks/doctor.mjs +91 -33
- package/dist/chunks/features.mjs +185 -105
- package/dist/chunks/help.mjs +116 -116
- package/dist/chunks/index.mjs +162 -11
- package/dist/chunks/index2.mjs +1162 -149
- package/dist/chunks/init.mjs +270 -1481
- package/dist/chunks/installer.mjs +0 -2
- package/dist/chunks/installer2.mjs +680 -0
- package/dist/chunks/interview.mjs +103 -103
- package/dist/chunks/marketplace.mjs +61 -61
- package/dist/chunks/mcp-server.mjs +3 -3
- package/dist/chunks/mcp.mjs +91 -89
- package/dist/chunks/menu.mjs +891 -565
- package/dist/chunks/notification.mjs +141 -141
- package/dist/chunks/onboarding.mjs +10 -18
- package/dist/chunks/package.mjs +1 -1
- package/dist/chunks/permission-manager.mjs +11 -88
- package/dist/chunks/permissions.mjs +164 -342
- package/dist/chunks/platform.mjs +93 -23
- package/dist/chunks/plugin.mjs +102 -102
- package/dist/chunks/prompts.mjs +18 -17
- package/dist/chunks/providers.mjs +66 -66
- package/dist/chunks/session.mjs +10 -797
- package/dist/chunks/silent-updater.mjs +1 -1
- package/dist/chunks/skill.mjs +74 -75
- package/dist/chunks/skills-sync.mjs +73 -73
- package/dist/chunks/skills.mjs +1229 -94
- package/dist/chunks/stats.mjs +39 -39
- package/dist/chunks/team.mjs +7 -7
- package/dist/chunks/thinking.mjs +615 -0
- package/dist/chunks/uninstall.mjs +41 -40
- package/dist/chunks/update.mjs +12 -10
- package/dist/chunks/upgrade-manager.mjs +5 -5
- package/dist/chunks/version-checker.mjs +35 -35
- package/dist/chunks/vim.mjs +891 -0
- package/dist/chunks/workflows.mjs +1 -1
- package/dist/chunks/workflows2.mjs +13 -13
- package/dist/cli.mjs +169 -85
- package/dist/i18n/locales/en/api.json +1 -13
- package/dist/i18n/locales/en/cli.json +67 -24
- package/dist/i18n/locales/en/config.json +108 -0
- package/dist/i18n/locales/en/configuration.json +97 -1
- package/dist/i18n/locales/en/context.json +1 -14
- package/dist/i18n/locales/en/errors.json +1 -19
- package/dist/i18n/locales/en/lsp.json +78 -0
- package/dist/i18n/locales/en/mcp.json +11 -0
- package/dist/i18n/locales/en/menu.json +1 -18
- package/dist/i18n/locales/en/permissions.json +53 -1
- package/dist/i18n/locales/en/skills.json +0 -58
- package/dist/i18n/locales/en/thinking.json +65 -0
- package/dist/i18n/locales/en/updater.json +1 -14
- package/dist/i18n/locales/en/vim.json +169 -0
- package/dist/i18n/locales/zh-CN/api.json +1 -13
- package/dist/i18n/locales/zh-CN/cli.json +67 -24
- package/dist/i18n/locales/zh-CN/config.json +108 -0
- package/dist/i18n/locales/zh-CN/configuration.json +97 -1
- package/dist/i18n/locales/zh-CN/context.json +1 -14
- package/dist/i18n/locales/zh-CN/errors.json +1 -19
- package/dist/i18n/locales/zh-CN/lsp.json +78 -0
- package/dist/i18n/locales/zh-CN/mcp.json +11 -0
- package/dist/i18n/locales/zh-CN/menu.json +1 -18
- package/dist/i18n/locales/zh-CN/permissions.json +53 -1
- package/dist/i18n/locales/zh-CN/skills.json +0 -58
- package/dist/i18n/locales/zh-CN/thinking.json +65 -0
- package/dist/i18n/locales/zh-CN/updater.json +1 -14
- package/dist/i18n/locales/zh-CN/vim.json +169 -0
- package/dist/index.d.mts +1846 -3325
- package/dist/index.d.ts +1846 -3325
- package/dist/index.mjs +3276 -46
- package/dist/shared/{ccjk.XgW1H2t3.mjs → ccjk.BF-4_Yho.mjs} +184 -183
- package/dist/shared/ccjk.BFQ7yr5S.mjs +16 -0
- package/dist/shared/{ccjk.DjD9Rzxq.mjs → ccjk.BpHTUkb8.mjs} +32 -73
- package/dist/shared/{ccjk.CcGtObYC.mjs → ccjk.CBhIZiPz.mjs} +1 -1
- package/dist/shared/{ccjk.CStk1q5N.mjs → ccjk.DH6cOJsf.mjs} +34 -21
- package/dist/shared/ccjk.DHbrGcgg.mjs +13 -0
- package/dist/shared/{ccjk.CGMs4Om4.mjs → ccjk.DcXM9drZ.mjs} +1 -1
- package/dist/shared/{ccjk.BiJujy5w.mjs → ccjk.DvIrK0wz.mjs} +6 -6
- package/dist/shared/{ccjk.C_3BYaWc.mjs → ccjk.DzcJpOoy.mjs} +54 -54
- package/dist/shared/{ccjk.CUdzQluX.mjs → ccjk.SIo9I8q3.mjs} +1 -1
- package/dist/shared/ccjk.pi0nsyn3.mjs +1242 -0
- package/package.json +64 -90
- package/templates/claude-code/common/settings.json +63 -30
- package/templates/common/error-prevention.md +267 -0
- package/.claude/hooks/ccjk-diagnose-hook.sh +0 -106
- package/.claude/hooks/eslint-hook.ts +0 -122
- package/.claude-plugin/plugin.json +0 -9
- package/README-INTERNAL.md +0 -305
- package/agents/agent-router.md +0 -135
- package/agents/agents.json +0 -6
- package/agents/cache-manager.ts +0 -265
- package/agents/doc-researcher.md +0 -202
- package/agents/mcp-researcher.md +0 -285
- package/agents/npm-researcher.md +0 -383
- package/agents/version-checker.md +0 -332
- package/bin/ccjk-cloud.mjs +0 -172
- package/dist/chunks/ccm.mjs +0 -49
- package/dist/chunks/cloud-v5.mjs +0 -1651
- package/dist/chunks/export-metrics.mjs +0 -561
- package/dist/chunks/index3.mjs +0 -1171
- package/dist/chunks/index4.mjs +0 -6551
- package/dist/chunks/manager.mjs +0 -1408
- package/dist/i18n/locales/en/agent.json +0 -15
- package/dist/i18n/locales/en/ccm.json +0 -48
- package/dist/i18n/locales/en/metrics.json +0 -5
- package/dist/i18n/locales/en/plugin-system.json +0 -80
- package/dist/i18n/locales/en/session.json +0 -17
- package/dist/i18n/locales/en/upgrade.json +0 -24
- package/dist/i18n/locales/zh-CN/agent.json +0 -15
- package/dist/i18n/locales/zh-CN/ccm.json +0 -48
- package/dist/i18n/locales/zh-CN/metrics.json +0 -5
- package/dist/i18n/locales/zh-CN/plugin-system.json +0 -80
- package/dist/i18n/locales/zh-CN/session.json +0 -17
- package/dist/i18n/locales/zh-CN/upgrade.json +0 -24
- package/dist/shared/ccjk.BjUZt6kx.mjs +0 -586
- package/dist/shared/ccjk.CnZNdDGU.mjs +0 -212
- package/dist/shared/ccjk.DhBeLRzf.mjs +0 -28
- package/dist/shared/ccjk.tI4PJA0c.mjs +0 -761
- package/hooks/hooks.json +0 -15
- package/skills/ccjk/SKILL.md +0 -224
- package/skills/ccjk/references/ccjk-defaults.md +0 -265
- package/skills/ccjk/references/coding-standards.md +0 -198
- package/skills/ccjk/references/error-patterns.md +0 -353
- package/skills/ccjk/references/platform-conventions.md +0 -307
- package/skills/ccjk-config/SKILL.md +0 -301
- package/skills/ccjk-init/SKILL.md +0 -201
- package/skills/ccjk-mcp/SKILL.md +0 -249
- package/skills/ccjk-sync/SKILL.md +0 -328
- package/skills/coding-guidelines.md +0 -262
- package/skills/config-router/SKILL.md +0 -233
- package/skills/domain-cli.md +0 -228
- package/skills/domain-cloud.md +0 -246
- package/skills/domain-desktop.md +0 -272
- package/skills/domain-web.md +0 -229
- package/skills/layer1-api.md +0 -160
- package/skills/layer1-mcp.md +0 -305
- package/skills/layer1-workflow.md +0 -144
- package/skills/layer2-best-practices.md +0 -155
- package/skills/layer2-design-patterns.md +0 -107
- package/templates/CLAUDE.md +0 -219
- package/templates/claude-code/CLAUDE.md +0 -250
- package/templates/claude-code/en/workflow/bmad/commands/bmad-init.md +0 -165
- package/templates/claude-code/en/workflow/common/agents/get-current-datetime.md +0 -29
- package/templates/claude-code/en/workflow/common/agents/init-architect.md +0 -114
- package/templates/claude-code/en/workflow/common/commands/init-project.md +0 -53
- package/templates/claude-code/en/workflow/essential/agents/get-current-datetime.md +0 -29
- package/templates/claude-code/en/workflow/essential/agents/init-architect.md +0 -114
- package/templates/claude-code/en/workflow/essential/agents/planner.md +0 -116
- package/templates/claude-code/en/workflow/essential/agents/ui-ux-designer.md +0 -91
- package/templates/claude-code/en/workflow/essential/commands/feat.md +0 -256
- package/templates/claude-code/en/workflow/essential/commands/init-project.md +0 -53
- package/templates/claude-code/en/workflow/plan/agents/planner.md +0 -116
- package/templates/claude-code/en/workflow/plan/agents/ui-ux-designer.md +0 -91
- package/templates/claude-code/en/workflow/plan/commands/feat.md +0 -105
- package/templates/claude-code/zh-CN/workflow/bmad/commands/bmad-init.md +0 -172
- package/templates/claude-code/zh-CN/workflow/common/agents/get-current-datetime.md +0 -29
- package/templates/claude-code/zh-CN/workflow/common/agents/init-architect.md +0 -114
- package/templates/claude-code/zh-CN/workflow/common/commands/init-project.md +0 -53
- package/templates/claude-code/zh-CN/workflow/essential/agents/get-current-datetime.md +0 -29
- package/templates/claude-code/zh-CN/workflow/essential/agents/init-architect.md +0 -114
- package/templates/claude-code/zh-CN/workflow/essential/agents/planner.md +0 -116
- package/templates/claude-code/zh-CN/workflow/essential/agents/ui-ux-designer.md +0 -91
- package/templates/claude-code/zh-CN/workflow/essential/commands/feat.md +0 -254
- package/templates/claude-code/zh-CN/workflow/essential/commands/init-project.md +0 -53
- package/templates/claude-code/zh-CN/workflow/plan/agents/planner.md +0 -116
- package/templates/claude-code/zh-CN/workflow/plan/agents/ui-ux-designer.md +0 -91
- package/templates/claude-code/zh-CN/workflow/plan/commands/feat.md +0 -105
- package/templates/codex/common/config.toml +0 -0
- package/templates/common/output-styles/en/casual-friendly.md +0 -97
- package/templates/common/output-styles/en/expert-concise.md +0 -93
- package/templates/common/output-styles/en/pair-programmer.md +0 -177
- package/templates/common/output-styles/en/senior-architect.md +0 -121
- package/templates/common/output-styles/en/speed-coder.md +0 -185
- package/templates/common/output-styles/en/teaching-mode.md +0 -102
- package/templates/common/output-styles/en/technical-precise.md +0 -101
- package/templates/common/output-styles/zh-CN/pair-programmer.md +0 -177
- package/templates/common/output-styles/zh-CN/senior-architect.md +0 -297
- package/templates/common/output-styles/zh-CN/speed-coder.md +0 -185
- package/templates/common/skills/code-review.md +0 -343
- package/templates/common/skills/en/agent-browser.md +0 -258
- package/templates/common/skills/en/brainstorming.md +0 -64
- package/templates/common/skills/en/code-review.md +0 -81
- package/templates/common/skills/en/documentation-gen.md +0 -808
- package/templates/common/skills/en/executing-plans.md +0 -75
- package/templates/common/skills/en/git-commit.md +0 -216
- package/templates/common/skills/en/interview.md +0 -223
- package/templates/common/skills/en/migration-assistant.md +0 -312
- package/templates/common/skills/en/performance-profiling.md +0 -576
- package/templates/common/skills/en/pr-review.md +0 -341
- package/templates/common/skills/en/refactoring.md +0 -384
- package/templates/common/skills/en/security-audit.md +0 -462
- package/templates/common/skills/en/systematic-debugging.md +0 -82
- package/templates/common/skills/en/tdd-workflow.md +0 -93
- package/templates/common/skills/en/verification.md +0 -81
- package/templates/common/skills/en/workflow.md +0 -370
- package/templates/common/skills/en/writing-plans.md +0 -78
- package/templates/common/skills/summarize.md +0 -312
- package/templates/common/skills/translate.md +0 -202
- package/templates/common/skills/zh-CN/agent-browser.md +0 -260
- package/templates/common/skills/zh-CN/documentation-gen.md +0 -807
- package/templates/common/skills/zh-CN/migration-assistant.md +0 -318
- package/templates/common/skills/zh-CN/performance-profiling.md +0 -746
- package/templates/common/skills/zh-CN/pr-review.md +0 -341
- package/templates/common/skills/zh-CN/refactoring.md +0 -384
- package/templates/common/skills/zh-CN/security-audit.md +0 -462
- package/templates/common/smart-guide/en/smart-guide.md +0 -72
- package/templates/common/smart-guide/zh-CN/smart-guide.md +0 -72
- package/templates/common/workflow/git/en/git-cleanBranches.md +0 -102
- package/templates/common/workflow/git/en/git-commit.md +0 -205
- package/templates/common/workflow/git/en/git-rollback.md +0 -90
- package/templates/common/workflow/git/en/git-worktree.md +0 -276
- package/templates/common/workflow/git/zh-CN/git-cleanBranches.md +0 -102
- package/templates/common/workflow/git/zh-CN/git-commit.md +0 -205
- package/templates/common/workflow/git/zh-CN/git-rollback.md +0 -90
- package/templates/common/workflow/git/zh-CN/git-worktree.md +0 -276
- package/templates/common/workflow/interview/en/interview.md +0 -212
- package/templates/common/workflow/interview/zh-CN/interview.md +0 -212
- package/templates/common/workflow/sixStep/en/workflow.md +0 -357
- package/templates/common/workflow/sixStep/zh-CN/workflow.md +0 -357
- package/templates/industry/devops/en/ci-cd-pipeline.md +0 -410
- package/templates/industry/web-dev/en/api-design.md +0 -299
- 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)
|
|
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
|