Skip to content

AI tools and agent skills

Coding agents use short skill documents for consistent practices. This page lists project skills (in the monorepo) and global skills (user machine), with links to skills.sh.

ScopeLocationRole
Project.agents/skills/Shared catalogue for this monorepo
Project.claude/skills/Claude-oriented skills (orient, handoff) + symlinks into .agents
Global (user)~/.agents/skills/User-wide skills via npx skills add
Global (user)~/.claude/skills/, ~/.grok/skills/Often symlinks into ~/.agents/skills/
Grok bundled~/.grok/bundled/skills/Skills shipped with Grok (not managed by skills.sh)

Each skill’s entry point is SKILL.md. Browse or install:

bash
npx skills find "<name>"
npx skills add <owner/repo@skill>     # → ~/.agents/skills by default
npx skills list

Global install metadata: ~/.agents/.skill-lock.json.

Session hooks are separate — see Claude Code hooks and Grok hooks.


Global skills (~/.agents/skills)

User-global skills available across projects (current machine install). Claude/Grok may expose the same names via symlinks under ~/.claude/skills/ and ~/.grok/skills/.

TitleShort descriptionskills.sh
designing-beautiful-websitesUX/UI for sites and apps: strategy, IA, flows, wireframes, component specs, visual polish.tristanmanchester/agent-skills/designing-beautiful-websites
find-skillsDiscover and install agent skills when asking “is there a skill for…?” / “how do I…?”.vercel-labs/skills/find-skills
nx-workspaceExplore Nx workspaces, projects, targets, and failed nx commands.nrwl/nx-ai-agents-config/nx-workspace
playwright-best-practicesPlaywright tests: flaky fixes, POM, CI, mocking, a11y, performance patterns.currents-dev/playwright-best-practices-skill/playwright-best-practices
playwright-cliAutomate browser interaction and author Playwright tests via CLI.microsoft/playwright-cli/playwright-cli
pnpmpnpm workspaces, catalogs, patches, overrides, virtual store.antfu/skills/pnpm
redesign-existing-projectsAudit and upgrade UI quality; remove generic AI design patterns.leonxlnx/taste-skill/redesign-existing-projects
security-best-practicesLanguage/framework security reviews when the user explicitly asks for best practices.openai/skills/security-best-practices
security-reviewSecurity code review for vulnerabilities (OWASP-style audit prompts).getsentry/skills/security-review
turborepoTurborepo pipelines, caching, --filter / affected, monorepo task graph.vercel/turborepo/turborepo

Note: Global skills are not in the git tree. They follow the developer machine. After npx skills add / update, refresh this table from ~/.agents/skills/ and ~/.agents/.skill-lock.json.

Grok user skills (~/.grok/skills)

Besides symlinks into ~/.agents/skills/, Grok may keep tool-specific user skills here (e.g. check-work, create-skill, help, imagine, code-review). Those are Grok-local rather than skills.sh installs.


Project skills — .agents/skills

TitleShort descriptionskills.sh
accessibilityAudit and improve web accessibility following WCAG 2.2.addyosmani/web-quality-skills/accessibility
clean-codeApply Clean Code principles — readable, maintainable modules.sickn33/antigravity-awesome-skills/clean-code
next-best-practicesNext.js conventions: files, RSC boundaries, data, metadata, bundling.vercel-labs/openreview/next-best-practices
next-upgradeUpgrade Next.js using official migration guides and codemods.vercel-labs/openreview/next-upgrade
playwright-cliAutomate browser interaction and author Playwright tests via CLI.microsoft/playwright-cli/playwright-cli
react-performanceReact/Next performance patterns (waterfalls, bundle, re-renders).affaan-m/everything-claude-code/react-performance
responsive-designContainer queries, fluid type, CSS Grid, mobile-first breakpoints.wshobson/agents/responsive-design
sanity-best-practicesCMS schemas, GROQ, TypeGen, Studio, Visual Editing, integrations.sanity-io/agent-toolkit/sanity-best-practices
seo-auditTechnical SEO audit: meta, crawl, Core Web Vitals, diagnostics.coreyhaines31/marketingskills/seo-audit
solidSOLID principles, TDD, design patterns, senior design discipline.ramziddin/solid-skills/solid
typescript-expertStrict TypeScript, monorepo tooling, type-level patterns.sickn33/antigravity-awesome-skills/typescript-expert
vercel-composition-patternsCompound components, lifting state, React 19 composition APIs.vercel-labs/agent-skills/vercel-composition-patterns
vercel-react-best-practicesVercel Engineering React/Next performance rules (70+ checks).vercel-labs/agent-skills/vercel-react-best-practices
web-design-guidelinesReview UI against Web Interface Guidelines compliance.vercel-labs/agent-skills/web-design-guidelines
web-design-reviewerVisual inspection of local/remote UIs; fix design issues at source.github/awesome-copilot/web-design-reviewer
write-discoverable-codeName and structure code for plain-text search by agents and humans.modem-dev/skills/write-discoverable-code

Project skills — .claude/skills

TitleShort descriptionskills.sh / notes
orientRead-only orientation: commands, git state, health — before editing.Project-local. Related: camacho/ai-skills/orient
handoffSession handoff summary from git status/diff/log for the next session.Project-local. Related: mattpocock/skills/handoff
responsive-designSymlink into .agents/skills/responsive-designwshobson/agents/responsive-design
web-design-reviewerSymlink into .agents/skills/web-design-reviewergithub/awesome-copilot/web-design-reviewer

Session lifecycle: Claude Code sessions.


Using skills

  • Project vs global: project skills travel with the repo; global skills travel with the developer machine.
  • Invoke the skill that matches the task rather than re-deriving rules from chat memory.
  • Skills are not a substitute for ADRs under Decisions or for ops pages under Ops.
  • When adding or removing skills, update the matching table and the internal twin under docs/ai/skills.md.

Frontend Corner — agent ops, tooling, and decision records