con un clic
starmapper
// Add a StarMapper badge (world map of stargazers) to the current repo's README. Detects OWNER/REPO from git remote and inserts the HTML block in the right place.
// Add a StarMapper badge (world map of stargazers) to the current repo's README. Detects OWNER/REPO from git remote and inserts the HTML block in the right place.
| Production-tested setup for Tailwind CSS v4 with shadcn/ui, Vite, and React. Use when: initializing React projects with Tailwind v4, setting up shadcn/ui, implementing dark mode, debugging CSS variable issues, fixing theme switching, migrating from Tailwind v3, or encountering color/theming problems. Covers: @theme inline pattern, CSS variable architecture, dark mode with ThemeProvider, component composition, vite.config setup, common v4 gotchas, and production-tested patterns.
Conventional commit with StarMapper scope auto-detection
7-category codebase health audit for StarMapper with weighted scoring and tier system. Run before major releases or architectural changes.
Pre-PR code review for StarMapper. Analyzes recent changes for quality, security, performance, and StarMapper-specific patterns. Supports auto-fix loop and multi-agent modes.
Code duplication analysis for StarMapper using jscpd. Detects repeated patterns across geocoding helpers, GitHub API formatting, compression utils, and cache logic.
Recherche et debug dans les logs Vercel (production/preview). Supporte la recherche par pattern, filtre par niveau d'erreur, par route API, par déploiement. Utiliser pour diagnostiquer des erreurs de production, tracer des requêtes ou analyser des crashs.
| name | starmapper |
| description | Add a StarMapper badge (world map of stargazers) to the current repo's README. Detects OWNER/REPO from git remote and inserts the HTML block in the right place. |
| version | 1.0.0 |
| effort | low |
| tags | ["readme","badge","starmapper","github"] |
| allowed-tools | Bash, Read, Edit |
Add a StarMapper section to the current repo's README that shows a world map of stargazers.
Detect OWNER/REPO from git remote:
git remote get-url origin
Parse OWNER and REPO from the URL (supports both HTTPS and SSH formats).
Find the README — check for README.md at repo root (fallback: readme.md, README.rst).
Find the insertion point — always insert the full world map block (never a badge-only inline). Best spot: just before the first --- separator, or before ## Installation / ## Getting Started. If none, insert before the first ## section.
Insert this block (with actual OWNER/REPO substituted):
<p align="center">
<a href="https://starmapper.bruniaux.com/OWNER/REPO">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://starmapper.bruniaux.com/api/map-image/OWNER/REPO?theme=dark" />
<source media="(prefers-color-scheme: light)" srcset="https://starmapper.bruniaux.com/api/map-image/OWNER/REPO?theme=light" />
<img alt="StarMapper — see who stars this repo on a world map" src="https://starmapper.bruniaux.com/api/map-image/OWNER/REPO" />
</picture>
</a>
</p>
StarMapper added → README.md (OWNER/REPO)