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 agentmods add skills/docxology/template/monidnpx skills add docxology/template --skill monidgit clone --depth 1 https://github.com/docxology/templateWrote 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/docxology/template/monid)<a href="https://agentmods.dev/skills/docxology/template/monid"><img src="https://agentmods.dev/badge/skills/docxology/template/monid.svg" alt="Measured on agentmods" 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.00124 | $0.00521 |
| Opus 5 | $0.00062 | $0.00260 |
| Sonnet 5 | $0.00025 | $0.00104 |
| Haiku 4.5 | $0.00012 | $0.00052 |
Grade A, and why
infrastructure-search-monid 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 2d 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.
What it actually says
Monid Submodule
Python wrapper for https://monid.ai/docs/api/overview.md. This file is the
repository's canonical Monid skill. Consult https://monid.ai/SKILL.md when the
upstream CLI workflow itself must be refreshed; do not mix that separate source
into the context-engineering vendor tree under .agents/skills/.
Discover → inspect → run
from infrastructure.search.monid import MonidClient
client = MonidClient.from_env()
for hit in client.discover("web search", limit=5).results:
per_1k = hit.price.estimated_per_1k_calls_usd() if hit.price else None
print(hit.score, hit.provider, hit.endpoint, per_1k)
schema = client.inspect("exa", "/search")
record = client.run(
"exa",
"/search",
{"query": "retrieval augmented generation", "numResults": 5},
wait=True,
)
print(record.status, record.cost)
Search API USD / 1,000 (direct providers)
from infrastructure.search.monid import format_pricing_table, sorted_by_cost
print(format_pricing_table())
for row in sorted_by_cost():
print(row.provider, row.usd_per_1k_searches)
Full notes: PRICING.md.
CLI
export MONID_API_KEY=monid_live_...
uv run python -m infrastructure.search.monid discover "linkedin posts"
uv run python -m infrastructure.search.monid pricing-table
uv run python -m infrastructure.search.monid balance
Precedence (do not spend Monid balance unnecessarily)
- User's explicit instruction for the task.
- User's existing MCP server, API key, or CLI for that service.
- Monid — for gaps only.
What ships with it
12 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.
- 2d ago First seen · 59 lines · 124 tokens per session scan A ebe8de390f5c
infrastructure-search-monid is a skill published in the GitHub repository docxology/template (19 stars, last pushed today), licensed Apache-2.0. It adds 124 tokens to every session and 521 once invoked, about $0.0006 per session on Opus 5. 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-09-03.
Other skills, from other repositories
bioinformatics-scientist
Use when a task needs the judgment of a Bioinformatics Scientist — designing a differential-expression or GWAS analysis with correct multiple-testing correction, calling and triaging variants from NGS data using genotype-likelihood confidence rather than raw allele counts, interpreting a BLAST/DIAMOND homology search…
shipjaw-prompt
Turns a rough, messy, or vague product idea into a dense build-ready product prompt and persists it at documentation/product/source-prompt.md for shipjaw-build. Use when the user wants to express/clarify/polish a product before scaffolding, mentions idée vague, brainstorm app, help me write the prompt, notes produit…
spark-training-gotchas
Preflight and diagnose the ten known failure modes for ML training on NVIDIA DGX Spark. Use when a training run on DGX Spark fails to start, OOMs below the 128GB limit, slows down mid-run, or before any multi-hour training job on GB10.
9router
Entry point for 9Router — local/remote AI gateway with OpenAI-compatible REST for chat, image, TTS, embeddings, web search, web fetch. Use when the user mentions 9Router, NINEROUTERURL, or wants AI without writing provider boilerplate. This skill covers setup + indexes capability skills; fetch the relevant capability…
best-practices
Transforms vague prompts into optimized Claude Code prompts. Adds verification, specific context, constraints, and proper phasing. Invoke with /best-practices.
mongodb-search-and-ai
Guides MongoDB users through implementing and optimizing Atlas Search (full-text), Vector Search (semantic), and Hybrid Search solutions. Use this skill when users need to build search functionality for text-based queries (autocomplete, fuzzy matching, faceted search), semantic similarity (embeddings, RAG…