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/platonai/browser4/weathernpx skills add platonai/Browser4 --skill weathergit clone --depth 1 https://github.com/platonai/Browser4What 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 | $0.00051 | $0.01082 |
| Opus 5 | $0.00026 | $0.00541 |
| Sonnet 5 | $0.00010 | $0.00216 |
| Haiku 4.5 | $0.00005 | $0.00108 |
Grade A, and why
weather 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 3d 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 — 139 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Weather Skill
Description
Use this skill when a user needs current weather conditions or a 7-day forecast for a named location. The bundled script resolves the location with Open-Meteo geocoding, fetches live forecast data without an API key, and returns normalized JSON that is easy to summarize or quote directly.
Dependencies
None
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| location | String | Yes | - | Free-form location such as Seattle, WA, London, or Tokyo |
| units | String | No | metric | Unit system: metric for Celsius and km/h, or imperial for Fahrenheit and mph |
| countryCode | String | No | - | Optional ISO 3166-1 alpha-2 country code to disambiguate places such as US, GB, or JP |
Return Value
The script prints JSON with the following shape:
{
"query": {
"location": "Seattle, WA",
"units": "imperial",
"countryCode": "US"
},
"resolvedLocation": {
"name": "Seattle",
"admin1": "Washington",
"country": "United States",
"countryCode": "US",
"latitude": 47.61,
"longitude": -122.33,
"timezone": "America/Los_Angeles"
},
"current": {
"time": "2026-04-09T09:00",
"summary": "Partly cloudy",
"temperature": 55.4,
"temperatureUnit": "degF",
"feelsLike": 53.8,
"humidity": 68,
"humidityUnit": "%",
"precipitation": 0.0,
"precipitationUnit": "inch",
"windSpeed": 7.1,
"windSpeedUnit": "mph",
"windDirection": 220,
"windDirectionUnit": "deg"
},
"forecast": [
{
"date": "2026-04-09",
"summary": "Partly cloudy",
"temperatureMax": 58.1,
"temperatureMin": 45.3,
"temperatureUnit": "degF",
"precipitationProbabilityMax": 24,
"precipitationProbabilityUnit": "%",
"precipitationSum": 0.02,
"precipitationSumUnit": "inch",
"windSpeedMax": 12.4,
"windSpeedUnit": "mph",
"sunrise": "2026-04-09T06:31",
"sunset": "2026-04-09T19:48"
}
],
"source": {
"provider": "Open-Meteo",
"forecastDays": 7
}
}
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.
- 3d ago First seen · 139 lines · 51 tokens per session scan A b1bd5f52ae5f
weather is a skill published in the GitHub repository platonai/Browser4 (1,114 stars, last pushed 4d ago), licensed Apache-2.0. It adds 51 tokens to every session and 1,082 once invoked, about $0.0003 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
eric-task-master
Install, connect, and use Eric Task Master for durable Playwright browser jobs with persistent or ephemeral Profiles, live fast-auto-human behavior control, task queues, progress health, semantic diagnostics, recovery, artifacts, and composable Task Packs.
codemap
Generate comprehensive hierarchical codemaps for UNFAMILIAR repositories. Expensive operation - only use when explicitly asked for codebase documentation or initial repository mapping.
agent-memory
../../../engineering/agent-memory/skills/agent-memory/SKILL.md.
agile-product-owner
../../../product-team/agile-product-owner/skills/agile-product-owner/SKILL.md.
mochi-remind
Handle due reminders — notify the user with natural language and mark them done.
prisma-upgrade-v7
Complete migration guide from Prisma ORM v6 to v7 covering all breaking changes. Use when upgrading Prisma versions, encountering v7 errors, or migrating existing projects. Triggers on "upgrade to prisma 7", "prisma 7 migration", "prisma-client generator", "driver adapter required".