skills/multi-llm-advisor/SKILL.md
Fetches additional perspectives from OpenAI Codex and Google Gemini for architecture, review, and debugging. Transparently displays all LLM calls.
npx skillsauth add svenja-dev/claude-code-skills multi-llm-advisorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill calls Codex 5.1 Pro and Gemini 3 Pro to provide additional perspectives.
Use the multi-llm-advisor skill to get architecture feedback on [topic]
Use the multi-llm-advisor skill to review this code
Use the multi-llm-advisor skill to debug [issue]
Every invocation displays the following:
+==============================================================+
| MULTI-LLM ADVISOR - [MODE: ARCHITECTURE|REVIEW|DEBUG] |
+==============================================================+
| CONTEXT SENT TO LLMs: |
| - Files: [list] |
| - Question: [prompt] |
| - Tokens: ~[count] |
+--------------------------------------------------------------+
| CODEX 5.1 PRO RESPONSE: |
| [response] |
+--------------------------------------------------------------+
| GEMINI 3 PRO RESPONSE: |
| [response] |
+--------------------------------------------------------------+
| SYNTHESIS (Claude's Recommendation): |
| [combined analysis] |
+==============================================================+
You are a senior software architect. Analyze this architecture decision:
CONTEXT:
{context}
QUESTION:
{question}
CURRENT STACK:
{stack}
Provide:
1. Pros/Cons of the proposed approach
2. Alternative approaches (max 2)
3. Potential risks and mitigations
4. Recommendation with reasoning
Be concise. Max 300 words.
You are a senior code reviewer. Review this code:
CODE:
{code}
LANGUAGE: {language}
PROJECT TYPE: {project_type}
Focus on:
1. Security vulnerabilities (OWASP Top 10)
2. Performance issues
3. Maintainability concerns
4. TypeScript/type safety (if applicable)
Format: Bullet points, max 200 words.
You are a debugging expert. Analyze this issue:
ERROR/SYMPTOM:
{error}
RELEVANT CODE:
{code}
CONTEXT:
{context}
Provide:
1. Root cause analysis (most likely)
2. 2-3 diagnostic steps
3. Suggested fix with code
Be specific and actionable. Max 250 words.
Environment variables (store in .env or system env):
OPENAI_API_KEY - For Codex 5.1 ProGOOGLE_AI_API_KEY - For Gemini 3 Pro (same as gemini-image-gen)~/.claude/skills/multi-llm-advisor/advisor.ts
Triggered via multi-llm-advisor-hook.ts when:
When building the Gemini API integration at fabrikIQ.com, this skill helped decide between:
development
Protects design and theme files from unintended changes. Locks tailwind.config, global CSS, and theme variables. Requires explicit confirmation before modifying UI components. Activate on changes to CSS, theme config, or layout components.
tools
Proactive token budget assessment and task chunking strategy. Use this skill when queries involve multiple large file uploads, requests for comprehensive multi-document analysis, complex multi-step workflows with heavy research (10+ tool calls), phrases like "complete analysis", "full audit", "thorough review", "deep dive", or tasks combining extensive research with large output artifacts. This skill helps assess token consumption risk early and recommend chunking strategies before beginning work.
development
Erzwingt striktes Test-Driven Development mit Red-Green-Refactor Zyklus. Blockiert Code-Generierung ohne vorherige Tests. Dokumentiert 13 ungueltige Rationalisierungen. Aktivieren bei neuen Features, Bug Fixes, Refactoring.
development
Enforces TypeScript best practices when writing code. Automatically enables strict typing for TypeScript projects, prevents `any` usage, and recommends generic constraints. Activate on TS/TSX files, new features, code reviews.