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 daxaur/openpaw --skill c-weathergit clone --depth 1 https://github.com/daxaur/openpawWrote 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/daxaur/openpaw/c-weather)<a href="https://agentmods.dev/skills/daxaur/openpaw/c-weather"><img src="https://agentmods.dev/badge/skills/daxaur/openpaw/c-weather.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.00020 | $0.00427 |
| Opus 5 | $0.00010 | $0.00214 |
| Sonnet 5 | $0.00004 | $0.00085 |
| Haiku 4.5 | $0.00002 | $0.00043 |
Grade A, and why
c-weather 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 8d 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.
Get weather information using `curl` and wttr.in. No API key required, no tool to install. What it actually says
Weather — Forecasts & Conditions
Get weather information using curl and wttr.in. No API key required, no tool to install.
Commands
# Current weather (auto-detects location)
curl -s "wttr.in?format=3"
# Detailed current conditions
curl -s "wttr.in?format=%l:+%c+%t+%h+%w+%p"
# Full forecast (today + 2 days)
curl -s "wttr.in"
# Specific city
curl -s "wttr.in/London"
curl -s "wttr.in/New+York"
curl -s "wttr.in/Tokyo"
# Compact one-line
curl -s "wttr.in/Paris?format=%l:+%c+%t+(feels+like+%f)+%h+humidity+%w+wind"
# Today only
curl -s "wttr.in/Berlin?1"
# JSON output for parsing
curl -s "wttr.in/London?format=j1"
# Moon phase
curl -s "wttr.in/Moon"
Format Codes
| Code | Meaning |
|---|---|
%c |
Weather icon |
%t |
Temperature |
%f |
Feels like |
%h |
Humidity |
%w |
Wind |
%p |
Precipitation |
%l |
Location |
%S |
Sunrise |
%s |
Sunset |
Guidelines
- Default to the user's location (check memory/SOUL.md for city)
- Use compact format (
format=3) for quick checks - Use full output for detailed forecasts
- If the user asks about weather, always provide temperature and conditions
- Mention "feels like" temperature when it differs significantly
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.
- 8d ago First seen · 62 lines · 20 tokens per session scan A 6e7d60bd7109
c-weather is a skill published in the GitHub repository daxaur/openpaw (167 stars, last pushed 3mo ago), licensed MIT. It adds 20 tokens to every session and 427 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-30.
Other skills, from other repositories
plan-growth-loop
Generate prioritized growth loops with implementation roadmaps based on codebase analysis. Use when the user says "plan", "growth loops", "prioritize", "what should I build", or "roadmap".
validate-loop
Check if growth loop requirements are actually implemented in the codebase. Use when the user says "validate", "check status", "skene status", "is it done", or "verify implementation".
forward-derivation
Derive BDD scenarios and TDD test skeletons from approved SDD specifications. ATDD acceptance test tables are optional output for specialized needs. Use when: spec is approved, starting BDD/TDD implementation, generating test structures. Keywords: forward derivation, spec to test, BDD generation, TDD skeleton, test…
reverse-engineer
A guide for examining existing software and turning what it does into specification documents. Specification-driven development means writing an agreed description of a system before changing it.
atdd-assistant
A guide to Acceptance Test-Driven Development, or ATDD, a process where a team agrees on user-story requirements and acceptance tests before coding. Acceptance tests check whether a feature meets the agreed business requirements.
checkin-assistant
A checklist for the steps before making a Git commit. It treats a commit as one complete, reversible unit of work that should leave the codebase working.