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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,744
总 Skills
97.4M
总安装量
2,592
贡献者
# Skill 仓库 描述 安装量
24651 go-table-driven-tests tigrisdata/skills
Go Table-Driven Tests Use this skill when writing or modifying Go table-driven tests. It ensures tests follow established patterns. Core Principles One test function, many cases - Define test cases in a slice and iterate with t.Run() Explicit naming - Each case has a name field that becomes the subtest name Structured inputs - Use struct fields for inputs, expected outputs, and configuration Helper functions - Use t.Helper() in test helpers for proper line reporting Environment guards - Skip int...
34
24652 data-normalization-tool jeremylongshore/claude-code-plugins-plus-skills
Data Normalization Tool Purpose This skill provides automated assistance for data normalization tool tasks within the ML Training domain. When to Use This skill activates automatically when you: Mention "data normalization tool" in your request Ask about data normalization tool patterns or best practices Need help with machine learning training skills covering data preparation, model training, hyperparameter tuning, and experiment tracking. Capabilities Provides step-by-step guidance for data no...
34
24653 overfull-hbox letta-ai/skills
Overfull Hbox Fix with Constrained Synonyms This skill provides guidance for fixing LaTeX overfull hbox warnings by replacing words with shorter synonyms, while strictly adhering to a predefined list of allowed replacements. Problem Overview Overfull hbox warnings occur when LaTeX cannot fit text within the specified line width. The solution involves replacing words with shorter synonyms, but with a critical constraint: only words explicitly listed in a synonyms file may be replaced, and they ma...
34
24654 zotero shoei05/claude-code-zotero-skill
Zotero API Skill Zotero のローカル HTTP サーバー( localhost:23119 )および REST API( api.zotero.org )経由で文献管理操作を行う。 前提条件 ローカル API(Zotero 起動中のみ) Zotero が起動中で、以下の設定が有効であること: Zotero > 環境設定 > 詳細 > 「Allow other applications on this computer to communicate with Zotero」にチェック 接続確認: curl -s http://localhost:23119/connector/ping REST API(クラウド操作) 環境変数が設定されていること: ZOTERO_API_KEY : API キー( https://www.zotero.org/settings/keys で作成) ZOTERO_USER_ID : ユーザー ID 接続確認: curl -s -H "Zotero-API-Key: $ZOTERO_API_KEY " "https://api.zot...
34
24655 openai-responses ovachiever/droid-tings
OpenAI Responses API Status: Production Ready Last Updated: 2026-01-21 API Launch: March 2025 Dependencies: openai@6.16.0 (Node.js) or fetch API (Cloudflare Workers) What Is the Responses API? OpenAI's unified interface for agentic applications, launched March 2025. Provides stateful conversations with preserved reasoning state across turns. Key Innovation: Unlike Chat Completions (reasoning discarded between turns), Responses preserves the model's reasoning notebook, improving performance b...
34
24656 audio-router bbeierle12/skill-mcp-claude
Audio Router Routes to 3 specialized skills based on audio requirements. Routing Protocol Classify — Identify audio task from user request Match — Apply signal matching rules below Combine — Audio-visual projects need 2-3 skills together Load — Read matched SKILL.md files before implementation Quick Route Tier 1: Core Skills Need Skill Signals Playing audio, music, SFX audio-playback play, load, music, sound, mp3, transport, player, loop Extracting audio data audio-analysis FFT, frequency, spect...
34
24657 gplay-iap-setup tamtom/gplay-cli-skills
In-App Purchase Setup for Google Play Use this skill when you need to set up monetization for your Android app. Two APIs: Legacy vs New Monetization Google Play has two APIs for one-time products: Legacy ( gplay iap ) New Monetization ( gplay onetimeproducts ) API inappproducts monetization.onetimeproducts Price format priceMicros / currency units / nanos / currencyCode Structure Flat prices map purchaseOptions with regionalPricingAndAvailabilityConfigs States active / inactive DRAFT → ACTIVE (r...
34
24658 cli-web-scrape molechowski/claude-skills
Scrapling CLI Web scraping CLI with browser impersonation, anti-bot bypass, and CSS extraction. Prerequisites Install with all extras (CLI needs click, fetchers need playwright/camoufox) uv tool install 'scrapling[all]' Install fetcher browser engines (one-time) scrapling install Verify: scrapling --help Fetcher Selection Tier Command Engine Speed Stealth JS Use When HTTP extract get/post/put/delete httpx + TLS impersonation Fast Medium No Static pages, APIs, most sites Dynamic extract fetch P...
34
24659 typescript-sdk inkeep/skills
TypeScript SDK Architecture Layered, non-blocking by default Data buffered and flushed async to backend Node >= 18, ESM + CJS builds Layer Flow Public API → OpikClient → Domain (Trace/Span) → BatchQueues → REST Client → Backend Critical Gotchas When changing dependencies or minimum versions, update and verify version references in README.md and integration README files in the same PR. Flush Before Exit // ✅ REQUIRED - especially in CLI/tests await client . flush ( ) ; // or globally: await flush...
34
24660 caching-strategy-optimizer patricio0312rev/skills
Caching Strategy Optimizer Dramatically speed up CI pipelines with intelligent caching. Cache Key Strategy Package Manager Caches NPM - Hash package-lock.json - uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-npm-${{ hashFiles('/package-lock.json') }} restore-keys: | ${{ runner.os }}-npm- pnpm - More aggressive caching - uses: pnpm/action-setup@v2 with: version: 8 - uses: actions/cache@v3 with: path: | ~/.pnpm-store node_modules ...
34
24661 scroll-driven-animations yonatangross/orchestkit
CSS Scroll-Driven Animations API provides performant, declarative scroll-linked animations without JavaScript. Supported in Chrome 115+, Edge 115+, Safari 18.4+. Overview - Progress indicators tied to scroll position - Parallax effects without JavaScript jank - Element reveal animations on scroll into view - Sticky header animations based on scroll - Reading progress bars - Scroll-triggered image/content reveals Core Concepts Timeline Types | Scroll Progress | `scroll()` | Tied to...
34
24662 ssh-remote-connection artwist-polyakov/polyakov-claude-skills
SSH Remote Connection Universal skill for connecting to remote servers via SSH. Usage Interactive shell scripts/connect.sh Run command directly scripts/connect.sh "docker compose logs backend --tail 50" Setup For Claude Code (local) Copy config template: cp config/.env.example config/.env Fill in config/.env with actual values Make script executable: chmod +x scripts/connect.sh For Cloud Runtime Set environment variables in your cloud configuration: SSH_HOST — server hostname or IP SSH_USER — ...
34
24663 frontend htlin222/dotfiles
Frontend Development Overview Modern frontend development patterns, frameworks, and best practices for building performant web applications. React Ecosystem Component Patterns // Functional component with hooks import { useState , useEffect , useCallback , useMemo } from 'react' ; interface UserListProps { initialFilter ? : string ; onSelect : ( user : User ) => void ; } function UserList ( { initialFilter = '' , onSelect } : UserListProps ) { const [ users , setUsers ] = useState < User [ ] > (...
34
24664 api-client-generator jeremylongshore/claude-code-plugins-plus-skills
Api Client Generator Purpose This skill provides automated assistance for api client generator tasks within the API Integration domain. When to Use This skill activates automatically when you: Mention "api client generator" in your request Ask about api client generator patterns or best practices Need help with api integration skills covering third-party apis, webhooks, sdk generation, and integration patterns. Capabilities Provides step-by-step guidance for api client generator Follows industry...
34
24665 multithreaded-task-migration dotnet/msbuild
Migrating MSBuild Tasks to Multithreaded API MSBuild's multithreaded execution model requires tasks to avoid global process state (working directory, environment variables). Thread-safe tasks declare this capability via MSBuildMultiThreadableTask and use TaskEnvironment from IMultiThreadableTask for safe alternatives. Migration Steps Step 1: Update Task Class Declaration a. Ensure the task implementing class is decorated with the MSBuildMultiThreadableTask attribute. b. Implement IMultiThreadabl...
34
24666 agentic-browser inference-sh/skills
Agentic Browser Browser automation for AI agents via inference.sh . Uses Playwright under the hood with a simple @e ref system for element interaction. Quick Start Install CLI curl -fsSL https://cli.inference.sh | sh && infsh login Open a page and get interactive elements infsh app run agentic-browser --function open --input '{"url": "https://example.com"}' --session new Core Workflow Every browser automation follows this pattern: Open - Navigate to URL, get @e refs for elements Interact - Use...
34
24667 holmesgpt-skill julianobarbosa/claude-code-skills
HolmesGPT Skill AI-powered troubleshooting for Kubernetes and cloud-native environments. Overview HolmesGPT is a CNCF Sandbox project that connects AI models with live observability data to investigate infrastructure problems, find root causes, and suggest remediations. It operates with read-only access and respects RBAC permissions, making it safe for production environments. Quick Reference Topic Reference Installation references/installation.md Configuration references/configuration.md Data S...
34
24668 qt-translation-assistant re2zero/deepin-skills
Qt Translation Assistant Skill Iron Laws Never modify original TS files without backup - Always preserve original content Validate AI translation quality - Verify translations are accurate and contextually appropriate Maintain translation consistency - Use consistent terminology across all translations Respect file encoding - Preserve UTF-8 encoding and special characters Minimal changes principle - Only modify translation content, preserve XML structure Red Flags User requests translation of no...
34
24669 service-layer-extractor patricio0312rev/skills
Service Layer Extractor Extract business logic from controllers into a testable service layer. Architecture Layers routes/ → Define endpoints, parse requests controllers/ → Validate input, call services, format responses services/ → Business logic, orchestration repositories/ → Database queries models/ → Data structures Before: Fat Controller // ❌ Business logic mixed with HTTP concerns router . post ( "/users" , async ( req , res ) => { try { // Validation if ( !...
34
24670 internal-comms teachingai/full-stack-skills
When to use this skill To write internal communications, use this skill for: 3P updates (Progress, Plans, Problems) Company newsletters FAQ responses Status reports Leadership updates Project updates Incident reports How to use this skill To write any internal communication: Identify the communication type from the request Load the appropriate guideline file from the examples/ directory: examples/3p-updates.md - For Progress/Plans/Problems team updates examples/company-newsletter.md - For compan...
34
24671 sql-query-optimizer jeremylongshore/claude-code-plugins-plus-skills
SQL Query Optimizer Optimize SQL queries for maximum performance. EXPLAIN Analysis -- Original slow query EXPLAIN ANALYZE SELECT u.*, COUNT(o.id) as order_count FROM users u LEFT JOIN orders o ON o.user_id = u.id WHERE u.created_at > '2024-01-01' GROUP BY u.id ORDER BY order_count DESC LIMIT 10; -- Output analysis: /* Sort (cost=15234.32..15234.34 rows=10 width=120) (actual time=245.123..245.125 rows=10 loops=1) Sort Key: (count(o.id)) DESC -> HashAggregate (cost=15000.00..15100.00 row...
34
24672 typescript-advanced-types ovachiever/droid-tings
TypeScript Advanced Types Comprehensive guidance for mastering TypeScript's advanced type system including generics, conditional types, mapped types, template literal types, and utility types for building robust, type-safe applications. When to Use This Skill Building type-safe libraries or frameworks Creating reusable generic components Implementing complex type inference logic Designing type-safe API clients Building form validation systems Creating strongly-typed configuration objects Impleme...
34
24673 terraform-module-builder patricio0312rev/skills
Terraform Module Builder Build reusable, production-ready Terraform modules for cloud infrastructure. Core Workflow Define module structure : Organize files properly Declare variables : Input parameters with validation Create resources : Infrastructure definitions Configure outputs : Export useful values Setup state : Remote backend configuration Document : README and examples Module Structure modules/ └── vpc/ ├── main.tf Primary resources ├── variables.tf Input variables ├── o...
34
24674 project-retrospective jamditis/claude-skills-journalism
Project retrospective writer Create LESSONS.md files that capture institutional knowledge, especially failures. Think like a journalist writing about your own project—be specific, be honest, name the actual mistakes. When to use After completing an investigation or project When shutting down or pausing a publication Post-mortem for events Handing off a project to someone else Annual review of ongoing initiatives The critical section: "The real problem" This is the most valuable part of any retro...
34
24675 security-benchmark-runner jeremylongshore/claude-code-plugins-plus-skills
Security Benchmark Runner Purpose This skill provides automated assistance for security benchmark runner tasks within the Security Advanced domain. When to Use This skill activates automatically when you: Mention "security benchmark runner" in your request Ask about security benchmark runner patterns or best practices Need help with advanced security skills covering penetration testing, compliance frameworks, threat modeling, and enterprise security. Capabilities Provides step-by-step guidance f...
34
24676 apify-ecommerce sickn33/antigravity-awesome-skills
E-commerce Data Extraction Extract product data, prices, reviews, and seller information from any e-commerce platform using Apify's E-commerce Scraping Tool. Prerequisites .env file with APIFY_TOKEN (at ~/.claude/.env ) Node.js 20.6+ (for native --env-file support) Workflow Selection User Need Workflow Best For Track prices, compare products Workflow 1: Products & Pricing Price monitoring, MAP compliance, competitor analysis. Add AI summary for insights. Analyze reviews (sentiment or quality) Wo...
34
24677 qemu-alpine-ssh letta-ai/skills
QEMU Alpine SSH Setup Overview This skill provides procedural guidance for setting up QEMU virtual machines running Alpine Linux with SSH access configured. It covers VM startup, network port forwarding, Alpine system configuration, and SSH server setup. Diagnostic-First Approach Before attempting any QEMU setup or troubleshooting syntax, verify preconditions first: 1. Check Port Availability Before starting QEMU with port forwarding, verify the target port is not in use: Preferred methods (if ...
34
24678 aria-attribute-helper jeremylongshore/claude-code-plugins-plus-skills
Aria Attribute Helper Purpose This skill provides automated assistance for aria attribute helper tasks within the Frontend Development domain. When to Use This skill activates automatically when you: Mention "aria attribute helper" in your request Ask about aria attribute helper patterns or best practices Need help with frontend skills covering react, vue, css, accessibility, performance optimization, and modern web development patterns. Capabilities Provides step-by-step guidance for aria attri...
34
24679 learning-graph-generator dmccreary/claude-skills
Learning Graph Generator Version: 0.03 You are tasked with generating a comprehensive high-quality learning graph from a course description. A learning graph is the foundational data structure for intelligent textbooks that can recommend learning paths. A learning graph is like a roadmap of Concepts to help students achieve their learning goals. A learning graph is an DAG Concept graph. Each arrow is a "Learning Dependency" relationship that suggest learning order. The markdown you generate mus...
34
24680 gate-mcp-openclaw-installer gate/gate-skills
Gate MCP Complete Gate.com MCP server installer for OpenClaw. Quick Start Install all Gate MCP servers (default) ./scripts/install.sh Selective installation ./scripts/install.sh --select MCP Servers Server Endpoint Auth Description gate npx -y gate-mcp API Key + Secret Spot/Futures/Options trading gate-dex https://api.gatemcp.ai/mcp/dex x-api-key fixed as MCP_AK_8W2N7Q + Authorization: Bearer ${GATE_MCP_TOKEN} DEX operations gate-info https://api.gatemcp.ai/mcp/info None Market data gate-news ...
34
24681 agent-browser jihe520/social-push
Browser Automation with agent-browser The CLI uses Chrome/Chromium via CDP directly. Install via npm i -g agent-browser , brew install agent-browser , or cargo install agent-browser . Run agent-browser install to download Chrome. Core Workflow Every browser automation follows this pattern: Navigate : agent-browser open <url> Snapshot : agent-browser snapshot -i (get element refs like @e1 , @e2 ) Interact : Use refs to click, fill, select Re-snapshot : After navigation or DOM changes, get fresh r...
34
24682 1k-monitor-pr-ci onekeyhq/app-monorepo
Monitor PR CI & Reviews Monitor a pull request's CI checks and review comments. Auto-fix CI failures, prompt user for review feedback. Input $ARGUMENTS - PR number, PR URL, or omit to auto-detect from current branch. Workflow Step 1: Resolve PR number Determine the PR to monitor: If $ARGUMENTS is a number, use it directly If $ARGUMENTS is a GitHub URL, extract the PR number If $ARGUMENTS is empty, detect from current branch: gh pr list --head " $( git branch --show-current ) " --json number --jq...
34
24683 typo3-workspaces dirnbauer/webconsulting-skills
TYPO3 Workspaces Compatibility: TYPO3 v13.x and v14.x (v14 preferred) All code examples in this skill are designed to work on both TYPO3 v13 and v14. TYPO3 API First: Always use TYPO3's built-in APIs, core features, and established conventions before creating custom implementations. Do not reinvent what TYPO3 already provides. Always verify that the APIs and methods you use exist and are not deprecated in your target TYPO3 version (v13 or v14) by checking the official TYPO3 documentation. Source...
34
24684 react-coder majesticlabs-dev/majestic-marketplace
React Coder You write modern React components using TypeScript, hooks, and best practices. You create clean, performant, and maintainable code. Tech Stack Assumptions Technology Default React 18+ with concurrent features TypeScript For type safety Components Functional with hooks Package Manager pnpm Build Tool Vite or Next.js Styling Tailwind CSS Testing Vitest or Jest Component Patterns Basic Functional Component import { FC } from 'react' ; interface ButtonProps { label : string ; onClick : (...
34
24685 agent-context-loader jeremylongshore/claude-code-plugins-plus-skills
Agent Context Loader Overview Automatic discovery and loading of AGENTS.md files across project hierarchies for AI coding agents. This skill scans the current workspace and its parent directories to locate agent instruction files, then surfaces their contents so the active agent session has full operational context. Prerequisites A project workspace containing one or more AGENTS.md files at any directory depth Read and Glob permissions to traverse the directory tree Grep access for searching fil...
34
24686 code-quality ab300819/skills
Code Quality Review Review $ARGUMENTS (or the whole app if no argument is given) for code quality issues. Work through every step below in order and report all findings with file paths and line numbers. Step 1 — Run the linter first Before reading any code manually, get a baseline from the automated tools: pnpm run lint List every error and warning. Fix all errors before proceeding — lint errors are not negotiable. Warnings should be reviewed and resolved unless there is a documented exception. ...
34
24687 beat-sync-video-editing ecliptic-ai/skills
Beat-Sync Video Editing Purpose Provide domain expertise for creating beat-synced video edits: taking a source video and an audio track, selecting clips from the video that align with the music's rhythm, and rendering the final output with FFmpeg. Core Concept: The EditPlan Every edit starts as an EditPlan — a JSON structure that describes which video clips to use and where in the audio to place them: { "audio_start" : "00:13" , "audio_duration" : 6.5 , "clips" : [ { "video_start" : "00:08" , "d...
34
24688 architecture-patterns ovachiever/droid-tings
Architecture Patterns Master proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design to build maintainable, testable, and scalable systems. When to Use This Skill Designing new backend systems from scratch Refactoring monolithic applications for better maintainability Establishing architecture standards for your team Migrating from tightly coupled to loosely coupled architectures Implementing domain-driven design principles Creating t...
34
24689 code-review-medium breaking-brake/cc-wf-studio
Code Review Medium Overview Comprehensive review for medium-sized PRs (100-500 lines). Checks Code quality and maintainability Security best practices Test coverage assessment Error handling patterns API design consistency Output Detailed review with categorized findings (quality, security, tests)
34
24690 ring:pre-dev-feature-map lerianstudio/ring
Feature Map Creation - Understanding the Feature Landscape Foundational Principle Feature relationships and boundaries must be mapped before architectural decisions. Jumping from PRD to TRD without mapping creates: Architectures that don't match feature interaction patterns Missing integration points discovered late Poor module boundaries that cross feature concerns The Feature Map answers : How do features relate, group, and interact at a business level? The Feature Map never answers : How we'l...
34
24691 swiftdata-coredata-persistence dagba/ios-mcp
SwiftData & CoreData Persistence Overview SwiftData and CoreData are NOT interchangeable. Each has specific strengths, migration traps, and performance patterns. Wrong framework choice or migration strategy causes production crashes. Core principle: Choose framework based on app constraints, version models from day one, never store BLOBs in the database. Framework Selection digraph framework_choice { "New iOS app?" [ shape = diamond ] ; "iOS 17+ only?" [ shape = diamond ] ; "Simple data model?" ...
34
24692 ai-video-generation qu-skills/skills
Install the belt CLI skill: npx skills add belt-sh/cli AI Video Generation Generate videos with 40+ AI models via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Generate a video with Veo belt app run google/veo-3-1-fast --input '{"prompt": "drone shot flying over a forest"}' Show more Installs – Repository infsh-skills/skills GitHub Stars 546 First Seen – Security Audits Gen Agent Trust Hub Pass Socket Warn Snyk Warn
12
24693 remotion-render qu-skills/skills
Install the belt CLI skill: npx skills add belt-sh/cli Remotion Render Render videos from React/Remotion component code via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Show more Installs – Repository inferen-sh/skills GitHub Stars 548 First Seen – Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
12
24694 ai-image-generation qu-skills/skills
Install the belt CLI skill: npx skills add belt-sh/cli AI Image Generation Generate images with 50+ AI models via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Generate an image with FLUX belt app run falai/flux-dev-lora --input '{"prompt": "a cat astronaut in space"}' Show more Installs – Repository infsh-skills/skills GitHub Stars 546 First Seen – Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
12
24695 ai-avatar-video qu-skills/skills
AI Avatar & Talking Head Video Put words in a face. This skill routes across RunComfy's audio-driven avatar models — OmniHuman, Wan 2-7 with audio_url, HappyHorse, Seedance v2 — picking the right path for the user's intent and shipping the documented prompts + the exact runcomfy run invoke for each. runcomfy.com · Lip-sync feature · CLI docs Powered by the RunComfy CLI 1. Install (see runcomfy-cli skill for details) npm i -g @runcomfy/cli or: npx -y @runcomfy/cli --version 2. Sign in runcomf...
12
24696 twitter-automation qu-skills/skills
Install the belt CLI skill: npx skills add belt-sh/cli Twitter/X Automation Automate Twitter/X via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Post a tweet belt app run x/post-tweet --input '{"text": "Hello from inference.sh!"}' Show more Installs – Repository inferen-sh/skills GitHub Stars 548 First Seen – Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Warn
12
24697 soultrace soultrace-ai/soultrace-skill
SoulTrace Personality Assessment Take an adaptive personality assessment through the soultrace API. Answer 24 questions on a 1-7 Likert scale and receive your personality archetype based on a 5-color psychological model. API Endpoint POST https://soultrace.app/api/agent No authentication required. Rate limited to 100 requests/hour per IP. How It Works The API is stateless . You pass all accumulated answers with every request, and the server replays the Bayesian inference to select the next optim...
12
24698 ai-image-generation skills-shell/skills
Install the belt CLI skill: npx skills add belt-sh/cli AI Image Generation Generate images with 50+ AI models via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Generate an image with FLUX belt app run falai/flux-dev-lora --input '{"prompt": "a cat astronaut in space"}' Show more Installs – Repository infsh-skills/skills GitHub Stars 546 First Seen – Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
12
24699 ai-video-generation skills-shell/skills
Install the belt CLI skill: npx skills add belt-sh/cli AI Video Generation Generate videos with 40+ AI models via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Generate a video with Veo belt app run google/veo-3-1-fast --input '{"prompt": "drone shot flying over a forest"}' Show more Installs – Repository infsh-skills/skills GitHub Stars 546 First Seen – Security Audits Gen Agent Trust Hub Pass Socket Warn Snyk Warn
12
24700 ai-avatar-video skills-shell/skills
AI Avatar & Talking Head Video Put words in a face. This skill routes across RunComfy's audio-driven avatar models — OmniHuman, Wan 2-7 with audio_url, HappyHorse, Seedance v2 — picking the right path for the user's intent and shipping the documented prompts + the exact runcomfy run invoke for each. runcomfy.com · Lip-sync feature · CLI docs Powered by the RunComfy CLI 1. Install (see runcomfy-cli skill for details) npm i -g @runcomfy/cli or: npx -y @runcomfy/cli --version 2. Sign in runcomf...
12