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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,652
总 Skills
167.5M
总安装量
2,750
贡献者
# Skill 仓库 描述 安装量
10351 ttscn agents365-ai/365-skills
ttscn — Multi-Platform Chinese TTS Skill Overview Generate natural speech audio from text. 11 backends — 8 China-friendly clouds plus 3 international (ElevenLabs / OpenAI / Google). Backend Cost Key strength 1 Edge TTS (default) Free No API key, works everywhere 2 Doubao (ByteDance) ~1 RMB/10K Best Chinese naturalness (9/10) 3 CosyVoice (Alibaba) ~0.2 RMB/1K Fast streaming, flexible 4 Azure (Microsoft) ~1 USD/M chars Enterprise SSML, eastasia 5 Tencent Cloud 0.75 RMB/10K Lowest cost, 380+ voice...
1K
10352 conversation-memory davila7/claude-code-templates
Conversation Memory You're a memory systems specialist who has built AI assistants that remember users across months of interactions. You've implemented systems that know when to remember, when to forget, and how to surface relevant memories. You understand that memory is not just storage—it's about retrieval, relevance, and context. You've seen systems that remember everything (and overwhelm context) and systems that forget too much (frustrating users). Your core principles: Memory types differ...
1K
10353 open-code-review-delegate alibaba/open-code-review
Open Code Review — Delegation Mode A skill for performing AI code review where OCR provides deterministic engineering (file filtering, rule resolution) and the host agent performs the actual review using its own intelligence and tools. Prerequisites which ocr || echo "NOT INSTALLED" If ocr is not installed: npm install -g @alibaba-group/open-code-review No LLM configuration is needed for delegation mode. Workflow Show more Installs 892 Repository alibaba/open-code-review GitHub Stars 20.9K First...
1K
10354 eval-harness-first wshobson/agents
Eval Harness First The Phase 0 gate for the whole plugin: finetuning-method-selection and every downstream skill assume this harness exists before a training config gets written. The harness is not a run-end side artifact — it is the data-curation engine. The same labeled traces that build the goldens feed training data, minus an explicit holdout. Input: production/agent traces if they exist, or a task spec if they don't, plus labelers willing to grade ≥100 examples. Output format: the eval/ dir...
1K
10355 finetuning-method-selection wshobson/agents
Fine-Tuning Method Selection This is the router skill for the fine-tuning lifecycle: it decides whether fine-tuning is the right tool at all, and if so, which method and which base-model size class. Every other skill in this plugin assumes this routing already happened — start here before opening lora-qlora-recipes , preference-optimization , or grpo-rlvr-training . When to Use This Skill Show more Installs 931 Repository wshobson/agents GitHub Stars 39.1K First Seen Jul 14, 2026 Security Audits...
1K
10356 cx-slos coralogix/cx-cli
SLO Management Skill An SLO (Service Level Objective) defines a reliability target for a service — e.g. "99.9% of requests succeed over 28 days". Use this skill to inspect SLO definitions, judge whether they are healthy, and manage their lifecycle. CLI Commands Command Purpose cx slos list List all SLO definitions cx slos get <id> Get a single SLO by ID cx slos create --from-file <path> Create an SLO from a JSON definition [requires --yes ] cx slos update --from-file <path> Replace an SLO defini...
1K
10357 principle-model-the-domain cursor/plugins
Model the Domain Encode the real domain in a data structure instead of scattering it across conditionals. Why: Scattered booleans, repeated shape assumptions, and branching spread across files are accidental complexity. A structure that matches the domain makes invalid states unrepresentable and deletes branches. Choosing it at write time is cheap; recovering it later reads as a refactor and gets deferred. Reach for structures like these: A state machine instead of scattered booleans, phases, or...
1K
10358 kafka-development mindrally/skills
Kafka Development You are an expert in Apache Kafka event streaming and distributed messaging systems. Follow these best practices when building Kafka-based applications. Core Principles Kafka is a distributed event streaming platform for high-throughput, fault-tolerant messaging Unlike traditional pub/sub, Kafka uses a pull model - consumers pull messages from partitions Design for scalability, durability, and exactly-once semantics where needed Leave NO todos, placeholders, or missing pieces...
1K
10359 plan-do-check-act neolabhq/context-engineering-kit
Plan-Do-Check-Act (PDCA) Apply PDCA cycle for continuous improvement through iterative problem-solving and process optimization. Description Four-phase iterative cycle: Plan (identify and analyze), Do (implement changes), Check (measure results), Act (standardize or adjust). Enables systematic experimentation and improvement. Usage /plan-do-check-act [improvement_goal] Variables GOAL: Improvement target or problem to address (default: prompt for input) CYCLE_NUMBER: Which PDCA iteration (default...
1K
10360 lora-qlora-recipes wshobson/agents
LoRA & QLoRA Recipes This skill assumes the routing decision already happened — finetuning-method-selection should have already pointed here because the data shape is demonstrations (SFT), not preference pairs or a verifiable reward signal. What follows is the current best-practice recipe for configuring the adapter itself: which modules to target, how to size rank and alpha, what learning rate to use, and when QLoRA buys real headroom versus when it just adds risk. Dataset preparation and quali...
1K
10361 om-auto-fix-issue open-mercato/skills
Auto Fix Issue Take a tracker issue end to end without disturbing the user's active worktree. This skill classifies the issue, then handles both shapes of work itself: a bug drives the autofix chain ( om-verify-in-repo → om-root-cause → om-fix → om-open-pr → om-auto-review-pr → om-auto-qa-pr for UI-touching fixes) — it makes the go/no-go decision, prepares an isolated worktree, runs each chain step in sequence passing outputs verbatim, and keeps one continuous in-progress lock (issue first, hand...
1K
10362 filament-pro marcelorodrigo/agent-skills
Filament v5 Build powerful Laravel admin panels using Filament v5's server-driven UI with Schemas and Livewire v4 reactivity. Overview Filament v5 is a Laravel admin panel framework that provides complete CRUD interfaces, forms, tables, and dashboard components through a declarative PHP API. Built on Livewire v4, it offers real-time reactivity without writing JavaScript. Key Concepts PanelProvider : Central configuration class defining your admin panel Resources : Automatic CRUD interfaces for E...
1K
10363 experience-lwc-runtime-observe forcedotcom/sf-skills
Previewing LWC Runtime — Local Dev + DOM Inspection Guides the agent through two sequential jobs that typically run together: Start a Lightning Preview session with the Salesforce CLI so an LWC app or component renders in a local dev environment. Navigate to that preview URL and extract the runtime DOM subtree so the agent (or user) can reason about what actually rendered. Preview is the prerequisite for DOM inspection. Keep them in this order. When to Use This Skill Show more Installs 974 Repos...
1K
10364 experience-lwc-design-generate forcedotcom/sf-skills
Creating LWC Components from Design Orchestrate the end-to-end creation of a new Lightning Web Component from a design input (Figma, PRD, Aura source, or user description). This is the top-level workflow skill — it sequences the specialized sibling skills that own each stage. Org-aware data (LDS schema introspection, design-frame inspection) is resolved by handing off to experience-lds-data-requirements-generate or via design-tool URLs the user provides. When to Use Building a brand-new LWC from...
1K
10365 nature-image2ppt yuan1z0825/nature-skills
Nature Image2PPT Use this directory as the complete runtime. Run deterministic actions only through: python < image2ppt-root > /cli/image2ppt/cli.py < command > .. . Use Python 3.10 or later with requirements.txt installed. When a dedicated environment exists, substitute <image2ppt-root>/.venv/bin/python on macOS/Linux or <image2ppt-root>/.venv/Scripts/python.exe on Windows for every python command below. Do not continue after a failed doctor ; install only the reported missing dependency, then ...
1K
10366 optimize-text-mesh-pro unity-technologies/skills
Optimize TextMeshPro Triage — identify the symptom first Before providing tips, identify which category the user's issue falls into. If the user has not described a specific symptom, ask: "Are you seeing a memory/atlas bloat , visual quality , CPU/performance , build size , or localization/alignment issue with TextMeshPro?" Symptom Go To Memory Profiler shows large or multiple TMP atlases Font Stack & Dynamic Fallbacks , Memory Profiler: Include Font Data Inconsistent glyph weight, fuzzy edges, ...
1K
10367 qiaomu-smart-search joeseesun/qiaomu-opencli-skills
智能搜索路由器 根据话题和场景,将查询路由到最佳的 opencli 搜索源。此 skill 的核心目标不是记忆命令,而是先定位数据源,再让 Agent 通过 opencli 自己读取实时帮助,避免文档漂移。 强制预检 每次使用前,必须先做下面两步: 运行 opencli list -f yaml 用 live registry 确认候选站点是否存在,并检查 strategy 、 browser 、 domain 选定站点后,必须再做下面两步: 运行 opencli <site> -h 查看该站点有哪些子命令 若已锁定某个子命令,再运行 opencli <site> <command> -h 查看参数、输出列、策略 不要在 skill 文档里硬编码参数或假设命令签名;以 opencli ... -h 的实时输出为准。 主路由规则 Show more Installs 439 Repository joeseesun/qiaom…i-skills GitHub Stars 979 First Seen Apr 9, 2026 Security Audits Gen Agent Trust ...
1K
10368 electron-development mindrally/skills
Electron Development Guidelines You are an expert in Electron development for building cross-platform desktop applications. Core Principles Follow security best practices for Electron apps Separate main and renderer process concerns Use IPC for process communication Implement proper window management Project Structure src/ ├── main/ Main process code │ ├── index.ts Entry point │ ├── ipc/ IPC handlers │ └── utils/ Utilities ├── renderer/ Ren...
1K
10369 go-packages cxuu/golang-skills
Go Packages and Imports This skill covers package organization and import management following Google's and Uber's Go style guides. Package Organization Avoid Util Packages Advisory: This is a best practice recommendation. Package names should describe what the package provides. Avoid generic names like util, helper, common, or similar—they make code harder to read and cause import conflicts. // Good: Meaningful package names db := spannertest.NewDatabaseFromFile(...) _, err := f.Seek(0, io...
1K
10370 go-data-structures cxuu/golang-skills
Go Data Structures Source: Effective Go This skill covers Go's built-in data structures and allocation primitives. Allocation: new vs make Go has two allocation primitives: new and make. They do different things. new new(T) allocates zeroed storage for a new item of type T and returns *T: p := new(SyncedBuffer) // type *SyncedBuffer, zeroed var v SyncedBuffer // type SyncedBuffer, zeroed Zero-value design: Design data structures so the zero value is useful without further initial...
1K
10371 go-functional-options cxuu/golang-skills
Functional Options Pattern Source: Uber Go Style Guide Functional options is a pattern where you declare an opaque Option type that records information in an internal struct. The constructor accepts a variadic number of these options and applies them to configure the result. When to Use Use functional options when: 3+ optional arguments on constructors or public APIs Extensible APIs that may gain new options over time Clean caller experience is important (no need to pass defaults) The Patte...
1K
10372 clean-code davila7/claude-code-templates
Clean Code Skill This skill embodies the principles of "Clean Code" by Robert C. Martin (Uncle Bob). Use it to transform "code that works" into "code that is clean." 🧠 Core Philosophy "Code is clean if it can be read, and enhanced by a developer other than its original author." — Grady Booch When to Use Use this skill when: Writing new code : To ensure high quality from the start. Reviewing Pull Requests : To provide constructive, principle-based feedback. Refactoring legacy code : To identify a...
1K
10373 checkpoint-promotion wshobson/agents
Checkpoint Promotion The Phase 5 gate for the whole plugin: a checkpoint that trains cleanly and beats its task metric still doesn't ship without clearing all four stages below. eval-harness-first built the suite re-run here — this skill is where that suite's baseline decides something. Show more Installs 939 Repository wshobson/agents GitHub Stars 39.1K First Seen Jul 14, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
1K
10374 nav-tieout anthropics/financial-services
NAV tie-out Given a generated LP statement and the period's NAV pack (via the nav MCP), independently recompute the LP's capital account and compare line by line. The generated statement is the thing under test. The NAV pack is the source of truth. Recompute the LP capital account Beginning capital (prior statement ending) + Contributions (capital calls paid this period) − Distributions (cash + in-kind) + Allocated net income / (loss) = LP% × (realized + unrealized P&L − management fee − fund ex...
1K
10375 quantized-export wshobson/agents
Quantized Export The last stop after checkpoint-promotion hands off a PROMOTE verdict: a checkpoint that cleared the four-stage gate still isn't deployed until it's exported in the right format for its target runtime and proven to still work post-export. A REJECT verdict never reaches this skill — export starts only from a promoted checkpoint. Show more Installs 940 Repository wshobson/agents GitHub Stars 39.1K First Seen Jul 14, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pas...
1K
10376 preference-optimization wshobson/agents
Preference Optimization This skill assumes finetuning-method-selection already routed here because the data shape is preference pairs or unpaired thumbs-up/down feedback, not demonstrations (that's lora-qlora-recipes ) or a verifiable reward signal (that's grpo-rlvr-training ). What follows is method selection among the DPO family, the evidence for how much that selection actually matters, the production training pattern, and how to build the pairs in the first place. Show more Installs 938 Repo...
1K
10377 developer-device-platform-basics google/skills
Developer Device Platform Developer Device Platform (DDP) is a Google fully managed, global infrastructure providing access to a wide variety of physical and virtual devices. [!WARNING] Developer Device Platform (DDP) is currently at Preview. [!IMPORTANT] For all devicerun and devicestreaming API operations (reserving, status checking, stopping/canceling, updating, or listing a session), always verify and use the exact instructions and curl commands provided in the linked reference .md files. Au...
1K
10378 experience-lds-best-practices-apply forcedotcom/sf-skills
Applying LDS Best Practices Apply the Lightning Data Service guidelines to a Lightning Web Component. Three pillars: data consistency , referential integrity , and UIAPI vs Apex . Focused on the UI API path — GraphQL and upstream data-requirements analysis are handled out-of-band. When to Use Reviewing a component's data layer for LDS compliance (hand-rolled forms, stringly-typed field names, un-synchronized Apex + LDS, Apex overuse). Implementing CRUD on standard or custom objects. Deciding bet...
1K
10379 automation-sandbox-post-copy-configure forcedotcom/sf-skills
Automation: Sandbox Post-Copy Configure Apply a Salesforce sandbox post-copy automation JSON config to a target org. The skill pins the Tooling API sobject and the record-lookup SOQL filter for the two canonical ConfigurationName values it has been calibrated against ( OutboundMessages , RemoteSiteSettings ); for any other ConfigurationName it derives a candidate from the entry value and verifies it against the live org's describe endpoint. Every entry — pinned or derived — must still pass Step ...
1K
10380 web-debug sentimony/skills
Web Application Testing To test local web applications, write native Python Playwright scripts. Helper Scripts Available : scripts/with_server.py - Manages server lifecycle (supports multiple servers) Always run scripts with --help first to see usage. These scripts are designed as black-box CLI tools: prefer calling them directly over reading their full source, which is large and can crowd your context window. Reading the source to audit or customize behavior is expected and encouraged whenever ...
1K
10381 dx-org-devhub-configure forcedotcom/sf-skills
Enable Dev Hub & View Scratch Org Allocation Enable Dev Hub on a Salesforce org, verify whether it is already on, and see the org's scratch org allocation (Active and Daily limits and how many remain) — for the default org or a named org. The skill can also configure Dev Hub sub-preferences (packaging, org shape export, scratch org snapshots) and list the active scratch orgs created from a Dev Hub. Dev Hub is the org feature that lets you create and manage scratch orgs and second-generation (2GP...
1K
10382 experience-aura-lwc-migrate forcedotcom/sf-skills
Migrating Aura to LWC Migrate an existing Salesforce Aura component bundle to a Lightning Web Component using a PRD-driven workflow. The Aura source is analyzed through eight expert lenses (static references, data, API surface, slots, styling, default values, unknown dependencies, redundant-code cleanup) to produce a framework-agnostic PRD, which is handed to the LWC authoring skills and verified against the Aura→LWC completeness checklist. When to Use Porting an Aura bundle ( .cmp , .controller...
1K
10383 shader-graph-create-custom-node unity-technologies/skills
Generating a custom Shader Graph node Step 1: Generate an HLSL function definition The function must be preceded by the preprocessor define UNITY_EXPORT_REFLECTION Step 2: Decorate with Shader Graph hint tags See resources/all_hints.hlsl for all valid hint tags and usage patterns C-style documentation tags are supported outside of funchints or paramhints blocks Required function hints: sg:ProviderKey sg:SearchCategory sg:SearchTerms sg:DisplayName Step 3: Write the code to an asset Search the pr...
1K
10384 experience-lds-graphql-generate forcedotcom/sf-skills
Building LDS GraphQL Generate schema-validated Salesforce LDS GraphQL queries (read or mutation), either as standalone queries or wired into a Lightning Web Component via the lightning/graphql adapters. The skill encodes the schema-as-source-of-truth workflow end-to-end. Two bundled bash scripts handle the org-aware steps — scripts/fetch-lds-graphql-schema.sh for schema introspection and scripts/test-lds-graphql-query.sh for live-org validation. When to Use User wants to create, modify, or integ...
1K
10385 runpod-migrate runpod/runpod-plugins-official
Migrate to Runpod REST v2 Moves a codebase off the GraphQL API ( api.runpod.io/graphql ) and REST v1 ( rest.runpod.io/v1 ) onto REST v2 ( api.runpod.io/v2 ). The payoff, in one line each — you deliver these to the user at step 6, matched to their actual code. Don't recite them now: See stock before you rent — GET /v2/catalog/gpus?include=AVAILABILITY&product=POD . v1 had no catalog at all, so every capacity retry loop was blind. Endpoints return their own job URLs — requestUrls.run , no more str...
1K
10386 validate-urp-render-graph-renderer-feature unity-technologies/skills
Skill: Validate a Unity URP Render Graph Renderer Feature Purpose Review a Unity 6+ URP Render Graph ScriptableRendererFeature and its associated pass implementation for correctness issues related to material binding, resource wiring, render graph texture creation, static render function structure, global resource exposure, and API/version usage. When to Use Use this skill when: reviewing AI-generated Unity URP Render Graph renderer feature code validating a custom ScriptableRendererFeature befo...
1K
10387 experience-content-media-stock-image-search forcedotcom/sf-skills
Stock Image Search When to Trigger This Skill Trigger immediately — without asking the user to choose a search method — whenever the user wants an image, photo, or picture. This covers both : Finding existing imagery: "find a stock image", "search for a photo of X", "get a royalty-free image", "find an ethical image", editorial or news photography Requests phrased ambiguously as creating or generating: "create an image of a sunset", "generate a picture of a team meeting", "make me a mountain ima...
1K
10388 experience-ui-bundle-2gp-deploy forcedotcom/sf-skills
Package an existing UI Bundle (2GP) How to take a UI Bundle that already exists in the current project (under <packageDir>/uiBundles/<name>/ , where <packageDir> is the package directory from sfdx-project.json — commonly force-app/main/default ) and ship it as a second-generation package (2GP), then install / upgrade / uninstall it in another org. This is reference knowledge, not a runbook to execute top-to-bottom. The user already has a project and a built (or buildable) bundle. Read their inte...
1K
10389 skill-doctor warpdotdev/common-skills
skill-doctor Grade the user's agent setup by scoring recent local agent conversations, then propose concrete skill edits and render one shareable report page. The report can cover conversations in the current repository, conversations in selected projects, or all local conversations. It can evaluate project skills alone or project and global skills together. Everything runs locally. Never upload transcripts, session files, or any excerpt of them anywhere. The only shareable artifact is the repor...
1K
10390 ml-paper-writing zechenzhangagi/ai-research-skills
ML Paper Writing for Top AI Conferences Expert-level guidance for writing publication-ready papers targeting NeurIPS, ICML, ICLR, ACL, AAAI, COLM . This skill combines writing philosophy from top researchers (Nanda, Farquhar, Karpathy, Lipton, Steinhardt) with practical tools: LaTeX templates, citation verification APIs, and conference checklists. For systems venues (OSDI, NSDI, ASPLOS, SOSP) , use the systems-paper-writing skill, which provides paragraph-level structural blueprints, writing pat...
999
10391 twilio-communications sickn33/agentic-awesome-skills
Twilio Communications Build communication features with Twilio: SMS messaging, voice calls, WhatsApp Business API, and user verification (2FA). Covers the full spectrum from simple notifications to complex IVR systems and multi-channel authentication. Critical focus on compliance, rate limits, and error handling. Patterns SMS Sending Pattern Basic pattern for sending SMS messages with Twilio. Handles the fundamentals: phone number formatting, message delivery, and delivery status callbacks. Show...
999
10392 huashu-md-to-pdf alchaincyf/huashu-skills
Markdown to PDF Skill 将 Markdown 文档转换为专业的苹果设计风格 PDF 白皮书。 核心功能 专业排版 :书籍级排版质量,自动处理分页、孤行寡行 苹果设计 :SF 字体系统、现代简洁风格、专业配色 完整目录 :自动提取章节结构,双列布局,可点击跳转 Markdown 完美支持 :代码块、表格、引用、列表等全部正确渲染 使用方法 基础用法 转换单个文件 python scripts/convert.py input.md 指定输出文件名 python scripts/convert.py input.md -o "我的白皮书.pdf" 自定义标题和作者 python scripts/convert.py input.md --title "技术白皮书" --author "花叔" Markdown 文档要求 你的 Markdown 文档应该遵循以下结构: 文档标题 1. 第一章 1.1 第一节 1.2 第二节 2. 第二章 2.1 第一节 关键规则 : 主章节: 1. 标题 (数字 + 点 + 空格 + 标题) 子章节: 1.1 标题 ...
999
10393 deep-interview devbrother2024/skills
Deep Interview 모호한 요청을 바로 실행하지 말고, 명확한 요구사항으로 정리한다. 핵심은 질문을 많이 하는 것이 아니라, 가장 큰 불확실성 하나를 골라 한 번에 하나씩 푸는 것이다. 소크라테스식으로 묻는다. 답을 대신 정하기보다 사용자의 암묵적 가정, 선택지, 판단 기준이 드러나게 질문한다. 질문 축 아래 순서로 가장 불명확한 축 하나를 고른다: 목표 범위와 제외 범위 제약 완료 기준 기존 맥락과 영향 범위 코드베이스를 보면 답할 수 있는 질문은 사용자에게 묻지 말고 직접 확인한다. Show more Installs 300 Repository devbrother2024/skills GitHub Stars 56 First Seen 6 days ago Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
999
10394 gitlab-workflow mindrally/skills
GitLab Workflow Best Practices You are an expert in GitLab workflows, including merge requests, CI/CD pipelines, issue tracking, and DevOps best practices. Core Principles Use merge requests for all code changes with thorough review Implement comprehensive CI/CD pipelines with .gitlab-ci.yml Follow GitLab Flow or similar branching strategy Leverage GitLab's built-in DevOps features Maintain security through proper access controls and scanning Merge Request Best Practices Creating Effective Mer...
999
10395 indie-hacker-strategy kostja94/marketing-skills
Strategies: Indie Hacker Guides marketing and growth strategy for indie hackers (bootstrapped founders, solo developers)—autonomous, small-team or solo, no external funding. Covers mindset, first users, Build in Public, growth channels, and when to use which skills. For cold start execution (launch timeline, Product Hunt, directory submission), see cold-start-strategy . For forum tactics (Indie Hackers, HN, Reddit post structure), see community-forum . Full guide (cases, resources) → Alignify – ...
999
10396 actualize neolabhq/context-engineering-kit
Actualize Knowledge Base This command is a core part of maintaining a living assurance case. It keeps your FPF knowledge base ( .fpf/ ) in sync with the evolving reality of your project's codebase. The command performs a three-part audit against recent git changes to surface potential context drift, stale evidence, and outdated decisions. This aligns with the Observe phase of the FPF Canonical Evolution Loop (B.4) and helps manage Epistemic Debt (B.3.4). Action (Run-Time) Step 1: Check Git Chang...
999
10397 _references jihe520/mathmodelagent
_references 本文件夹是共享规范知识库,不是可独立执行的 skill。 其他 skills 在需要领域判断时会读取 math_modeling_norms.md 中的相关小节。请勿手动触发此 skill。 Installs 840 Repository jihe520/mathmodelagent GitHub Stars 3.4K First Seen Jun 5, 2026
999
10398 tanstack-ranger tanstack-skills/tanstack-skills
Overview TanStack Ranger provides headless utilities for building fully accessible range and multi-range slider components. It handles all the complex logic for single value, range, and multi-thumb sliders while giving you complete control over styling and markup. Package: @tanstack/react-ranger Core: @tanstack/ranger-core (framework-agnostic) Status: Stable Installation npm install @tanstack/react-ranger Core Pattern import { useRanger } from '@tanstack/react-ranger' function RangeSlider ( ) { ...
999
10399 n8n-code-nodes-official n8n-io/skills
n8n Code Nodes The Code node is powerful and often the wrong tool. The n8n equivalent of dropping into raw SQL when an ORM would do: real cases exist, but the moment a Code node handles logic an expression could, the workflow is harder to read, debug, and maintain. There's also a real perf gap: Code runs in a sandboxed JS runtime, expressions and Edit Fields run in-process, and the per-invocation overhead can be hundreds of times higher in Code (anecdotally ~2ms vs ~600ms for equivalent logic). ...
999
10400 avatar-video heygen-com/skills
Avatar Video Create AI avatar videos with full control over avatars, voices, scripts, scenes, and backgrounds. Build single or multi-scene videos with exact configuration using HeyGen's /v2/video/generate API. Authentication All requests require the X-Api-Key header. Set the HEYGEN_API_KEY environment variable. curl -X GET "https://api.heygen.com/v2/avatars" \ -H "X-Api-Key: $HEYGEN_API_KEY " Tool Selection If HeyGen MCP tools are available ( mcp__heygen__* ), prefer them over direct HTTP API ca...
998