Borrowing it
Nothing to install: this file belongs to pyramidheadshark/claude-scaffold. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/pyramidheadshark/claude-scaffold/main/.claude/skills/multimodal-router/SKILL.mdgit clone --depth 1 https://github.com/pyramidheadshark/claude-scaffoldWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/pyramidheadshark/claude-scaffold/multimodal-router)<a href="https://agentmods.dev/skills/pyramidheadshark/claude-scaffold/multimodal-router"><img src="https://agentmods.dev/badge/skills/pyramidheadshark/claude-scaffold/multimodal-router/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/pyramidheadshark/claude-scaffold/multimodal-router"><img src="https://agentmods.dev/badge/skills/pyramidheadshark/claude-scaffold/multimodal-router.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.00991 |
| Opus 5 | $0.00000 | $0.00495 |
| Sonnet 5 | $0.00000 | $0.00198 |
| Haiku 4.5 | $0.00000 | $0.00099 |
Grade A, and why
multimodal-router scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 135 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Multimodal Router
When to Load This Skill
Load when working with: PDF files, Word documents, Excel spreadsheets, images, audio, video files, or any document exceeding 400k tokens that cannot fit in Claude's standard context.
Model
- Model:
google/gemini-3-flash-preview - Provider: OpenRouter API
- Context window: 1M tokens
- Capabilities: text, images, audio, video, PDF — all natively
- Thinking levels: minimal / low / medium / high (configurable per task)
Gemini 3 Flash Preview is a thinking model with near-Pro reasoning at Flash latency.
Use thinking_level: "low" for document extraction, "medium" or "high" for complex analysis.
When to Use This Skill (Decision Rules)
Use Gemini 3 Flash via this skill when:
- Input is a PDF, image, audio file, or video
- Input document exceeds ~400k tokens (rough estimate: 300+ pages of text)
- Task requires visual understanding (screenshots, diagrams, scanned docs)
- Client sent
.docx,.pdf,.xlsx,.mp4,.wavfor initial project analysis
Do NOT use for: writing code, architecture decisions, tests. Those stay with Claude Code.
OpenRouter Client Pattern
import httpx
from src.project_name.core.config import settings
OPENROUTER_BASE_URL = "https://openrouter.ai/api/v1"
MULTIMODAL_MODEL = "google/gemini-3-flash-preview"
async def call_gemini_flash(
prompt: str,
base64_content: str | None = None,
media_type: str | None = None,
thinking_level: str = "low",
) -> str:
messages: list[dict] = []
if base64_content and media_type:
messages.append({
"role": "user",
"content": [
{
"type": "image_url" if media_type.startswith("image") else "file",
"image_url": {"url": f"data:{media_type};base64,{base64_content}"},
},
{"type": "text", "text": prompt},
],
})
else:
messages.append({"role": "user", "content": prompt})
payload = {
"model": MULTIMODAL_MODEL,
"messages": messages,
"reasoning": {"effort": thinking_level},
"max_tokens": 4096,
}
async with httpx.AsyncClient(timeout=120.0) as client:
response = await client.post(
f"{OPENROUTER_BASE_URL}/chat/completions",
headers={
"Authorization": f"Bearer {settings.openrouter_api_key}",
"HTTP-Referer": "https://github.com/your-org/project",
"X-Title": "ML Engineering Platform",
},
json=payload,
)
response.raise_for_status()
data = response.json()
return data["choices"][0]["message"]["content"]
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 135 lines · 0 tokens per session scan A b90c9b704189
multimodal-router is a skill published in the GitHub repository pyramidheadshark/claude-scaffold (4 stars, last pushed 4mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 991 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
liteparse
Use this skill when the user asks to parse, perform multi-format document conversion or spatially extract text from an unstructured file (PDF, DOCX, PPTX, XLSX, images, etc.) locally without cloud dependencies.
treatment-plans
Generate concise (3-4 page), focused medical treatment plans in LaTeX/PDF format for all clinical specialties. Supports general medical treatment, rehabilitation therapy, mental health care, chronic disease management, perioperative care, and pain management. Includes SMART goal frameworks, evidence-based…
markitdown
Convert files and office documents to Markdown. Supports PDF, DOCX, PPTX, XLSX, images (with OCR), audio (with transcription), HTML, CSV, JSON, XML, ZIP, YouTube URLs, EPubs and more.
obsidian-history-check
A read-only checker for viewing document history and comparing earlier and current versions in Obsidian, a note-taking application. If Obsidian's command-line tool is unavailable, it can fall back to Git history or show how to recover a version through Obsidian.
obsidian-link-audit
A read-only checker for links in Obsidian notes, including incoming links, outgoing links, unresolved links, broken links, and documents with no connections. If the Obsidian command-line tool is unavailable, it uses text search as a fallback.
anything-to-md
Universal document to Markdown converter. Convert any file (PDF, Word, Excel, PPT, images, audio, video, YouTube URLs) to clean LLM-ready Markdown. Use when: User wants to convert documents to Markdown User needs to process entire directories of files User has YouTube videos or audio files to transcribe User wants to…