ccjk 4.0.0-beta.1 → 4.0.0-beta.2
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 +50 -1
- package/dist/chunks/claude-wrapper.mjs +3588 -393
- package/dist/chunks/codex.mjs +1 -1
- package/dist/chunks/context.mjs +5 -7
- package/dist/chunks/init.mjs +18 -2
- package/dist/chunks/menu.mjs +1 -1
- package/dist/chunks/package.mjs +1 -1
- package/dist/chunks/platform.mjs +1 -50
- package/dist/cli.mjs +4 -4
- package/dist/i18n/locales/en/errors.json +14 -1
- package/dist/i18n/locales/zh-CN/errors.json +14 -1
- package/dist/index.mjs +1 -1
- package/package.json +28 -24
- package/templates/claude-code/en/workflow/essential/commands/feat.md +6 -0
- package/templates/claude-code/zh-CN/workflow/essential/commands/feat.md +6 -0
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2025-PRESENT
|
|
3
|
+
Copyright (c) 2025-PRESENT 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,3 +19,52 @@ 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
|