From 35010bf8f148ab0a2d913f45f9b6c06372e7ce2f Mon Sep 17 00:00:00 2001 From: Jeffery Date: Wed, 29 Jul 2026 12:29:37 +0800 Subject: [PATCH] =?UTF-8?q?chore(plugin=20=E7=89=88=E6=9C=AC):=20=E5=8D=87?= =?UTF-8?q?=E7=89=88=200.0.6=20=E2=80=94=E2=80=94=20=E5=90=8C=E7=89=88?= =?UTF-8?q?=E7=84=A1=E6=B3=95=E8=A7=B8=E7=99=BC=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #19 的 SLEEP_BATCH 修正沿用了 0.0.5(與 master 同版),導致 claude plugin update 回報「already at the latest version (0.0.5)」而不更新,修正永遠裝不上去: master 的 SLEEP_BATCH 已是 12,但實際安裝的仍是 60。 這正是 spec-plugin-version「新版本必須大於 master 現行版本」要防的情況。 當初判斷「同一 PR 不再累加」是對的,但 PR #19 是**新的一批變更**, 基準應取合併後的 master(0.0.5)而非沿用,因此本次為 0.0.6。 規則釐清(同一句話兩種情境,容易混淆): - 同一個未合併 PR 內追加 commit → 不再 bump,沿用該 PR 已定的版號 - 前一個 PR 已合併後的新變更 → 以合併後的 master 為基準 +1 Co-Authored-By: Claude Opus 5 (1M context) --- .claude-plugin/plugin.json | 2 +- .codex-plugin/plugin.json | 2 +- plugin.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 473aeac..bf55c29 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "jsc-generic", - "version": "0.0.5", + "version": "0.0.6", "description": "JSC 跨 AI 助理共用規範 plugin(Claude Code / Codex / Antigravity / OpenCode)。所有 skills 以 SKILL.md 為共通標準,於 Claude Code 以 /jsc-generic: 前綴呼叫。", "skills": "./skills", "author": { diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json index 233800c..faad646 100644 --- a/.codex-plugin/plugin.json +++ b/.codex-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "jsc-generic", - "version": "0.0.5", + "version": "0.0.6", "description": "JSC 跨 AI 助理共用規範 plugin。所有 skills 以 SKILL.md 為共通標準。", "skills": "./skills" } diff --git a/plugin.json b/plugin.json index 6117410..887b10d 100644 --- a/plugin.json +++ b/plugin.json @@ -1,6 +1,6 @@ { "name": "jsc-generic", - "version": "0.0.5", + "version": "0.0.6", "description": "JSC 跨 AI 助理共用規範 plugin。所有 skills 以 SKILL.md 為共通標準;於 Antigravity 以 /jsc-generic: 前綴呼叫。", "skills": "./skills/" }