Loading...
Loading...
Found 48002 skills
Dimillian
Analyzes and optimizes React component performance to reduce re-renders and improve UI responsiveness.
heyitsnoah
Enforces systematic root cause investigation before implementing fixes for bugs, test failures, or unexpected behavior.
heyitsnoah
Manages isolated Git worktrees for parallel development, eliminating branch switching and streamlining workspace cleanup after PR merges.
stacklok
Analyzes code changes and suggests splitting large pull requests into smaller, more reviewable units for efficient code review.
stacklok
Generates clear and descriptive commit messages from git diffs to improve version control communication and code review efficiency.
kubb-labs
Explains plugin lifecycle, generator types, and utilities for developing plugins within the Kubb code generation ecosystem.
kubb-labs
Provides guidance for creating React components and generators using @kubb/react-fabric, supporting both React-based and function-based patterns.
kubb-labs
Provides standardized rules and checklists for preparing pull requests, creating changesets, and releasing packages in monorepo environments.
kubb-labs
Provides coding style, testing, and PR guidelines for the Kubb ecosystem to ensure consistent and high-quality code reviews and development practices.
KhazP
Assists in building Minimum Viable Products (MVPs) by implementing features according to the AGENTS.md plan, triggered by user requests to start coding or develop features.
KhazP
Creates Technical Design Documents for MVPs, guiding architecture planning and tech stack selection.
TheOrcDev
Prevents stale closures and unnecessary callback recreations in React by using functional setState for state updates based on current state values.
TheOrcDev
Provides best practices for creating 8-bit styled variants of shadcn/ui components through structured component wrapping techniques.
TheOrcDev
Optimizes frontend performance by lazily loading heavy components (e.g., editors, charts) using Next.js dynamic imports to reduce initial bundle size.
TheOrcDev
Optimizes React component rendering by memoizing results to skip unnecessary re-renders when props remain unchanged.
TheOrcDev
Optimizes React component performance by hoisting RegExp creation outside render or memoizing with useMemo to avoid re-creation on every render.
TheOrcDev
Optimizes import statements to reduce bundle size and improve development boot time by importing directly from source files instead of barrel files.
TheOrcDev
Optimizes JavaScript code by using early returns to avoid unnecessary computations in loops and condition checks.
TheOrcDev
Optimizes SVG animation performance by wrapping elements in a div for hardware acceleration, specifically for 8-bit retro pixel art components.
TheOrcDev
Registers new 8-bit components in shadcn/ui by updating registry.json during component addition to the library.
TheOrcDev
Defers expensive initial state calculations in React using lazy initialization with useState to improve performance.
TheOrcDev
Manages state-driven visual elements for game interfaces, including health, XP, and mana bars in RPG and retro game UI components.
TheOrcDev
Optimizes React component rendering by hoisting static JSX elements outside the component to prevent unnecessary re-creation on every render.
TheOrcDev
Enforces explicit ternary operators for conditional rendering to prevent unexpected behavior with falsy values like 0 or NaN.