npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mapquest-agent-skills

v1.0.0

Published

Agent Skills for AI coding assistants (Claude Code, Cursor, Copilot) — teaches MapQuest API best practices: geocoding, directions, static maps, search-ahead, store locators, traffic, and key security.

Downloads

15

Readme

MapQuest Agent Skills

8 comprehensive Agent Skills that teach AI assistants how to build fast, reliable, production-ready MapQuest applications. Covers geocoding, routing, static maps, search-ahead, web integration, key security, store locators, and real-time traffic data.

Quick Start

Install all MapQuest Agent Skills:

npx add-skill definingAvi/mapquest-agent-skills

Install specific skills:

npx add-skill definingAvi/mapquest-agent-skills --skill mapquest-geocoding-patterns

List available skills:

npx add-skill definingAvi/mapquest-agent-skills --list

What Are Agent Skills?

Agent Skills are folders containing instructions and resources that AI assistants (like Claude Code, Cursor, GitHub Copilot) can discover and use to perform tasks more effectively. Unlike tools (which provide actions) or prompts (which provide workflows), skills provide domain expertise — the "know-how" that helps AI make informed decisions when working with MapQuest APIs.

Available Skills


📍 mapquest-geocoding-patterns

Address ↔ coordinate conversion using the MapQuest Geocoding API.

Covers forward geocoding, reverse geocoding, batch geocoding, quality codes, and response parsing. Teaches the AI to choose the right geocoding mode, handle partial/ambiguous addresses, and interpret geocodeQuality scores correctly.

View skill →


🗺️ mapquest-directions-routing

Turn-by-turn directions, route optimization, and multi-stop routing.

Covers the Directions API, route types (fastest/shortest/pedestrian/bicycle), narrative maneuvers, distance/time formatting, and common mistakes like ignoring statusCode or mixing up lat/lng order.

View skill →


🖼️ mapquest-static-maps

Generating and embedding static map images via the Static Map API.

Covers center/zoom, markers, shape overlays, image sizing, map types (map/sat/hyb/light/dark), and URL construction patterns. Includes when to use static vs. interactive maps.

View skill →


🔍 mapquest-search-ahead

Typeahead/autocomplete using the Search Ahead API.

Covers debouncing, result categories, geographic bias, collection types (address, adminArea, airport, category, franchise, poi), and how to chain Search Ahead with Geocoding for full address resolution.

View skill →


🌐 mapquest-web-integration

Integrating the MapQuest JavaScript SDK (Leaflet-based) into web applications.

Covers SDK loading, map initialization, tile layers, markers, popups, event handling, and framework integration patterns for React, Vue, and plain HTML/JS.

View skill →


🔐 mapquest-key-security

Best practices for handling MapQuest API keys securely.

Covers environment variable storage, referrer restrictions in the MapQuest developer portal, server-side proxying, key rotation, and what to do when a key is exposed.

View skill →


🏪 mapquest-store-locator

Building store locators and POI finders with MapQuest APIs.

Covers the full pattern: geocode user input → find nearby locations → display on map → calculate routes to selected location. Includes distance calculations, result sorting, and marker clustering strategies.

View skill →


🚦 mapquest-traffic-data

Integrating real-time traffic data and incidents.

Covers the Traffic API, incident severity codes, flow segments, how to overlay traffic on maps, and when to factor traffic into routing requests.

View skill →


How Skills Work

With Claude Code

npx add-skill definingAvi/mapquest-agent-skills -a claude-code

With Cursor

npx add-skill definingAvi/mapquest-agent-skills -a cursor

With VS Code (GitHub Copilot)

npx add-skill definingAvi/mapquest-agent-skills -a vscode

Repository Structure

mapquest-agent-skills/
├── skills/
│   ├── mapquest-geocoding-patterns/SKILL.md
│   ├── mapquest-directions-routing/SKILL.md
│   ├── mapquest-static-maps/SKILL.md
│   ├── mapquest-search-ahead/SKILL.md
│   ├── mapquest-web-integration/SKILL.md
│   ├── mapquest-key-security/SKILL.md
│   ├── mapquest-store-locator/SKILL.md
│   └── mapquest-traffic-data/SKILL.md
├── examples/
│   └── conversations/
├── README.md
└── package.json

Resources

License

MIT