From gateflow
Sub-agent that receives plugin audit findings and automatically fixes gaps, stubs, inconsistencies, and missing content across the plugin.
How 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...
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
npx claudepluginhub codejunkie99/gateflow-plugin --plugin gateflowPlugin quality auditor that scans a GateFlow plugin for inconsistencies, stale content, missing features, and improvement opportunities, producing a prioritized actionable report.
Validates plugin structure, checks for documentation redundancy, and executes multi-phase optimization workflows.
Validates plugins and skills against the latest Claude Code changelog, best practices, and deprecation warnings. Audits structure, frontmatter, and feature adoption.