Skills

Canonical skill taxonomy and community marketplace skills

270 skillsShowing 1-48 of 270
AgentSkillsRepo
flags
Use when you need to check feature flag states, compare channels, or debug why a feature behaves differently across release channels.
242.6k50.5kfacebook/react
javascriptreactfrontenddeclarative+2
AgentSkillsRepo
test
Use when you need to run tests for React core. Supports source, www, stable, and experimental channels.
242.6k50.5kfacebook/react
javascriptreactfrontenddeclarative+2
AgentSkillsRepo
feature-flags
Use when feature flag tests fail, flags need updating, understanding @gate pragmas, debugging channel-specific test failures, or adding new flags to React.
242.6k50.5kfacebook/react
javascriptreactfrontenddeclarative+2
AgentSkillsRepo
fix
Use when you have lint errors, formatting issues, or before committing code to ensure it passes CI.
242.6k50.5kfacebook/react
javascriptreactfrontenddeclarative+2
AgentSkillsRepo
extract-errors
Use when adding new error messages to React, or seeing "unknown error code" warnings.
242.6k50.5kfacebook/react
javascriptreactfrontenddeclarative+2
AgentSkillsRepo
verify
Use when you want to validate changes before committing, or when you need to check all React contribution requirements.
242.6k50.5kfacebook/react
javascriptreactfrontenddeclarative+2
AgentSkillsRepo
flow
Use when you need to run Flow type checking, or when seeing Flow type errors in React code.
242.6k50.5kfacebook/react
javascriptreactfrontenddeclarative+2
AgentSkillsRepo
create-pr
Creates GitHub pull requests with properly formatted titles that pass the check-pr-title CI validation. Use when creating PRs, submitting changes for review, or when the user says /pr or asks to create a pull request.
171.1k54.1kn8n-io/n8n
automationipaasn8nworkflow+6
AgentSkillsRepo
cache-components
|
137.3k30.3kvercel/next.js
reactserver-renderinguniversalnode+6
AgentSkillsRepo
frontend-code-review
Trigger when the user requests a review of frontend files (e.g., `.tsx`, `.ts`, `.js`). Support both pending-change reviews and focused file reviews while applying the checklist rules.
127.8k19.9klanggenius/dify
aigptllmopenai+6
AgentSkillsRepo
orpc-contract-first
Guide for implementing oRPC contract-first API patterns in Dify frontend. Triggers when creating new API contracts, adding service endpoints, integrating TanStack Query with typed contracts, or migrating legacy service calls to oRPC. Use for all API layer work in web/contract and web/service directories.
127.8k19.9klanggenius/dify
aigptllmopenai+6
AgentSkillsRepo
component-refactoring
Refactor high-complexity React components in Dify frontend. Use when `pnpm analyze-component --json` shows complexity > 50 or lineCount > 300, when the user asks for code splitting, hook extraction, or complexity reduction, or when `pnpm analyze-component` warns to refactor before testing; avoid for simple/well-structured components, third-party wrappers, or when the user explicitly wants testing without refactoring.
127.8k19.9klanggenius/dify
aigptllmopenai+6
AgentSkillsRepo
frontend-testing
Generate Vitest + React Testing Library tests for Dify frontend components, hooks, and utilities. Triggers on testing, spec files, coverage, Vitest, RTL, unit tests, integration tests, or write/review test requests.
127.8k19.9klanggenius/dify
aigptllmopenai+6
AgentSkillsRepo
electron-chromium-upgrade
Guide for performing Chromium version upgrades in the Electron project. Use when working on the roller/chromium/main branch to fix patch conflicts during `e sync --3`. Covers the patch application workflow, conflict resolution, analyzing upstream Chromium changes, and proper commit formatting for patch fixes.
119.9k16.9kelectron/electron
electronjavascriptc-plus-plushtml+5
AgentSkillsRepo
add-uint-support
Add unsigned integer (uint) type support to PyTorch operators by updating AT_DISPATCH macros. Use when adding support for uint16, uint32, uint64 types to operators, kernels, or when user mentions enabling unsigned types, barebones unsigned types, or uint support.
97.0k26.7kpytorch/pytorch
neural-networkautogradgpunumpy+4
AgentSkillsRepo
metal-kernel
Write Metal/MPS kernels for PyTorch operators. Use when adding MPS device support to operators, implementing Metal shaders, or porting CUDA kernels to Apple Silicon. Covers native_functions.yaml dispatch, host-side operators, and Metal kernel implementation.
97.0k26.7kpytorch/pytorch
neural-networkautogradgpunumpy+4
AgentSkillsRepo
skill-writer
Guide users through creating Agent Skills for Claude Code. Use when the user wants to create, write, author, or design a new Skill, or needs help with SKILL.md files, frontmatter, or skill structure.
97.0k26.7kpytorch/pytorch
neural-networkautogradgpunumpy+4
AgentSkillsRepo
docstring
Write docstrings for PyTorch functions and methods following PyTorch conventions. Use when writing or updating docstrings in PyTorch code.
97.0k26.7kpytorch/pytorch
neural-networkautogradgpunumpy+4
AgentSkillsRepo
triaging-issues
Triages GitHub issues by routing to oncall teams, applying labels, and closing questions. Use when processing new PyTorch issues or when asked to triage an issue.
97.0k26.7kpytorch/pytorch
neural-networkautogradgpunumpy+4
AgentSkillsRepo
at-dispatch-v2
Convert PyTorch AT_DISPATCH macros to AT_DISPATCH_V2 format in ATen C++ code. Use when porting AT_DISPATCH_ALL_TYPES_AND*, AT_DISPATCH_FLOATING_TYPES*, or other dispatch macros to the new v2 API. For ATen kernel files, CUDA kernels, and native operator implementations.
97.0k26.7kpytorch/pytorch
neural-networkautogradgpunumpy+4
AgentSkillsRepo
writing-dev-server-tests
Guides writing HMR/Dev Server tests in test/bake/. Use when creating or modifying dev server, hot reloading, or bundling tests.
86.9k4.0koven-sh/bun
bunbundlerjavascriptjavascriptcore+6
AgentSkillsRepo
implementing-jsc-classes-cpp
Implements JavaScript classes in C++ using JavaScriptCore. Use when creating new JS classes with C++ bindings, prototypes, or constructors.
86.9k4.0koven-sh/bun
bunbundlerjavascriptjavascriptcore+6
AgentSkillsRepo
writing-bundler-tests
Guides writing bundler tests using itBundled/expectBundled in test/bundler/. Use when creating or modifying bundler, transpiler, or code transformation tests.
86.9k4.0koven-sh/bun
bunbundlerjavascriptjavascriptcore+6
AgentSkillsRepo
implementing-jsc-classes-zig
Creates JavaScript classes using Bun's Zig bindings generator (.classes.ts). Use when implementing new JS APIs in Zig with JSC integration.
86.9k4.0koven-sh/bun
bunbundlerjavascriptjavascriptcore+6
AgentSkillsRepo
zig-system-calls
Guides using bun.sys for system calls and file I/O in Zig. Use when implementing file operations instead of std.fs or std.posix.
86.9k4.0koven-sh/bun
bunbundlerjavascriptjavascriptcore+6
AgentSkillsRepo
browser-use
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, or extract information from web pages.
77.3k9.2kbrowser-use/browser-use
llmai-agentsai-toolsbrowser-automation+3
AgentSkillsRepo
resource-curator
Find, evaluate, and maintain high-quality external resources for JavaScript concept documentation, including auditing for broken and outdated links
66.2k9.2kleonardomso/33-js-concepts
javascriptconceptsnodejsreact+6
AgentSkillsRepo
write-concept
Write or review JavaScript concept documentation pages for the 33 JavaScript Concepts project, following strict structure and quality guidelines
66.2k9.2kleonardomso/33-js-concepts
javascriptconceptsnodejsreact+6
AgentSkillsRepo
concept-workflow
End-to-end workflow for creating complete JavaScript concept documentation, orchestrating all skills from research to final review
66.2k9.2kleonardomso/33-js-concepts
javascriptconceptsnodejsreact+6
AgentSkillsRepo
test-writer
Generate comprehensive Vitest tests for code examples in JavaScript concept documentation pages, following project conventions and referencing source lines
66.2k9.2kleonardomso/33-js-concepts
javascriptconceptsnodejsreact+6
AgentSkillsRepo
fact-check
Verify technical accuracy of JavaScript concept pages by checking code examples, MDN/ECMAScript compliance, and external resources to prevent misinformation
66.2k9.2kleonardomso/33-js-concepts
javascriptconceptsnodejsreact+6
AgentSkillsRepo
seo-review
Perform a focused SEO audit on JavaScript concept pages to maximize search visibility, featured snippet optimization, and ranking potential
66.2k9.2kleonardomso/33-js-concepts
javascriptconceptsnodejsreact+6
AgentSkillsRepo
food-order
Reorder Foodora orders + track ETA/status with ordercli. Never confirm without explicit user approval. Triggers: order food, reorder, track ETA.
65.0k8.0kmoltbot/moltbot
aiassistantclawdown-your-data+2
AgentSkillsRepo
eightctl
Control Eight Sleep pods (status, temperature, alarms, schedules).
65.0k8.0kmoltbot/moltbot
aiassistantclawdown-your-data+2
AgentSkillsRepo
apple-reminders
Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output.
65.0k8.0kmoltbot/moltbot
aiassistantclawdown-your-data+2
AgentSkillsRepo
bluebubbles
Build or update the BlueBubbles external channel plugin for Moltbot (extension package, REST send/probe, webhook inbound).
65.0k8.0kmoltbot/moltbot
aiassistantclawdown-your-data+2
AgentSkillsRepo
clawdhub
Use the ClawdHub CLI to search, install, update, and publish agent skills from clawdhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm-installed clawdhub CLI.
65.0k8.0kmoltbot/moltbot
aiassistantclawdown-your-data+2
AgentSkillsRepo
blucli
BluOS CLI (blu) for discovery, playback, grouping, and volume.
65.0k8.0kmoltbot/moltbot
aiassistantclawdown-your-data+2
AgentSkillsRepo
camsnap
Capture frames or clips from RTSP/ONVIF cameras.
65.0k8.0kmoltbot/moltbot
aiassistantclawdown-your-data+2
AgentSkillsRepo
apple-notes
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks Moltbot to add a note, list notes, search notes, or manage note folders.
65.0k8.0kmoltbot/moltbot
aiassistantclawdown-your-data+2
AgentSkillsRepo
bear-notes
Create, search, and manage Bear notes via grizzly CLI.
65.0k8.0kmoltbot/moltbot
aiassistantclawdown-your-data+2
AgentSkillsRepo
bird
X/Twitter CLI for reading, searching, posting, and engagement via cookies.
65.0k8.0kmoltbot/moltbot
aiassistantclawdown-your-data+2
AgentSkillsRepo
discord
Use when you need to control Discord from Moltbot via the discord tool: send messages, react, post or upload stickers, upload emojis, run polls, manage threads/pins/search, create/edit/delete channels and categories, fetch permissions or member/role/channel info, or handle moderation actions in Discord DMs or channels.
65.0k8.0kmoltbot/moltbot
aiassistantclawdown-your-data+2
AgentSkillsRepo
coding-agent
Run Codex CLI, Claude Code, OpenCode, or Pi Coding Agent via background process for programmatic control.
65.0k8.0kmoltbot/moltbot
aiassistantclawdown-your-data+2
AgentSkillsRepo
1password
Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading/injecting/running secrets via op.
65.0k8.0kmoltbot/moltbot
aiassistantclawdown-your-data+2
AgentSkillsRepo
gemini
Gemini CLI for one-shot Q&A, summaries, and generation.
65.0k8.0kmoltbot/moltbot
aiassistantclawdown-your-data+2
AgentSkillsRepo
gifgrep
Search GIF providers with CLI/TUI, download results, and extract stills/sheets.
65.0k8.0kmoltbot/moltbot
aiassistantclawdown-your-data+2
AgentSkillsRepo
blogwatcher
Monitor blogs and RSS/Atom feeds for updates using the blogwatcher CLI.
65.0k8.0kmoltbot/moltbot
aiassistantclawdown-your-data+2
Page 1 of 6