スキルレーダー · GITHUB
実際に使われている Agent Skills。
公開リポジトリの検証済み Skills を比較し、機能、内容、導入状況、出典を確認してから追加できます。
- 掲載範囲
- 検証済み
- Skills
- 5,771
- リポジトリ
- 824
- 最終同期
- 2026/09/08
tavus-engineeringtavus-video-gen
Generate AI videos with Tavus replicas. Use when creating personalized videos from scripts or audio, adding custom backgrounds, watermarks, or generating videos at scale. Covers the video generation API, not real-time conversations.
- 導入数
- 2
- GitHub Stars
- 8
- 更新日
- 1月26日
pymodelfeature-arch
React feature-based architecture guidelines for scalable applications (formerly feature-architecture). This skill should be used when writing, reviewing, or refactoring React code to ensure proper feature organization. Triggers on tasks involving project structure, feature organization, module boundaries, cross-feature imports, data fetching patterns, or component composition.
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodelmsw
Current MSW v2 guidance for request handlers, Node/browser setup, HTTP and GraphQL mocking, test isolation, timing, and debugging. General test framework patterns are covered by vitest and methodology by tdd.
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodelnextjs
Current Next.js 16 App Router guidance for caching, Cache Components, Server Components, routing, Server Actions, and next.config.js. Use for Next.js 16.x code. Generic React 19 patterns are covered by the react skill.
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodelnuqs
nuqs (type-safe URL query state) best practices for Next.js applications. This skill should be used when writing, reviewing, or refactoring code that uses nuqs for URL state management. Triggers on tasks involving useQueryState, useQueryStates, search params, URL state, query parameters, nuqs parsers, or Next.js routing with state.
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodelplaywright
Playwright testing best practices for Next.js applications (formerly test-playwright). This skill should be used when writing, reviewing, or debugging E2E tests with Playwright. Triggers on tasks involving test selectors, flaky tests, authentication state, API mocking, hydration testing, parallel execution, CI configuration, or debugging test failures.
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodelreact
Current React 19.2 guidance for concurrent rendering, Server Components, Actions, effects, React Compiler, state, and memoization. Use for React components and hooks. Next.js-specific routing/caching belongs to the nextjs skill; React Hook Form integration belongs to react-hook-form.
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodelreact-hook-form
Current React Hook Form v7 guidance for useForm, useWatch, useController, useFieldArray, validation, subscriptions, and UI-library integration. React Server Actions and useActionState are covered by the react skill.
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodelshadcn
Current shadcn/ui component guidance for projects generated with Radix UI or Base UI, including primitive-specific composition, Tailwind CSS v4 theming, accessibility, forms, tables, and state patterns. Inspect the checked-in component implementation before applying Radix asChild or Base UI render APIs.
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodeltailwind
Tailwind CSS v4 performance optimization and best practices guidelines (formerly tailwindcss-v4-style). This skill should be used when writing, reviewing, or refactoring Tailwind CSS v4 code to ensure optimal build performance, minimal CSS output, and correct usage of v4 features. Triggers on tasks involving Tailwind configuration, @theme directive, utility classes, responsive design, dark mode, container queries, or CSS generation optimization.
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodeltanstack-query
Current TanStack Query v5 guidance for queries, mutations, caching, prefetching, Suspense, and render optimization. Use with useQuery, useMutation, queryClient, queryOptions, skipToken, mutation scopes, or cache invalidation. API mocking is covered by the msw skill.
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodeltdd
Test-Driven Development methodology and red-green-refactor workflow (formerly test-tdd). This skill should be used when practicing TDD, writing tests first, designing tests before implementation, or reviewing test-first approaches. Triggers on "write tests first", "test before code", "red green refactor", "test driven development". This skill does NOT cover Vitest framework specifics (use vitest skill) or API mocking with MSW (use msw skill).
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodeltypescript
Current TypeScript guidance, including TypeScript 7 migration, tsconfig design, type errors, declaration performance, async patterns, module organization, and runtime type safety. Use for .ts, .tsx, and .d.ts work; framework-specific patterns and testing are covered by their dedicated skills.
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodelui-design
UI/UX and frontend design best practices guidelines (formerly frontend-design). This skill should be used when writing, reviewing, or designing frontend code to ensure accessibility, performance, and usability. Triggers on tasks involving HTML structure, CSS styling, responsive layouts, form design, animations, or accessibility improvements.
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodelvercel-composition-patterns
React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture.
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodelvercel-react-best-practices
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodelvitest
Current Vitest 4 guidance for setup, async tests, vi mocks, snapshots, worker pools, environments, assertions, and test performance. TDD methodology is covered by tdd and network mocking by msw.
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodelweb-design-guidelines
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
pymodelzod
Zod 4 schema validation best practices for type safety, parsing, and error handling. Use when defining schemas, validating string formats, calling safeParse, formatting Zod errors, or inferring input/output types. React Hook Form integration is covered by the react-hook-form skill.
- 導入数
- 2
- GitHub Stars
- 3
- 更新日
- 8月21日
mdsmithaustinpoteto-mode
poteto's agent style for concise, detailed responses, deliberate subagents, unslopped prose, simple code, and verified work. Use for poteto, /poteto-mode, or requests to work in this style.
- 導入数
- 2
- GitHub Stars
- 0
- 更新日
- 9月2日
mdsmithaustinpstack-harness
Maps pstack's delegation primitives to the current CLI (Claude Code, Codex, Hermes, or any other harness) — how to spawn a subagent, set a per-subagent model, parallelize arms, go read-only, ask a structured question (AskQuestion), open a todolist, loop, and locate the transcript store. Read whenever a pstack skill says spawn, Task tool, subagenttype, per-subagent model, AskQuestion, or todolist and you are unsure how to realize that in this harness.
- 導入数
- 2
- GitHub Stars
- 0
- 更新日
- 9月2日
next-safe-actionsafe-action-middleware
Use when implementing middleware for next-safe-action -- authentication, authorization, logging, rate limiting, error interception, context extension, or creating standalone reusable middleware with createMiddleware() or createValidatedMiddleware(). Covers both use() (pre-validation) and useValidated() (post-validation) middleware.
- 導入数
- 2
- GitHub Stars
- 0
- 更新日
- 7月18日
next-safe-actionsafe-action-testing
Use when writing tests for next-safe-action actions or hooks -- Vitest patterns for testing server actions directly, middleware behavior, hooks with React Testing Library, validation errors, and server errors
- 導入数
- 2
- GitHub Stars
- 0
- 更新日
- 7月18日
next-safe-actionsafe-action-validation-errors
Use when working with validation errors -- returnValidationErrors, formatted vs flattened shapes, custom validation error shapes, throwValidationErrors, or displaying field-level and form-level errors
- 導入数
- 2
- GitHub Stars
- 0
- 更新日
- 7月18日