chore: revert PR #180 (pin plugin to CLI v3.0) — redo after CLI GA#181
Merged
Conversation
Reverts commit 7d368f9. PR #180 declared a hard `requires.cli: '>=3.0.0-alpha.1'` and bumped the plugin version 2.4.13 -> 3.0.0-alpha.1 ahead of the CLI's actual GA. Reasoning at the time: signal that downgrading the CLI to the v2.x Bun binary is unsupported under the new plugin. In practice this lands too early: - The v3 CLI is still pre-GA (v3.0.0-alpha.5 at time of this commit). Anyone on a clean install picks up the plugin via vault-sync and then trips the version check until they manually update the CLI. - The plugin itself still works against both Bun v2.3.3 and the Rust alpha series — there's no skill that actually requires v3-only behaviour today. - Coupling plugin version 3.0.0-alpha.1 to the CLI alpha confuses the versioning story: plugin alpha + CLI alpha both at .alpha.1, drifting separately as each repo bumps. This commit restores the pre-PR-#180 plugin.json shape (no `requires.cli` field, no `version: 3.0.0-alpha.1`) and bumps the plugin to v2.4.14 to record the revert. The CLI-v3 pin will be re-applied — likely as `requires.cli: '>=3.0.0'` — once the CLI's v3.0.0 GA tag ships.
kengio
added a commit
that referenced
this pull request
May 20, 2026
PR #181 reverted PR #180 and added a PLUGIN-CHANGELOG v2.4.14 entry, but the plugin.json bump from 2.4.13 → 2.4.14 was missed during the amend pass (Edit tool blocked on a Read-required precondition that got dismissed in the noise). Result: PLUGIN-CHANGELOG advertises v2.4.14 while plugin.json still reports v2.4.13. This was caught when running /update against a vault on plugin v2.4.13 — the version-check step (read upstream plugin.json + compare) returned 'Already up to date' instead of triggering the v2.4.14 sync. One-line bump to restore consistency. No code or config change beyond the version field.
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Reverts #180. Will redo after CLI v3.0.0 GA.
Why now
PR #180 declared a hard `requires.cli: '>=3.0.0-alpha.1'` and bumped the plugin version 2.4.13 → 3.0.0-alpha.1 ahead of the CLI's actual GA. Three issues surfaced in practice:
Plan
Diff
Test plan