Skip to main content

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.

설치로 이동

소스 정보

저장소
Zidong-LLC/BIBLIOTECA
최근 소스 활동
2026년 3월 11일 13:02
감지된 SKILL.md 언어
영어
스타
36
포크
22

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
weather-svg-creator
description
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.
# Weather SVG Creator Skill This skill creates a visual SVG weather card and writes the output files. ## Task Create an SVG weather card displaying the temperature for Dubai, UAE, and write it along with a summary to output files. ## Instructions You will receive the temperature value and unit (Celsius or Fahrenheit) from the calling context. ### 1. Create SVG Weather Card Generate a clean SVG weather card with the following structure: ```svg <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 160" width="300" height="160"> <rect width="300" height="160" rx="12" fill="#1a1a2e"/> <text x="150" y="45" text-anchor="middle" fill="#8892b0" font-family="system-ui" font-size="14">Unit: [Celsius/Fahrenheit]</text> <text x="150" y="100" text-anchor="middle" fill="#ccd6f6" font-family="system-ui" font-size="42" font-weight="bold">[value]°[C/F]</text> <text x="150" y="140" text-anchor="middle" fill="#64ffda" font-family="system-ui" font-size="16">Dubai, UAE</text> </svg> ``` Replace `[Celsius/Fahrenheit]`, `[value]`, and `[C/F]` with actual values. ### 2. Write SVG File Write the SVG content to `orchestration-workflow/weather.svg`. ### 3. Write Output Summary Write to `orchestration-workflow/output.md`: ```markdown # Weather Result ## Temperature [value]°[C/F] ## Location Dubai, UAE ## Unit [Celsius/Fahrenheit] ## SVG Card ![Weather Card](weather.svg) ``` ## Expected Input Temperature value and unit from the weather-agent: ``` Temperature: [X]°[C/F] Unit: [Celsius/Fahrenheit] ``` ## Notes - Use the exact temperature value and unit provided - do not re-fetch or modify - The SVG should be a self-contained, valid SVG file - Keep the design minimal and clean - Both output files go in the `orchestration-workflow/` directory
GitHub에서 보기