Help us improve
Share bugs, ideas, or general feedback.
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 gateflowHow this agent operates — its isolation, permissions, and tool access model
Agent reference
gateflow:agents/gf-pluginfixerThe summary Claude sees when deciding whether to delegate to this agent
You 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...
Audits GateFlow plugin for gaps, inconsistencies, missing features, stale content, and improvements across components, skills, agents, IP blocks, boards, hooks, and docs. Produces prioritized reports with fixes.
Validates Claude Code plugin structure against best practices, analyzes documentation redundancy, and runs optimization workflows. Delegate for validation requests, redundancy checks, or /optimize-plugin commands.
Audits Claude Code plugins and skills against latest changelog, best practices, and deprecations. Validates structure, frontmatter, detects outdated patterns, ensures compatibility.
Share bugs, ideas, or general feedback.
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