Agent skill · AI & Agents

multi-model-meta-analysis

Synthesize outputs from multiple AI models into a comprehensive, verified assessment. Use when: (1) User pastes feedback/analysis from multiple LLMs (Claude, GPT, Gemini, etc.) about code or a project, (2) User wants to consolidate model outputs into a single reliable document, (3) User needs conflicting model claims resolved against actual source code. This skill verifies model claims against the codebase, resolves contradictions with evidence, and produces a more reliable assessment than any single model.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill multi-model-meta-analysis --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/analysis/multi-model-meta-analysis/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Multi-Model Synthesis Combine outputs from multiple AI models into a verified, comprehensive assessment by cross-referencing claims against the actual codebase. ## Core Principle Models hallucinate and contradict each other. The source code is the source of truth. Every significant claim must be verified before inclusion in the final assessment. ## Process ### 1. Extract Claims Parse each model's output and extract discrete claims: - Factual assertions about the code ("function X does Y", "there's no error handling in Z") - Recommendations ("should add validation", "refactor this pattern") - Identified issues ("bug in line N", "security vulnerability") Tag each claim with its source model. ### 2. Deduplicate Group semantically equivalent claims: - "Lacks input validation" = "No sanitization" = "User input not checked" - "Should use async/await" = "Convert to promises" = "Make asynchronous" Create canonical phrasing. Track which models mentioned each. ### 3. Verify Against Source For each factual claim or identified issue: ``` CLAIM: "The auth middleware doesn't check token expiry" VERIFY: Read the auth middleware file FINDING: [Confirmed | Refuted | Partially true | Cannot verify

What's inside
Steps it walks through
  1. Core Principle
  2. Process
  3. 1. Extract Claims
  4. 2. Deduplicate
  5. 3. Verify Against Source
  6. 4. Resolve Conflicts
  7. 5. Synthesize Assessment
  8. Output Format
  9. Verification Guidelines
  10. Anti-Patterns
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the multi-model-meta-analysis skill do?

Synthesize outputs from multiple AI models into a comprehensive, verified assessment. Use when: (1) User pastes feedback/analysis from multiple LLMs (Claude, GPT, Gemini, etc.) about code or a project, (2) User wants to consolidate model outputs into a single reliable document, (3) User needs conflicting model claims resolved against actual source code. This skill verifies model claims against the codebase, resolves contradictions with evidence, and produces a more reliable assessment than any single model.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill multi-model-meta-analysis --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going