Feat/plugin p2 cli#3709
Merged
Merged
Conversation
Add the core plugin system infrastructure: · PluginManifest parsing from plugin.toml · PluginRegistry with enable/disable/list · Built-in + user plugin directory discovery · [when] condition support (OS filter, required binaries) · Built-in example: rust-toolkit plugin · Tests for manifest, discovery, and registry This is Stage 1 of the plugin system per review feedback on PR Hmbown#3699. No CLI, no MCP merging, no prompt injection — those follow in separate PRs.
Add /plugin commands to interact with the plugin registry: · /plugin list — list all discovered plugins with status · /plugin enable <name> — enable a plugin · /plugin disable <name> — disable a plugin · /plugin info <name> — show detailed plugin information This is Stage 2 of the plugin system per review feedback on PR Hmbown#3699. No MCP merging, no prompt injection — those follow in separate PRs.
|
Thanks @pkeging for taking the time to contribute. This repository is observing a maintainer-managed PR intake gate in dry-run mode, so this pull request is staying open. This note helps maintainers prepare the allowlist before any enforcement is considered. Please read |
Fix the staged plugin CLI branch by passing registry guards to callbacks, formatting list/info output while the registry lock is held, and surfacing parsed skill/MCP metadata so the strict warning gate stays clean. Also wire the plugin module tests into the TUI test binary so manifest and registry coverage actually runs. Maintainer follow-up for PR Hmbown#3709 by @pkeging. Signed-off-by: Hunter B <hmbown@gmail.com>
Hmbown
added a commit
to pkeging/CodeWhale
that referenced
this pull request
Jun 28, 2026
Keep the Stage 3-facing enabled plugin helpers available while making the P2 CLI branch pass the strict dead-code gate. Maintainer follow-up for PR Hmbown#3709 by @pkeging. Signed-off-by: Hunter B <hmbown@gmail.com>
5b2e10d to
0b7d2f9
Compare
Keep the Stage 3-facing enabled plugin helpers available while making the P2 CLI branch pass the strict dead-code gate. Maintainer follow-up for PR Hmbown#3709 by @pkeging. Signed-off-by: Hunter B <hmbown@gmail.com>
Exercise both enabled plugin helper methods restored for the staged plugin MCP work, while keeping the P2 branch strict-warning clean. Maintainer follow-up for PR Hmbown#3709 by @pkeging. Signed-off-by: Hunter B <hmbown@gmail.com>
Remove the transient COLLAB.md status log from the plugin CLI PR so the final tree only carries the staged plugin manifest, registry, and command surface. Maintainer follow-up for PR Hmbown#3709 by @pkeging. Signed-off-by: Hunter B <hmbown@gmail.com>
8419c17 to
81392ea
Compare
Keep /plugin as the single registered slash command and dispatch list, enable, disable, and info as owned subcommands. This satisfies command registry metadata contracts and fixes /plugin info <name> lookup. Maintainer follow-up for PR Hmbown#3709 by @pkeging. Signed-off-by: Hunter B <hmbown@gmail.com>
pkeging
added a commit
to pkeging/CodeWhale
that referenced
this pull request
Jun 28, 2026
- PR Hmbown#3708 merged, PR Hmbown#3709 merged by @Hmbown - PR Hmbown#3710 pending review - Team adjusted to two-party (cpt-opcd + mydpsk)
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.
Summary
Testing
cargo fmt --all -- --checkcargo clippy --workspace --all-targets --all-featurescargo test --workspace --all-featuresChecklist