Skip to main content
Back to registry

mapbox-web-performance-patterns

mapbox/mapbox-agent-skills

This skill provides performance optimization guidance for building fast, efficient Mapbox applications. Patterns are prioritized by impact on user experience, starting with the most critical improvements.

Installs306
Install command
npx skills add https://github.com/mapbox/mapbox-agent-skills --skill mapbox-web-performance-patterns
Security audits
Gen Agent Trust HubPASS
SocketFAIL
SnykPASS
About this skill
This skill provides performance optimization guidance for building fast, efficient Mapbox applications. Patterns are prioritized by impact on user experience, starting with the most critical improvements. Performance philosophy: These aren't micro-optimizations. They show up as waiting time, jank, and repeat costs that hit every user session. Performance issues are prioritized by their impact on user experience: Problem: Sequential loading creates cascading delays where each resource waits for the previous one. Note: Modern bundlers (Vite, Webpack, etc.) and ESM dynamic imports automatically handle code splitting and library loading. The primary waterfall to eliminate is data loading - fetching map data sequentially instead of in parallel with map initialization. Timeline: Map init (0.5s) → Data fetch (1s) = 1.5s total Timeline: Max(map init, data fetch) = ~1s total If you know the exact area users will see first, setting center and zoom upfront avoids the map starting at a default view and then panning/zooming to the target, which wastes tile fetches.

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does mapbox-web-performance-patterns do?

This skill provides performance optimization guidance for building fast, efficient Mapbox applications. Patterns are prioritized by impact on user experience, starting with the most critical improvements.

Is mapbox-web-performance-patterns good?

mapbox-web-performance-patterns does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does mapbox-web-performance-patterns work with?

mapbox-web-performance-patterns currently lists compatibility with codex, gemini-cli, opencode, kimi-cli, amp, github-copilot.

What are alternatives to mapbox-web-performance-patterns?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install mapbox-web-performance-patterns?

npx skills add https://github.com/mapbox/mapbox-agent-skills --skill mapbox-web-performance-patterns

Related skills

More from mapbox/mapbox-agent-skills

Related skills

Alternatives in Software Engineering