codex-cli-best-practice: Skill for Claude Code

.agents/skills/weather-svg-creator/SKILL.md

weather-svg-creator is a skill for Claude Code from shanraisshan/codex-cli-best-practice. It costs 31 tokens per session (666 once invoked), scanned A, original, MIT.

A small tool that creates an SVG weather card—an image made from text and shapes—with a city, temperature, date, and weather-data credit.

In plain words
What is it for?
Use it to create a 400-by-200 weather card and save it as weather.svg, with a matching output.md file in the specified folder.
Why use it?
It turns supplied weather details into a ready-to-use visual file instead of requiring you to write the SVG by hand.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: installed under .agents/ (shared by several agents).

This is shanraisshan/codex-cli-best-practice's own configuration. It tells Claude Code how to work on codex-cli-best-practice itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything codex-cli-best-practice configures →

Reuse

Borrowing it

Nothing to install: this file belongs to shanraisshan/codex-cli-best-practice. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/shanraisshan/codex-cli-best-practice/main/.agents/skills/weather-svg-creator/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/shanraisshan/codex-cli-best-practice

Made for: Claude Code.

Wrote 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.

agentmods badge for weather-svg-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/shanraisshan/codex-cli-best-practice/weather-svg-creator/github.svg)](https://agentmods.dev/skills/shanraisshan/codex-cli-best-practice/weather-svg-creator)
Your own site
<a href="https://agentmods.dev/skills/shanraisshan/codex-cli-best-practice/weather-svg-creator"><img src="https://agentmods.dev/badge/skills/shanraisshan/codex-cli-best-practice/weather-svg-creator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for weather-svg-creator

Your own site · 80×15
<a href="https://agentmods.dev/skills/shanraisshan/codex-cli-best-practice/weather-svg-creator"><img src="https://agentmods.dev/badge/skills/shanraisshan/codex-cli-best-practice/weather-svg-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 666 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00031 $0.00666
Opus 5 $0.00015 $0.00333
Sonnet 5 $0.00006 $0.00133
Haiku 4.5 $0.00003 $0.00067

Measured 11d ago against content hash 37f5b461c555, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

weather-svg-creator 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 11d 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.

.agents/skills/weather-svg-creator/SKILL.md · 77 lines

How it starts

The opening of the file, as written. The whole thing — 77 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Weather SVG Creator Skill

This skill creates an SVG weather card from provided temperature data.

Task

Create an SVG weather card displaying the temperature for a given city and write it to the output files.

Instructions

You will receive the temperature value, unit (Celsius or Fahrenheit), and city name from the calling context.

1. Create SVG Weather Card

Generate a clean SVG weather card with the following structure:

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200" width="400" height="200">
  <rect width="400" height="200" rx="12" fill="#1a1a2e"/>
  <text x="200" y="50" text-anchor="middle" fill="#e0e0e0" font-family="system-ui" font-size="16">[City Name]</text>
  <text x="200" y="110" text-anchor="middle" fill="white" font-family="system-ui" font-size="48" font-weight="bold">[value]°[C/F]</text>
  <text x="200" y="150" text-anchor="middle" fill="#888" font-family="system-ui" font-size="12">[Current date and time]</text>
  <text x="200" y="185" text-anchor="middle" fill="#555" font-family="system-ui" font-size="10">Weather data from Open-Meteo API</text>
</svg>

Replace [value], [C/F], [City Name] with actual values from the input.

2. Write Output Files

Write the SVG content to orchestration-workflow/weather.svg.

Also write a markdown summary to orchestration-workflow/output.md:

# Weather Report

![Weather Card](weather.svg)

**Location**: [City Name]
**Temperature**: [value]°[C/F]
**Fetched At**: [Current date and time in ISO 8601 format]

> Weather data provided by [Open-Meteo API](https://open-meteo.com/)
  • Create the orchestration-workflow/ directory if it does not exist
  • Overwrite any existing content

Expected Input

Temperature value, unit, and city from the calling agent:

Temperature: [X]°[C/F]
City: [City Name]
Unit: [Celsius/Fahrenheit]

Expected Output

Two files written:

  • orchestration-workflow/weather.svg — SVG weather card
  • orchestration-workflow/output.md — Markdown report embedding the SVG

Read the full file on GitHub · 77 lines

Changes

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.

  1. 11d ago First seen · 77 lines · 31 tokens per session scan A 37f5b461c555

Subscribe to this mod's changes

weather-svg-creator is a skill published in the GitHub repository shanraisshan/codex-cli-best-practice (987 stars, last pushed 3mo ago), licensed MIT. It adds 31 tokens to every session and 666 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

moai-design-tools

Design tool integration specialist covering Figma MCP, Pencil renderer, and Pencil-to-code export. Use when fetching design context from Figma, rendering Pencil designs, or exporting to React/Tailwind code.

modu-ai/moai-adk · 45 tokens

moai-workflow-thinking

Sequential Thinking MCP for structured step-by-step analysis via --deepthink flag. Separate from UltraThink which is Claude's native extended reasoning mode. Use for multi-step analysis or architecture decisions.

modu-ai/moai-adk · 43 tokens

moai-platform-chrome-extension

Chrome Extension Manifest V3 development specialist covering service workers, content scripts, message passing, chrome. APIs, side panel, declarativeNetRequest, and Chrome Web Store publishing. Use when building browser extensions.

modu-ai/moai-adk · 48 tokens

moai-framework-electron

Electron 33+ desktop app development specialist covering Main/Renderer process architecture, IPC communication, auto-update, and packaging with Electron Forge. Use when building cross-platform desktop applications.

modu-ai/moai-adk · 41 tokens

moai-foundation-context

Manages context window optimization, session state persistence, and token budget allocation for multi-agent workflows. Use for token budget management, context limits, or session handoff across agents.

modu-ai/moai-adk · 41 tokens

moai-platform-database-cloud

Cloud database platform specialist covering Neon (serverless PostgreSQL), Supabase (PostgreSQL 16 with real-time), and Firebase Firestore (NoSQL with offline sync). Use when choosing or setting up cloud databases.

modu-ai/moai-adk · 51 tokens