From meta-skills
Orchestrate a multi-LLM review of one or more fgcz-skills plugins. Spawns Claude Agent persona + Codex GPT-5.5 + Cursor Composer 2.5 in parallel against the same plugin prompt, then aggregates findings with per-finding agreement strength (4/4, 3/4, 2/4, 1/4). Falls back to solo mode (Claude personas only) with a warning when external CLIs are unavailable. Use when adding new skills, refreshing a plugin after upstream changes, or verifying that mechanically-detected (skill-audit) issues are fixed AND no semantic issues remain.
How this skill is triggered — by the user, by Claude, or both
Slash command
/meta-skills:multi-llm-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill turns the multi-LLM review workflow demonstrated on 2026-05-22 into a reproducible procedure. Use it as the **semantic counterpart** to `skill-audit` (which catches mechanical issues only).
This skill turns the multi-LLM review workflow demonstrated on 2026-05-22 into a reproducible procedure. Use it as the semantic counterpart to skill-audit (which catches mechanical issues only).
The review runs in 4 phases. Phase A (FGCZ context build) has been absorbed into the fgcz-context skill, so it's a load-step rather than a phase.
Phase 0: load fgcz-context skill (already a skill, single load)
Phase C: per-plugin reviews in parallel (3 reviewers × N plugins)
Phase D: aggregate findings with agreement strength
bash meta-skills/skills/multi-llm-review/scripts/detect_reviewers.sh
Outputs one reviewer name per line. Stderr carries diagnostic notes for partial availability.
Three usable reviewers (claude + codex + cursor) → full mode.
Fewer than three → solo mode (see references/solo_mode.md). The orchestrator should print the warning from references/solo_mode.md and confirm with the user before proceeding.
The prompt template is assets/per_plugin_review_prompt.md. Substitute:
{{FGCZ_CONTEXT_PATH}} — typically meta-skills/skills/fgcz-context/SKILL.md{{PLUGIN_NAME}} — e.g. bfabric-lims{{PLUGIN_PATH}} — absolute path to pluginFor each available reviewer, launch in background. Save output to reviews/<YYYY-MM-DD>_<plugin>/<reviewer>.md.
Codex (GPT-5.5):
cat <prompt> | codex exec -m gpt-5.5 --dangerously-bypass-approvals-and-sandbox - \
> reviews/<date>_<plugin>/codex.md 2> reviews/<date>_<plugin>/codex.err &
Cursor (Composer 2.5):
cat <prompt> | agent -p --model composer-2.5 --force --output-format text \
> reviews/<date>_<plugin>/cursor.md 2> reviews/<date>_<plugin>/cursor.err &
Claude (Agent persona via Claude Code's Agent tool):
Spawn a sub-agent that reads the prompt and writes the review to the same reviews/<date>_<plugin>/agent-persona.md path. Use subagent_type: general-purpose.
In solo mode, instead launch 3 Agent personas with the prompts in references/solo_mode.md (Security/Infrastructure, Usability/Documentation, Cross-skill Consistency).
All reviewers run independently. Aggregate after the last one finishes (use wait for background bash jobs, or rely on Claude Code's task-completion notifications for Agent sub-agents).
Expect ~3-10 minutes per plugin for the slowest reviewer to finish.
Read all reviews/<date>_<plugin>/<reviewer>.md files. Produce an aggregate following assets/aggregation_template.md:
Save the aggregate to reviews/<date>_<plugin>/_aggregate.md.
Append a one-line entry to reviews/index.md with:
This is consumed by skill-review-history (planned skill) for trend analysis.
| Scope | Invocation | Cost (estimate) |
|---|---|---|
| Single skill | render prompt for the parent plugin but instruct reviewers to focus on one skill | ~2 min, ~$0.10 |
| Single plugin | one render per plugin | ~5-10 min, ~$0.30 |
| Full marketplace | N plugins × M reviewers in parallel (limit to ~12 parallel jobs) | ~30 min, ~$2 |
If detect_reviewers returns only claude:
references/solo_mode.md.meta-skills/fgcz-context — institutional preamble loaded by all reviewersmeta-skills/skill-audit — deterministic linter (run first, cheap)assets/per_plugin_review_prompt.md — the Phase C prompt templateassets/aggregation_template.md — the Phase D output structurereferences/tool_detection.md — CLI install / auth / probe detailsreferences/solo_mode.md — single-LLM fallback design and limitationsreferences/output_format.md — file layout, severity policy, finding classificationnpx claudepluginhub cpanse/skills --plugin meta-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.