microsoft/cat-agent-skills is a static website that catalogs reusable instruction sets and related packages for AI agents. People use it to search, filter, rate, and download skills for Cowork, Copilot Studio, and Scout, along with Copilot plugins and Scout automations. The catalogue entries are the skills, instructions, plugins, and settings displayed by the site.
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 microsoft/cat-agent-skills --skill route-map-visualizergit clone --depth 1 https://github.com/microsoft/cat-agent-skillsWrote 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/microsoft/cat-agent-skills/route-map-visualizer)<a href="https://agentmods.dev/skills/microsoft/cat-agent-skills/route-map-visualizer"><img src="https://agentmods.dev/badge/skills/microsoft/cat-agent-skills/route-map-visualizer.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.00149 | $0.01460 |
| Opus 5 | $0.00075 | $0.00730 |
| Sonnet 5 | $0.00030 | $0.00292 |
| Haiku 4.5 | $0.00015 | $0.00146 |
Grade A, and why
route-map-visualizer 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 3d 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.
How it starts
The opening of the file, as written. The whole thing — 138 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Visualizes pre-ordered routes and location maps via scripts/map_generator.py.
Fully offline Python engine — no outbound HTTP from Python. Road geometry
rendered directly when provided by a connector; OSRM used browser-side as a
fallback when it is not.
Steps
1. Choose kind
| Value | Use when |
|---|---|
"map" |
Plot locations only — no path (weather, CRM records, site lists) |
"route" |
Ordered stops + path |
"auto" |
Default — infers map unless stops key or round_trip hint |
2. Resolve coordinates — per point, in order:
lat/lonalready present — from user, connector result, Dataverse, CRM, CSV, etc. Never overwrite.- Alias match in
assets/place_lookup.json - Web-search the place's lat/lon, then add to payload
Never call external geocoding APIs from the script. Never invent coordinates.
3. Pass connector route data (when available)
If an upstream connector (Azure Maps, Bing Maps, etc.) returned routing data, pass it directly — the visualizer will use it for accurate distances and the actual road polyline in PNG and HTML:
| Field | Source | Effect |
|---|---|---|
route_geometry |
Connector road polyline | Draw actual road path in PNG + HTML |
legs |
Connector leg breakdown | Show per-leg distance/time table |
route_source |
e.g. "azure_maps" |
Attribution badge on map and outputs |
total_distance_m |
Connector total distance | Accurate distance in header + exports |
total_duration_s |
Connector total time | Accurate time in header + exports |
Without these, the PNG uses straight lines (labeled schematic) and the HTML calls OSRM browser-side for road routing.
4. Point fields
| Field | Notes |
|---|---|
lat, lon |
Required (or place_lookup match) |
name |
Display label |
value |
Metric — "24 C", "$1.2M", CRM field, etc. |
icon |
See icon list below |
color |
Hex (validated — invalid values fall back to default) |
order |
Optional sequence number (connector-assigned) |
5. Call generate()
import sys; sys.path.insert(0, "scripts")
from map_generator import generate
# Minimal — stops in provided order, schematic PNG, OSRM HTML
result = generate({
"kind": "route",
"title": "Delivery run",
"stops": [
{"name": "Depot", "lat": -33.86, "lon": 151.21},
{"name": "Stop A", "lat": -33.90, "lon": 151.18},
{"name": "Stop B", "lat": -33.88, "lon": 151.15},
],
# Optional exports (all off by default):
# "html": True "csv": True "geojson": True "kml": True
# "map_links": True "qr_codes": True
})
# With connector road data — produces accurate PNG + no OSRM needed
result = generate({
"kind": "route",
"title": "Delivery run — Azure Maps",
"stops": [...],
"route_geometry": [ # connector road polyline
{"lat": -33.860, "lon": 151.210},
{"lat": -33.865, "lon": 151.208},
...
],
"legs": [ # per-leg breakdown
{"from": "Depot", "to": "Stop A", "distance_m": 5200,
"duration_s": 420, "summary": "via Parramatta Rd"},
{"from": "Stop A", "to": "Stop B", "distance_m": 3100,
"duration_s": 280, "summary": "via Church St"},
],
"route_source": "azure_maps",
"total_distance_m": 8300,
"total_duration_s": 700,
"html": True,
})
print(result["markdown"])
Key result keys: chart_path (PNG, always), html_path, csv_path,
geojson_path, kml_path, map_links_path, qr_sheet_path,
google_maps_url, apple_maps_url, bing_maps_url, has_road_geometry,
route_source, generated_exports.
6. Reply — paste result["markdown"]. It always ends with an Optional
exports hint. Clarify:
- PNG = road route when
route_geometryprovided, else straight-line schematic - HTML = connector polyline embedded (no OSRM) when geometry provided, else OSRM browser-side
schematic_order: true— opt-in offline stop ordering (NN + 2-opt, straight-line estimate); always prefer a connector for real road order
What ships with it
8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 3d ago First seen · 138 lines · 149 tokens per session scan A 93ecf2d3c1ea
route-map-visualizer is a skill published in the GitHub repository microsoft/cat-agent-skills (64 stars, last pushed yesterday), licensed MIT. It adds 149 tokens to every session and 1,460 once invoked, about $0.0007 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-09-03.
Other skills, from other repositories
webgl-holographic-foil
A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.
general-video
Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…
html-ppt-hermes-cyber-terminal
OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.
html-ppt-taste-brutalist
16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).
diagnostic-stem-delivery
Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.
chengfeng-check-updates
An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.