From agentic-systems
Routes requests through two external advisor CLIs (Codex and Gemini) for parallel architecture and UX perspectives, then synthesizes outputs into one answer.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentic-systems:tri-model-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Tri-model review routes through two external advisor CLIs, then synthesizes both outputs into one answer.
Tri-model review routes through two external advisor CLIs, then synthesizes both outputs into one answer.
Use this when you want parallel external perspectives.
apx ask-* wrappers.1. Decompose the request into two advisor prompts:
- Analysis/architecture/backend prompt
- UX/design/docs/alternatives prompt
2. Run both advisors via the canonical wrappers:
- apx ask-codex "<prompt>"
- apx ask-gemini "<prompt>"
3. Synthesize both outputs into one final response
When invoked, follow this workflow:
Split the user request into:
Run both advisors via the Bash tool:
apx ask-codex "<architecture prompt>"
apx ask-gemini "<UX prompt>"
Return one unified answer with:
If one provider is unavailable:
If both unavailable:
npx claudepluginhub yeaight7/agent-powerups --plugin agentic-systemsGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Resolves in-progress git merge or rebase conflicts by analyzing history, understanding intent, and preserving both changes where possible. Runs automated checks after resolution.