ccjk 12.0.6 → 12.0.7

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 (62) hide show
  1. package/README.md +14 -0
  2. package/README.zh-CN.md +13 -0
  3. package/dist/chunks/api-cli.mjs +1 -1
  4. package/dist/chunks/ccjk-agents.mjs +3 -2
  5. package/dist/chunks/ccjk-all.mjs +129 -1764
  6. package/dist/chunks/ccjk-hooks.mjs +5 -4
  7. package/dist/chunks/ccjk-mcp.mjs +7 -6
  8. package/dist/chunks/ccjk-setup.mjs +3 -2
  9. package/dist/chunks/ccjk-skills.mjs +6 -5
  10. package/dist/chunks/ccr.mjs +6 -5
  11. package/dist/chunks/check-updates.mjs +8 -8
  12. package/dist/chunks/claude-code-config-manager.mjs +1 -1
  13. package/dist/chunks/claude-code-incremental-manager.mjs +2 -2
  14. package/dist/chunks/codex-config-switch.mjs +1 -1
  15. package/dist/chunks/codex-provider-manager.mjs +1 -1
  16. package/dist/chunks/config-switch.mjs +1 -1
  17. package/dist/chunks/config.mjs +1 -1
  18. package/dist/chunks/config2.mjs +1 -1
  19. package/dist/chunks/config3.mjs +1 -1
  20. package/dist/chunks/constants.mjs +33 -2
  21. package/dist/chunks/dashboard.mjs +115 -3
  22. package/dist/chunks/features.mjs +3 -3
  23. package/dist/chunks/init.mjs +108 -4
  24. package/dist/chunks/installer2.mjs +7 -7
  25. package/dist/chunks/manager.mjs +1048 -0
  26. package/dist/chunks/mcp-cli.mjs +1 -1
  27. package/dist/chunks/mcp.mjs +1 -1
  28. package/dist/chunks/menu.mjs +22 -1
  29. package/dist/chunks/notification.mjs +5 -2
  30. package/dist/chunks/package.mjs +1 -1
  31. package/dist/chunks/quick-provider.mjs +1 -269
  32. package/dist/chunks/quick-setup.mjs +10 -10
  33. package/dist/chunks/remote.mjs +4 -1
  34. package/dist/chunks/simple-config.mjs +1 -1
  35. package/dist/chunks/skill.mjs +117 -9003
  36. package/dist/chunks/skill2.mjs +9003 -0
  37. package/dist/chunks/skills-sync.mjs +536 -55
  38. package/dist/chunks/skills.mjs +7 -1156
  39. package/dist/chunks/smart-defaults.mjs +87 -9
  40. package/dist/chunks/status.mjs +1 -1
  41. package/dist/chunks/uninstall.mjs +1 -1
  42. package/dist/chunks/update.mjs +2 -2
  43. package/dist/chunks/zero-config.mjs +6 -2
  44. package/dist/cli.mjs +3 -1
  45. package/dist/i18n/locales/en/cloud.json +40 -0
  46. package/dist/i18n/locales/zh-CN/cloud.json +40 -0
  47. package/dist/index.d.mts +2586 -2
  48. package/dist/index.d.ts +2586 -2
  49. package/dist/index.mjs +1340 -7
  50. package/dist/shared/ccjk.B364Fu0N.mjs +1819 -0
  51. package/dist/shared/ccjk.BtB1e5jm.mjs +171 -0
  52. package/dist/shared/{ccjk.BnpWvs9V.mjs → ccjk.BwfbSKN2.mjs} +1 -1
  53. package/dist/shared/{ccjk.AqnXPAzw.mjs → ccjk.C2jHOZVP.mjs} +1 -1
  54. package/dist/shared/{ccjk.BSYWk9ML.mjs → ccjk.Cjj8SVrn.mjs} +1 -1
  55. package/dist/shared/ccjk.D6ycHbak.mjs +270 -0
  56. package/dist/shared/ccjk.D8ZLYSZZ.mjs +299 -0
  57. package/dist/shared/{ccjk.s7OCVzdd.mjs → ccjk.DS7UESmF.mjs} +2 -1483
  58. package/dist/shared/{ccjk.BiCrMV5O.mjs → ccjk.DXRAZcix.mjs} +0 -28
  59. package/dist/shared/ccjk.UIvifqNE.mjs +1486 -0
  60. package/dist/shared/{ccjk.BDKUdmLk.mjs → ccjk.c-ETfBZ_.mjs} +208 -86
  61. package/package.json +5 -1
  62. package/templates/claude-code/common/settings.json +3 -1
package/README.md CHANGED
@@ -59,6 +59,7 @@ npx ccjk init --silent
59
59
  - ✅ Configured optimal MCP services for your stack
60
60
  - ✅ Set up persistent memory (AI remembers your codebase)
61
61
  - ✅ Enabled smart context compression (30-50% token reduction)
62
+ - ✅ Installed Agent Browser for seamless browser tasks
62
63
  - ✅ Ready for cloud sync (optional)
63
64
 
64
65
  **Before CCJK:**
@@ -139,6 +140,14 @@ ccjk mcp install filesystem puppeteer postgres
139
140
  # Done. No manual config.
140
141
  ```
141
142
 
143
+ ### 🌐 Browser Automation (Out of the Box)
144
+ Use browser skills directly after install:
145
+ ```bash
146
+ ccjk browser start https://example.com
147
+ ccjk browser status
148
+ ccjk browser stop
149
+ ```
150
+
142
151
  ### 🌐 Remote Control (NEW in v11.1.1)
143
152
  Control Claude Code from any device — browser, phone, or tablet.
144
153
  ```bash
@@ -211,6 +220,11 @@ ccjk remote status # Quick runtime status
211
220
  ccjk mcp install <service>
212
221
  ccjk mcp list
213
222
 
223
+ # Browser Automation
224
+ ccjk browser start <url>
225
+ ccjk browser status
226
+ ccjk browser stop
227
+
214
228
  # Memory & Context
215
229
  ccjk memory --enable
216
230
  ccjk compact # Clean up conversation
package/README.zh-CN.md CHANGED
@@ -49,6 +49,14 @@ npx ccjk
49
49
  # 完成。Claude Code 已超级充能。
50
50
  ```
51
51
 
52
+ 安装后可直接使用浏览器自动化(默认已启用):
53
+
54
+ ```bash
55
+ ccjk browser start https://example.com
56
+ ccjk browser status
57
+ ccjk browser stop
58
+ ```
59
+
52
60
  ## 为什么选 CCJK?
53
61
 
54
62
  | 没有 CCJK | 有 CCJK |
@@ -150,6 +158,11 @@ ccjk remote status # 实时运行状态
150
158
  npx ccjk u # 更新工作流
151
159
  npx ccjk sync # 云端同步
152
160
  npx ccjk doctor # 健康检查
161
+
162
+ # 浏览器自动化(默认可用)
163
+ ccjk browser start <url>
164
+ ccjk browser status
165
+ ccjk browser stop
153
166
  ```
154
167
 
155
168
  ## 文档
@@ -33,7 +33,7 @@ import './main.mjs';
33
33
  import 'module';
34
34
  import 'node:child_process';
35
35
  import 'node:stream';
36
- import '../shared/ccjk.BiCrMV5O.mjs';
36
+ import '../shared/ccjk.DXRAZcix.mjs';
37
37
 
38
38
  async function apiConfigure(options = {}) {
39
39
  const lang = options.lang || i18n.language || "en";
@@ -1,12 +1,13 @@
1
1
  import process__default, { cwd } from 'node:process';
2
- import { c as consola, P as ProjectAnalyzer, g as getTemplatesClient } from '../shared/ccjk.s7OCVzdd.mjs';
2
+ import { c as consola, g as getTemplatesClient } from '../shared/ccjk.UIvifqNE.mjs';
3
+ import { P as ProjectAnalyzer } from '../shared/ccjk.DS7UESmF.mjs';
3
4
  import { i18n } from './index5.mjs';
4
5
  import { existsSync, readFileSync, writeFileSync, readdirSync } from 'node:fs';
5
6
  import { CLAUDE_AGENTS_DIR } from './constants.mjs';
6
7
  import { j as join, d as dirname } from '../shared/ccjk.bQ7Dh1g4.mjs';
7
8
  import { w as writeAgentFile } from '../shared/ccjk.CfKKcvWy.mjs';
8
9
  import { fileURLToPath } from 'node:url';
9
- import { e as extractDisplayName, a as extractString } from '../shared/ccjk.AqnXPAzw.mjs';
10
+ import { a as extractDisplayName, e as extractString } from '../shared/ccjk.C2jHOZVP.mjs';
10
11
  import './index8.mjs';
11
12
  import 'tinyglobby';
12
13
  import '../shared/ccjk.BBtCGd_g.mjs';