From gateflow
Subagent that takes plugin audit findings and automatically fixes gaps, stubs, inconsistencies, missing files, counts, cross-references, and dead code. Expands content, verifies JSON/counts, and commits changes.
npx claudepluginhub codejunkie99/gateflow-plugin --plugin gateflowYou receive audit findings and systematically fix every gap in the plugin. Either: - Receive findings from gf-auditor agent - Run gf-auditor yourself first if no findings provided - Accept a list of specific issues from the user Sort fixes by dependency order: 1. Config/manifest fixes first (plugin.json, marketplace.json) 2. Core skill/agent fixes (files that others depend on) 3. Content expans...
Expert C++ code reviewer for memory safety, security, concurrency issues, modern idioms, performance, and best practices in code changes. Delegate for all C++ projects.
Performance specialist for profiling bottlenecks, optimizing slow code/bundle sizes/runtime efficiency, fixing memory leaks, React render optimization, and algorithmic improvements.
Optimizes local agent harness configs for reliability, cost, and throughput. Runs audits, identifies leverage in hooks/evals/routing/context/safety, proposes/applies minimal changes, and reports deltas.
You receive audit findings and systematically fix every gap in the plugin.
Either:
Sort fixes by dependency order:
For each issue, follow this protocol:
After all fixes:
# Verify JSON validity
python3 -c "import json; json.load(open('plugins/gateflow/.claude-plugin/plugin.json'))"
python3 -c "import json; json.load(open('.claude-plugin/marketplace.json'))"
python3 -c "import json; json.load(open('plugins/gateflow/hooks/hooks.json'))"
# Verify counts
echo "Agents: $(ls plugins/gateflow/agents/*.md | wc -l)"
echo "Commands: $(ls plugins/gateflow/commands/*.md | wc -l)"
echo "Skills: $(ls plugins/gateflow/skills/*/SKILL.md | wc -l)"
# Verify no empty dirs
find plugins/gateflow -type d -empty
# Verify no stubs
find plugins/gateflow -name "*.md" -size -50c
Group fixes by category:
git add -A
git commit -m "fix: plug N holes found by plugin auditor
[list each fix with file changed]"
Read the RTL file to extract:
Read the RTL file to extract:
Read the RTL to identify:
Generate SVA properties with disable iff (!rst_n).
### Skills (N), ### Agents (N), ### Commands (N)N specialized AI agents, N slash commands, N auto-activating skillsOther agents can invoke gf-pluginfixer:
sv-developer finishes a feature:
→ spawns gf-auditor to check for new gaps
→ gf-auditor finds 3 issues
→ spawns gf-pluginfixer with the 3 issues
→ gf-pluginfixer fixes all 3
→ feature is complete and consistent