ccjk 10.3.0 → 11.1.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 +6 -0
- package/README.zh-CN.md +3 -0
- package/dist/chunks/auto-init.mjs +7585 -0
- package/dist/chunks/evolution.mjs +383 -0
- package/dist/chunks/notification.mjs +9 -494
- package/dist/chunks/package.mjs +1 -1
- package/dist/chunks/quick-provider.mjs +1 -0
- package/dist/chunks/remote.mjs +485 -0
- package/dist/cli.mjs +107 -0
- package/dist/i18n/locales/en/evolution.json +54 -0
- package/dist/i18n/locales/en/notification.json +1 -0
- package/dist/i18n/locales/en/remote.json +93 -0
- package/dist/i18n/locales/zh-CN/evolution.json +54 -0
- package/dist/i18n/locales/zh-CN/notification.json +1 -0
- package/dist/i18n/locales/zh-CN/remote.json +93 -0
- package/dist/index.mjs +2 -73
- package/dist/shared/ccjk.CGcy7cNM.mjs +495 -0
- package/dist/shared/ccjk.Cu_R2MbQ.mjs +75 -0
- package/package.json +10 -3
package/README.md
CHANGED
|
@@ -171,6 +171,12 @@ ccjk at --status # Check status
|
|
|
171
171
|
ccjk cloud enable --provider github-gist
|
|
172
172
|
ccjk cloud sync
|
|
173
173
|
|
|
174
|
+
# Remote Control (Web/App)
|
|
175
|
+
ccjk remote setup # One-command setup (interactive)
|
|
176
|
+
ccjk remote setup --non-interactive --server-url <url> --auth-token <token> --binding-code <code>
|
|
177
|
+
ccjk remote doctor # Diagnose remote readiness
|
|
178
|
+
ccjk remote status # Quick runtime status
|
|
179
|
+
|
|
174
180
|
# MCP Services
|
|
175
181
|
ccjk mcp install <service>
|
|
176
182
|
ccjk mcp list
|
package/README.zh-CN.md
CHANGED
|
@@ -98,6 +98,9 @@ npx ccjk cloud enable --provider github-gist
|
|
|
98
98
|
```bash
|
|
99
99
|
npx ccjk # 交互式设置
|
|
100
100
|
npx ccjk i # 完整初始化
|
|
101
|
+
npx ccjk remote setup # 一键远程初始化(推荐)
|
|
102
|
+
npx ccjk remote doctor # 远程体检
|
|
103
|
+
npx ccjk remote status # 远程状态
|
|
101
104
|
npx ccjk u # 更新工作流
|
|
102
105
|
npx ccjk sync # 云端同步
|
|
103
106
|
npx ccjk doctor # 健康检查
|