fix(qa-sec): remove orphan agent entries from plugin.json#239
Open
etannous wants to merge 1 commit intoVoltAgent:mainfrom
Open
fix(qa-sec): remove orphan agent entries from plugin.json#239etannous wants to merge 1 commit intoVoltAgent:mainfrom
etannous wants to merge 1 commit intoVoltAgent:mainfrom
Conversation
plugin.json v1.1.0 references two agent files that don't exist in the repository: - cost-accounting-performance-reviewer.md - performance-roi-translator.md This causes the plugin to fail loading in Claude Code with: Path not found: <cache>/voltagent-qa-sec/1.1.0/cost-accounting-performance-reviewer.md (agents) Path not found: <cache>/voltagent-qa-sec/1.1.0/performance-roi-translator.md (agents) Drop the orphan entries to restore plugin loading. The two referenced agents can be re-added later once the corresponding .md files are committed.
9glbi94w5u43
pushed a commit
to 9glbi94w5u43/awesome-claude-code-subagents
that referenced
this pull request
May 4, 2026
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
categories/04-quality-security/.claude-plugin/plugin.json(v1.1.0) lists two agent files that don't exist in the repository:./cost-accounting-performance-reviewer.md./performance-roi-translator.mdAs a result, installing
voltagent-qa-sec@voltagent-subagentsvia the Claude Code plugin marketplace fails with:This blocks the entire plugin from loading — none of the 16 valid agents (security-auditor, penetration-tester, code-reviewer, qa-expert, etc.) become available.
Fix
Remove the two orphan entries from the
agentsarray. The 16 remaining agents all exist on disk and load correctly.If
cost-accounting-performance-reviewerandperformance-roi-translatorare intended to ship in v1.1.0, the corresponding.mdfiles need to be added in a follow-up commit and the entries restored.Verification
Reproduced locally on Claude Code v2.x (Windows). After applying this fix to the local cache (
~/.claude/plugins/cache/voltagent-subagents/voltagent-qa-sec/1.1.0/.claude-plugin/plugin.json), the plugin loads cleanly:Test plan
claude plugin listshowsvoltagent-qa-secas✔ enabled(was✘ failed to load)