ccjk 1.3.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.
Files changed (109) hide show
  1. package/LICENSE +21 -0
  2. package/README.ja.md +455 -0
  3. package/README.ko.md +455 -0
  4. package/README.md +550 -0
  5. package/README.zh-CN.md +488 -0
  6. package/bin/ccjk.mjs +2 -0
  7. package/dist/chunks/api-providers.mjs +89 -0
  8. package/dist/chunks/claude-code-config-manager.mjs +733 -0
  9. package/dist/chunks/claude-code-incremental-manager.mjs +603 -0
  10. package/dist/chunks/codex-config-switch.mjs +427 -0
  11. package/dist/chunks/codex-provider-manager.mjs +232 -0
  12. package/dist/chunks/codex-uninstaller.mjs +404 -0
  13. package/dist/chunks/commands.mjs +120 -0
  14. package/dist/chunks/features.mjs +642 -0
  15. package/dist/chunks/simple-config.mjs +10445 -0
  16. package/dist/cli.d.mts +1 -0
  17. package/dist/cli.d.ts +1 -0
  18. package/dist/cli.mjs +5972 -0
  19. package/dist/i18n/locales/en/api.json +63 -0
  20. package/dist/i18n/locales/en/ccjk.json +276 -0
  21. package/dist/i18n/locales/en/ccr.json +65 -0
  22. package/dist/i18n/locales/en/cli.json +57 -0
  23. package/dist/i18n/locales/en/codex.json +124 -0
  24. package/dist/i18n/locales/en/cometix.json +29 -0
  25. package/dist/i18n/locales/en/common.json +20 -0
  26. package/dist/i18n/locales/en/configuration.json +77 -0
  27. package/dist/i18n/locales/en/errors.json +26 -0
  28. package/dist/i18n/locales/en/installation.json +80 -0
  29. package/dist/i18n/locales/en/interview.json +104 -0
  30. package/dist/i18n/locales/en/language.json +19 -0
  31. package/dist/i18n/locales/en/mcp.json +38 -0
  32. package/dist/i18n/locales/en/menu.json +51 -0
  33. package/dist/i18n/locales/en/multi-config.json +79 -0
  34. package/dist/i18n/locales/en/shencha.json +14 -0
  35. package/dist/i18n/locales/en/team.json +7 -0
  36. package/dist/i18n/locales/en/tools.json +42 -0
  37. package/dist/i18n/locales/en/uninstall.json +56 -0
  38. package/dist/i18n/locales/en/updater.json +25 -0
  39. package/dist/i18n/locales/en/workflow.json +25 -0
  40. package/dist/i18n/locales/zh-CN/api.json +63 -0
  41. package/dist/i18n/locales/zh-CN/ccjk.json +276 -0
  42. package/dist/i18n/locales/zh-CN/ccr.json +65 -0
  43. package/dist/i18n/locales/zh-CN/cli.json +57 -0
  44. package/dist/i18n/locales/zh-CN/codex.json +124 -0
  45. package/dist/i18n/locales/zh-CN/cometix.json +29 -0
  46. package/dist/i18n/locales/zh-CN/common.json +20 -0
  47. package/dist/i18n/locales/zh-CN/configuration.json +77 -0
  48. package/dist/i18n/locales/zh-CN/errors.json +26 -0
  49. package/dist/i18n/locales/zh-CN/installation.json +80 -0
  50. package/dist/i18n/locales/zh-CN/interview.json +104 -0
  51. package/dist/i18n/locales/zh-CN/language.json +19 -0
  52. package/dist/i18n/locales/zh-CN/mcp.json +38 -0
  53. package/dist/i18n/locales/zh-CN/menu.json +51 -0
  54. package/dist/i18n/locales/zh-CN/multi-config.json +79 -0
  55. package/dist/i18n/locales/zh-CN/shencha.json +14 -0
  56. package/dist/i18n/locales/zh-CN/team.json +7 -0
  57. package/dist/i18n/locales/zh-CN/tools.json +42 -0
  58. package/dist/i18n/locales/zh-CN/uninstall.json +56 -0
  59. package/dist/i18n/locales/zh-CN/updater.json +25 -0
  60. package/dist/i18n/locales/zh-CN/workflow.json +25 -0
  61. package/dist/index.d.mts +2644 -0
  62. package/dist/index.d.ts +2644 -0
  63. package/dist/index.mjs +1706 -0
  64. package/package.json +157 -0
  65. package/templates/CLAUDE.md +219 -0
  66. package/templates/claude-code/CLAUDE.md +250 -0
  67. package/templates/claude-code/common/settings.json +38 -0
  68. package/templates/claude-code/en/workflow/bmad/commands/bmad-init.md +165 -0
  69. package/templates/claude-code/en/workflow/common/agents/get-current-datetime.md +29 -0
  70. package/templates/claude-code/en/workflow/common/agents/init-architect.md +114 -0
  71. package/templates/claude-code/en/workflow/common/commands/init-project.md +53 -0
  72. package/templates/claude-code/en/workflow/plan/agents/planner.md +116 -0
  73. package/templates/claude-code/en/workflow/plan/agents/ui-ux-designer.md +91 -0
  74. package/templates/claude-code/en/workflow/plan/commands/feat.md +105 -0
  75. package/templates/claude-code/zh-CN/workflow/bmad/commands/bmad-init.md +172 -0
  76. package/templates/claude-code/zh-CN/workflow/common/agents/get-current-datetime.md +29 -0
  77. package/templates/claude-code/zh-CN/workflow/common/agents/init-architect.md +114 -0
  78. package/templates/claude-code/zh-CN/workflow/common/commands/init-project.md +53 -0
  79. package/templates/claude-code/zh-CN/workflow/plan/agents/planner.md +116 -0
  80. package/templates/claude-code/zh-CN/workflow/plan/agents/ui-ux-designer.md +91 -0
  81. package/templates/claude-code/zh-CN/workflow/plan/commands/feat.md +105 -0
  82. package/templates/codex/common/config.toml +0 -0
  83. package/templates/common/output-styles/en/casual-friendly.md +97 -0
  84. package/templates/common/output-styles/en/engineer-professional.md +88 -0
  85. package/templates/common/output-styles/en/expert-concise.md +93 -0
  86. package/templates/common/output-styles/en/laowang-engineer.md +127 -0
  87. package/templates/common/output-styles/en/nekomata-engineer.md +120 -0
  88. package/templates/common/output-styles/en/ojousama-engineer.md +121 -0
  89. package/templates/common/output-styles/en/teaching-mode.md +102 -0
  90. package/templates/common/output-styles/en/technical-precise.md +101 -0
  91. package/templates/common/output-styles/zh-CN/engineer-professional.md +89 -0
  92. package/templates/common/output-styles/zh-CN/laowang-engineer.md +127 -0
  93. package/templates/common/output-styles/zh-CN/nekomata-engineer.md +120 -0
  94. package/templates/common/output-styles/zh-CN/ojousama-engineer.md +121 -0
  95. package/templates/common/workflow/git/en/git-cleanBranches.md +102 -0
  96. package/templates/common/workflow/git/en/git-commit.md +205 -0
  97. package/templates/common/workflow/git/en/git-rollback.md +90 -0
  98. package/templates/common/workflow/git/en/git-worktree.md +276 -0
  99. package/templates/common/workflow/git/zh-CN/git-cleanBranches.md +102 -0
  100. package/templates/common/workflow/git/zh-CN/git-commit.md +205 -0
  101. package/templates/common/workflow/git/zh-CN/git-rollback.md +90 -0
  102. package/templates/common/workflow/git/zh-CN/git-worktree.md +276 -0
  103. package/templates/common/workflow/interview/en/interview.md +212 -0
  104. package/templates/common/workflow/interview/zh-CN/interview.md +212 -0
  105. package/templates/common/workflow/sixStep/en/workflow.md +251 -0
  106. package/templates/common/workflow/sixStep/zh-CN/workflow.md +215 -0
  107. package/templates/industry/devops/en/ci-cd-pipeline.md +410 -0
  108. package/templates/industry/web-dev/en/api-design.md +299 -0
  109. package/templates/industry/web-dev/en/react-nextjs-setup.md +236 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025-PRESENT UfoMiao <https://github.com/UfoMiao> & Miao Da <https://github.com/WitMiao>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.ja.md ADDED
@@ -0,0 +1,455 @@
1
+ <!--
2
+ SEO Meta: CCJK - Claude Code 錦庫 | 最強AIコーディングアシスタント | 11+ AIエージェント | 無料オープンソース
3
+ Description: CCJKはClaude Code向けの最強拡張ツールキットです。11+ AIエージェント、LLM駆動コード監査、スキル自動化、プラグインシステムを搭載。ワンクリック設定。
4
+ -->
5
+
6
+ <div align="center">
7
+
8
+ <!-- Logo & Badges - GitHub Social Preview最適化 -->
9
+ <img src="https://raw.githubusercontent.com/miounet11/ccjk/main/docs/assets/ccjk-logo.png" alt="CCJK Logo" width="200" />
10
+
11
+ # CCJK - Claude Code 錦庫
12
+
13
+ ### 🏆 #1 AIコーディングアシスタント拡張ツールキット
14
+
15
+ [![npm version][npm-version-src]][npm-version-href]
16
+ [![npm downloads][npm-downloads-src]][npm-downloads-href]
17
+ [![License][license-src]][license-href]
18
+ [![GitHub stars][stars-src]][stars-href]
19
+ [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/miounet11/ccjk/pulls)
20
+
21
+ **[English](README.md)** | **[简体中文](README.zh-CN.md)** | **[日本語](README.ja.md)** | **[한국어](README.ko.md)**
22
+
23
+ <br/>
24
+
25
+ > 💡 **ワンコマンドでAIコーディング体験をスーパーチャージ**
26
+ >
27
+ > ```bash
28
+ > npx ccjk
29
+ > ```
30
+
31
+ <br/>
32
+
33
+ [📖 クイックスタート](#-クイックスタート) · [🚀 コア機能](#-コア機能) · [💬 コミュニティ](#-コミュニティ--サポート) · [🤝 コントリビュート](#-コントリビュート)
34
+
35
+ </div>
36
+
37
+ ---
38
+
39
+ ## 🎯 CCJKとは?
40
+
41
+ **CCJK (Claude Code 錦庫)** はClaude Codeをシンプルなアシスタントから**完全なAI開発チーム**へ変換します。11+の専門AIエージェント、インテリジェント自動化、世界初のLLM駆動コード監査で、より速く、より良いコードを書けます。
42
+
43
+ <table>
44
+ <tr>
45
+ <td width="33%" align="center">
46
+ <h3>🤖 11+ AIエージェント</h3>
47
+ <p>セキュリティ、パフォーマンス、テスト、DevOps、コードレビューなど</p>
48
+ </td>
49
+ <td width="33%" align="center">
50
+ <h3>⚡ ゼロ設定</h3>
51
+ <p>ワンコマンドで即座に使用可能</p>
52
+ </td>
53
+ <td width="33%" align="center">
54
+ <h3>🆓 100%無料</h3>
55
+ <p>オープンソース。隠れたコストなし。MITライセンス。</p>
56
+ </td>
57
+ </tr>
58
+ </table>
59
+
60
+ ---
61
+
62
+ ## 🚀 クイックスタート
63
+
64
+ ### ステップ1:CCJKインストール(30秒)
65
+
66
+ ```bash
67
+ # オプションA:直接実行(初回ユーザー推奨)
68
+ npx ccjk
69
+
70
+ # オプションB:グローバルインストール
71
+ npm install -g ccjk
72
+ ```
73
+
74
+ ### ステップ2:API設定
75
+
76
+ `npx ccjk`を実行すると、フレンドリーなメニューが表示されます:
77
+
78
+ ```
79
+ ╔═══════════════════════════════════════════════════════════╗
80
+ ║ ██████╗ ██████╗ ██╗██╗ ██╗ ║
81
+ ║ ██╔════╝██╔════╝ ██║██║ ██╔╝ ║
82
+ ║ ██║ ██║ ██║█████╔╝ Claude Code 錦庫 ║
83
+ ║ ██║ ██║ ██ ██║██╔═██╗ v1.0.0 ║
84
+ ║ ╚██████╗╚██████╗╚█████╔╝██║ ██╗ ║
85
+ ║ ╚═════╝ ╚═════╝ ╚════╝ ╚═╝ ╚═╝ ║
86
+ ╚═══════════════════════════════════════════════════════════╝
87
+
88
+ ? オプションを選択:
89
+ ❯ 🚀 クイックセットアップ(推奨)
90
+ ⚙️ API設定
91
+ 🛠️ 詳細設定
92
+ 📖 ヘルプ
93
+ ```
94
+
95
+ **「クイックセットアップ」** を選択して、プロンプトに従ってください!
96
+
97
+ ### ステップ3:コーディング開始!
98
+
99
+ ```bash
100
+ # CCJK強化版Claude Codeを実行
101
+ claude
102
+ ```
103
+
104
+ 完了!これで11+のAIエージェント、スキル自動化などすべての機能が利用可能です。
105
+
106
+ ---
107
+
108
+ ## ✨ コア機能
109
+
110
+ ### 🤖 AIエージェント軍団
111
+
112
+ あなた専用のAI開発チーム、24時間365日対応:
113
+
114
+ | エージェント | 機能 | 使用例 |
115
+ |------------|------|--------|
116
+ | 🛡️ **セキュリティエキスパート** | 脆弱性発見、OWASPチェック | 「この認証コードのセキュリティ問題をレビュー」 |
117
+ | ⚡ **パフォーマンスエキスパート** | 速度最適化、メモリ削減 | 「アプリが遅い理由は?」 |
118
+ | 🧪 **テストスペシャリスト** | テスト作成、カバレッジ分析 | 「この関数にユニットテスト追加」 |
119
+ | 🚀 **DevOpsエキスパート** | CI/CD、Docker、Kubernetes | 「GitHub Actionsワークフロー作成」 |
120
+ | 📝 **コードレビュアー** | ベストプラクティス、コード品質 | 「このPRをレビュー」 |
121
+ | 🏗️ **APIアーキテクト** | REST、GraphQL、API設計 | 「ユーザー管理APIを設計」 |
122
+ | 💾 **データベースエキスパート** | クエリ最適化、インデックス | 「このSQLクエリを最適化」 |
123
+ | 🎨 **フロントエンドアーキテクト** | React、Vue、アクセシビリティ | 「このコンポーネントをリファクタリング」 |
124
+ | ⚙️ **バックエンドアーキテクト** | マイクロサービス、イベント駆動 | 「スケーラブルなバックエンドを設計」 |
125
+ | 📚 **ドキュメントエキスパート** | APIドキュメント、README、ガイド | 「このコードベースをドキュメント化」 |
126
+ | 🔄 **リファクタリングエキスパート** | クリーンコード、デザインパターン | 「SOLID原則でリファクタリング」 |
127
+
128
+ ### 🔍 ShenCha - AIコード監査
129
+
130
+ 世界初の**完全自律型**AIコード監査:
131
+
132
+ ```
133
+ ┌─────────────────────────────────────────────────────────────┐
134
+ │ 🧠 ShenCha監査エンジン │
135
+ ├─────────────────────────────────────────────────────────────┤
136
+ │ │
137
+ │ 1️⃣ スキャン → AIが問題を発見(事前定義ルールなし) │
138
+ │ 2️⃣ 分析 → コンテキストと影響を理解 │
139
+ │ 3️⃣ 修正 → 修正を自動生成・適用 │
140
+ │ 4️⃣ 検証 → 修正が正しく機能することを確認 │
141
+ │ │
142
+ │ ✅ 72時間継続監査サイクル │
143
+ │ ✅ 包括的なレポート生成 │
144
+ │ │
145
+ └─────────────────────────────────────────────────────────────┘
146
+ ```
147
+
148
+ ### ⚡ スキルシステム
149
+
150
+ シンプルなコマンドで強力な自動化を作成:
151
+
152
+ ```bash
153
+ # TypeScript開発者向け
154
+ ccjk skills create-batch --lang typescript
155
+ # 作成: ts-debug, ts-refactor, ts-test, ts-type-check, ts-migrate
156
+
157
+ # Python開発者向け
158
+ ccjk skills create-batch --lang python
159
+ # 作成: py-debug, py-refactor, py-test, py-lint, py-type
160
+
161
+ # SEO最適化向け
162
+ ccjk skills create-batch --seo
163
+ # 作成: meta-optimize, sitemap-generate, schema-markup, core-web-vitals
164
+
165
+ # DevOps向け
166
+ ccjk skills create-batch --devops
167
+ # 作成: docker-setup, ci-pipeline, deploy-script, monitoring
168
+ ```
169
+
170
+ ### 🌐 13+内蔵APIプロバイダー
171
+
172
+ ワンクリックであらゆるAIプロバイダーに接続:
173
+
174
+ | プロバイダー | タイプ | 無料枠 |
175
+ |------------|--------|:------:|
176
+ | **Anthropic** | 公式 | - |
177
+ | **OpenRouter** | マルチモデル | ✅ |
178
+ | **DeepSeek** | コスト効率 | ✅ |
179
+ | **Groq** | 高速推論 | ✅ |
180
+ | **Gemini** | Google AI | ✅ |
181
+ | **Ollama** | ローカル/プライベート | ✅ |
182
+ | 302.AI, Qwen, SiliconFlow, Kimi, GLM... | アジアプロバイダー | 各種 |
183
+
184
+ ```bash
185
+ # クイックAPI設定
186
+ ccjk api setup deepseek sk-your-api-key
187
+
188
+ # または対話式ウィザードを使用
189
+ ccjk api wizard
190
+ ```
191
+
192
+ ### 🔌 プラグインシステム
193
+
194
+ カスタムプラグインでCCJKを拡張:
195
+
196
+ ```typescript
197
+ // ~/.ccjk/plugins/my-plugin/index.ts
198
+ export default {
199
+ name: 'my-awesome-plugin',
200
+ version: '1.0.0',
201
+
202
+ // カスタムエージェント追加
203
+ agents: [
204
+ { name: 'my-agent', model: 'sonnet', template: '...' }
205
+ ],
206
+
207
+ // カスタムスキル追加
208
+ skills: [
209
+ { id: 'my-skill', trigger: '/my-skill', template: '...' }
210
+ ],
211
+
212
+ // カスタムワークフロー追加
213
+ workflows: [...]
214
+ }
215
+ ```
216
+
217
+ ---
218
+
219
+ ## 📖 コマンドリファレンス
220
+
221
+ ### 必須コマンド(まずこれを使って!)
222
+
223
+ | コマンド | 説明 | 使用タイミング |
224
+ |---------|------|---------------|
225
+ | `npx ccjk` | 対話式セットアップメニュー | 初回セットアップ |
226
+ | `ccjk setup` | ガイド付きオンボーディング | CCJKが初めて |
227
+ | `ccjk doctor` | 環境チェック | 問題発生時 |
228
+ | `ccjk upgrade` | すべて更新 | 最新状態を維持 |
229
+
230
+ ### 設定コマンド
231
+
232
+ | コマンド | 説明 |
233
+ |---------|------|
234
+ | `ccjk init` | 全オプションで完全初期化 |
235
+ | `ccjk api wizard` | APIプロバイダー設定 |
236
+ | `ccjk api list` | 利用可能なプロバイダー表示 |
237
+ | `ccjk api status` | 現在のAPI設定確認 |
238
+ | `ccjk api test` | API接続テスト |
239
+
240
+ ### ツール管理
241
+
242
+ | コマンド | 説明 |
243
+ |---------|------|
244
+ | `ccjk tools list` | 全AIコーディングツール表示 |
245
+ | `ccjk tools install <ツール>` | 特定ツールをインストール |
246
+ | `ccjk tools status` | インストール状態確認 |
247
+
248
+ ### スキル&自動化
249
+
250
+ | コマンド | 説明 |
251
+ |---------|------|
252
+ | `ccjk skills list` | 全スキル一覧 |
253
+ | `ccjk skills create-batch --lang <言語>` | 言語別スキル作成 |
254
+ | `ccjk skills enable <スキル>` | スキル有効化 |
255
+ | `ccjk skills disable <スキル>` | スキル無効化 |
256
+
257
+ ### 高度なコマンド
258
+
259
+ | コマンド | 説明 |
260
+ |---------|------|
261
+ | `ccjk config-scan` | 全Claude Code設定を検索 |
262
+ | `ccjk permissions` | Claude Code権限管理 |
263
+ | `ccjk versions` | 全コンポーネントバージョン確認 |
264
+ | `ccjk uninstall` | 完全アンインストール |
265
+
266
+ ---
267
+
268
+ ## 🌍 多言語サポート
269
+
270
+ CCJKはあなたの言語を話します:
271
+
272
+ ```bash
273
+ # English(デフォルト)
274
+ ccjk init --lang en
275
+
276
+ # 日本語
277
+ ccjk init --lang ja
278
+
279
+ # 简体中文
280
+ ccjk init --lang zh-CN
281
+
282
+ # 한국어
283
+ ccjk init --lang ko
284
+
285
+ # 全言語を一度に設定(UI + 設定 + AI出力)
286
+ ccjk init --all-lang ja
287
+ ```
288
+
289
+ ---
290
+
291
+ ## 📊 なぜCCJK?
292
+
293
+ | 機能 | CCJK | Cursor | Copilot | その他 |
294
+ |-----|:----:|:------:|:-------:|:-----:|
295
+ | AIエージェント | **11+** | 2 | 1 | 0-2 |
296
+ | スキル自動化 | ✅ | ❌ | ❌ | ❌ |
297
+ | プラグインシステム | ✅ | ❌ | ❌ | ❌ |
298
+ | LLMコード監査 | ✅ | ❌ | ❌ | ❌ |
299
+ | マルチプロバイダー | **13+** | 1 | 1 | 1-3 |
300
+ | ゼロ設定 | ✅ | ❌ | ❌ | ❌ |
301
+ | オープンソース | ✅ | ❌ | ❌ | 一部 |
302
+ | 無料 | ✅ | ❌ | ❌ | 一部 |
303
+
304
+ ---
305
+
306
+ ## 💻 プラットフォーム対応
307
+
308
+ | プラットフォーム | 状態 | 備考 |
309
+ |----------------|:----:|-----|
310
+ | **macOS** | ✅ 完全対応 | Intel & Apple Silicon |
311
+ | **Linux** | ✅ 完全対応 | 全主要ディストリビューション |
312
+ | **Windows** | ✅ 完全対応 | Windows 10/11, WSL2 |
313
+ | **Termux** | ✅ 完全対応 | Androidターミナル |
314
+
315
+ ---
316
+
317
+ ## ❓ よくある質問
318
+
319
+ <details>
320
+ <summary><b>APIキーは必要ですか?</b></summary>
321
+
322
+ 13+のサポートプロバイダーの1つからAPIキーが必要です。一部は無料枠を提供:
323
+ - **Groq** - 無料枠あり
324
+ - **Gemini** - 無料枠あり
325
+ - **DeepSeek** - 非常に手頃
326
+ - **Ollama** - ローカル実行、完全無料
327
+
328
+ </details>
329
+
330
+ <details>
331
+ <summary><b>CCJKは無料ですか?</b></summary>
332
+
333
+ はい!CCJKは100%無料オープンソースです(MITライセンス)。選択したプロバイダーへのAPI使用料のみ支払います。
334
+
335
+ </details>
336
+
337
+ <details>
338
+ <summary><b>Claude Codeで動きますか?</b></summary>
339
+
340
+ はい!CCJKはClaude Code強化専用に設計されています。Codex、Aider、Continue、Cline、Cursorもサポートします。
341
+
342
+ </details>
343
+
344
+ <details>
345
+ <summary><b>会社で使えますか?</b></summary>
346
+
347
+ もちろん!MITライセンスは商用利用を許可します。多くのチームがCCJKを使用:
348
+ - AIコーディング慣行の標準化
349
+ - 開発者オンボーディングの高速化
350
+ - 自動コードレビュー
351
+ - セキュリティコンプライアンス
352
+
353
+ </details>
354
+
355
+ <details>
356
+ <summary><b>問題が発生したら?</b></summary>
357
+
358
+ ヘルスチェックを実行:
359
+ ```bash
360
+ ccjk doctor
361
+ ```
362
+ 一般的な問題を診断し、修正を提案します。
363
+
364
+ </details>
365
+
366
+ ---
367
+
368
+ ## 💬 コミュニティ & サポート
369
+
370
+ <div align="center">
371
+
372
+ [![GitHub Discussions](https://img.shields.io/badge/GitHub-ディスカッション-333?style=for-the-badge&logo=github)](https://github.com/miounet11/ccjk/discussions)
373
+ [![Telegram](https://img.shields.io/badge/Telegram-チャット-26A5E4?style=for-the-badge&logo=telegram)](https://t.me/ccjk_community)
374
+ [![Discord](https://img.shields.io/badge/Discord-サーバー-5865F2?style=for-the-badge&logo=discord)](https://discord.gg/ccjk)
375
+
376
+ </div>
377
+
378
+ - 🐛 **バグ報告**: [GitHub Issues](https://github.com/miounet11/ccjk/issues)
379
+ - 💡 **機能リクエスト**: [GitHub Discussions](https://github.com/miounet11/ccjk/discussions)
380
+ - 📖 **ドキュメント**: [docs.ccjk.dev](https://docs.ccjk.dev)
381
+
382
+ ---
383
+
384
+ ## 🤝 コントリビュート
385
+
386
+ コントリビューション歓迎!始め方:
387
+
388
+ ```bash
389
+ # リポジトリをクローン
390
+ git clone https://github.com/miounet11/ccjk.git
391
+ cd ccjk
392
+
393
+ # 依存関係をインストール
394
+ pnpm install
395
+
396
+ # 開発モードで実行
397
+ pnpm dev
398
+
399
+ # テスト実行
400
+ pnpm test
401
+
402
+ # ビルド
403
+ pnpm build
404
+ ```
405
+
406
+ 詳細は[コントリビューションガイド](CONTRIBUTING.md)をご覧ください。
407
+
408
+ ---
409
+
410
+ ## 🙏 謝辞
411
+
412
+ CCJKは巨人の肩の上に立っています:
413
+
414
+ - [Claude Code](https://claude.ai/code) - 強力なAIコーディング基盤
415
+ - [ZCF](https://github.com/UfoMiao/zcf) - オリジナルのインスピレーション
416
+ - [Claude Code Router](https://github.com/musistudio/claude-code-router) - APIルーティング
417
+ - [BMad Method](https://github.com/bmad-code-org/BMAD-METHOD) - ワークフローパターン
418
+
419
+ ---
420
+
421
+ ## 📄 ライセンス
422
+
423
+ MIT © [CCJK Team](https://github.com/miounet11/ccjk)
424
+
425
+ ---
426
+
427
+ <div align="center">
428
+
429
+ ## ⭐ GitHubでスターを
430
+
431
+ CCJKが役立ったら、スターをお願いします!他の人がプロジェクトを発見する助けになります。
432
+
433
+ [![Star History Chart](https://api.star-history.com/svg?repos=miounet11/ccjk&type=Date)](https://star-history.com/#miounet11/ccjk&Date)
434
+
435
+ <br/>
436
+
437
+ **開発者による、開発者のための ❤️**
438
+
439
+ <br/>
440
+
441
+ ### 🔍 検索キーワード
442
+
443
+ `claude-code` `AIコーディングアシスタント` `コードレビューAI` `AI開発ツール` `claude-ai` `anthropic` `LLMコーディング` `AIエージェント` `コード自動化` `devops-ai` `セキュリティ監査` `パフォーマンス最適化` `typescript` `python` `javascript` `react` `vue` `nodejs` `docker` `kubernetes` `github-actions` `ci-cd` `コード品質` `ベストプラクティス` `クリーンコード` `copilot代替` `cursor代替` `無料AIコーディング` `オープンソースAI`
444
+
445
+ </div>
446
+
447
+ <!-- Badge Links -->
448
+ [npm-version-src]: https://img.shields.io/npm/v/ccjk?style=flat&colorA=18181B&colorB=28CF8D
449
+ [npm-version-href]: https://npmjs.com/package/ccjk
450
+ [npm-downloads-src]: https://img.shields.io/npm/dm/ccjk?style=flat&colorA=18181B&colorB=28CF8D
451
+ [npm-downloads-href]: https://npmjs.com/package/ccjk
452
+ [license-src]: https://img.shields.io/github/license/miounet11/ccjk?style=flat&colorA=18181B&colorB=28CF8D
453
+ [license-href]: https://github.com/miounet11/ccjk/blob/main/LICENSE
454
+ [stars-src]: https://img.shields.io/github/stars/miounet11/ccjk?style=flat&colorA=18181B&colorB=28CF8D
455
+ [stars-href]: https://github.com/miounet11/ccjk/stargazers