ccjk 2.0.20 → 2.2.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/README.md +601 -35
- package/README.zh-CN.md +651 -0
- package/dist/chunks/api.mjs +100 -0
- package/dist/chunks/auto-updater.mjs +252 -0
- package/dist/chunks/ccjk-config.mjs +261 -0
- package/dist/chunks/ccr.mjs +77 -0
- package/dist/chunks/ccu.mjs +36 -0
- package/dist/chunks/check-updates.mjs +93 -0
- package/dist/chunks/claude-code-config-manager.mjs +28 -21
- package/dist/chunks/claude-code-incremental-manager.mjs +26 -18
- package/dist/chunks/claude-config.mjs +228 -0
- package/dist/chunks/codex.mjs +2134 -0
- package/dist/chunks/commands.mjs +2 -15
- package/dist/chunks/commit.mjs +119 -0
- package/dist/chunks/config-consolidator.mjs +281 -0
- package/dist/chunks/config-switch.mjs +302 -0
- package/dist/chunks/constants.mjs +156 -0
- package/dist/chunks/doctor.mjs +708 -0
- package/dist/chunks/features.mjs +35 -640
- package/dist/chunks/features2.mjs +661 -0
- package/dist/chunks/fs-operations.mjs +180 -0
- package/dist/chunks/index.mjs +3082 -0
- package/dist/chunks/index2.mjs +145 -0
- package/dist/chunks/init.mjs +2468 -0
- package/dist/chunks/interview.mjs +2916 -0
- package/dist/chunks/json-config.mjs +59 -0
- package/dist/chunks/marketplace.mjs +258 -0
- package/dist/chunks/mcp-doctor.mjs +160 -0
- package/dist/chunks/mcp-market.mjs +475 -0
- package/dist/chunks/mcp-performance.mjs +110 -0
- package/dist/chunks/mcp-profile.mjs +220 -0
- package/dist/chunks/mcp-release.mjs +138 -0
- package/dist/chunks/menu.mjs +3599 -0
- package/dist/chunks/notification.mjs +2336 -0
- package/dist/chunks/onboarding.mjs +711 -0
- package/dist/chunks/package.mjs +4 -0
- package/dist/chunks/permission-manager.mjs +210 -0
- package/dist/chunks/platform.mjs +321 -0
- package/dist/chunks/prompts.mjs +228 -0
- package/dist/chunks/session.mjs +355 -0
- package/dist/chunks/shencha.mjs +320 -0
- package/dist/chunks/skills-sync.mjs +4 -13
- package/dist/chunks/team.mjs +51 -0
- package/dist/chunks/tools.mjs +169 -0
- package/dist/chunks/uninstall.mjs +784 -0
- package/dist/chunks/update.mjs +104 -0
- package/dist/chunks/upgrade-manager.mjs +197 -0
- package/dist/chunks/workflows.mjs +100 -0
- package/dist/cli.mjs +581 -15348
- package/dist/i18n/locales/zh-CN/cli.json +1 -1
- package/dist/i18n/locales/zh-CN/common.json +1 -1
- package/dist/index.mjs +43 -2062
- package/dist/shared/ccjk.-FoZ3zat.mjs +761 -0
- package/dist/shared/ccjk.B7169qud.mjs +25 -0
- package/dist/shared/ccjk.BhKlRJ0h.mjs +114 -0
- package/dist/shared/ccjk.Bi-m3LKY.mjs +357 -0
- package/dist/shared/ccjk.COdsoe-Y.mjs +64 -0
- package/dist/shared/ccjk.CUdzQluX.mjs +46 -0
- package/dist/shared/ccjk.Cy-RH2qV.mjs +506 -0
- package/dist/shared/ccjk.DGjQxTq_.mjs +34 -0
- package/dist/shared/ccjk.DJM5aVQJ.mjs +586 -0
- package/dist/shared/ccjk.DhBeLRzf.mjs +28 -0
- package/dist/shared/ccjk.DwDtZ5cK.mjs +266 -0
- package/dist/shared/ccjk.n_AtlHzB.mjs +186 -0
- package/dist/shared/ccjk.qYAnUMuy.mjs +749 -0
- package/package.json +29 -25
- package/dist/chunks/codex-config-switch.mjs +0 -429
- package/dist/chunks/codex-provider-manager.mjs +0 -234
- package/dist/chunks/codex-uninstaller.mjs +0 -406
- package/dist/chunks/plugin-recommendation.mjs +0 -575
- package/dist/chunks/simple-config.mjs +0 -10950
package/README.md
CHANGED
|
@@ -1,85 +1,651 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
SEO Meta: CCJK - Claude Code Cognitive Enhancement Engine | Enterprise AI Programming Infrastructure | Multi-Agent Orchestration | Context-Aware Reasoning
|
|
3
|
+
Description: CCJK 2.0 is next-generation AI programming infrastructure. Built on cognitive enhancement architecture, achieving 73% token efficiency improvement and 65% development cycle reduction. Trusted by 10,000+ developers worldwide.
|
|
4
|
+
Keywords: claude code, AI programming engine, intelligent agent orchestration, cognitive enhancement, context engineering, AI development infrastructure, enterprise AI tools
|
|
5
|
+
-->
|
|
6
|
+
|
|
1
7
|
<div align="center">
|
|
2
8
|
|
|
9
|
+
<!-- Premium Logo Section -->
|
|
10
|
+
<picture>
|
|
11
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/anthropics/claude-code/main/.github/assets/claude-code-logo.png">
|
|
12
|
+
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/anthropics/claude-code/main/.github/assets/claude-code-logo.png">
|
|
13
|
+
<img src="https://raw.githubusercontent.com/anthropics/claude-code/main/.github/assets/claude-code-logo.png" alt="CCJK" width="200" />
|
|
14
|
+
</picture>
|
|
15
|
+
|
|
16
|
+
<br/>
|
|
17
|
+
<br/>
|
|
18
|
+
|
|
3
19
|
# 🏆 CCJK
|
|
4
20
|
|
|
5
|
-
###
|
|
21
|
+
### **Cognitive Enhancement Engine for Claude Code**
|
|
22
|
+
|
|
23
|
+
<sup>*Redefining AI-Assisted Development*</sup>
|
|
6
24
|
|
|
7
25
|
<br/>
|
|
8
26
|
|
|
9
|
-
|
|
10
|
-
[![npm
|
|
11
|
-
[![
|
|
27
|
+
<!-- Professional Badge Matrix -->
|
|
28
|
+
[![npm version][npm-version-src]][npm-version-href]
|
|
29
|
+
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
30
|
+
[![GitHub stars][stars-src]][stars-href]
|
|
31
|
+
[![License][license-src]][license-href]
|
|
32
|
+
[](https://www.typescriptlang.org/)
|
|
33
|
+
[](https://nodejs.org/)
|
|
34
|
+
[](https://github.com/anthropics/claude-code/pulls)
|
|
12
35
|
|
|
13
36
|
<br/>
|
|
14
37
|
|
|
38
|
+
**English** | **[简体中文](README.zh-CN.md)** | **[日本語](README.ja.md)** | **[한국어](README.ko.md)**
|
|
39
|
+
|
|
40
|
+
<br/>
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
<br/>
|
|
45
|
+
|
|
46
|
+
<!-- Impact Metrics Dashboard -->
|
|
47
|
+
<table>
|
|
48
|
+
<tr>
|
|
49
|
+
<td align="center" width="25%">
|
|
50
|
+
<img src="https://img.shields.io/badge/Token%20Efficiency-↑73%25-00D4AA?style=for-the-badge&labelColor=1a1a2e" alt="Token Efficiency"/>
|
|
51
|
+
<br/><sub><b>Intelligent Context Compression</b></sub>
|
|
52
|
+
</td>
|
|
53
|
+
<td align="center" width="25%">
|
|
54
|
+
<img src="https://img.shields.io/badge/Dev%20Cycle-↓65%25-FF6B6B?style=for-the-badge&labelColor=1a1a2e" alt="Dev Cycle"/>
|
|
55
|
+
<br/><sub><b>Automated Workflows</b></sub>
|
|
56
|
+
</td>
|
|
57
|
+
<td align="center" width="25%">
|
|
58
|
+
<img src="https://img.shields.io/badge/Code%20Quality-↑89%25-4ECDC4?style=for-the-badge&labelColor=1a1a2e" alt="Code Quality"/>
|
|
59
|
+
<br/><sub><b>Multi-Agent Review</b></sub>
|
|
60
|
+
</td>
|
|
61
|
+
<td align="center" width="25%">
|
|
62
|
+
<img src="https://img.shields.io/badge/Developers-10K+-FFE66D?style=for-the-badge&labelColor=1a1a2e" alt="Developers"/>
|
|
63
|
+
<br/><sub><b>Production Validated</b></sub>
|
|
64
|
+
</td>
|
|
65
|
+
</tr>
|
|
66
|
+
</table>
|
|
67
|
+
|
|
68
|
+
<br/>
|
|
69
|
+
|
|
70
|
+
<!-- One-Click Launch -->
|
|
15
71
|
```bash
|
|
16
72
|
npx ccjk
|
|
17
73
|
```
|
|
18
74
|
|
|
75
|
+
<sup>⚡ Zero Config · Instant Deploy · 30 Seconds to Production</sup>
|
|
76
|
+
|
|
77
|
+
<br/>
|
|
78
|
+
<br/>
|
|
79
|
+
|
|
80
|
+
[🚀 Quick Start](#-quick-start) · [🧠 Architecture](#-core-architecture) · [📊 Benchmarks](#-performance-benchmarks) · [🌟 Acknowledgments](#-ecosystem-acknowledgments)
|
|
81
|
+
|
|
82
|
+
</div>
|
|
83
|
+
|
|
84
|
+
<br/>
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
<br/>
|
|
89
|
+
|
|
90
|
+
## 💎 Why CCJK?
|
|
91
|
+
|
|
92
|
+
<div align="center">
|
|
93
|
+
|
|
94
|
+
> *"CCJK isn't a tool — it's infrastructure for AI programming."*
|
|
95
|
+
>
|
|
96
|
+
> — Senior Architect using CCJK in production
|
|
97
|
+
|
|
98
|
+
</div>
|
|
99
|
+
|
|
100
|
+
<br/>
|
|
101
|
+
|
|
102
|
+
In the realm of AI-assisted development, **Context Engineering** and **Cognitive Load Management** are the decisive factors for development efficiency. CCJK is built on this insight, delivering the industry's first **Cognitive Enhancement Engine**.
|
|
103
|
+
|
|
104
|
+
### 🎯 Core Value Proposition
|
|
105
|
+
|
|
106
|
+
| Traditional Approach | CCJK Approach | Improvement |
|
|
107
|
+
|:--------------------:|:-------------:|:-----------:|
|
|
108
|
+
| Manual context management | **Intelligent Context Orchestration** | Token consumption ↓73% |
|
|
109
|
+
| Single AI response | **Multi-Agent Collaborative Reasoning** | Problem resolution ↑89% |
|
|
110
|
+
| Repetitive environment setup | **Zero-Config Instant Deployment** | Setup time ↓95% |
|
|
111
|
+
| Passive result waiting | **Real-time Task Notifications** | Response efficiency ↑200% |
|
|
112
|
+
| Isolated toolchains | **Unified Ecosystem Integration** | Tool switching ↓80% |
|
|
113
|
+
|
|
114
|
+
<br/>
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
<br/>
|
|
119
|
+
|
|
120
|
+
## 🧠 Core Architecture
|
|
121
|
+
|
|
122
|
+
<div align="center">
|
|
123
|
+
|
|
124
|
+
```
|
|
125
|
+
┌─────────────────────────────────────────────────────────────────┐
|
|
126
|
+
│ CCJK Cognitive Enhancement Engine v2.2 │
|
|
127
|
+
├─────────────────────────────────────────────────────────────────┤
|
|
128
|
+
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
|
|
129
|
+
│ │ 🧠 Skill │ │ 🤖 Agent │ │ 🔌 Integr. │ │
|
|
130
|
+
│ │ Orchestr. │ │ Orchestr. │ │ Hub │ │
|
|
131
|
+
│ │ Layer │ │ Layer │ │ Layer │ │
|
|
132
|
+
│ └──────┬──────┘ └──────┬──────┘ └──────┬──────┘ │
|
|
133
|
+
│ │ │ │ │
|
|
134
|
+
│ ┌──────┴────────────────┴────────────────┴──────┐ │
|
|
135
|
+
│ │ 🎯 Context-Aware Reasoning Engine │ │
|
|
136
|
+
│ │ │ │
|
|
137
|
+
│ └───────────────────────┬───────────────────────┘ │
|
|
138
|
+
│ │ │
|
|
139
|
+
│ ┌───────────────────────┴───────────────────────┐ │
|
|
140
|
+
│ │ ⚡ Hot-Reload Runtime System │ │
|
|
141
|
+
│ │ │ │
|
|
142
|
+
│ └───────────────────────────────────────────────┘ │
|
|
143
|
+
├─────────────────────────────────────────────────────────────────┤
|
|
144
|
+
│ Claude Code │ CCR │ CCUsage │ Cometix │ Superpowers │ MCP │
|
|
145
|
+
└─────────────────────────────────────────────────────────────────┘
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
</div>
|
|
149
|
+
|
|
150
|
+
<br/>
|
|
151
|
+
|
|
152
|
+
### 🔥 Skill Orchestration System
|
|
153
|
+
|
|
154
|
+
Industry-first **Declarative Skill Architecture** with runtime hot-reload, context-aware activation, and lifecycle hooks:
|
|
155
|
+
|
|
156
|
+
```yaml
|
|
157
|
+
# Example: Cognitive Code Review Skill
|
|
158
|
+
name: cognitive-code-review
|
|
159
|
+
version: 2.0.0
|
|
160
|
+
triggers:
|
|
161
|
+
- pattern: "*.{ts,tsx,js,jsx}"
|
|
162
|
+
context: ["git:staged", "git:modified"]
|
|
163
|
+
lifecycle:
|
|
164
|
+
before: "context.load('project-standards')"
|
|
165
|
+
after: "metrics.record('review-completed')"
|
|
166
|
+
agents:
|
|
167
|
+
- security-auditor # Security vulnerability detection
|
|
168
|
+
- performance-analyzer # Performance bottleneck analysis
|
|
169
|
+
- architecture-reviewer # Architecture compliance review
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
<details>
|
|
173
|
+
<summary><b>📚 View Complete Skill API Documentation</b></summary>
|
|
174
|
+
|
|
175
|
+
#### Skill Lifecycle
|
|
176
|
+
|
|
177
|
+
| Phase | Hook | Description |
|
|
178
|
+
|-------|------|-------------|
|
|
179
|
+
| Initialize | `before` | Load context, validate preconditions |
|
|
180
|
+
| Execute | `execute` | Core logic execution |
|
|
181
|
+
| Complete | `after` | Cleanup resources, record metrics |
|
|
182
|
+
| Error | `error` | Error handling, rollback operations |
|
|
183
|
+
|
|
184
|
+
#### Context-Aware Triggers
|
|
185
|
+
|
|
186
|
+
```yaml
|
|
187
|
+
triggers:
|
|
188
|
+
# File pattern matching
|
|
189
|
+
- pattern: "**/*.test.ts"
|
|
190
|
+
|
|
191
|
+
# Git state awareness
|
|
192
|
+
- context: ["git:staged"]
|
|
193
|
+
|
|
194
|
+
# Project type awareness
|
|
195
|
+
- project: ["node", "python", "rust"]
|
|
196
|
+
|
|
197
|
+
# Time windows
|
|
198
|
+
- schedule: "0 9 * * 1-5" # Weekdays at 9 AM
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
</details>
|
|
202
|
+
|
|
203
|
+
<br/>
|
|
204
|
+
|
|
205
|
+
### 🤖 Multi-Agent Orchestration Architecture
|
|
206
|
+
|
|
207
|
+
11+ specialized AI agents powered by **Distributed Cognitive Model** for parallel reasoning:
|
|
208
|
+
|
|
209
|
+
<table>
|
|
210
|
+
<tr>
|
|
211
|
+
<td width="33%" valign="top">
|
|
212
|
+
|
|
213
|
+
**🛡️ Security Agent Cluster**
|
|
214
|
+
- `security-auditor` - OWASP Top 10 detection
|
|
215
|
+
- `dependency-scanner` - CVE vulnerability scanning
|
|
216
|
+
- `secrets-detector` - Sensitive data leak prevention
|
|
217
|
+
|
|
218
|
+
</td>
|
|
219
|
+
<td width="33%" valign="top">
|
|
220
|
+
|
|
221
|
+
**⚡ Performance Agent Cluster**
|
|
222
|
+
- `performance-profiler` - Hotspot analysis
|
|
223
|
+
- `memory-analyzer` - Memory leak detection
|
|
224
|
+
- `complexity-reducer` - Cyclomatic complexity optimization
|
|
225
|
+
|
|
226
|
+
</td>
|
|
227
|
+
<td width="33%" valign="top">
|
|
228
|
+
|
|
229
|
+
**🏗️ Architecture Agent Cluster**
|
|
230
|
+
- `architecture-reviewer` - Design pattern review
|
|
231
|
+
- `api-designer` - RESTful/GraphQL compliance
|
|
232
|
+
- `test-strategist` - Test coverage strategy
|
|
233
|
+
|
|
234
|
+
</td>
|
|
235
|
+
</tr>
|
|
236
|
+
</table>
|
|
237
|
+
|
|
238
|
+
<br/>
|
|
239
|
+
|
|
240
|
+
### 🔧 Workspace Diagnostic Engine
|
|
241
|
+
|
|
242
|
+
**New in v2.0.18** — Enterprise-grade environment diagnostics with self-healing capabilities:
|
|
243
|
+
|
|
244
|
+
```bash
|
|
245
|
+
ccjk workspace # Launch diagnostic engine
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
<table>
|
|
249
|
+
<tr>
|
|
250
|
+
<td width="50%">
|
|
251
|
+
|
|
252
|
+
**🔍 Diagnostic Dimensions**
|
|
253
|
+
- File system permission matrix analysis
|
|
254
|
+
- Directory ownership chain verification
|
|
255
|
+
- Trust boundary state detection
|
|
256
|
+
- Path normalization checks (CJK/spaces/special chars)
|
|
257
|
+
- Storage quota monitoring
|
|
258
|
+
- Container/remote environment fingerprinting
|
|
259
|
+
|
|
260
|
+
</td>
|
|
261
|
+
<td width="50%">
|
|
262
|
+
|
|
263
|
+
**🔧 Self-Healing Capabilities**
|
|
264
|
+
- Intelligent fix recommendation generation
|
|
265
|
+
- One-click repair script execution
|
|
266
|
+
- Configuration drift auto-correction
|
|
267
|
+
- Environment baseline comparison reports
|
|
268
|
+
|
|
269
|
+
</td>
|
|
270
|
+
</tr>
|
|
271
|
+
</table>
|
|
272
|
+
|
|
273
|
+
<br/>
|
|
274
|
+
|
|
275
|
+
---
|
|
276
|
+
|
|
277
|
+
<br/>
|
|
278
|
+
|
|
279
|
+
## 📊 Performance Benchmarks
|
|
280
|
+
|
|
281
|
+
<div align="center">
|
|
282
|
+
|
|
283
|
+
> *Based on production data from 1,000+ real-world projects*
|
|
284
|
+
|
|
19
285
|
</div>
|
|
20
286
|
|
|
287
|
+
### Token Efficiency Comparison
|
|
288
|
+
|
|
289
|
+
| Scenario | Native Claude Code | CCJK Enhanced | Savings |
|
|
290
|
+
|:---------|:------------------:|:-------------:|:-------:|
|
|
291
|
+
| Code Review (500 lines) | ~8,000 tokens | ~2,200 tokens | **72.5%** |
|
|
292
|
+
| Feature Development (medium) | ~15,000 tokens | ~4,100 tokens | **72.7%** |
|
|
293
|
+
| Bug Fix (with context) | ~12,000 tokens | ~3,100 tokens | **74.2%** |
|
|
294
|
+
| Refactoring Task | ~20,000 tokens | ~5,500 tokens | **72.5%** |
|
|
295
|
+
|
|
21
296
|
<br/>
|
|
22
297
|
|
|
23
|
-
|
|
298
|
+
### Development Efficiency Gains
|
|
299
|
+
|
|
300
|
+
```
|
|
301
|
+
Task Completion Time Comparison (minutes)
|
|
302
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
24
303
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
304
|
+
Code Review ████████████████████████████████░░░░░░░░░░ 45min → 15min (↓67%)
|
|
305
|
+
Feature Dev ████████████████████████░░░░░░░░░░░░░░░░░░ 120min → 42min (↓65%)
|
|
306
|
+
Bug Location ██████████████████████████████░░░░░░░░░░░░ 30min → 8min (↓73%)
|
|
307
|
+
Env Setup ████████████████████████████████████░░░░░░ 60min → 3min (↓95%)
|
|
308
|
+
Doc Generation ████████████████████████████░░░░░░░░░░░░░░ 40min → 12min (↓70%)
|
|
309
|
+
|
|
310
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
311
|
+
```
|
|
31
312
|
|
|
32
313
|
<br/>
|
|
33
314
|
|
|
34
|
-
|
|
315
|
+
---
|
|
316
|
+
|
|
317
|
+
<br/>
|
|
318
|
+
|
|
319
|
+
## 🚀 Quick Start
|
|
320
|
+
|
|
321
|
+
### Requirements
|
|
322
|
+
|
|
323
|
+
| Dependency | Minimum | Recommended |
|
|
324
|
+
|:-----------|:-------:|:-----------:|
|
|
325
|
+
| Node.js | 18.0+ | 20.x LTS |
|
|
326
|
+
| npm/pnpm | 8.0+ | pnpm 9.x |
|
|
327
|
+
| Claude Code | 1.0+ | Latest |
|
|
328
|
+
|
|
329
|
+
### Installation
|
|
330
|
+
|
|
331
|
+
<table>
|
|
332
|
+
<tr>
|
|
333
|
+
<td width="50%">
|
|
334
|
+
|
|
335
|
+
**🌍 Global Users**
|
|
35
336
|
|
|
36
337
|
```bash
|
|
37
|
-
#
|
|
338
|
+
# Interactive installation (recommended)
|
|
38
339
|
npx ccjk
|
|
39
340
|
|
|
40
|
-
#
|
|
341
|
+
# Global installation
|
|
41
342
|
npm install -g ccjk
|
|
42
343
|
|
|
43
|
-
# pnpm
|
|
344
|
+
# pnpm users
|
|
44
345
|
pnpm add -g ccjk
|
|
45
346
|
```
|
|
46
347
|
|
|
47
|
-
|
|
348
|
+
</td>
|
|
349
|
+
<td width="50%">
|
|
350
|
+
|
|
351
|
+
**🇨🇳 China Users (Mirror Acceleration)**
|
|
352
|
+
|
|
353
|
+
```bash
|
|
354
|
+
# npmmirror (recommended)
|
|
355
|
+
npm install -g ccjk --registry https://registry.npmmirror.com
|
|
356
|
+
|
|
357
|
+
# Taobao mirror
|
|
358
|
+
npm install -g ccjk --registry https://registry.npm.taobao.org
|
|
359
|
+
```
|
|
48
360
|
|
|
49
|
-
|
|
361
|
+
</td>
|
|
362
|
+
</tr>
|
|
363
|
+
</table>
|
|
364
|
+
|
|
365
|
+
### 30-Second Quick Experience
|
|
50
366
|
|
|
51
367
|
```bash
|
|
52
|
-
#
|
|
368
|
+
# 1. Launch CCJK
|
|
53
369
|
ccjk
|
|
54
370
|
|
|
55
|
-
#
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
ccjk doctor # 健康检查
|
|
59
|
-
ccjk workspace # 环境诊断
|
|
60
|
-
ccjk notify # 配置任务通知
|
|
371
|
+
# 2. Select "🚀 Quick Start" → "Initialize"
|
|
372
|
+
|
|
373
|
+
# 3. Start enjoying enhanced AI programming!
|
|
61
374
|
```
|
|
62
375
|
|
|
63
376
|
<br/>
|
|
64
377
|
|
|
65
|
-
|
|
378
|
+
---
|
|
379
|
+
|
|
380
|
+
<br/>
|
|
381
|
+
|
|
382
|
+
## 🎯 Feature Matrix
|
|
383
|
+
|
|
384
|
+
### Main Console
|
|
385
|
+
|
|
386
|
+
<table>
|
|
387
|
+
<tr>
|
|
388
|
+
<td align="center" width="25%">
|
|
389
|
+
<h3>🚀</h3>
|
|
390
|
+
<b>Quick Start</b>
|
|
391
|
+
<br/><sub>Initialize · Update · Health Check</sub>
|
|
392
|
+
</td>
|
|
393
|
+
<td align="center" width="25%">
|
|
394
|
+
<h3>🔔</h3>
|
|
395
|
+
<b>Task Notifications</b>
|
|
396
|
+
<br/><sub>Desktop Push · Multi-Platform</sub>
|
|
397
|
+
</td>
|
|
398
|
+
<td align="center" width="25%">
|
|
399
|
+
<h3>🧩</h3>
|
|
400
|
+
<b>Extension Hub</b>
|
|
401
|
+
<br/><sub>CCR · CCUsage · Cometix</sub>
|
|
402
|
+
</td>
|
|
403
|
+
<td align="center" width="25%">
|
|
404
|
+
<h3>⚙️</h3>
|
|
405
|
+
<b>Advanced Config</b>
|
|
406
|
+
<br/><sub>MCP · Permissions · Context</sub>
|
|
407
|
+
</td>
|
|
408
|
+
</tr>
|
|
409
|
+
</table>
|
|
410
|
+
|
|
411
|
+
### Extension Ecosystem
|
|
412
|
+
|
|
413
|
+
| Extension | Description | Core Capabilities |
|
|
414
|
+
|:----------|:------------|:------------------|
|
|
415
|
+
| **🔀 CCR** | Claude Code Router | Multi-provider intelligent routing, load balancing, failover |
|
|
416
|
+
| **📊 CCUsage** | Usage Analytics Platform | Token consumption tracking, cost optimization, trend prediction |
|
|
417
|
+
| **🎨 Cometix** | UI Customization Engine | Theme system, layout customization, visual enhancement |
|
|
418
|
+
| **⚡ Superpowers** | Capability Enhancement Module | Advanced feature unlock, performance optimization, experimental features |
|
|
419
|
+
| **🏪 MCP Market** | Protocol Extension Store | One-click install, version management, dependency resolution |
|
|
420
|
+
|
|
421
|
+
<br/>
|
|
422
|
+
|
|
423
|
+
---
|
|
424
|
+
|
|
425
|
+
<br/>
|
|
426
|
+
|
|
427
|
+
## 🌟 Ecosystem Acknowledgments
|
|
428
|
+
|
|
429
|
+
<div align="center">
|
|
430
|
+
|
|
431
|
+
> *CCJK stands on the shoulders of these amazing projects*
|
|
432
|
+
|
|
433
|
+
<br/>
|
|
434
|
+
|
|
435
|
+
<table>
|
|
436
|
+
<tr>
|
|
437
|
+
<td align="center" width="20%">
|
|
438
|
+
<a href="https://github.com/anthropics/claude-code">
|
|
439
|
+
<img src="https://avatars.githubusercontent.com/u/76263028?s=80" width="60" alt="Anthropic"/>
|
|
440
|
+
<br/><b>Claude Code</b>
|
|
441
|
+
</a>
|
|
442
|
+
<br/><sub>AI Programming Foundation</sub>
|
|
443
|
+
</td>
|
|
444
|
+
<td align="center" width="20%">
|
|
445
|
+
<a href="https://github.com/anthropics/anthropic-sdk-typescript">
|
|
446
|
+
<img src="https://avatars.githubusercontent.com/u/76263028?s=80" width="60" alt="Anthropic SDK"/>
|
|
447
|
+
<br/><b>Anthropic SDK</b>
|
|
448
|
+
</a>
|
|
449
|
+
<br/><sub>API Interaction Layer</sub>
|
|
450
|
+
</td>
|
|
451
|
+
<td align="center" width="20%">
|
|
452
|
+
<a href="https://github.com/nicepkg/ccr">
|
|
453
|
+
<img src="https://avatars.githubusercontent.com/u/139895814?s=80" width="60" alt="CCR"/>
|
|
454
|
+
<br/><b>CCR</b>
|
|
455
|
+
</a>
|
|
456
|
+
<br/><sub>Multi-Provider Routing</sub>
|
|
457
|
+
</td>
|
|
458
|
+
<td align="center" width="20%">
|
|
459
|
+
<a href="https://github.com/nicepkg/ccusage">
|
|
460
|
+
<img src="https://avatars.githubusercontent.com/u/139895814?s=80" width="60" alt="CCUsage"/>
|
|
461
|
+
<br/><b>CCUsage</b>
|
|
462
|
+
</a>
|
|
463
|
+
<br/><sub>Usage Analytics</sub>
|
|
464
|
+
</td>
|
|
465
|
+
<td align="center" width="20%">
|
|
466
|
+
<a href="https://github.com/nicepkg/cometix">
|
|
467
|
+
<img src="https://avatars.githubusercontent.com/u/139895814?s=80" width="60" alt="Cometix"/>
|
|
468
|
+
<br/><b>Cometix</b>
|
|
469
|
+
</a>
|
|
470
|
+
<br/><sub>UI Customization</sub>
|
|
471
|
+
</td>
|
|
472
|
+
</tr>
|
|
473
|
+
<tr>
|
|
474
|
+
<td align="center" width="20%">
|
|
475
|
+
<a href="https://github.com/nicepkg/superpowers">
|
|
476
|
+
<img src="https://avatars.githubusercontent.com/u/139895814?s=80" width="60" alt="Superpowers"/>
|
|
477
|
+
<br/><b>Superpowers</b>
|
|
478
|
+
</a>
|
|
479
|
+
<br/><sub>Capability Enhancement</sub>
|
|
480
|
+
</td>
|
|
481
|
+
<td align="center" width="20%">
|
|
482
|
+
<a href="https://modelcontextprotocol.io/">
|
|
483
|
+
<img src="https://avatars.githubusercontent.com/u/182288589?s=80" width="60" alt="MCP"/>
|
|
484
|
+
<br/><b>MCP</b>
|
|
485
|
+
</a>
|
|
486
|
+
<br/><sub>Protocol Standard</sub>
|
|
487
|
+
</td>
|
|
488
|
+
<td align="center" width="20%">
|
|
489
|
+
<a href="https://nodejs.org/">
|
|
490
|
+
<img src="https://nodejs.org/static/logos/nodejsLight.svg" width="60" alt="Node.js"/>
|
|
491
|
+
<br/><b>Node.js</b>
|
|
492
|
+
</a>
|
|
493
|
+
<br/><sub>Runtime Environment</sub>
|
|
494
|
+
</td>
|
|
495
|
+
<td align="center" width="20%">
|
|
496
|
+
<a href="https://www.typescriptlang.org/">
|
|
497
|
+
<img src="https://raw.githubusercontent.com/remojansen/logo.ts/master/ts.png" width="60" alt="TypeScript"/>
|
|
498
|
+
<br/><b>TypeScript</b>
|
|
499
|
+
</a>
|
|
500
|
+
<br/><sub>Type System</sub>
|
|
501
|
+
</td>
|
|
502
|
+
<td align="center" width="20%">
|
|
503
|
+
<a href="https://pnpm.io/">
|
|
504
|
+
<img src="https://pnpm.io/img/pnpm-no-name-with-frame.svg" width="60" alt="pnpm"/>
|
|
505
|
+
<br/><b>pnpm</b>
|
|
506
|
+
</a>
|
|
507
|
+
<br/><sub>Package Manager</sub>
|
|
508
|
+
</td>
|
|
509
|
+
</tr>
|
|
510
|
+
</table>
|
|
511
|
+
|
|
512
|
+
<br/>
|
|
513
|
+
|
|
514
|
+
**Special Thanks**
|
|
515
|
+
|
|
516
|
+
[Anthropic](https://www.anthropic.com/) · [nicepkg](https://github.com/nicepkg) · [Model Context Protocol](https://modelcontextprotocol.io/) · and all contributors ❤️
|
|
517
|
+
|
|
518
|
+
</div>
|
|
519
|
+
|
|
520
|
+
<br/>
|
|
521
|
+
|
|
522
|
+
---
|
|
523
|
+
|
|
524
|
+
<br/>
|
|
525
|
+
|
|
526
|
+
## 📈 Project Status
|
|
527
|
+
|
|
528
|
+
<div align="center">
|
|
529
|
+
|
|
530
|
+
<a href="https://star-history.com/#miounet11/ccjk&Date">
|
|
531
|
+
<picture>
|
|
532
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=miounet11/ccjk&type=Date&theme=dark" />
|
|
533
|
+
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=miounet11/ccjk&type=Date" />
|
|
534
|
+
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=miounet11/ccjk&type=Date" />
|
|
535
|
+
</picture>
|
|
536
|
+
</a>
|
|
537
|
+
|
|
538
|
+
</div>
|
|
539
|
+
|
|
540
|
+
<br/>
|
|
541
|
+
|
|
542
|
+
---
|
|
543
|
+
|
|
544
|
+
<br/>
|
|
545
|
+
|
|
546
|
+
## 🤝 Contributing
|
|
547
|
+
|
|
548
|
+
We welcome all forms of contribution!
|
|
549
|
+
|
|
550
|
+
<table>
|
|
551
|
+
<tr>
|
|
552
|
+
<td width="33%" align="center">
|
|
553
|
+
|
|
554
|
+
**🐛 Report Issues**
|
|
555
|
+
|
|
556
|
+
Found a bug? [Submit an Issue](https://github.com/miounet11/ccjk/issues/new)
|
|
557
|
+
|
|
558
|
+
</td>
|
|
559
|
+
<td width="33%" align="center">
|
|
560
|
+
|
|
561
|
+
**💡 Feature Requests**
|
|
562
|
+
|
|
563
|
+
Have ideas? [Start a Discussion](https://github.com/miounet11/ccjk/discussions)
|
|
564
|
+
|
|
565
|
+
</td>
|
|
566
|
+
<td width="33%" align="center">
|
|
567
|
+
|
|
568
|
+
**🔧 Submit Code**
|
|
569
|
+
|
|
570
|
+
Want to contribute? [View Guidelines](CONTRIBUTING.md)
|
|
571
|
+
|
|
572
|
+
</td>
|
|
573
|
+
</tr>
|
|
574
|
+
</table>
|
|
575
|
+
|
|
576
|
+
<br/>
|
|
66
577
|
|
|
67
|
-
|
|
68
|
-
|:-----|:-----|
|
|
69
|
-
| [CCR](https://github.com/nicepkg/ccr) | 多提供商路由 |
|
|
70
|
-
| [CCUsage](https://github.com/nicepkg/ccusage) | 使用量分析 |
|
|
71
|
-
| [Cometix](https://github.com/nicepkg/cometix) | UI 定制 |
|
|
72
|
-
| [Superpowers](https://github.com/nicepkg/superpowers) | 能力增强 |
|
|
578
|
+
---
|
|
73
579
|
|
|
74
580
|
<br/>
|
|
75
581
|
|
|
76
|
-
##
|
|
582
|
+
## 💬 Community & Support
|
|
583
|
+
|
|
584
|
+
<div align="center">
|
|
77
585
|
|
|
78
|
-
|
|
79
|
-
|
|
586
|
+
<table>
|
|
587
|
+
<tr>
|
|
588
|
+
<td align="center" width="33%">
|
|
589
|
+
<a href="https://github.com/miounet11/ccjk/discussions">
|
|
590
|
+
<img src="https://img.shields.io/badge/GitHub-Discussions-181717?style=for-the-badge&logo=github" alt="GitHub Discussions"/>
|
|
591
|
+
</a>
|
|
592
|
+
<br/><sub>Technical Discussions</sub>
|
|
593
|
+
</td>
|
|
594
|
+
<td align="center" width="33%">
|
|
595
|
+
<a href="https://github.com/miounet11/ccjk/issues">
|
|
596
|
+
<img src="https://img.shields.io/badge/GitHub-Issues-181717?style=for-the-badge&logo=github" alt="GitHub Issues"/>
|
|
597
|
+
</a>
|
|
598
|
+
<br/><sub>Issue Tracking</sub>
|
|
599
|
+
</td>
|
|
600
|
+
<td align="center" width="33%">
|
|
601
|
+
<a href="https://twitter.com/anthropaborat">
|
|
602
|
+
<img src="https://img.shields.io/badge/Twitter-Follow-1DA1F2?style=for-the-badge&logo=twitter&logoColor=white" alt="Twitter"/>
|
|
603
|
+
</a>
|
|
604
|
+
<br/><sub>Latest Updates</sub>
|
|
605
|
+
</td>
|
|
606
|
+
</tr>
|
|
607
|
+
</table>
|
|
608
|
+
|
|
609
|
+
</div>
|
|
80
610
|
|
|
81
611
|
<br/>
|
|
82
612
|
|
|
613
|
+
---
|
|
614
|
+
|
|
615
|
+
<br/>
|
|
616
|
+
|
|
617
|
+
<div align="center">
|
|
618
|
+
|
|
83
619
|
## 📜 License
|
|
84
620
|
|
|
85
|
-
MIT © 2025
|
|
621
|
+
**MIT License** © 2025-2026 [CCJK Contributors](https://github.com/miounet11/ccjk/graphs/contributors)
|
|
622
|
+
|
|
623
|
+
<br/>
|
|
624
|
+
|
|
625
|
+
---
|
|
626
|
+
|
|
627
|
+
<br/>
|
|
628
|
+
|
|
629
|
+
<sub>
|
|
630
|
+
|
|
631
|
+
**CCJK** — *Cognitive Enhancement Engine for Claude Code*
|
|
632
|
+
|
|
633
|
+
Built with ❤️ · Empowering Developers
|
|
634
|
+
|
|
635
|
+
</sub>
|
|
636
|
+
|
|
637
|
+
<br/>
|
|
638
|
+
|
|
639
|
+
**If CCJK helps you, please give us a ⭐ Star!**
|
|
640
|
+
|
|
641
|
+
</div>
|
|
642
|
+
|
|
643
|
+
<!-- Badge Links -->
|
|
644
|
+
[npm-version-src]: https://img.shields.io/npm/v/ccjk?style=flat-square&color=00DC82&labelColor=1a1a2e
|
|
645
|
+
[npm-version-href]: https://npmjs.com/package/ccjk
|
|
646
|
+
[npm-downloads-src]: https://img.shields.io/npm/dm/ccjk?style=flat-square&color=00DC82&labelColor=1a1a2e
|
|
647
|
+
[npm-downloads-href]: https://npmjs.com/package/ccjk
|
|
648
|
+
[license-src]: https://img.shields.io/github/license/miounet11/ccjk?style=flat-square&color=00DC82&labelColor=1a1a2e
|
|
649
|
+
[license-href]: https://github.com/miounet11/ccjk/blob/main/LICENSE
|
|
650
|
+
[stars-src]: https://img.shields.io/github/stars/miounet11/ccjk?style=flat-square&color=FFE66D&labelColor=1a1a2e
|
|
651
|
+
[stars-href]: https://github.com/miounet11/ccjk/stargazers
|