███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 25201 | 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 |
| 25202 | 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 |
| 25203 | 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 |
| 25204 | 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 |
| 25205 | 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 |
| 25206 | 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 |
| 25207 | 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 |
| 25208 | 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 |
| 25209 | 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 |
| 25210 | 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 |
| 25211 | 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 |
| 25212 | 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 |
| 25213 | 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 |
| 25214 | 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 |
| 25215 | 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 |
| 25216 | 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 |
| 25217 | 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 |
| 25218 | 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 |
| 25219 | 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 |
| 25220 | 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 |
| 25221 | 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 |
| 25222 | 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 |
| 25223 | 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 |
| 25224 | 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 |
| 25225 | 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 |
| 25226 | 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 |
| 25227 | 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 |
| 25228 | remotion-render | halt-catch-fire/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 587 First Seen – Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
|
12 |
| 25229 | ai-video-generation | halt-catch-fire/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 586 First Seen – Security Audits Gen Agent Trust Hub Pass Socket Warn Snyk Warn
|
12 |
| 25230 | ai-avatar-video | halt-catch-fire/skills |
Install the belt CLI skill: npx skills add belt-sh/cli AI Avatar & Talking Head Videos Create AI avatars and talking head videos via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Show more Installs – Repository inference-sh-sk…s/skills GitHub Stars 585 First Seen – Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Warn
|
12 |
| 25231 | ai-image-generation | halt-catch-fire/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 586 First Seen – Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
|
12 |
| 25232 | twitter-automation | halt-catch-fire/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 587 First Seen – Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Warn
|
12 |
| 25233 | video-edit | agentspace-so/runcomfy-agent-skills |
Video Edit Edit videos locally by running ffmpeg/ffprobe directly. No wrapper scripts needed. Prerequisites Install ffmpeg (includes ffprobe): macOS brew install ffmpeg Ubuntu/Debian sudo apt update && sudo apt install -y ffmpeg Verify ffmpeg -version && ffprobe -version Show more Installs 1.0K Repository heygen-com/skills GitHub Stars 333 First Seen Mar 16, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
|
12 |
| 25234 | image-to-video | agentspace-so/runcomfy-agent-skills |
Install the belt CLI skill: npx skills add belt-sh/cli Image to Video Convert still images to animated videos via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Generate a still image belt app run falai/flux-dev-lora --input '{ "prompt": "serene mountain lake at sunset, snow-capped peaks reflected in still water, golden hour light, landscape photography", "width": 1248, "height": 832 }' Show more Installs – Repository infsh-skills/skills GitHub...
|
12 |
| 25235 | nano-banana-edit | agentspace-so/runcomfy-agent-skills |
Nano Banana Edit — Pro Pack on RunComfy runcomfy.com · Edit endpoint · GitHub Google Nano Banana 2 Edit — the image-to-image edit endpoint of the Gemini-family flash-tier image model — hosted on the RunComfy Model API . Up to 20 input images per call for batch edits and multi-reference variation. npx skills add agentspace-so/runcomfy-skills --skill nano-banana-edit -g When to pick this model (vs siblings) You want Use Preserve subject identity, swap background or clothing Nano Banana Edit Edit u...
|
12 |
| 25236 | nano-banana-2 | agentspace-so/runcomfy-agent-skills |
Install the belt CLI skill: npx skills add belt-sh/cli Nano Banana 2 - Gemini 3.1 Flash Image Preview Generate images with Google Gemini 3.1 Flash Image Preview via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login belt app run google/gemini-3-1-flash-image-preview --input '{"prompt": "a banana in space, photorealistic"}' Examples Show more Installs – Repository inferen-sh/skills GitHub Stars 587 First Seen – Security Audits Gen Agent Trust Hub Pas...
|
12 |
| 25237 | image-edit | agentspace-so/runcomfy-agent-skills |
image-edit Use this skill for all image editing and enhancement requests on Starchild. Covers: general editing, background replacement, super-resolution, old photo restoration, colorization, person removal, portrait retouching (skin smoothing, blemish removal, teeth whitening), slimming, color grading, artistic filters, image blending, outpainting, local editing, text rendering, multi-angle generation, before/after comparison, car recoloring, car wrap preview, and fitness/medical transformation ...
|
12 |
| 25238 | flux-kontext | agentspace-so/runcomfy-agent-skills |
Flux Kontext Pro — Pro Pack on RunComfy runcomfy.com · Model page · GitHub Black Forest Labs' Flux 1 Kontext Pro — single-reference precise local image edit — hosted on the RunComfy Model API . Strong prompt control, consistent outputs, high fidelity. npx skills add agentspace-so/runcomfy-skills --skill flux-kontext -g When to pick this model (vs siblings) You want Use Single-image precise local edit ("she's now holding X") Flux Kontext High-fidelity preservation of source identity Flux Kontext ...
|
12 |
| 25239 | wan-2-7 | agentspace-so/runcomfy-agent-skills |
Wan 2.7 — Pro Pack on RunComfy runcomfy.com · Text-to-video · GitHub Wan-AI's Wan 2.7 — flagship video model with multi-reference conditioning and audio-driven lip-sync — hosted on the RunComfy Model API . npx skills add agentspace-so/runcomfy-skills --skill wan-2-7 -g When to pick this model (vs siblings) You want Use Lip-sync video to an audio track you supply Wan 2.7 ( audio_url ) Multi-reference fine motion control Wan 2.7 Smooth transitions, accurate motion physics Wan 2.7 Currently-1 blind...
|
12 |
| 25240 | gpt-image-edit | agentspace-so/runcomfy-agent-skills |
GPT Image Edit — Pro Pack on RunComfy runcomfy.com · Edit endpoint · Text-to-image sibling · GitHub OpenAI GPT Image 2 — /edit endpoint (ChatGPT Images 2.0 image-to-image) on the RunComfy Model API . Strongest in its class at preserving identity through targeted edits and rewriting embedded text in any script (Latin, kana, CJK, Cyrillic, Arabic). npx skills add agentspace-so/runcomfy-skills --skill gpt-image-edit -g When to pick this model (vs siblings) You want Use Edit multilingual / embedded ...
|
12 |
| 25241 | flux-2-klein | agentspace-so/runcomfy-agent-skills |
Flux 2 Klein — Pro Pack on RunComfy runcomfy.com · 9B model · 4B model · GitHub Black Forest Labs' Flux 2 Klein (the distilled, low-latency variant of Flux 2) hosted on the RunComfy Model API — no API key, async REST. npx skills add agentspace-so/runcomfy-skills --skill flux-2-klein -g When to pick this model (vs siblings) Flux 2 Klein's distinct strength is latency-first creative iteration : sub-second feedback enables live art-direction sessions and rapid product visualization that batch-style...
|
12 |
| 25242 | happyhorse-1-0 | agentspace-so/runcomfy-agent-skills |
HappyHorse 1.0 — Pro Pack on RunComfy runcomfy.com · Text-to-video · GitHub HappyHorse 1.0 — currently 1 on Artificial Analysis Video Arena (Elo 1333 t2v / 1392 i2v) — hosted on the RunComfy Model API . Native 1080p video with in-pass synchronized audio (dialogue, ambient, Foley) and multi-shot character consistency. npx skills add agentspace-so/runcomfy-skills --skill happyhorse-1-0 -g When to pick this model (vs siblings) You want Use Multi-shot story with character / wardrobe consistency Happ...
|
12 |
| 25243 | seedance-v2 | agentspace-so/runcomfy-agent-skills |
Seedance 2.0 Pro — Pro Pack on RunComfy runcomfy.com · Seedance 2.0 Pro · GitHub ByteDance Seedance 2.0 Pro — multimodal cinematic video generator with native lip-synced audio — hosted on the RunComfy Model API . npx skills add agentspace-so/runcomfy-skills --skill seedance-v2 -g When to pick this model (vs siblings) Seedance 2.0 Pro's distinct strength is multi-modal cinematic short-form : combine character images + scene videos + reference audio into one coherent shot. Pick it when fidelity to...
|
12 |
| 25244 | agentspace | agentspace-so/skills |
🪢 Agentspace agentspace.so · GitHub · npm @agentspace-so/ascli Use agentspace.so to share a specific local folder or file with a human or another agent via a workspace link. Data handling Only the path the user explicitly names is uploaded. Do not default to uploading the current working directory unless the user clearly says so. All network traffic goes to agentspace.so only. The skill does not call any other endpoint. The skill does not read environment variables, shell history, or files outsi...
|
12 |
| 25245 | kling-3-0 | agentspace-so/runcomfy-agent-skills |
Kling 3.0 - Pro Pack on RunComfy runcomfy.com · docs · GitHub Kling 3.0 is Kuaishou Technology's third-generation cinematic video model. This skill covers all six Kling 3.0 rendering endpoints on RunComfy: three quality tiers (Standard, Pro, 4K) across two modes (text-to-video and image-to-video). What Kling 3.0 is Kling 3.0 is the V3 generation of the Kling video model. It produces multi-shot cinematic video with synchronized native audio, consistent character identity across shots, and physics...
|
12 |
| 25246 | codex-pet | agentspace-so/runcomfy-agent-skills |
Codex Pet — Pro Pack on RunComfy runcomfy.com · GPT Image 2 edit endpoint · docs Codex Pet generator on RunComfy. Turn one source image into a Codex-compatible custom Codex Pet — pet.json + spritesheet.webp — drop it into ${CODEX_HOME:-$HOME/.codex}/pets/<name>/ , Codex picks it up next to the 8 built-in Codex Pets. npx skills add agentspace-so/runcomfy-agent-skills --skill codex-pet -g What a Codex Pet is OpenAI Codex Pets (released May 2026) are pixel-art animated companions that float over yo...
|
12 |
| 25247 | sleek-design-mobile-apps | sleekdotdesign/agent-skills |
Designing with Sleek Overview sleek.design is an AI-powered mobile app design tool. You interact with it via a REST API at /api/v1/* to create projects, describe what you want built in plain language, and get back rendered screens. All communication is standard HTTP with bearer token auth. Base URL : https://sleek.design Auth : Authorization: Bearer $SLEEK_API_KEY on every /api/v1/* request Content-Type : application/json (requests and responses) CORS : Enabled on all /api/v1/* endpoints Prerequ...
|
12 |
| 25248 | ai-video-generation | agentspace-so/runcomfy-agent-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 586 First Seen – Security Audits Gen Agent Trust Hub Pass Socket Warn Snyk Warn
|
12 |
| 25249 | ai-image-generation | agentspace-so/runcomfy-agent-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 586 First Seen – Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
|
12 |
| 25250 | runcomfy-cli | agentspace-so/runcomfy-agent-skills |
RunComfy CLI One binary, one auth, every RunComfy model. Install once, sign in once, then call any text-to-image, video, edit, lip-sync, face-swap, or LoRA-training endpoint with runcomfy run <model_id> --input '{...}' . This skill is the foundation every other runcomfy-* skill builds on. runcomfy.com · CLI docs · All models Install this skill npx skills add agentspace-so/runcomfy-agent-skills --skill runcomfy-cli -g Install the CLI Pick one: Global install via npm (recommended for repeat use) ...
|
12 |