ccjk 10.2.0 → 11.1.0
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 +28 -0
- package/dist/chunks/auto-init.mjs +7585 -0
- package/dist/chunks/ccr.mjs +2 -1
- package/dist/chunks/check-updates.mjs +1 -0
- package/dist/chunks/claude-code-config-manager.mjs +1 -0
- package/dist/chunks/claude-code-incremental-manager.mjs +2 -1
- package/dist/chunks/codex-config-switch.mjs +1 -0
- package/dist/chunks/codex-provider-manager.mjs +1 -0
- package/dist/chunks/config-switch.mjs +1 -0
- package/dist/chunks/config.mjs +2 -94
- package/dist/chunks/config2.mjs +1 -0
- package/dist/chunks/config3.mjs +1 -0
- package/dist/chunks/evolution.mjs +383 -0
- package/dist/chunks/features.mjs +2 -1
- package/dist/chunks/init.mjs +1 -1
- package/dist/chunks/mcp.mjs +1 -0
- package/dist/chunks/menu.mjs +7 -1
- package/dist/chunks/package.mjs +1 -1
- package/dist/chunks/quick-provider.mjs +3 -0
- package/dist/chunks/quick-setup.mjs +2 -1
- package/dist/chunks/remote.mjs +166 -0
- package/dist/chunks/simple-config.mjs +1 -6
- package/dist/chunks/update.mjs +2 -1
- package/dist/chunks/zero-config.mjs +359 -0
- package/dist/cli.mjs +107 -0
- package/dist/i18n/locales/en/configuration.json +33 -0
- package/dist/i18n/locales/en/evolution.json +54 -0
- package/dist/i18n/locales/en/remote.json +39 -0
- package/dist/i18n/locales/zh-CN/configuration.json +33 -0
- package/dist/i18n/locales/zh-CN/evolution.json +54 -0
- package/dist/i18n/locales/zh-CN/remote.json +39 -0
- package/dist/index.mjs +3 -73
- package/dist/shared/ccjk.BiCrMV5O.mjs +94 -0
- package/dist/shared/ccjk.Cu_R2MbQ.mjs +75 -0
- package/dist/shared/{ccjk.IbImMVWM.mjs → ccjk.DVBW2wxp.mjs} +2 -1
- package/package.json +7 -1
package/README.md
CHANGED
|
@@ -133,6 +133,26 @@ ccjk mcp install filesystem puppeteer postgres
|
|
|
133
133
|
# Done. No manual config.
|
|
134
134
|
```
|
|
135
135
|
|
|
136
|
+
### 🔓 Zero-Config Permission Presets (NEW)
|
|
137
|
+
One-click permission configuration for different use cases:
|
|
138
|
+
```bash
|
|
139
|
+
ccjk zc --list # View available presets
|
|
140
|
+
ccjk zc --preset max # Maximum permissions (all commands)
|
|
141
|
+
ccjk zc --preset dev # Developer preset (build tools, git, npm)
|
|
142
|
+
ccjk zc --preset safe # Safe preset (read-only operations)
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
**Available Presets:**
|
|
146
|
+
- **max** — All common commands, file operations, and MCP servers (100+ permissions)
|
|
147
|
+
- **dev** — Build tools, git, package managers, and file operations (50+ permissions)
|
|
148
|
+
- **safe** — Read-only commands, no file modifications (20+ permissions)
|
|
149
|
+
|
|
150
|
+
Each preset automatically:
|
|
151
|
+
- ✅ Backs up your current settings
|
|
152
|
+
- ✅ Merges with existing permissions (no data loss)
|
|
153
|
+
- ✅ Removes invalid/dangerous patterns
|
|
154
|
+
- ✅ Shows exactly what will be added
|
|
155
|
+
|
|
136
156
|
## 📖 Essential Commands
|
|
137
157
|
|
|
138
158
|
```bash
|
|
@@ -158,6 +178,14 @@ ccjk mcp list
|
|
|
158
178
|
# Memory & Context
|
|
159
179
|
ccjk memory --enable
|
|
160
180
|
ccjk compact # Clean up conversation
|
|
181
|
+
|
|
182
|
+
# Zero-Config Permission Presets (NEW)
|
|
183
|
+
ccjk zc --list # List available presets
|
|
184
|
+
ccjk zc --preset max # Apply maximum permissions
|
|
185
|
+
ccjk zc --preset dev # Apply developer preset
|
|
186
|
+
ccjk zc --preset safe # Apply safe (read-only) preset
|
|
187
|
+
|
|
188
|
+
# Other Commands
|
|
161
189
|
npx ccjk u # Update workflows
|
|
162
190
|
npx ccjk sync # Cloud sync
|
|
163
191
|
npx ccjk doctor # Health check
|