feat(plugins): add manifest parsing, discovery, and registry#3708
Merged
1 commit merged intoJun 28, 2026
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.
Contributor
|
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 |
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 was referenced Jul 18, 2026
pull Bot
pushed a commit
to TheTechOddBug/DeepSeek-TUI
that referenced
this pull request
Jul 18, 2026
Build one deterministic Codewhale-owned bundle inventory with versioned manifests, contained content hashing, separate trust and enablement receipts, and fail-closed atomic state. Activate only namespaced Skills and MCP through their existing engines, initialize the registry consistently across launch modes, preserve legacy executable tools as a separate surface, and document the bounded v0.9.1 lifecycle. Refs Hmbown#4399, Hmbown#3916, Hmbown#3917. Builds on the original plugin manifest, discovery, CLI, and MCP foundation from pkeging in Hmbown#3708, Hmbown#3709, and Hmbown#3710. Co-authored-by: pkeging <237035657+pkeging@users.noreply.github.com> Signed-off-by: Hunter B <hmbown@gmail.com>
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.
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 #3699. No CLI, no MCP merging, no prompt injection — those follow in separate PRs.
Summary
Testing
cargo fmt --all -- --checkcargo clippy --workspace --all-targets --all-featurescargo test --workspace --all-featuresChecklist