
Go
- 73 installs
- 57 repo stars
- Updated August 3, 2026
- laguagu/claude-code-nextjs-skills
Helps with ai & agent building tasks.
About
go is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- go
- AI & Agent Building
- AI-coding skill
Go by the numbers
- 73 all-time installs (skills.sh)
- +3 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #5,587 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/laguagu/claude-code-nextjs-skills --skill goAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 73 |
|---|---|
| repo stars | ★ 57 |
| Last updated | August 3, 2026 |
| Repository | laguagu/claude-code-nextjs-skills ↗ |
What it does
Helps with ai & agent building tasks.
Files
/go — Browser check
Verify your work in the browser instead of trusting that code compiles. Use whatever browser tools the environment offers (Chrome extension, next-devtools MCP, chrome-devtools MCP, Playwright — whichever is reachable). If chrome-devtools MCP is available and you need console errors, network status, or computed styles to confirm the fix, prefer it over a blind reload. If login is needed, credentials usually live in .env.local or the project's secrets manager.
Two things are easy to miss:
- Functional verification — did the page actually return what was expected? Searching for "X" should show results containing X, not just render without errors.
- Console and network — JS errors and 4xx/5xx are silent killers.
If something is broken, fix → reload → verify again. Don't thrash on the same issue — ask for direction instead.