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/prakhar1114/ai_mime/example_skillnpx skills add prakhar1114/ai_mime --skill example_skillgit clone --depth 1 https://github.com/prakhar1114/ai_mimeWrote 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/prakhar1114/ai_mime/example_skill)<a href="https://agentmods.dev/skills/prakhar1114/ai_mime/example_skill"><img src="https://agentmods.dev/badge/skills/prakhar1114/ai_mime/example_skill.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.00019 | $0.00629 |
| Opus 5 | $0.00010 | $0.00315 |
| Sonnet 5 | $0.00004 | $0.00126 |
| Haiku 4.5 | $0.00002 | $0.00063 |
Grade A, and why
fetch-weather-report 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 5d 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 — 62 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Fetch Weather Report Skill
Inputs
location(required, string): The city and state/country to search weather for (e.g. "San Francisco, CA").units(optional, string): The unit system to use, either "metric" or "imperial". Default is "metric".
Run
Run via the executable bash script:
./run.sh [path/to/inputs.json]
Python runtime contract:
run.shuses the first available interpreter in this order: skill.venv/bin/python, workflow.venv/bin/python, then required$AI_MIME_PYTHON_PATH.- If
requirements.txtexists, include these exact build/repair commands for the developer to set up the virtualenv before packaging or for manual troubleshooting:"$AI_MIME_UV_PATH" venv .venv --python "$AI_MIME_PYTHON_PATH" "$AI_MIME_UV_PATH" pip install -r requirements.txt --python .venv/bin/python - State clearly that the install commands are for skill build or manual repair. The automated runtime does not create or repair
.venvwhen executing the skill.
Outputs
weather_summary(dict):location(string): Resolved location name.temperature(float): Current temperature.condition(string): Weather condition description.
Progress logs
The script outputs progress logs on stderr to track execution progress.
All logs must be written in clear, natural language suitable for an end-user overlay. Do not use structured JSON logs.
- "Fetching weather from API..."
- "It is sunny with 18.5 C"
- "Error: API timeout"
Fallback
If the weather API fails or is unreachable, the execution falls back to performing a Google search for current weather and scraping the temperature using browser_harness. See references/fallback_plan.md for manual or automated fallback instructions.
ask_llm decision points
- Weather Condition Parsing:
If the weather condition string returned by the API is fuzzy, the script calls
ask_llmto categorize the weather condition into standard types ("Sunny", "Cloudy", "Rainy", "Snowy", "Unknown").from llm_resolver import ask_llm decision = ask_llm( prompt=f"Categorize this weather description: '{raw_desc}'", schema={ "type": "object", "properties": { "category": {"type": "string", "enum": ["Sunny", "Cloudy", "Rainy", "Snowy", "Unknown"]} }, "required": ["category"] } )
What ships with it
6 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.
- 5d ago First seen · 62 lines · 19 tokens per session scan A 4e3c690fcf4c
fetch-weather-report is a skill published in the GitHub repository prakhar1114/ai_mime (56 stars, last pushed 15d ago), licensed MIT. It adds 19 tokens to every session and 629 once invoked, about $0.0001 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-08-30.
Other skills, from other repositories
macos-harness
Control a whole Mac from one persistent Python session with screenshots, PID-targeted input, an animated virtual pointer, targeted Apple Accessibility, Apple Events, Browser Harness CDP, and filesystem access. Use for native, Electron, browser, dialog, file, or cross-app tasks without moving the physical cursor or…
host-computer-use
Beta desktop control through the connected A0 CLI host. Use for the user's host/local computer screenshots, screen inspection, menus, native app UI, OS-level clicking, scrolling, typing, or checking computeruseremote status. Use instead of linux-desktop for host/local machine control. Do not use for ordinary browser…
omnigraffle
Generate native OmniGraffle .graffle files programmatically. Use this skill whenever the user asks to create, build, or generate an OmniGraffle diagram, network diagram, architecture diagram, flowchart, or any visual diagram that should be saved as a .graffle file. Also trigger when the user mentions "OmniGraffle"…
nova-grounding
AX-first reading and grounded activation workflow for Nova desktop automation on macOS and Windows. Use for reading UI, clicking controls, OCR fallback, screenshots, and coordinate input without guessing.
computer-use
Windows 桌面自动化执行规则。使用 screeninteractor 观察与操作原生桌面应用。.
screenclaw
用“截图 + 坐标网格”的方式操作任意桌面软件:截带网格的图,让任意多模态大模型读出目标的坐标数字,再调用点击/输入/按键等 API ,模拟人类视觉化操作软件。还能录制一次操作并沉淀成可复用的场景模板,下次直接复用。不依赖目标软件提供 API 或 CLI。 出现以下情况时使用: - 自动化操作 Windows 桌面软件(微信、风控严格的网页如小红书/抖音、手机模拟器、游戏、任意 Windows 程序),尤其是 Playwright/CDP/CLI/应用 API 无法覆盖的软件或元素(如隐藏按钮、游戏画面、验证码等) - 用户说“帮我操作/点/输入 XX”“自动操作…