A collection of skills for AI coding agents focused on modern web development workflows.
Skills follow the Agent Skills specification and work with Claude Code, OpenCode, Codex, and Cursor.
Enforces CLI tool usage over web dashboards for reproducibility and scriptability.
Use when: Working with GitHub, Supabase, Vercel, Netlify, Cloudflare, Prisma, Stripe, Docker, or any cloud service with a CLI.
Includes:
- Core tools:
gh,supabase,vercel,netlify,wrangler,prisma,stripe,docker compose - Additional: AWS CLI, Railway, Fly.io, ngrok, Turborepo, Planetscale, Neon, Drizzle, Bun
Project structure conventions for React and Next.js applications.
Use when: Creating new files, deciding where components/hooks/utils should go, or asking "where does this belong?"
Includes:
- Standard folder layout
- Naming conventions
- App Router patterns
- Monorepo structure
- Feature-based organization
Consistent git history with Conventional Commits.
Use when: Writing commit messages, PR titles, PR descriptions, or branch names.
Format:
feat(auth): add Google OAuth login
fix(api): handle null user in profile endpoint
chore(deps): upgrade Next.js to 15
Structured code review with prioritized, actionable feedback.
Use when: Reviewing PRs, checking code quality, or auditing changes.
Features:
- Read-only mode (
allowed-tools: Read, Grep, Glob) - Prioritized feedback: 🚨 Blocker →
⚠️ Suggestion → 💭 Nit - React/hooks patterns checklist
- Accessibility audit
Practical testing strategy for web applications.
Use when: Writing tests, deciding what to test, setting up test infrastructure, or discussing coverage.
Includes:
- Testing pyramid guidance
- MSW setup for API mocking
- Factory functions and fixtures
- Coverage targets and exclusions
# Install all skills
npx add-skill augmnt/webdev-skills
# List available skills
npx add-skill augmnt/webdev-skills --list
# Install specific skills
npx add-skill augmnt/webdev-skills --skill using-cli-tools --skill writing-tests# Global (all projects)
cp -r skills/* ~/.claude/skills/
# Project-level (commit to share with team)
cp -r skills/* .claude/skills/cp -r skills/* ~/.config/opencode/skill/cp -r skills/* ~/.codex/skills/cp -r skills/* ~/.cursor/skills/Skills are automatically available once installed.
These skills are designed to be opinionated starting points. Fork this repo and customize for your team:
- Add your preferred tools to
using-cli-tools - Adjust folder structure in
organizing-project-files - Modify commit conventions in
writing-commits - Add team-specific review criteria to
reviewing-code - Update testing tools in
writing-tests
Contributions welcome! Please:
- Follow the Agent Skills spec
- Keep SKILL.md files under 500 lines
- Use reference files for detailed content
- Test with multiple agents before submitting
MIT