ccjk 14.1.2 → 14.1.3

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.
@@ -997,7 +997,9 @@ function getSetupCompletionGuidance(codeToolType) {
997
997
  step3: i18n.t("configuration:guidanceStep3Myclaude"),
998
998
  step3Command: i18n.t("configuration:guidanceStep3MyclaudeCommand"),
999
999
  step4: i18n.t("configuration:guidanceStep4"),
1000
- step4Command: i18n.t("configuration:guidanceStep4Command")
1000
+ step4Command: i18n.t("configuration:guidanceStep4Command"),
1001
+ step5: i18n.t("configuration:guidanceStep5"),
1002
+ step5Command: i18n.t("configuration:guidanceStep5Command")
1001
1003
  };
1002
1004
  }
1003
1005
  const runtimeLabel = CODE_TOOL_INFO[codeToolType]?.name || "Claude Code";
@@ -1010,7 +1012,9 @@ function getSetupCompletionGuidance(codeToolType) {
1010
1012
  step3: i18n.t("configuration:guidanceStep3"),
1011
1013
  step3Command: i18n.t("configuration:guidanceStep3Command"),
1012
1014
  step4: i18n.t("configuration:guidanceStep4"),
1013
- step4Command: i18n.t("configuration:guidanceStep4Command")
1015
+ step4Command: i18n.t("configuration:guidanceStep4Command"),
1016
+ step5: i18n.t("configuration:guidanceStep5"),
1017
+ step5Command: i18n.t("configuration:guidanceStep5Command")
1014
1018
  };
1015
1019
  }
1016
1020
  async function init(options = {}) {
@@ -1831,6 +1835,9 @@ async function init(options = {}) {
1831
1835
  console.log(
1832
1836
  a.bold.green("\u2551") + padToDisplayWidth(` ${completionGuidance.step4} `, 44) + a.yellow(padToDisplayWidth(completionGuidance.step4Command, 18)) + a.bold.green("\u2551")
1833
1837
  );
1838
+ console.log(
1839
+ a.bold.green("\u2551") + padToDisplayWidth(` ${completionGuidance.step5} `, 44) + a.yellow(padToDisplayWidth(completionGuidance.step5Command, 18)) + a.bold.green("\u2551")
1840
+ );
1834
1841
  console.log(
1835
1842
  `${a.bold.green("\u2551")} ${a.bold.green("\u2551")}`
1836
1843
  );
@@ -1,3 +1,3 @@
1
- const version = "14.1.2";
1
+ const version = "14.1.3";
2
2
 
3
3
  export { version };
@@ -90,16 +90,18 @@
90
90
  "guidanceStep1": "1. Open {{runtime}} and use slash commands:",
91
91
  "guidanceStep1Detail": "/ccjk:feat - Feature Dev /ccjk:git-commit - Smart Commit",
92
92
  "guidanceStep1Detail2": "/ccjk:init-project - Init Project /commands - View installed",
93
- "guidanceStep1MyclaudeDetail": "/ccjk:feat - Feature Dev /ccjk:init-project - Init Project",
94
- "guidanceStep1MyclaudeDetail2": "/commit - Smart Commit /workflow - Plan Feature",
93
+ "guidanceStep1MyclaudeDetail": "/ccjk:feat - Feature Dev /ccjk:git-commit - Smart Commit",
94
+ "guidanceStep1MyclaudeDetail2": "/ccjk:init-project - Init Project /commands - View installed",
95
95
  "guidanceStep2": "2. Example:",
96
96
  "guidanceStep2Example": "/ccjk:feat implement user login feature",
97
97
  "guidanceStep3": "3. View all features:",
98
98
  "guidanceStep3Command": "npx ccjk features",
99
99
  "guidanceStep3Myclaude": "3. View installed commands:",
100
100
  "guidanceStep3MyclaudeCommand": "/commands",
101
- "guidanceStep4": "4. Having issues? Run:",
101
+ "guidanceStep4": "4. Verify setup health:",
102
102
  "guidanceStep4Command": "npx ccjk doctor",
103
+ "guidanceStep5": "5. Keep CCJK updated:",
104
+ "guidanceStep5Command": "npx ccjk update",
103
105
  "migration": {
104
106
  "title": "Configuration Migration",
105
107
  "migrationNeeded": "Configuration migration needed for Claude Code CLI 2.0-2.1 support",
@@ -88,16 +88,18 @@
88
88
  "guidanceStep1": "1. 打开 {{runtime}},使用斜杠命令:",
89
89
  "guidanceStep1Detail": "/ccjk:feat - 功能开发 /ccjk:git-commit - 智能提交",
90
90
  "guidanceStep1Detail2": "/ccjk:init-project - 初始化项目 /commands - 查看已安装",
91
- "guidanceStep1MyclaudeDetail": "/ccjk:feat - 功能开发 /ccjk:init-project - 初始化项目",
92
- "guidanceStep1MyclaudeDetail2": "/commit - 智能提交 /workflow - 规划功能",
91
+ "guidanceStep1MyclaudeDetail": "/ccjk:feat - 功能开发 /ccjk:git-commit - 智能提交",
92
+ "guidanceStep1MyclaudeDetail2": "/ccjk:init-project - 初始化项目 /commands - 查看已安装",
93
93
  "guidanceStep2": "2. 示例:",
94
94
  "guidanceStep2Example": "/ccjk:feat 实现用户登录功能",
95
95
  "guidanceStep3": "3. 查看所有功能:",
96
96
  "guidanceStep3Command": "npx ccjk features",
97
97
  "guidanceStep3Myclaude": "3. 查看已安装命令:",
98
98
  "guidanceStep3MyclaudeCommand": "/commands",
99
- "guidanceStep4": "4. 遇到问题?运行:",
99
+ "guidanceStep4": "4. 运行健康检查:",
100
100
  "guidanceStep4Command": "npx ccjk doctor",
101
+ "guidanceStep5": "5. 更新 CCJK:",
102
+ "guidanceStep5Command": "npx ccjk update",
101
103
  "migration": {
102
104
  "title": "配置迁移",
103
105
  "migrationNeeded": "需要迁移配置以支持 Claude Code CLI 2.0-2.1",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ccjk",
3
3
  "type": "module",
4
- "version": "14.1.2",
4
+ "version": "14.1.3",
5
5
  "packageManager": "pnpm@10.17.1",
6
6
  "description": "Production-ready AI dev environment for Claude Code, Codex, and modern coding workflows with 30-second onboarding, persistent memory, Agent Teams, remote control, and capability discovery.",
7
7
  "author": {