Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add aksika/abtars --skill model-scoutgit clone --depth 1 https://github.com/aksika/abtarsWrote 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/aksika/abtars/model-scout)<a href="https://agentmods.dev/skills/aksika/abtars/model-scout"><img src="https://agentmods.dev/badge/skills/aksika/abtars/model-scout.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 2 findings, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Rogue Agent · line 26 Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
- medium Data Exfiltration · line 114 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00018 | $0.01011 |
| Opus 5 | $0.00009 | $0.00505 |
| Sonnet 5 | $0.00004 | $0.00202 |
| Haiku 4.5 | $0.00002 | $0.00101 |
Grade A, and why
model-scout scanned grade A with 1 finding 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 7d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s https://openrouter.ai/api/v1/chat/completions \ How it starts
The opening of the file, as written. The whole thing — 124 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Model Scout
Scout OpenRouter models — free tier, leaderboard top N, single model inspection.
Scripts
scout-openrouter.py— free model scan, single model inspection, leaderboard fetchscout-leaderboard.py— dedicated leaderboard fetcher (top N by popularity)scout-ollama.py— Ollama cloud modelsscout-add-model.py— manual model addition
Usage
1. Scan free models (original behavior)
# List free models vs catalog
python3 {baseDir}/scout-openrouter.py
# List + liveness test + write status to models.json
python3 {baseDir}/scout-openrouter.py --test
2. Fetch leaderboard top N and add to models.json
# Print top 20 (no changes)
python3 {baseDir}/scout-leaderboard.py 20
# Add/update top 20 in models.json (no liveness test)
python3 {baseDir}/scout-leaderboard.py 20 --update
# Test each model + update
python3 {baseDir}/scout-leaderboard.py 20 --test
Also available via scout-openrouter.py:
python3 {baseDir}/scout-openrouter.py --leaderboard 20
3. Inspect + test a single model
python3 {baseDir}/scout-openrouter.py --model tencent/hy3:free
This fetches model metadata from /api/v1/models/{id} and provider endpoints from /api/v1/models/{id}/endpoints, tests liveness, and updates models.json.
4. Ollama cloud models
python3 {baseDir}/scout-ollama.py
What the scripts store
Each model entry in models.json gets:
contextWindow,maxOutput— from APIcontext_lengthandtop_provider.max_completion_tokensrank— 1 (≥500K ctx), 2 (≥200K), 3 (smaller)cost— per token, raw OpenRouter pricing (frompricing.prompt/pricing.completion). Accurate for calculations; picker display converts to $/1M via thedisplayfield derived in transport-config.ts.transports—["openrouter"]status—"alive"or"dead"(from liveness test)providers— dict of provider_name →{status, uptime_30m, latency_p50, throughput_p50, quant, max_completion_tokens}validatedAt— ISO date
What ships with it
4 files 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.
- 7d ago First seen · 124 lines · 18 tokens per session scan A 6361e19d7dc1
model-scout is a skill published in the GitHub repository aksika/abtars (9 stars, last pushed 3d ago), licensed Apache-2.0. It adds 18 tokens to every session and 1,011 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
world-model-diagnostic
Twenty-minute diagnostic mapping a team to a world-model paradigm (vector DB, structured ontology, signal-fidelity). Use when you say "run the world model diagnostic", "audit our world model", "which world model architecture fits us", or "audit where we automate judgment". Use for AI readiness assessments and…
benchmark-models
Cross-model benchmark. Runs one prompt or skill through Claude, GPT (Codex CLI), and Gemini side by side and compares latency, tokens, cost, tool calls, and optionally output quality via an Anthropic-API judge. Answers "which model is actually best for this skill?" with data. Use when you say "benchmark models"…
semantic-model-disambiguation
Analyze Power BI semantic models for column-level overlaps that confuse Copilot and Fabric data agents. Detect ambiguity, review with domain expert, apply fixes via MCP.
rag-architecture
Build retrieval-augmented generation systems that ground LLMs in your data.
multi-agent-architect
Design and optimize production-grade multi-agent systems with LangGraph, LangChain, and DeepAgents for complex AI workflows.
biome-kusto-query
Execute read-only KQL queries against Kusto / Azure Data Explorer clusters via the Kusto MCP server. Read-only -- does not create, alter, or drop objects.