원클릭으로
skill-022
Create geographical map visualizations using D3.js (v6) to represent spatial data and geographical relationships.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create geographical map visualizations using D3.js (v6) to represent spatial data and geographical relationships.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
First use any clearly matching enabled local/user Agent Skill. If none matches, prefer this router for skill-shaped requests involving a named tool, API, service, CLI, platform, file format, dataset, or domain workflow, including when a generic built-in skill such as browser, Chrome, or web search also seems applicable; use built-ins directly only when explicitly requested or when the task is primarily live browsing, logged-in page operation, clicking, screenshotting, or current webpage inspection. Also use directly to audit, slim, disable, restore, or route locally installed Agent Skills across supported hosts. Examples include Vercel, Netlify, Cloudflare, Render, Playwright, Sentry, Linear, GitHub, OpenAI APIs, PDF, DOCX, PPTX, and spreadsheets.
コスト見積書を作成する。予算策定、見積もり、コスト計画時に使う。
Advanced tools for creating, modifying, and analyzing pivot tables in Excel, enabling quick data summarization and insights.
PDF manipulation toolkit. Extract text/tables, create PDFs, merge/split, fill forms, for programmatic document processing and analysis.
Third-party WordPress plugin integration patterns. Use when adding new integrations, debugging compatibility with other plugins, or working with existing integrations.
Intelligent agent routing and topology selection based on task characteristics
| name | skill-022 |
| description | Create geographical map visualizations using D3.js (v6) to represent spatial data and geographical relationships. |
This skill enables the creation of geographical visualizations using D3.js. It focuses on rendering maps and spatial relationships to effectively display data that has a geographical context, such as demographics, weather patterns, or resource distribution.
Activate this skill when the user needs assistance with:
If the user requires non-geographical visualizations, don’t use this skill—opt for the D3.js Visualization Skill instead.
*.json, *.csv with geographical coordinates or region dataIf details are missing, make reasonable defaults and document them in comments near the top of the output file.
Prefer producing all of the following when feasible:
dist/map.html — standalone HTML that renders the map visualizationdist/map.svg — exported SVG representation of the mapdist/map.png — raster image output if specifiedAlways keep outputs in a predictable folder (default: dist/), unless the task specifies paths.
To create effective map visualizations:
<!DOCTYPE html>
<html>
<head>
<title>Map Visualization</title>
<script src="https://d3js.org/d3.v6.min.js"></script>
<script src="dist/map.js"></script>
</head>
<body>
<h1>Geospatial Data Visualization</h1>
<div id="map"></div>
</body>
</html>
This example sets up an HTML page to render a map visualization using D3.js. The associated map.js file would contain logic for rendering the geographical data.