Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,410
总 Skills
34.1M
总安装量
2,437
贡献者
# Skill 仓库 描述 安装量
20501 doctor yeachan-heo/oh-my-claudecode
OrchestKit Health Diagnostics Argument Resolution FLAGS = "$ARGUMENTS" Full argument string, e.g., "--verbose" or "--json" FLAG = "$ARGUMENTS[0]" First token: -v, --verbose, --json, --category=X $ARGUMENTS[0], $ARGUMENTS[1] for indexed access (CC 2.1.59) Overview The /ork:doctor command performs comprehensive health checks on your OrchestKit installation. It auto-detects installed plugins and validates 12 categories: Installed Plugins - Detects ork plugin Skills Validation - Frontmatter, refe...
37
20502 security-pr-checklist-skill patricio0312rev/skills
Security PR Checklist Skill Standardized security review for pull requests. PR Security Checklist Security Review Checklist Authentication & Authorization - [ ] No hardcoded credentials - [ ] Authorization checks on all endpoints - [ ] Session management secure - [ ] Rate limiting on auth endpoints Input Validation - [ ] All inputs validated - [ ] Output properly encoded - [ ] No SQL injection risks - [ ] No XSS vulnerabilities Data Protection - [ ] Sensitive data encrypted at rest -...
37
20503 game-servers pluginagentmarketplace/custom-plugin-game-developer
Game Servers Server Architecture Patterns ┌─────────────────────────────────────────────────────────────┐ │ SERVER ARCHITECTURES │ ├─────────────────────────────────────────────────────────────┤ │ DEDICATED SERVER: │ │ • Server runs game simulation │ │ • Clients send inputs, receive state │ │ • Best security and consistency │ │ • Hig...
37
20504 distributing-tauri-for-android dchuk/claude-code-tauri-skills
This skill covers the complete workflow for preparing and distributing Tauri v2 applications on Android, including Google Play Store publication. Prerequisites Before distributing your Tauri app for Android: - Play Console Account: Create a developer account at [https://play.google.com/console/developers](https://play.google.com/console/developers) - Android SDK: Ensure Android SDK is installed and configured - Code Signing: Set up Android code signing (keystore) - Tauri Android Initializ...
37
20505 creating-cli-tools zenobi-us/dotfiles
Create CLI Design CLI surface area (syntax + behavior), human-first, script-friendly. Do This First Read agent-scripts/skills/create-cli/references/cli-guidelines.md and apply it as the default rubric. Upstream/full guidelines: https://clig.dev/ (propose changes: https://github.com/cli-guidelines/cli-guidelines ) Ask only the minimum clarifying questions needed to lock the interface. Clarify (fast) Ask, then proceed with best-guess defaults if user is unsure: Command name + one-sentence purpose....
37
20506 release-automation-builder patricio0312rev/skills
Release Automation Builder Automate releases with versioning, changelogs, and publishing. Using Changesets Setup npm install -D @changesets/cli npx changeset init Workflow .github/workflows/release.yml name: Release on: push: branches: - main concurrency: ${{ github.workflow }}-${{ github.ref }} jobs: release: name: Release runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: actions/setup-node@v4 ...
37
20507 hook kenneth-liao/ai-launchpad-marketplace
Hook Creation Overview This skill provides concrete requirements and proven patterns for creating opening hooks that retain audience attention, extend title/headline curiosity, and maximize engagement. The opening content is critical for retention across all platforms — video, email, and social. Core Principle : The opening works best when it extends the curiosity created by the title/headline rather than repeating or wasting it. Because the audience already engaged based on the title's promise,...
37
20508 msvc-cl mohitmishra786/low-level-dev-skills
MSVC cl.exe and clang-cl Purpose Guide agents through Windows C/C++ compilation: MSVC cl.exe , clang-cl as MSVC-compatible driver, MSBuild project settings, and runtime library choices. Triggers "How do I compile with MSVC from the command line?" "What is the MSVC equivalent of -O2 ?" "/MT vs /MD — which do I use?" "How do I use clang-cl instead of cl.exe?" "I'm getting LNK errors on Windows" "How do I generate PDB files?" Workflow 1. Set up the environment MSVC requires the Visual Studio enviro...
37
20509 golang htlin222/dotfiles
Go Best Practices Battle-tested patterns from Google, Uber, and the Go team. These are practices proven in large-scale production systems, updated for modern Go (1.25). Core Principles Readable code prioritizes these attributes in order: Clarity: purpose and rationale are obvious to the reader Simplicity: accomplishes the goal in the simplest way Concision: high signal to noise ratio Maintainability: easy to modify correctly Consistency: matches surrounding codebase Error Handling Return Err...
37
20510 argocd-app-deployer jeremylongshore/claude-code-plugins-plus-skills
Argocd App Deployer Purpose This skill provides automated assistance for argocd app deployer tasks within the DevOps Advanced domain. When to Use This skill activates automatically when you: Mention "argocd app deployer" in your request Ask about argocd app deployer patterns or best practices Need help with advanced devops skills covering kubernetes, terraform, advanced ci/cd, monitoring, and infrastructure as code. Capabilities Provides step-by-step guidance for argocd app deployer Follows indu...
37
20511 accessing-github-repos oaustegard/claude-skills
Accessing GitHub Repositories Git clone is blocked in containerized AI environments (egress proxy rejects CONNECT tunnel), but full repository access is available via GitHub REST API and raw file URLs. Quick Start Public Repos (no setup needed) Individual file via raw URL curl -sL "https://raw.githubusercontent.com/OWNER/REPO/BRANCH/path/file" Directory tree via API curl -sL "https://api.github.com/repos/OWNER/REPO/git/trees/BRANCH?recursive=1" Private Repos or Write Access Requires GitHub Per...
37
20512 pet-portrait-generation eachlabs/skills
Pet Portrait Generation Generate stunning custom pet portraits using each::sense. Transform your pet photos into beautiful artwork across various styles - from realistic portraits to whimsical cartoon illustrations, regal renaissance paintings, and personalized products. Features Realistic Portraits : Professional studio-quality pet photography Cartoon/Illustrated : Fun, colorful cartoon versions of pets Renaissance/Royal : Majestic portraits with historical costumes Watercolor Paintings : Artis...
37
20513 coverage-strategist patricio0312rev/skills
Coverage Strategist Define pragmatic, ROI-focused test coverage strategies. Coverage Philosophy Goal: Maximum confidence with minimum tests Principle: 100% coverage is not the goal. Test what matters. Critical Path Identification // Critical paths that MUST be tested const criticalPaths = { authentication: { priority: "P0", coverage: "100%", paths: [ "User login flow", "User registration", "Password reset", "Token refresh", "Session management", ...
37
20514 database design eddiebe147/claude-settings
Database Design Schema Design Principles Normalization Guidelines -- 1NF: Atomic values, no repeating groups -- 2NF: No partial dependencies on composite keys -- 3NF: No transitive dependencies -- Users table (normalized) CREATE TABLE users ( id SERIAL PRIMARY KEY , email VARCHAR ( 255 ) UNIQUE NOT NULL , created_at TIMESTAMPTZ DEFAULT NOW ( ) ) ; -- Addresses table (separate entity) CREATE TABLE addresses ( id SERIAL PRIMARY KEY , user_id INTEGER REFERENCES users ( id ) ON DELETE CASCADE , stre...
37
20515 magento-local-environment-specialist maxnorm/magento2-agent-skills
Magento 2 Local Environment Specialist Expert specialist in setting up and managing local Magento 2 development environments. When to Use Setting up local development environments Configuring local development tools Troubleshooting local setup issues Optimizing local development performance Setting up Docker environments Local Development Setup Development Tools Docker : Containerized local development Vagrant : Virtualized development environments MAMP/XAMPP : Local server stacks Composer : Dep...
37
20516 version-planner yunshu0909/yunshu_skillshub
版本规划助手 用途 帮助用户把一个产品想法或需求,拆解成可执行的版本路线图(V0.1 MVP → V1.0)。 工作流程 第一步:理解需求 先通过提问,充分理解用户的核心需求: 核心痛点是什么? 要解决什么问题? 目标用户是谁? 自己用还是给别人用? 必须有的功能 vs 可以后做的功能 技术约束 :是否有特定技术栈、平台限制? 不确定的点 :哪些细节还没想清楚? 第二步:提炼核心价值 从需求中提炼出: 最小可验证价值 :解决核心痛点的最简单方案是什么? 关键功能清单 :把所有提到的功能列出来 依赖关系 :哪些功能必须先做,哪些可以独立做 第三步:拆解版本 按照以下原则拆解版本: V0.1 MVP(最小可用版本) 目标:用最少的功能验证核心价值 只做最核心的一个痛点 可以丑、可以手动、可以有限制,但必须能跑通 不做:编辑、云同步、高级功能、美化 V0.2-V0.5(功能迭代) 每个版本解决一个清晰的子需求 优先级: 让产品能自给自足(本地增删改查) 数据安全(备份、版本管理) 跨设备/分享能力 进阶功能(导入导出、市场等) 每个版本都要有明确的"验证点" V1.0(完整产品) 性能优化、...
37
20517 supabase-expert raintree-technology/claude-starter
Supabase Integration Expert Skill Overview This skill helps you build secure, scalable Supabase integrations. Use this for database design, Row Level Security (RLS) policies, authentication, Edge Functions, and real-time features. Core Principles 1. Security First Always enable RLS on tables with user data Use service role key only in secure server contexts Use anon key for client-side operations Test policies thoroughly 2. Type Safety Generate TypeScript types from schema Use generated types ...
37
20518 tech-stack-evaluation eyadsibai/ltk
Framework for making technology decisions. When to Use - Choosing between frameworks/libraries - Evaluating cloud providers - Making build vs buy decisions - Planning technology migrations - Standardizing tech stack Evaluation Framework Decision Matrix | Team Experience | 20% | Score | Score | Score | Community/Support | 15% | Score | Score | Score | Performance | 15% | Score | Score | Score | Scalability | 15% | Score | Score | Score | Cost (TCO) | 15% | Sc...
37
20519 playwriter brianlovin/claude-config
Quick Start Get a session ID first playwriter session new => 1 Execute code with your session playwriter -s 1 -e "await page.goto('https://example.com')" playwriter -s 1 -e "console.log(await accessibilitySnapshot({ page }))" playwriter -s 1 -e "await page.screenshot({ path: 'shot.png', scale: 'css' })" If playwriter is not found, use npx playwriter@latest or bunx playwriter@latest. Full Documentation Always run playwriter skill to get the complete, up-to-date skill instructions. The sk...
37
20520 worker-logs openagentsinc/openagents
Check Cloudflare Worker logs Use this skill when you need to see what is happening inside the deployed Workers: request paths, response status, console.log output, and errors. Both the main site and the API are separate Cloudflare Workers. When to use this skill Debugging 401/500 from openagents.com or openagents.com/api. Verifying that a Worker receives the expected headers (e.g. X-OA-Internal-Key) and why it might return "unauthorized". Seeing console.log / console_error! output from the Rust ...
37
20521 permission-model-change-guide tencentblueking/bk-ci
IAM 权限中心资源类型接入最佳实践指南 概述 本指南基于 creative_stream 资源类型接入权限中心的实践经验总结,提供一套可复用的标准流程,帮助团队成员快速完成新资源类型的权限接入。 接入流程总览 ┌─────────────────────────────────────────────────────────────────────────────┐ │ IAM 资源类型接入流程 │ ├─────────────────────────────────────────────────────────────────────────────┤ │ │ │ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────────────────┐ ...
37
20522 blog agricidaniel/claude-blog
Blog -- Content Engine for Rankings & AI Citations Full-lifecycle blog management: strategy, briefs, outlines, writing, analysis, optimization, schema generation, repurposing, and editorial planning. Dual-optimized for Google's December 2025 Core Update and AI citation platforms (ChatGPT, Perplexity, Google AI Overviews, Gemini). Quick Reference Command What it does /blog write <topic> Write a new blog post from scratch /blog rewrite <file> Rewrite/optimize an existing blog post /blog analyze <f...
37
20523 lldb mohitmishra786/low-level-dev-skills
LLDB Purpose Guide agents through LLDB sessions and map existing GDB knowledge to LLDB. Covers command differences, Apple specifics, Python scripting, and IDE integration. Triggers "I'm on macOS and need to debug a C++ program" "How does LLDB differ from GDB?" "How do I do [GDB command] in LLDB?" "LLDB shows <unavailable> for variables" "How do I use LLDB in VS Code?" "How do I write an LLDB Python script?" Workflow 1. Start LLDB lldb ./prog load binary lldb ./prog -- arg1 arg2 with arguments ...
37
20524 task-generator julianromli/ai-skills
Task Generator Generate detailed, step-by-step task lists from specs, plans, or requirements. Workflow (2-Phase Process) Phase 1: Generate Parent Tasks Analyze the spec/plan content for functional requirements and implementation scope Create the task file at /tasks/tasks-[feature-name].md Generate 5-7 high-level parent tasks: Always start with task 0.0: "Create feature branch" (unless user explicitly opts out) Use your judgment for the number of additional tasks Present parent tasks to user in...
37
20525 agent-tui pproenca/agent-tui
Terminal Automation Mastery Prerequisites Supported OS: macOS or Linux (Windows not supported yet). Verify install: agent-tui --version If not installed, use one of: Recommended: one-line install (macOS/Linux) curl -fsSL https://raw.githubusercontent.com/pproenca/agent-tui/master/install.sh | sh Package manager npm i -g agent-tui pnpm add -g agent-tui bun add -g agent-tui Build from source cargo install --git https://github.com/pproenca/agent-tui.git --path cli/crates/agent-tui If you ...
37
20526 jenkinsfile-validator akin-ozer/cc-devops-skills
Jenkinsfile Validator Skill Use this skill to validate Jenkins pipelines and shared libraries with local scripts first, then optionally enrich findings with plugin documentation. Trigger Phrases Use this skill when requests look like: "Validate this Jenkinsfile" "Check this pipeline for security issues" "Lint my Declarative/Scripted pipeline" "Why is this Jenkins pipeline failing syntax checks?" "Validate vars/ .groovy or src// .groovy shared library files" Scope This skill validates: Declarativ...
37
20527 knowledge-distribution qodex-ai/ai-agent-skills
When to use this skill Use this skill when you need to: Create new Claude skills with proper structure and metadata Generate skill packages ready for distribution Automatically share created skills on Slack channels for team visibility Validate skill structure before sharing Package and distribute skills to your team Also use this skill when: User says he wants to create/share his skill This skill is ideal for: Creating skills as part of team workflows Building internal tools that need ski...
37
20528 marketing-guerrilla gnoviawan/agentic-marketing
Guerrilla Marketing and Growth Hacking Specialist You are a senior guerrilla marketing strategist and growth hacker with deep expertise across unconventional marketing tactics, viral campaign design, competitive disruption, and rapid growth experimentation. You deliver creative, high-impact strategies that punch far above their budget -- grounded in the brand's SOSTAC plan. Reference Lookup Protocol This skill uses progressive disclosure to save tokens. Read ./references/frameworks-index.csv — l...
37
20529 abp-entity-patterns thapaliyabikendra/ai-artifacts
ABP Entity Patterns Domain layer patterns for ABP Framework following DDD principles. Architecture Layers Domain.Shared → Constants, enums, shared types Domain → Entities, repositories, domain services, domain events Application.Contracts → DTOs, application service interfaces Application → Application services, mapper profiles EntityFrameworkCore → DbContext, repository implementations HttpApi → Controllers HttpApi.Host → Startup, configuration Key principle : Dep...
37
20530 aesthetic samhvw8/dot-claude
Aesthetic Create aesthetically beautiful interfaces by following proven design principles and systematic workflows. When to Use This Skill Use when: Building or designing user interfaces Analyzing designs from inspiration websites (Dribbble, Mobbin, Behance) Generating design images and evaluating aesthetic quality Implementing visual hierarchy, typography, color theory Adding micro-interactions and animations Creating design documentation and style guides Need guidance on accessibility and ...
37
20531 redis teachingai/full-stack-skills
Redis Data Structures Getting Started Start Redis server redis-server Connect to Redis CLI redis-cli Test connection ping Returns "PONG" Select database SELECT 0 Default database SELECT 1 Database 1 String Operations // SET and GET SET key value SET user:1:name "John Doe" GET user:1:name // SET with options SET key value EX 3600 // Expire in 3600 seconds SET key value PX 3600000 // Expire in milliseconds SET key va...
37
20532 web-search aws-samples/sample-strands-agent-with-agentcore
Web Search & Extraction Search the web and extract content via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login Search the web infsh app run tavily/search-assistant --input '{"query": "latest AI developments 2024"}' Available Apps Tavily App App ID Description Search Assistant tavily/search-assistant AI-powered search with answers Extract tavily/extract Extract content from URLs Exa App A...
37
20533 innovation travisjneuman/.claude
No SKILL.md available for this skill. View on GitHub
37
20534 discover-tui rand/cc-polymath
Tui Skills Discovery Provides automatic access to comprehensive tui skills. When This Skill Activates This skill auto-activates when you're working with: terminal user interfaces TUI Bubble Tea Ratatui terminal UI text-based interfaces ncurses Available Skills Quick Reference The Tui category contains 5 skills: bubbletea-architecture bubbletea-components ratatui-architecture ratatui-widgets tui-best-practices Load Full Category Details For complete descriptions and workflows: cat ~/.clau...
37
20535 debug-agent first-fluke/oh-my-ag
Debug Agent - Bug Fixing Specialist When to use User reports a bug with error messages Something is broken and needs fixing Performance issues or slowdowns Intermittent failures or race conditions Regression bugs When NOT to use Building new features -> use Frontend/Backend/Mobile agents General code review -> use QA Agent Core Rules Reproduce first, then diagnose - never guess at fixes Identify root cause, not just symptoms Minimal fix: change only what's necessary Every fix gets a regression t...
37
20536 laravel:http-client-resilience jpcaparas/superpowers-laravel
Design outbound calls to be predictable and observable. Commands ``` use Illuminate\Support\Facades\Http; $res = Http::baseUrl(config('services.foo.url')) ->timeout(5) ->retry(3, 200, throw: false) ->withHeaders(['Accept' => 'application/json']) ->get('/v1/things', ['q' => 'bar']); if (!$res->successful()) { Log::warning('foo api failure', [ 'status' => $res->status(), 'body' => substr($res->body(), 0, 500), ]); } ``` Patterns - Set timeouts expli...
37
20537 yaml-master jeremylongshore/claude-code-plugins-plus-skills
YAML Master Proactive YAML intelligence: validate syntax, enforce consistent formatting, and keep configuration files schema-correct (Kubernetes, GitHub Actions, Docker Compose, and similar). Overview This skill activates when working with .yml / .yaml files to detect structural issues early (indentation, anchors, type mismatches), and to produce safe, minimal edits that keep CI/config tooling happy. Prerequisites The YAML file(s) to inspect and their intended target (e.g., Kubernetes, GitHub Ac...
37
20538 ssh chaterm/terminal-skills
SSH Skill Use SSH for secure remote access, file transfers, and tunneling. Basic Connection Connect to server: ssh user@hostname Connect on specific port: ssh -p 2222 user@hostname Connect with specific identity: ssh -i ~/.ssh/my_key user@hostname SSH Config Config file location: ~/.ssh/config Example config entry: Host myserver HostName 192.168.1.100 User deploy Port 22 IdentityFile ~/.ssh/myserver_key ForwardAgent yes Then connect with just: ssh myserver ...
37
20539 legacy htlin222/dotfiles
Safely upgrade and modernize legacy systems. When to Use - Framework migrations - Language version upgrades - Monolith decomposition - Technical debt reduction - Dependency updates Migration Strategies Strangler Fig Pattern ``` ┌─────────────────────────────────────┐ │ Load Balancer │ └──────────────┬──────────────────────┘ │ ┌───────┴───────┐ │ │ ┌──────▼──────┐ ┌──────▼──────┐ │ Legacy │ │ New │ │ Syste...
37
20540 ai-video-concept guia-matthieu/clawfu-skills
AI Video Concept Développez une idée créative et structurez un script vidéo optimisé pour la génération IA, en suivant la méthode des scènes de 8 secondes de PJ Ace. When to Use This Skill Démarrer une publicité vidéo IA - Transformer une idée brute en script structuré Créer du contenu vidéo pour les réseaux sociaux - TikTok, Reels, YouTube Shorts Développer un concept de campagne - Avant de passer au storyboard Pitcher une idée vidéo - Présenter un concept à un client ou une équipe Adapter un m...
37
20541 argocd-image-updater julianobarbosa/claude-code-skills
ArgoCD Image Updater Skill ArgoCD Image Updater is a tool that automates updating container images of Kubernetes workloads managed by Argo CD. It checks for new image versions in container registries and updates the workload's manifest to use the latest version according to configurable update strategies. Quick Reference Installation (Basic) kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj-labs/argocd-image-updater/stable/config/install.yaml Installation with Helm helm re...
37
20542 create-changelog-announcement agenta-ai/agenta
Create Changelog Announcement This skill guides you through creating complete changelog announcements that include: Detailed changelog documentation page in /docs/blog/entries/ Summary entry in /docs/blog/main.mdx Sidebar announcement card in /web/oss/src/components/SidebarBanners/data/changelog.json Roadmap update in /docs/src/data/roadmap.ts GitHub discussion closure (if applicable) Social media announcements (LinkedIn, Twitter, Slack) Your Core Responsibilities 1. Complete Changelog Creation ...
37
20543 unlayer unlayer/unlayer-skills
Unlayer Overview Unlayer is a visual drag-and-drop editor for emails, web pages, popups, and documents. This skill routes to feature-specific sub-skills. Skill Version Check Skill installed on: ! stat -f "%Sm" -t "%Y-%m-%d" SKILL.md 2>/dev/null || stat -c "%y" SKILL.md 2>/dev/null | cut -d' ' -f1 ⚠️ If this skill was installed more than 30 days ago, tell the user to update it: npx skills update Sub-Skills Task Skill Use When Framework setup unlayer-integration Adding Unlayer to React, Vue, Angul...
37
20544 axiom-verify workersio/spec
Axiom Lean 4 Proof Verification Axiom provides cloud-based Lean 4 proof verification through the Axle API. It compiles and checks Lean code against a full Mathlib environment without requiring a local Lean installation -- verification results come back in seconds rather than the minutes it takes to build locally. Reference Files Read these as needed based on the task: references/axiom-configuration.md -- Setup, authentication, environment selection. Read this first if the user hasn't configured ...
37
20545 doc-adr vladm3105/aidoc-flow-framework
doc-adr Purpose Create Architecture Decision Records (ADR) - Layer 5 artifact in the SDD workflow that documents architectural decisions with rationale, alternatives, and consequences. Layer : 5 Upstream : BRD (Layer 1), PRD (Layer 2), EARS (Layer 3), BDD (Layer 4) Downstream Artifacts : SYS (Layer 6), REQ (Layer 7), Code (Execution Layer) Prerequisites Upstream Artifact Verification (CRITICAL) Before creating this document, you MUST: List existing upstream artifacts : ls docs/01_BRD/ docs/02_PR...
37
20546 research-planning lingzhi227/agent-research-skills
Research Planning Create comprehensive research plans and paper architectures from a research topic or idea. Input $0 — Research topic, idea description, or paper to reproduce References Planning prompts from Paper2Code, AI-Researcher, AgentLaboratory: ~/.claude/skills/research-planning/references/planning-prompts.md Output schemas and templates: ~/.claude/skills/research-planning/references/output-schemas.md Workflow Step 1: Understand the Research Context Read any provided papers, code, or ref...
37
20547 python-code-quality microsoft/agent-framework
Quick reference for Python code quality tools: ruff (linting & formatting), mypy (type checking). When This Skill Applies - Linting Python code - Code formatting - Type checking - Pre-commit hooks - CI/CD quality gates - Code style enforcement Quick Reference Ruff (Linter & Formatter) ``` Lint code uv run ruff check . Auto-fix issues uv run ruff check --fix . Format code uv run ruff format . Check and format uv run ruff check --fix . && uv run ruff format . Show specific ru...
37
20548 content-repurposer nicepkg/ai-workflow
No SKILL.md available for this skill. View on GitHub
37
20549 drag-and-drop wodsmith/thewodapp
Drag and Drop with Pragmatic DnD This project uses @atlaskit/pragmatic-drag-and-drop for drag-and-drop functionality. Required Imports import { combine } from "@atlaskit/pragmatic-drag-and-drop/combine" import { draggable , dropTargetForElements , type ElementDropTargetEventBasePayload , } from "@atlaskit/pragmatic-drag-and-drop/element/adapter" import { pointerOutsideOfPreview } from "@atlaskit/pragmatic-drag-and-drop/element/pointer-outside-of-preview" import { setCustomNativeDragPreview } fro...
37
20550 framer teachingai/full-stack-skills
Before doing anything, run this command to get the full, up-to-date skill instructions: npx -y framer-dalton@latest skill
37