ccjk 1.5.0 â 2.0.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/README.ja.md +249 -297
- package/README.ko.md +241 -290
- package/README.md +222 -364
- package/README.zh-CN.md +553 -295
- package/dist/chunks/claude-code-config-manager.mjs +7 -7
- package/dist/chunks/claude-code-incremental-manager.mjs +1 -1
- package/dist/chunks/codex-config-switch.mjs +3 -3
- package/dist/chunks/codex-provider-manager.mjs +1 -1
- package/dist/chunks/codex-uninstaller.mjs +2 -2
- package/dist/chunks/commands.mjs +1 -1
- package/dist/chunks/features.mjs +10 -10
- package/dist/chunks/simple-config.mjs +321 -389
- package/dist/chunks/smart-guide.mjs +234 -0
- package/dist/cli.mjs +1795 -433
- package/dist/i18n/locales/en/configuration.json +12 -1
- package/dist/i18n/locales/en/marketplace.json +84 -0
- package/dist/i18n/locales/en/menu.json +38 -1
- package/dist/i18n/locales/en/skills.json +140 -0
- package/dist/i18n/locales/en/smartGuide.json +49 -0
- package/dist/i18n/locales/en/subagent.json +69 -0
- package/dist/i18n/locales/en/superpowers.json +58 -0
- package/dist/i18n/locales/zh-CN/configuration.json +12 -1
- package/dist/i18n/locales/zh-CN/marketplace.json +84 -0
- package/dist/i18n/locales/zh-CN/menu.json +38 -1
- package/dist/i18n/locales/zh-CN/skills.json +140 -0
- package/dist/i18n/locales/zh-CN/smartGuide.json +49 -0
- package/dist/i18n/locales/zh-CN/subagent.json +69 -0
- package/dist/i18n/locales/zh-CN/superpowers.json +58 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +366 -7
- package/package.json +26 -27
- package/templates/common/skills/en/brainstorming.md +64 -0
- package/templates/common/skills/en/code-review.md +81 -0
- package/templates/common/skills/en/documentation-gen.md +808 -0
- package/templates/common/skills/en/executing-plans.md +75 -0
- package/templates/common/skills/en/git-commit.md +216 -0
- package/templates/common/skills/en/interview.md +223 -0
- package/templates/common/skills/en/migration-assistant.md +312 -0
- package/templates/common/skills/en/performance-profiling.md +576 -0
- package/templates/common/skills/en/pr-review.md +341 -0
- package/templates/common/skills/en/refactoring.md +384 -0
- package/templates/common/skills/en/security-audit.md +462 -0
- package/templates/common/skills/en/systematic-debugging.md +82 -0
- package/templates/common/skills/en/tdd-workflow.md +93 -0
- package/templates/common/skills/en/verification.md +81 -0
- package/templates/common/skills/en/workflow.md +370 -0
- package/templates/common/skills/en/writing-plans.md +78 -0
- package/templates/common/skills/zh-CN/documentation-gen.md +807 -0
- package/templates/common/skills/zh-CN/migration-assistant.md +318 -0
- package/templates/common/skills/zh-CN/performance-profiling.md +746 -0
- package/templates/common/skills/zh-CN/pr-review.md +341 -0
- package/templates/common/skills/zh-CN/refactoring.md +384 -0
- package/templates/common/skills/zh-CN/security-audit.md +462 -0
- package/templates/common/smart-guide/en/smart-guide.md +72 -0
- package/templates/common/smart-guide/zh-CN/smart-guide.md +72 -0
package/README.md
CHANGED
|
@@ -1,49 +1,39 @@
|
|
|
1
1
|
<!--
|
|
2
|
-
SEO Meta: CCJK - Claude Code JinKu |
|
|
3
|
-
Description: CCJK is
|
|
4
|
-
|
|
2
|
+
SEO Meta: CCJK - Claude Code JinKu | Zero-Config AI Coding Assistant | Workflow Templates | Multi-Provider Support
|
|
3
|
+
Description: CCJK is a powerful CLI toolkit for Claude Code. Features zero-config setup, workflow templates,
|
|
4
|
+
multi-provider API support, MCP service integration, and bilingual support. Simplify your AI development workflow.
|
|
5
|
+
Keywords: claude code, ai coding assistant, claude code extension, ai developer tools, code automation,
|
|
6
|
+
workflow templates, copilot alternative, cursor alternative, free ai coding, open source ai tools
|
|
5
7
|
-->
|
|
6
8
|
|
|
7
9
|
<div align="center">
|
|
8
10
|
|
|
9
11
|
<!-- Logo & Badges - Optimized for GitHub Social Preview -->
|
|
10
|
-
<img src="https://raw.githubusercontent.com/
|
|
12
|
+
<img src="https://raw.githubusercontent.com/anthropics/claude-code/main/.github/assets/claude-code-logo.png" alt="CCJK Logo" width="180" />
|
|
11
13
|
|
|
12
14
|
# CCJK - Claude Code JinKu
|
|
13
15
|
|
|
14
|
-
###
|
|
16
|
+
### đ Zero-Config AI Coding Assistant Enhancement Toolkit
|
|
15
17
|
|
|
16
18
|
[![npm version][npm-version-src]][npm-version-href]
|
|
17
19
|
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
18
20
|
[![License][license-src]][license-href]
|
|
19
21
|
[![GitHub stars][stars-src]][stars-href]
|
|
20
|
-
[](https://github.com/
|
|
22
|
+
[](https://github.com/anthropics/claude-code/pulls)
|
|
21
23
|
|
|
22
24
|
**[English](README.md)** | **[įŽäŊ䏿](README.zh-CN.md)** | **[æĨæŦčĒ](README.ja.md)** | **[íęĩė´](README.ko.md)**
|
|
23
25
|
|
|
24
26
|
<br/>
|
|
25
27
|
|
|
26
|
-
## đ v1.3.4 Released! (January 2025)
|
|
27
|
-
|
|
28
|
-
> **đ Workflow System Upgrade**
|
|
29
|
-
> - đ **Interview-Driven Development (IDD)** - Now the recommended workflow!
|
|
30
|
-
> - đ Streamlined workflow menu with 5 clear options
|
|
31
|
-
> - đ§ New essential workflow templates
|
|
32
|
-
> - đ Updated i18n support (EN/ZH-CN)
|
|
33
|
-
>
|
|
34
|
-
> **Previous: Complete Rebranding ZCF â CCJK**
|
|
35
|
-
|
|
36
|
-
<br/>
|
|
37
|
-
|
|
38
28
|
> đĄ **One command to supercharge your AI coding experience**
|
|
39
29
|
>
|
|
40
30
|
> ```bash
|
|
41
|
-
>
|
|
31
|
+
> npx ccjk
|
|
42
32
|
> ```
|
|
43
33
|
|
|
44
34
|
<br/>
|
|
45
35
|
|
|
46
|
-
[đ Documentation](#-quick-start
|
|
36
|
+
[đ Documentation](#-quick-start) ¡ [đ Features](#-core-features) ¡ [đŦ Community](#-community--support) ¡ [đ¤ Contributing](#-contributing)
|
|
47
37
|
|
|
48
38
|
</div>
|
|
49
39
|
|
|
@@ -51,204 +41,167 @@
|
|
|
51
41
|
|
|
52
42
|
## đ¯ What is CCJK?
|
|
53
43
|
|
|
54
|
-
**CCJK (Claude Code JinKu)**
|
|
44
|
+
**CCJK (Claude Code JinKu)** is a powerful CLI toolkit that transforms Claude Code setup from hours to seconds. With zero-configuration initialization, professional workflow templates, and multi-provider API support, CCJK helps you start coding with AI assistance immediately.
|
|
55
45
|
|
|
56
46
|
<table>
|
|
57
47
|
<tr>
|
|
58
|
-
<td width="
|
|
59
|
-
<h3>đ¤ 11+ AI Agents</h3>
|
|
60
|
-
<p>Security, Performance, Testing, DevOps, Code Review, and more</p>
|
|
61
|
-
</td>
|
|
62
|
-
<td width="33%" align="center">
|
|
48
|
+
<td width="25%" align="center">
|
|
63
49
|
<h3>⥠Zero Config</h3>
|
|
64
|
-
<p>One command
|
|
50
|
+
<p>One command. Works instantly.</p>
|
|
51
|
+
</td>
|
|
52
|
+
<td width="25%" align="center">
|
|
53
|
+
<h3>đ Workflow Templates</h3>
|
|
54
|
+
<p>Git, Six-Step, Feature Planning</p>
|
|
55
|
+
</td>
|
|
56
|
+
<td width="25%" align="center">
|
|
57
|
+
<h3>đ Multi-Provider</h3>
|
|
58
|
+
<p>13+ API providers supported</p>
|
|
65
59
|
</td>
|
|
66
|
-
<td width="
|
|
60
|
+
<td width="25%" align="center">
|
|
67
61
|
<h3>đ 100% Free</h3>
|
|
68
|
-
<p>Open source.
|
|
62
|
+
<p>Open source. MIT licensed.</p>
|
|
69
63
|
</td>
|
|
70
64
|
</tr>
|
|
71
65
|
</table>
|
|
72
66
|
|
|
73
67
|
---
|
|
74
68
|
|
|
75
|
-
## đ Quick Start
|
|
69
|
+
## đ Quick Start
|
|
76
70
|
|
|
77
|
-
### One-Click Installation
|
|
71
|
+
### One-Click Installation
|
|
78
72
|
|
|
79
73
|
```bash
|
|
80
|
-
#
|
|
81
|
-
|
|
74
|
+
# Recommended: Interactive setup
|
|
75
|
+
npx ccjk
|
|
76
|
+
|
|
77
|
+
# Or install globally
|
|
78
|
+
npm install -g ccjk
|
|
82
79
|
```
|
|
83
80
|
|
|
84
81
|
### đ¨đŗ ä¸åŊ፿ˇåŽčŖ
(China Mirror)
|
|
85
82
|
|
|
86
83
|
```bash
|
|
87
|
-
#
|
|
88
|
-
curl -fsSL https://ghproxy.com/https://raw.githubusercontent.com/miounet11/ccjk/main/install.sh | bash
|
|
89
|
-
|
|
90
|
-
# æšåŧäēīŧäŊŋ፠npmmirror į´æĨåŽčŖ
|
|
84
|
+
# äŊŋ፠npmmirror éå
|
|
91
85
|
npm install -g ccjk --registry https://registry.npmmirror.com
|
|
92
86
|
|
|
93
|
-
#
|
|
94
|
-
curl -fsSL https://
|
|
87
|
+
# æäŊŋ፠ghproxy
|
|
88
|
+
curl -fsSL https://ghproxy.com/https://raw.githubusercontent.com/anthropics/claude-code/main/install.sh | bash
|
|
95
89
|
```
|
|
96
90
|
|
|
97
|
-
###
|
|
91
|
+
### Start Using
|
|
98
92
|
|
|
99
93
|
```bash
|
|
100
|
-
#
|
|
101
|
-
|
|
102
|
-
cd ccjk && pnpm install && pnpm build && npm install -g .
|
|
94
|
+
# Run the interactive menu
|
|
95
|
+
ccjk
|
|
103
96
|
|
|
104
|
-
#
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
# Option C: Use gitee mirror (ä¸åŊéå)
|
|
108
|
-
git clone https://gitee.com/mirrors/ccjk.git
|
|
109
|
-
cd ccjk && pnpm install && pnpm build && npm install -g .
|
|
97
|
+
# Or directly start Claude Code with enhancements
|
|
98
|
+
claude
|
|
110
99
|
```
|
|
111
100
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
When you run `ccjk`, you'll see a friendly menu:
|
|
101
|
+
---
|
|
115
102
|
|
|
116
|
-
|
|
117
|
-
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
|
|
118
|
-
â âââââââ âââââââ ââââââ âââ â
|
|
119
|
-
â ââââââââââââââââ ââââââ ââââ â
|
|
120
|
-
â âââ âââ ââââââââââ Claude Code JinKu â
|
|
121
|
-
â âââ âââ ââ ââââââââââ v1.3.4 â
|
|
122
|
-
â âââââââââââââââââââââââââââ âââ â
|
|
123
|
-
â âââââââ âââââââ ââââââ âââ âââ â
|
|
124
|
-
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
|
|
125
|
-
|
|
126
|
-
? Select an option:
|
|
127
|
-
⯠đ Quick Setup (Recommended)
|
|
128
|
-
âī¸ API Configuration
|
|
129
|
-
đ ī¸ Advanced Settings
|
|
130
|
-
đ Help
|
|
131
|
-
```
|
|
103
|
+
## ⨠Core Features
|
|
132
104
|
|
|
133
|
-
|
|
105
|
+
### ⥠Zero-Configuration Setup
|
|
134
106
|
|
|
135
|
-
|
|
107
|
+
Get started in seconds with intelligent defaults:
|
|
136
108
|
|
|
137
109
|
```bash
|
|
138
|
-
#
|
|
139
|
-
|
|
110
|
+
# One command does it all
|
|
111
|
+
npx ccjk
|
|
112
|
+
|
|
113
|
+
# Interactive setup guides you through:
|
|
114
|
+
# â API configuration (13+ providers)
|
|
115
|
+
# â MCP service integration
|
|
116
|
+
# â Workflow template installation
|
|
117
|
+
# â Output style customization
|
|
140
118
|
```
|
|
141
119
|
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
---
|
|
145
|
-
|
|
146
|
-
## ⨠Core Features
|
|
147
|
-
|
|
148
|
-
### đ¤ AI Agent Army
|
|
120
|
+
### đ Professional Workflow Templates
|
|
149
121
|
|
|
150
|
-
|
|
122
|
+
Battle-tested workflows for common development tasks:
|
|
151
123
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
| đ **DevOps Expert** | CI/CD, Docker, Kubernetes | "Create a GitHub Actions workflow" |
|
|
158
|
-
| đ **Code Reviewer** | Best practices, code quality | "Review this PR" |
|
|
159
|
-
| đī¸ **API Architect** | REST, GraphQL, API design | "Design an API for user management" |
|
|
160
|
-
| đž **Database Expert** | Query optimization, indexing | "Optimize this SQL query" |
|
|
161
|
-
| đ¨ **Frontend Architect** | React, Vue, accessibility | "Refactor this component" |
|
|
162
|
-
| âī¸ **Backend Architect** | Microservices, event-driven | "Design a scalable backend" |
|
|
163
|
-
| đ **Documentation Expert** | API docs, READMEs, guides | "Document this codebase" |
|
|
164
|
-
| đ **Refactoring Expert** | Clean code, design patterns | "Refactor using SOLID principles" |
|
|
124
|
+
#### Git Workflow Commands
|
|
125
|
+
- `/git-commit` - Smart commit message generation
|
|
126
|
+
- `/git-rollback` - Safe rollback with conflict resolution
|
|
127
|
+
- `/git-cleanBranches` - Clean up merged branches
|
|
128
|
+
- `/git-worktree` - Git worktree management
|
|
165
129
|
|
|
166
|
-
|
|
130
|
+
#### Six-Step Development Workflow
|
|
131
|
+
- `/workflow` - Structured development process
|
|
132
|
+
1. Requirements Analysis
|
|
133
|
+
2. Design & Planning
|
|
134
|
+
3. Implementation
|
|
135
|
+
4. Testing
|
|
136
|
+
5. Documentation
|
|
137
|
+
6. Review & Optimization
|
|
167
138
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
â đ§ ShenCha Audit Engine â
|
|
173
|
-
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¤
|
|
174
|
-
â â
|
|
175
|
-
â 1ī¸âŖ SCAN â AI discovers issues (no predefined rules) â
|
|
176
|
-
â 2ī¸âŖ ANALYZE â Understands context and impact â
|
|
177
|
-
â 3ī¸âŖ FIX â Generates and applies fixes automatically â
|
|
178
|
-
â 4ī¸âŖ VERIFY â Confirms fixes work correctly â
|
|
179
|
-
â â
|
|
180
|
-
â â
Runs continuously in 72-hour cycles â
|
|
181
|
-
â â
Generates comprehensive reports â
|
|
182
|
-
â â
|
|
183
|
-
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
|
|
184
|
-
```
|
|
139
|
+
#### Feature Planning Workflow
|
|
140
|
+
- `/feat` - Feature planning with task breakdown
|
|
141
|
+
- `@planner` - AI planning agent for complex features
|
|
142
|
+
- `@ui-ux-designer` - UI/UX design assistance
|
|
185
143
|
|
|
186
|
-
|
|
144
|
+
#### Common Tools
|
|
145
|
+
- `/init-project` - Project initialization with best practices
|
|
146
|
+
- `@init-architect` - Project structure design
|
|
187
147
|
|
|
188
|
-
|
|
148
|
+
### đ¤ AI Agent System
|
|
189
149
|
|
|
190
|
-
|
|
150
|
+
Pre-configured AI agents for specialized tasks:
|
|
191
151
|
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
â Question 12 of ~40 â
|
|
198
|
-
â â
|
|
199
|
-
â What's your target customer segment? â
|
|
200
|
-
â â
|
|
201
|
-
â ⯠1. ⥠Quick Start (Recommended) â
|
|
202
|
-
â 2. đŦ Deep Dive â
|
|
203
|
-
â 3. âī¸ Custom Setup â
|
|
204
|
-
â 4. đ¨ Express Mode â
|
|
205
|
-
â â
|
|
206
|
-
âââââââââââââââââââââââââââââââââââââââââââââââââââââââ
|
|
207
|
-
```
|
|
152
|
+
| Agent | Specialty | Invocation |
|
|
153
|
+
|-------|-----------|------------|
|
|
154
|
+
| đ **Planner** | Task breakdown & planning | `@planner` |
|
|
155
|
+
| đ¨ **UI/UX Designer** | Interface design | `@ui-ux-designer` |
|
|
156
|
+
| đī¸ **Init Architect** | Project setup | `@init-architect` |
|
|
208
157
|
|
|
158
|
+
**Usage Example:**
|
|
209
159
|
```bash
|
|
210
|
-
# In Claude Code
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
#
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
ccjk deep # Deep dive mode
|
|
160
|
+
# In Claude Code conversation
|
|
161
|
+
> @planner I need to add user authentication to my app
|
|
162
|
+
|
|
163
|
+
# Agent will provide:
|
|
164
|
+
# - Task breakdown
|
|
165
|
+
# - Implementation steps
|
|
166
|
+
# - Best practices
|
|
167
|
+
# - Security considerations
|
|
219
168
|
```
|
|
220
169
|
|
|
221
|
-
|
|
222
|
-
- đ§ **Smart Project Detection** - Auto-detects webapp/api/saas/ecommerce
|
|
223
|
-
- đ **Progress Tracking** - Visual breadcrumbs and progress bar
|
|
224
|
-
- â¸ī¸ **Pause & Resume** - Save progress and continue later
|
|
225
|
-
- đ **Spec Generation** - Outputs comprehensive SPEC.md file
|
|
170
|
+
### đĻ 16 Built-in Skill Templates
|
|
226
171
|
|
|
227
|
-
|
|
172
|
+
Ready-to-use skill templates for common tasks:
|
|
228
173
|
|
|
229
|
-
|
|
174
|
+
| Category | Skills | Description |
|
|
175
|
+
|----------|--------|-------------|
|
|
176
|
+
| **Code Quality** | `pr-review`, `code-review`, `refactoring` | Code analysis & improvement |
|
|
177
|
+
| **Security** | `security-audit` | Security vulnerability scanning |
|
|
178
|
+
| **Performance** | `performance-profiling` | Performance analysis |
|
|
179
|
+
| **Documentation** | `documentation-gen` | Auto-generate documentation |
|
|
180
|
+
| **Testing** | `tdd-workflow`, `systematic-debugging` | Test-driven development |
|
|
181
|
+
| **DevOps** | `git-commit` | Git automation |
|
|
182
|
+
| **Migration** | `migration-assistant` | Framework migrations |
|
|
183
|
+
| **Planning** | `writing-plans`, `executing-plans`, `brainstorming` | Project planning |
|
|
184
|
+
| **Verification** | `verification` | Code verification |
|
|
185
|
+
| **Interview** | `interview` | Requirements gathering |
|
|
230
186
|
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
# Creates: ts-debug, ts-refactor, ts-test, ts-type-check, ts-migrate
|
|
187
|
+
### đ¤ Interview-Driven Development
|
|
188
|
+
|
|
189
|
+
Gather requirements before coding:
|
|
235
190
|
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
191
|
+
```bash
|
|
192
|
+
# Interactive interview mode
|
|
193
|
+
ccjk interview
|
|
239
194
|
|
|
240
|
-
#
|
|
241
|
-
ccjk
|
|
242
|
-
# Creates: meta-optimize, sitemap-generate, schema-markup, core-web-vitals
|
|
195
|
+
# Quick mode (10 essential questions)
|
|
196
|
+
ccjk interview --quick
|
|
243
197
|
|
|
244
|
-
#
|
|
245
|
-
ccjk
|
|
246
|
-
# Creates: docker-setup, ci-pipeline, deploy-script, monitoring
|
|
198
|
+
# Deep mode (40+ comprehensive questions)
|
|
199
|
+
ccjk interview --deep
|
|
247
200
|
```
|
|
248
201
|
|
|
249
|
-
### đ 13+ API Providers
|
|
202
|
+
### đ 13+ API Providers
|
|
250
203
|
|
|
251
|
-
|
|
204
|
+
Pre-configured support for popular AI providers:
|
|
252
205
|
|
|
253
206
|
| Provider | Type | Free Tier |
|
|
254
207
|
|----------|------|:---------:|
|
|
@@ -258,206 +211,138 @@ Connect to any AI provider with one click:
|
|
|
258
211
|
| **Groq** | Fast inference | â
|
|
|
259
212
|
| **Gemini** | Google AI | â
|
|
|
260
213
|
| **Ollama** | Local/Private | â
|
|
|
261
|
-
| 302.AI, Qwen, SiliconFlow
|
|
214
|
+
| 302.AI, Qwen, SiliconFlow... | Chinese Providers | Varies |
|
|
262
215
|
|
|
216
|
+
**Quick Setup with Presets:**
|
|
263
217
|
```bash
|
|
264
|
-
#
|
|
265
|
-
ccjk
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
ccjk api wizard
|
|
269
|
-
```
|
|
270
|
-
|
|
271
|
-
### đ Plugin System
|
|
272
|
-
|
|
273
|
-
Extend CCJK with custom plugins:
|
|
274
|
-
|
|
275
|
-
```typescript
|
|
276
|
-
// ~/.ccjk/plugins/my-plugin/index.ts
|
|
277
|
-
export default {
|
|
278
|
-
name: 'my-awesome-plugin',
|
|
279
|
-
version: '1.0.0',
|
|
280
|
-
|
|
281
|
-
// Add custom agents
|
|
282
|
-
agents: [
|
|
283
|
-
{ name: 'my-agent', model: 'sonnet', template: '...' }
|
|
284
|
-
],
|
|
285
|
-
|
|
286
|
-
// Add custom skills
|
|
287
|
-
skills: [
|
|
288
|
-
{ id: 'my-skill', trigger: '/my-skill', template: '...' }
|
|
289
|
-
],
|
|
290
|
-
|
|
291
|
-
// Add custom workflows
|
|
292
|
-
workflows: [...]
|
|
293
|
-
}
|
|
218
|
+
# Use provider presets for instant configuration
|
|
219
|
+
npx ccjk init --provider 302ai --api-key YOUR_KEY
|
|
220
|
+
npx ccjk init --provider glm --api-key YOUR_KEY
|
|
221
|
+
npx ccjk init --provider minimax --api-key YOUR_KEY
|
|
294
222
|
```
|
|
295
223
|
|
|
296
224
|
---
|
|
297
225
|
|
|
298
|
-
##
|
|
299
|
-
|
|
300
|
-
### Essential Commands (Use These First!)
|
|
301
|
-
|
|
302
|
-
| Command | Description | When to Use |
|
|
303
|
-
|---------|-------------|-------------|
|
|
304
|
-
| `npx ccjk` | Interactive setup menu | First time setup |
|
|
305
|
-
| `ccjk setup` | Guided onboarding wizard | New to CCJK |
|
|
306
|
-
| `ccjk doctor` | Check your environment | Something not working? |
|
|
307
|
-
| `ccjk upgrade` | Update everything | Stay up to date |
|
|
308
|
-
|
|
309
|
-
### Configuration Commands
|
|
226
|
+
## đ Why Choose CCJK?
|
|
310
227
|
|
|
311
|
-
|
|
|
312
|
-
|
|
313
|
-
|
|
|
314
|
-
|
|
|
315
|
-
|
|
|
316
|
-
|
|
|
317
|
-
|
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
| Command | Description |
|
|
322
|
-
|---------|-------------|
|
|
323
|
-
| `ccjk tools list` | Show all AI coding tools |
|
|
324
|
-
| `ccjk tools install <tool>` | Install a specific tool |
|
|
325
|
-
| `ccjk tools status` | Check installation status |
|
|
326
|
-
|
|
327
|
-
### Skills & Automation
|
|
328
|
-
|
|
329
|
-
| Command | Description |
|
|
330
|
-
|---------|-------------|
|
|
331
|
-
| `ccjk skills list` | List all skills |
|
|
332
|
-
| `ccjk skills create-batch --lang <lang>` | Create language-specific skills |
|
|
333
|
-
| `ccjk skills enable <skill>` | Enable a skill |
|
|
334
|
-
| `ccjk skills disable <skill>` | Disable a skill |
|
|
335
|
-
|
|
336
|
-
### Interview-Driven Development
|
|
337
|
-
|
|
338
|
-
| Command | Description |
|
|
339
|
-
|---------|-------------|
|
|
340
|
-
| `ccjk interview` or `ccjk iv` | Start interactive interview |
|
|
341
|
-
| `ccjk quick` | Express mode (~10 questions) |
|
|
342
|
-
| `ccjk deep` | Deep dive (~40+ questions) |
|
|
343
|
-
| `ccjk interview --resume` | Resume paused session |
|
|
344
|
-
| `ccjk interview --list` | List saved sessions |
|
|
345
|
-
|
|
346
|
-
**In Claude Code:**
|
|
347
|
-
| Slash Command | Description |
|
|
348
|
-
|--------------|-------------|
|
|
349
|
-
| `/ccjk:interview` | Start interview in Claude Code |
|
|
350
|
-
| `/ccjk:interview --quick` | Quick interview mode |
|
|
351
|
-
| `/ccjk:interview --deep` | Deep interview mode |
|
|
352
|
-
|
|
353
|
-
### Advanced Commands
|
|
354
|
-
|
|
355
|
-
| Command | Description |
|
|
356
|
-
|---------|-------------|
|
|
357
|
-
| `ccjk config-scan` | Find all Claude Code configs |
|
|
358
|
-
| `ccjk permissions` | Manage Claude Code permissions |
|
|
359
|
-
| `ccjk versions` | Check all component versions |
|
|
360
|
-
| `ccjk uninstall` | Clean uninstallation |
|
|
228
|
+
| Feature | CCJK | Manual Setup | Other Tools |
|
|
229
|
+
|---------|:----:|:------------:|:-----------:|
|
|
230
|
+
| **Zero Config** | â
One command | â Hours of setup | â ī¸ Complex |
|
|
231
|
+
| **Workflow Templates** | â
16+ templates | â Build yourself | â ī¸ Limited |
|
|
232
|
+
| **Multi-Provider** | â
13+ providers | â Manual config | â ī¸ 1-3 providers |
|
|
233
|
+
| **MCP Integration** | â
Auto-setup | â Manual JSON | â ī¸ Partial |
|
|
234
|
+
| **Bilingual Support** | â
EN + ZH | â English only | â ī¸ Limited |
|
|
235
|
+
| **Open Source** | â
MIT | - | Varies |
|
|
236
|
+
| **Free** | â
| â
| â Most paid |
|
|
361
237
|
|
|
362
238
|
---
|
|
363
239
|
|
|
364
|
-
##
|
|
240
|
+
## đēī¸ Roadmap
|
|
365
241
|
|
|
366
|
-
|
|
242
|
+
The following features are planned for future releases:
|
|
367
243
|
|
|
368
|
-
|
|
369
|
-
# English (default)
|
|
370
|
-
ccjk init --lang en
|
|
244
|
+
### đŽ Planned Features (v2.0+)
|
|
371
245
|
|
|
372
|
-
|
|
373
|
-
|
|
246
|
+
#### đĨ Smart Skills Hot-Reload System
|
|
247
|
+
- Real-time skill file watching and auto-reload
|
|
248
|
+
- Edit skills without restarting Claude Code
|
|
249
|
+
- Smart caching and instant activation
|
|
250
|
+
- **Status**: Infrastructure implemented, integration in progress
|
|
374
251
|
|
|
375
|
-
|
|
376
|
-
|
|
252
|
+
#### đ¤ Advanced Subagent Orchestration
|
|
253
|
+
- Parallel and sequential AI agent execution
|
|
254
|
+
- Multi-agent collaboration with task delegation
|
|
255
|
+
- Transcript recording and analysis
|
|
256
|
+
- **Status**: Core manager implemented, Claude Code integration pending
|
|
377
257
|
|
|
378
|
-
|
|
379
|
-
|
|
258
|
+
#### đĄī¸ Permission System
|
|
259
|
+
- Fine-grained file and command access control
|
|
260
|
+
- Wildcard pattern matching for flexible rules
|
|
261
|
+
- Security-first skill execution
|
|
262
|
+
- **Status**: Type definitions ready, implementation planned
|
|
380
263
|
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
264
|
+
#### ⥠Lifecycle Hooks System
|
|
265
|
+
- Pre/post tool execution hooks
|
|
266
|
+
- Custom workflow event handlers
|
|
267
|
+
- Plugin-style extensibility
|
|
268
|
+
- **Status**: Core system implemented, documentation in progress
|
|
384
269
|
|
|
385
|
-
|
|
270
|
+
#### đ¯ Context-Aware Skill Activation
|
|
271
|
+
- Auto-activate skills based on file patterns
|
|
272
|
+
- Keyword-triggered skill suggestions
|
|
273
|
+
- Intelligent skill recommendations
|
|
274
|
+
- **Status**: Parser ready, activation logic planned
|
|
386
275
|
|
|
387
|
-
|
|
276
|
+
#### đĻ Expanded Skill Marketplace
|
|
277
|
+
- Community-contributed skills
|
|
278
|
+
- One-click skill installation
|
|
279
|
+
- Skill versioning and updates
|
|
280
|
+
- **Status**: Registry infrastructure ready, marketplace UI planned
|
|
388
281
|
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
| LLM Code Audit | â
| â | â | â |
|
|
395
|
-
| Multi-Provider | **13+** | 1 | 1 | 1-3 |
|
|
396
|
-
| Zero Config | â
| â | â | â |
|
|
397
|
-
| Open Source | â
| â | â | Varies |
|
|
398
|
-
| Free | â
| â | â | Varies |
|
|
282
|
+
#### đ ShenCha AI Code Auditor
|
|
283
|
+
- Autonomous code scanning and analysis
|
|
284
|
+
- Automatic fix generation and application
|
|
285
|
+
- Continuous 72-hour audit cycles
|
|
286
|
+
- **Status**: Basic scanner implemented, full automation planned
|
|
399
287
|
|
|
400
|
-
|
|
288
|
+
### đ¯ How to Contribute
|
|
401
289
|
|
|
402
|
-
|
|
290
|
+
Interested in these features? We welcome contributions!
|
|
403
291
|
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
| **Linux** | â
Full Support | All major distros |
|
|
408
|
-
| **Windows** | â
Full Support | Windows 10/11, WSL2 |
|
|
409
|
-
| **Termux** | â
Full Support | Android terminal |
|
|
292
|
+
- Check our [GitHub Issues](https://github.com/anthropics/claude-code/issues) for feature discussions
|
|
293
|
+
- Join our [Discord](https://discord.gg/ccjk) to collaborate with the team
|
|
294
|
+
- Submit PRs for features you'd like to see implemented
|
|
410
295
|
|
|
411
296
|
---
|
|
412
297
|
|
|
413
|
-
##
|
|
414
|
-
|
|
415
|
-
<details>
|
|
416
|
-
<summary><b>Do I need an API key?</b></summary>
|
|
417
|
-
|
|
418
|
-
You need an API key from one of our 13+ supported providers. Some providers offer free tiers:
|
|
419
|
-
- **Groq** - Free tier available
|
|
420
|
-
- **Gemini** - Free tier available
|
|
421
|
-
- **DeepSeek** - Very affordable
|
|
422
|
-
- **Ollama** - Run locally, completely free
|
|
423
|
-
|
|
424
|
-
</details>
|
|
425
|
-
|
|
426
|
-
<details>
|
|
427
|
-
<summary><b>Is CCJK free?</b></summary>
|
|
298
|
+
## đ Command Reference
|
|
428
299
|
|
|
429
|
-
|
|
300
|
+
### Essential Commands
|
|
430
301
|
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
302
|
+
```bash
|
|
303
|
+
npx ccjk # Interactive setup menu
|
|
304
|
+
ccjk init # Full initialization
|
|
305
|
+
ccjk update # Update workflows
|
|
306
|
+
ccjk interview # Requirements gathering
|
|
307
|
+
```
|
|
435
308
|
|
|
436
|
-
|
|
309
|
+
### Configuration Commands
|
|
437
310
|
|
|
438
|
-
|
|
311
|
+
```bash
|
|
312
|
+
ccjk config-switch --list # List available configs
|
|
313
|
+
ccjk config-switch <name> # Switch to a config
|
|
314
|
+
ccjk uninstall # Uninstall CCJK
|
|
315
|
+
```
|
|
439
316
|
|
|
440
|
-
|
|
441
|
-
<summary><b>Can I use it in my company?</b></summary>
|
|
317
|
+
### Tool Integration
|
|
442
318
|
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
-
|
|
447
|
-
|
|
319
|
+
```bash
|
|
320
|
+
ccjk ccr # Claude Code Router setup
|
|
321
|
+
ccjk ccu # CCusage analytics
|
|
322
|
+
ccjk check-updates # Check for updates
|
|
323
|
+
```
|
|
448
324
|
|
|
449
|
-
|
|
325
|
+
---
|
|
450
326
|
|
|
451
|
-
|
|
452
|
-
<summary><b>Something isn't working. What do I do?</b></summary>
|
|
327
|
+
## đ Multi-Language Support
|
|
453
328
|
|
|
454
|
-
Run the health check:
|
|
455
329
|
```bash
|
|
456
|
-
ccjk
|
|
330
|
+
ccjk init --lang en # English
|
|
331
|
+
ccjk init --lang zh-CN # įŽäŊ䏿
|
|
332
|
+
ccjk init --lang ja # æĨæŦčĒ (coming soon)
|
|
333
|
+
ccjk init --lang ko # íęĩė´ (coming soon)
|
|
457
334
|
```
|
|
458
|
-
This will diagnose common issues and suggest fixes.
|
|
459
335
|
|
|
460
|
-
|
|
336
|
+
---
|
|
337
|
+
|
|
338
|
+
## đģ Platform Support
|
|
339
|
+
|
|
340
|
+
| Platform | Status |
|
|
341
|
+
|----------|:------:|
|
|
342
|
+
| **macOS** | â
Intel & Apple Silicon |
|
|
343
|
+
| **Linux** | â
All distros |
|
|
344
|
+
| **Windows** | â
Win10/11, WSL2 |
|
|
345
|
+
| **Termux** | â
Android |
|
|
461
346
|
|
|
462
347
|
---
|
|
463
348
|
|
|
@@ -465,17 +350,12 @@ This will diagnose common issues and suggest fixes.
|
|
|
465
350
|
|
|
466
351
|
<div align="center">
|
|
467
352
|
|
|
468
|
-
[](https://github.com/
|
|
469
|
-
[](https://t.me/ccjk_community)
|
|
353
|
+
[](https://github.com/anthropics/claude-code/discussions)
|
|
470
354
|
[](https://discord.gg/ccjk)
|
|
471
|
-
[](https://twitter.com/
|
|
355
|
+
[](https://twitter.com/anthropaboratory)
|
|
472
356
|
|
|
473
357
|
</div>
|
|
474
358
|
|
|
475
|
-
- đ **Bug Reports**: [GitHub Issues](https://github.com/miounet11/ccjk/issues)
|
|
476
|
-
- đĄ **Feature Requests**: [GitHub Discussions](https://github.com/miounet11/ccjk/discussions)
|
|
477
|
-
- đ **Documentation**: [docs.ccjk.dev](https://docs.ccjk.dev)
|
|
478
|
-
|
|
479
359
|
---
|
|
480
360
|
|
|
481
361
|
## đ¤ Contributing
|
|
@@ -483,41 +363,19 @@ This will diagnose common issues and suggest fixes.
|
|
|
483
363
|
We welcome contributions! Here's how to get started:
|
|
484
364
|
|
|
485
365
|
```bash
|
|
486
|
-
|
|
487
|
-
git clone https://github.com/miounet11/ccjk.git
|
|
366
|
+
git clone https://github.com/anthropics/claude-code.git
|
|
488
367
|
cd ccjk
|
|
489
|
-
|
|
490
|
-
# Install dependencies
|
|
491
368
|
pnpm install
|
|
492
|
-
|
|
493
|
-
# Run in development mode
|
|
494
369
|
pnpm dev
|
|
495
|
-
|
|
496
|
-
# Run tests
|
|
497
|
-
pnpm test
|
|
498
|
-
|
|
499
|
-
# Build
|
|
500
|
-
pnpm build
|
|
501
370
|
```
|
|
502
371
|
|
|
503
|
-
See
|
|
504
|
-
|
|
505
|
-
---
|
|
506
|
-
|
|
507
|
-
## đ Acknowledgments
|
|
508
|
-
|
|
509
|
-
CCJK is built on the shoulders of giants:
|
|
510
|
-
|
|
511
|
-
- [Claude Code](https://claude.ai/code) - The powerful AI coding foundation
|
|
512
|
-
- [ZCF](https://github.com/UfoMiao/zcf) - Original inspiration
|
|
513
|
-
- [Claude Code Router](https://github.com/musistudio/claude-code-router) - API routing
|
|
514
|
-
- [BMad Method](https://github.com/bmad-code-org/BMAD-METHOD) - Workflow patterns
|
|
372
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) for detailed guidelines.
|
|
515
373
|
|
|
516
374
|
---
|
|
517
375
|
|
|
518
376
|
## đ License
|
|
519
377
|
|
|
520
|
-
MIT Š [CCJK Team](https://github.com/
|
|
378
|
+
MIT Š [CCJK Team](https://github.com/anthropics/claude-code)
|
|
521
379
|
|
|
522
380
|
---
|
|
523
381
|
|
|
@@ -525,9 +383,9 @@ MIT Š [CCJK Team](https://github.com/miounet11/ccjk)
|
|
|
525
383
|
|
|
526
384
|
## â Star Us on GitHub
|
|
527
385
|
|
|
528
|
-
If CCJK helps you code better, please give us a star!
|
|
386
|
+
If CCJK helps you code better, please give us a star!
|
|
529
387
|
|
|
530
|
-
[](https://star-history.com/#anthropics/claude-code&Date)
|
|
531
389
|
|
|
532
390
|
<br/>
|
|
533
391
|
|
|
@@ -535,9 +393,9 @@ If CCJK helps you code better, please give us a star! It helps others discover t
|
|
|
535
393
|
|
|
536
394
|
<br/>
|
|
537
395
|
|
|
538
|
-
### đ
|
|
396
|
+
### đ SEO Keywords
|
|
539
397
|
|
|
540
|
-
`claude-code` `ai-coding-assistant` `code-
|
|
398
|
+
`claude-code` `ai-coding-assistant` `claude-code-extension` `ai-developer-tools` `claude-ai` `anthropic` `llm-coding` `workflow-templates` `code-automation` `zero-config` `multi-provider` `mcp-integration` `typescript` `python` `javascript` `react` `vue` `nodejs` `docker` `kubernetes` `github-actions` `ci-cd` `code-quality` `best-practices` `clean-code` `copilot-alternative` `cursor-alternative` `windsurf-alternative` `free-ai-coding` `open-source-ai` `vscode-extension` `ai-pair-programming` `intelligent-coding` `developer-productivity` `coding-assistant` `ai-tools-2025`
|
|
541
399
|
|
|
542
400
|
</div>
|
|
543
401
|
|
|
@@ -546,7 +404,7 @@ If CCJK helps you code better, please give us a star! It helps others discover t
|
|
|
546
404
|
[npm-version-href]: https://npmjs.com/package/ccjk
|
|
547
405
|
[npm-downloads-src]: https://img.shields.io/npm/dm/ccjk?style=flat&colorA=18181B&colorB=28CF8D
|
|
548
406
|
[npm-downloads-href]: https://npmjs.com/package/ccjk
|
|
549
|
-
[license-src]: https://img.shields.io/github/license/
|
|
550
|
-
[license-href]: https://github.com/
|
|
551
|
-
[stars-src]: https://img.shields.io/github/stars/
|
|
552
|
-
[stars-href]: https://github.com/
|
|
407
|
+
[license-src]: https://img.shields.io/github/license/anthropics/claude-code?style=flat&colorA=18181B&colorB=28CF8D
|
|
408
|
+
[license-href]: https://github.com/anthropics/claude-code/blob/main/LICENSE
|
|
409
|
+
[stars-src]: https://img.shields.io/github/stars/anthropics/claude-code?style=flat&colorA=18181B&colorB=28CF8D
|
|
410
|
+
[stars-href]: https://github.com/anthropics/claude-code/stargazers
|