Claude-code-best-practice weather-svg-creator
Creates an SVG weather card showing the current temperature for Dubai. Writes the SVG to orchestration-workflow/weather.svg and updates orchestration-workflow/output.md.
install
source · Clone the upstream repo
git clone https://github.com/shanraisshan/claude-code-best-practice
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/shanraisshan/claude-code-best-practice "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/weather-svg-creator" ~/.claude/skills/shanraisshan-claude-code-best-practice-weather-svg-creator && rm -rf "$T"
manifest:
.claude/skills/weather-svg-creator/SKILL.mdsource content
Weather SVG Creator Skill
Creates a visual SVG weather card for Dubai, UAE and writes the output files.
Task
You will receive a temperature value and unit (Celsius or Fahrenheit) from the calling context. Create an SVG weather card and write both the SVG and a markdown summary.
Instructions
- Create SVG — Use the SVG template from reference.md, replacing placeholders with actual values
- Write SVG file — Read then write to
orchestration-workflow/weather.svg - Write summary — Read then write to
using the markdown template from reference.mdorchestration-workflow/output.md
Rules
- Use the exact temperature value and unit provided — do not re-fetch or modify
- The SVG must be self-contained and valid
- Both output files go in the
directoryorchestration-workflow/
Additional resources
- For SVG template, output template, and design specs, see reference.md
- For example input/output pairs, see examples.md