███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 8701 | best-practices | davila7/claude-code-templates |
Best practices Modern web development standards based on Lighthouse best practices audits. Covers security, browser compatibility, and code quality patterns. Security HTTPS everywhere Enforce HTTPS: <!-- ❌ Mixed content --> <img src="http://example.com/image.jpg"> <script src="http://cdn.example.com/script.js"></script> <!-- ✅ HTTPS only --> <img src="https://example.com/image.jpg"> <script src="https://cdn.example.com/script.js"></script> <!-- ✅ Protocol-relative (will use page's protocol...
|
376 |
| 8702 | seo-meta-optimizer | sickn33/antigravity-awesome-skills |
Use this skill when Working on seo meta optimizer tasks or workflows Needing guidance, best practices, or checklists for seo meta optimizer Do not use this skill when The task is unrelated to seo meta optimizer You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md...
|
376 |
| 8703 | perplexity-search | parcadei/continuous-claude-v3 |
Perplexity Search Overview Perform AI-powered web searches using Perplexity models through LiteLLM and OpenRouter. Perplexity provides real-time, web-grounded answers with source citations, making it ideal for finding current information, recent scientific literature, and facts beyond the model's training data cutoff. This skill provides access to all Perplexity models through OpenRouter, requiring only a single API key (no separate Perplexity account needed). When to Use This Skill Use this...
|
376 |
| 8704 | zotero-paper-reader | fuzhiyu/researchprojecttemplate |
Read and analyze academic papers directly from the Zotero library. This skill handles the complete workflow from searching Zotero to converting PDFs to readable markdown format. When to Use Use this skill when the user requests to: - "Read this paper from Zotero" - "Find and read [paper title]" - "Access [author name] paper" - "Get the paper about [topic]" - "Convert [paper] from Zotero to markdown" Workflow Step 1: Search Zotero Library Use the Zotero MCP tools to search for the pa...
|
376 |
| 8705 | package-management | wshaddix/dotnet-skills |
NuGet Package Management When to Use This Skill Use this skill when: Adding, removing, or updating NuGet packages Setting up Central Package Management (CPM) for a solution Managing package versions across multiple projects Troubleshooting package conflicts or restore issues Golden Rule: Never Edit XML Directly Always use dotnet CLI commands to manage packages. Never manually edit .csproj or Directory.Packages.props files. DO: Use CLI commands dotnet add package Newtonsoft.Json dotnet remove pa...
|
375 |
| 8706 | wowerpoint | thedotmack/claude-mem |
Wowerpoint One doc in, one PDF out. Slide-deck only — videos and podcasts from the same engine are noticeably worse and out of scope; refer the user to the notebooklm CLI directly if they want those. Triggers "Wowerpoint " "Make a slide deck about " "Turn this report into slides" "Kawaii-deck this" Setup (one-time per machine) If notebooklm auth check returns 0 and command -v jq resolves, skip. uv tool install --with playwright --force notebooklm-py $( uv tool dir ) /notebooklm-py/bin/playwright...
|
375 |
| 8707 | payment-gateway-integration | aj-geddes/useful-ai-prompts |
Payment Gateway Integration Overview Build secure payment processing systems with major payment providers (Stripe, PayPal, Square), handling transactions, subscriptions, webhooks, PCI compliance, and error scenarios across different backend frameworks. When to Use Processing customer payments Implementing subscription billing Building e-commerce platforms Handling refunds and disputes Managing recurring charges Integrating payment webhooks Instructions 1. Stripe Integration with Python/Flask ...
|
375 |
| 8708 | 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...
|
375 |
| 8709 | web-scraper | guia-matthieu/clawfu-skills |
Web Scraper Extract structured data from websites using BeautifulSoup and requests - turn any webpage into usable data. When to Use This Skill Competitor research - Scrape pricing, features, positioning Lead generation - Extract contact info from directories Content audit - Pull headings, links, meta data Price monitoring - Track competitor pricing changes Data collection - Gather research data from multiple sources What Claude Does vs What You Decide Claude Does You Decide Structures analysis f...
|
375 |
| 8710 | database-migration | sickn33/antigravity-awesome-skills |
Database Migration Master database schema and data migrations across ORMs (Sequelize, TypeORM, Prisma), including rollback strategies and zero-downtime deployments. When to Use This Skill Migrating between different ORMs Performing schema transformations Moving data between databases Implementing rollback procedures Zero-downtime deployments Database version upgrades Data model refactoring ORM Migrations Sequelize Migrations // migrations/20231201-create-users.js module . exports = { up : async ...
|
375 |
| 8711 | database-schema-documentation | aj-geddes/useful-ai-prompts |
Database Schema Documentation Overview Create comprehensive database schema documentation including entity relationship diagrams (ERD), table definitions, indexes, constraints, and data dictionaries. When to Use Database schema documentation ERD (Entity Relationship Diagrams) Data dictionary creation Table relationship documentation Index and constraint documentation Migration documentation Database design specs Schema Documentation Template Database Schema Documentation Database: PostgreSQL...
|
375 |
| 8712 | workflow-automation | davila7/claude-code-templates |
Workflow Automation When to use this skill Repetitive tasks : running the same commands every time Complex builds : multi-step build processes Team onboarding : a consistent development environment Instructions Step 1: npm scripts package.json : { "scripts" : { "dev" : "nodemon src/index.ts" , "build" : "tsc && vite build" , "test" : "jest --coverage" , "test:watch" : "jest --watch" , "lint" : "eslint src --ext .ts,.tsx" , "lint:fix" : "eslint src --ext .ts,.tsx --fix" , "format" : "prettier --w...
|
375 |
| 8713 | pricing-strategy | davila7/claude-code-templates |
Pricing Strategy You are an expert in SaaS pricing and monetization strategy. Your goal is to help design pricing that captures value, drives growth, and aligns with customer willingness to pay. Before Starting Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task. Gather this con...
|
375 |
| 8714 | prompt-caching | davila7/claude-code-templates |
Prompt Caching You're a caching specialist who has reduced LLM costs by 90% through strategic caching. You've implemented systems that cache at multiple levels: prompt prefixes, full responses, and semantic similarity matches. You understand that LLM caching is different from traditional caching—prompts have prefixes that can be cached, responses vary with temperature, and semantic similarity often matters more than exact match. Your core principles: Cache at the right level—prefix, response...
|
375 |
| 8715 | unity-developer | sickn33/antigravity-awesome-skills |
Use this skill when Working on unity developer tasks or workflows Needing guidance, best practices, or checklists for unity developer Do not use this skill when The task is unrelated to unity developer You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md. You ar...
|
375 |
| 8716 | typescript-pro | sickn33/antigravity-awesome-skills |
TypeScript Pro Senior TypeScript specialist with deep expertise in advanced type systems, full-stack type safety, and production-grade TypeScript development. Role Definition You are a senior TypeScript developer with 10+ years of experience. You specialize in TypeScript 5.0+ advanced type system features, full-stack type safety, and build optimization. You create type-safe APIs with zero runtime type errors. When to Use This Skill Building type-safe full-stack applications Implementing adva...
|
375 |
| 8717 | tailwind-4 | prowler-cloud/prowler |
Styling Decision Tree Tailwind class exists? → className="..." Dynamic value? → style={{ width: `${x}%` }} Conditional styles? → cn("base", condition && "variant") Static only? → className="..." (no cn() needed) Library can't use class?→ style prop with var() constants Critical Rules Never Use var() in className // ❌ NEVER: var() in className <div className="bg-[var(--color-primary)]" /> <div className="text-[var(--text-color)]" /> // ✅ ALWAYS: Use Tailwind semantic cl...
|
375 |
| 8718 | generate-translations | payloadcms/payload |
Translation Generation Guide Payload has two separate translation systems: Core Translations - for core Payload packages (packages/ui, packages/payload, packages/next) Plugin Translations - for plugins (packages/plugin-*) Table of Contents 1. Core Translations 2. Plugin Translations Scaffolding New Plugin Translations Important Notes 1. Core Translations When to use: Adding translations to core Payload packages (packages/ui, packages/payload, packages/next) Steps: Add the English translatio...
|
375 |
| 8719 | serialization | wshaddix/dotnet-skills |
Serialization in .NET When to Use This Skill Use this skill when: Choosing a serialization format for APIs, messaging, or persistence Migrating from Newtonsoft.Json to System.Text.Json Implementing AOT-compatible serialization Designing wire formats for distributed systems Optimizing serialization performance Serialization Format Comparison Format Library AOT-Safe Human-Readable Relative Size Relative Speed Best For JSON System.Text.Json (source gen) Yes Yes Largest Good APIs, config, web client...
|
374 |
| 8720 | web-browser | mitsuhiko/agent-stuff |
Web Browser Skill Minimal CDP tools for collaborative site exploration. Start Chrome ./scripts/start.js Fresh profile ./scripts/start.js --profile Copy your profile (cookies, logins) Start Chrome on :9222 with remote debugging. Navigate ./scripts/nav.js https://example.com ./scripts/nav.js https://example.com --new Navigate current tab or open new tab. Evaluate JavaScript ./scripts/eval.js 'document.title' ./scripts/eval.js 'document.querySelectorAll("a").length' ./scri...
|
374 |
| 8721 | getnote-note | iswalle/getnote-cli |
getnote-note Skill Save, list, view, update, and delete notes in Get笔记. Prerequisites getnote CLI installed and authenticated ( getnote auth status should show "Authenticated") Commands Save a note getnote save <url|text|image_path> [--title <title>] [--tag <tag>]... Show more
|
374 |
| 8722 | prompt-videos | replicate/skills |
Prompting video models on Replicate Distilled from Replicate's blog posts on prompting video models (2025-2026). Techniques are model-agnostic and focus on transferable principles. Choose a model with the API, not from memory This skill describes general prompting techniques. To choose a model, use the find-models skill and query the Replicate API. The video model landscape changes weekly. Don't assume specific models exist or are still state-of-the-art based on names you've seen before. Always ...
|
374 |
| 8723 | vm0-ai/vm0-skills |
Instagram API (Graph API) Use the Instagram Graph API by directly executing curl commands to read and publish Instagram content . Official docs: https://developers.facebook.com/docs/instagram-api When to Use Use this skill when you need to: Fetch recent media (photos / videos / Reels) from an account Get detailed information about a specific media item (caption, type, link, time, etc.) Search recent media by hashtag Publish image posts via API (with caption) Prerequisites You must have an Instag...
|
374 | |
| 8724 | security-audit-logging | aj-geddes/useful-ai-prompts |
Security Audit Logging Overview Implement comprehensive audit logging for security events, user actions, and system changes with structured logging, retention policies, and SIEM integration. When to Use Compliance requirements (SOC 2, HIPAA, PCI-DSS) Security monitoring Forensic investigations User activity tracking System change auditing Breach detection Implementation Examples 1. Node.js Audit Logger // audit-logger.js const winston = require('winston'); const { ElasticsearchTransport } = re...
|
374 |
| 8725 | rag-engineer | davila7/claude-code-templates |
RAG Engineer Role: RAG Systems Architect I bridge the gap between raw documents and LLM understanding. I know that retrieval quality determines generation quality - garbage in, garbage out. I obsess over chunking boundaries, embedding dimensions, and similarity metrics because they make the difference between helpful and hallucinating. Capabilities Vector embeddings and similarity search Document chunking and preprocessing Retrieval pipeline design Semantic search implementation Context windo...
|
374 |
| 8726 | notion-research-documentation | davila7/claude-code-templates |
Research & Documentation Pull relevant Notion pages, synthesize findings, and publish clear briefs or reports (with citations and links to sources). Quick start Find sources with Notion:notion-search using targeted queries; confirm scope with the user. Fetch pages via Notion:notion-fetch ; note key sections and capture citations ( reference/citations.md ). Choose output format (brief, summary, comparison, comprehensive report) using reference/format-selection-guide.md . Draft in Notion with Noti...
|
374 |
| 8727 | database-migrations-sql-migrations | sickn33/antigravity-awesome-skills |
SQL Database Migration Strategy and Implementation Overview You are a SQL database migration expert specializing in zero-downtime deployments, data integrity, and production-ready migration strategies for PostgreSQL, MySQL, and SQL Server. Create comprehensive migration scripts with rollback procedures, validation checks, and performance optimization. When to Use This Skill Use when working on SQL database migration strategy and implementation tasks. Use when needing guidance, best practices, or...
|
374 |
| 8728 | scientific-critical-thinking | k-dense-ai/scientific-agent-skills |
Scientific Critical Thinking Overview Critical thinking is a systematic process for evaluating scientific rigor. Assess methodology, experimental design, statistical validity, biases, confounding, and evidence quality using GRADE and Cochrane ROB frameworks. Apply this skill for critical analysis of scientific claims. When to Use This Skill This skill should be used when: Evaluating research methodology and experimental design Assessing statistical validity and evidence quality Identifying b...
|
373 |
| 8729 | ucp | shopify/shopify-ai-toolkit |
UCP Skill — Universal Commerce Protocol Implementation Core Principles Edge runtime is NOT USED — Only Node.js (default) or Bun (opt-in) runtimes Interactive error handling — When ambiguous, ask the user how to proceed Config-driven — All decisions persist in ucp.config.json Spec-grounded — All implementations reference the canonical UCP specification Next.js conventions — Follow App Router patterns for code organization Deep analysis — Use AST parsing and data flow tracing for gap detection Spe...
|
373 |
| 8730 | microsoft-extensions-dependency-injection | wshaddix/dotnet-skills |
Dependency Injection Patterns When to Use This Skill Use this skill when: Organizing service registrations in ASP.NET Core applications Avoiding massive Program.cs/Startup.cs files with hundreds of registrations Making service configuration reusable between production and tests Designing libraries that integrate with Microsoft.Extensions.DependencyInjection The Problem Without organization, Program.cs becomes unmanageable: // BAD: 200+ lines of unorganized registrations var builder = WebApplicat...
|
373 |
| 8731 | r8-analyzer | android/skills |
Core workflow [ ] Step 1: Create a file called R8_Configuration_Analysis.md, or reuse if one exists already, to store the output [ ] Step 2: Look at the configuration of R8 by looking at build.gradle, build.gradle.kts, gradle.properties in the codebase using references/CONFIGURATION.md as the reference. Inform the developer and add the analysis to the report file [ ] Step 3: If the AGP version is less than 9, suggest moving to AGP 9.0 version as AGP 9.0 includes optimizations . [ ] Step 4: Look ...
|
373 |
| 8732 | carousel-writer-sms | blacktwist/social-media-skills |
Carousel Writer When to Use User asks to write a carousel or create slide-by-slide content User mentions "carousel," "slides," or "LinkedIn carousel" User mentions "Instagram carousel," "IG carousel," or "photo carousel" User mentions "TikTok photo carousel," "Idea Pin," or "Pinterest Idea Pin" User says "swipe post," "slide deck," or "visual content" User wants to turn an idea into a multi-slide format User shares a topic and asks for a swipeable breakdown User mentions "carousel format" or "ca...
|
373 |
| 8733 | qq-email | shadowcz007/skills |
何时使用 用户要使用 QQ 邮箱 发邮件 、 收邮件 、 查邮件 、 代发邮件 或 配置 QQ 邮箱 时使用本 skill。 QQ 邮箱收发 面向 QQ 邮箱:通过 IMAP 收取邮件、SMTP 发送邮件。账号与授权码 仅从环境变量读取 ,不在代码或配置中硬编码。 凭证(环境变量) 变量 说明 QQ_EMAIL_ACCOUNT QQ 邮箱账号(完整地址,如 xxx@qq.com ) QQ_EMAIL_AUTH_CODE QQ 邮箱授权码(在 QQ 邮箱「设置 → 账户」中开启 IMAP/SMTP 后生成, 非 QQ 登录密码 ;勿提交到仓库) 脚本会校验,缺失时报错并退出;请勿在终端用 echo 等方式检查,以免泄露授权码。 QQ 邮箱服务器 IMAP : imap.qq.com ,端口 993(SSL) SMTP : smtp.qq.com ,端口 465(SSL) 脚本 脚本 作用 scripts/send.js 从环境变量读凭证,用 nodemailer 连接 QQ 邮箱 SMTP 发信;支持收件人、主题、正文(CLI 参数)。 scripts/receive.js 从环境变量读...
|
373 |
| 8734 | ce-proof | everyinc/compound-engineering-plugin |
Proof - Collaborative Markdown Editor Proof is a collaborative document editor for humans and agents. It supports two modes: Web API - Create and edit shared documents via HTTP (no install needed) Local Bridge - Drive the macOS Proof app via localhost:9847 Identity and Attribution Every write to a Proof doc must be attributed. Two fields carry the agent's identity: Machine ID ( by on every op, X-Agent-Id header): ai:compound-engineering — stable, lowercase-hyphenated, machine-parseable. Appears ...
|
373 |
| 8735 | ce-clean-gone-branches | everyinc/compound-engineering-plugin |
Clean Gone Branches Delete local branches whose remote tracking branch has been deleted, including any associated worktrees. Workflow Step 1: Discover gone branches Run the discovery script to fetch the latest remote state and identify gone branches: bash scripts/clean-gone scripts/clean-gone The script runs git fetch --prune first, then parses git branch -vv for branches marked : gone] . If the script outputs __NONE__ , report that no stale branches were found and stop. Show more
|
373 |
| 8736 | ruby-rails | mindrally/skills |
Ruby on Rails You are an expert in Ruby and Ruby on Rails development with deep knowledge of web application patterns and Rails conventions. Core Principles Write concise, idiomatic Ruby code with accurate examples Adhere to Rails conventions (Convention over Configuration) Follow the Ruby Style Guide for formatting consistency Leverage Ruby 3.x features like pattern matching and endless methods Naming Conventions Use snake_case for files, methods, and variables Use CamelCase for classes and m...
|
373 |
| 8737 | github-workflow | mindrally/skills |
GitHub Workflow Best Practices You are an expert in GitHub workflows, including pull requests, code reviews, GitHub Actions, issue management, and repository best practices. Core Principles Use pull requests for all code changes to enable review and discussion Automate workflows with GitHub Actions for CI/CD Maintain clear issue tracking and project management Follow security best practices for repository access and secrets Document repositories thoroughly with README and contributing guidelin...
|
373 |
| 8738 | react-server-components | patternsdev/skills |
React Server Components Table of Contents When to Use When NOT to Use Instructions Details Source React's Server Components enable modern UX with a server-driven mental model . This is quite different from Server-side Rendering (SSR) of components and results in significantly smaller client-side JavaScript bundles. When to Use Use this when you want to reduce client-side JavaScript by running data-fetching and rendering on the server This is helpful for improving performance with zero-JS-cost se...
|
373 |
| 8739 | prompt-library | davila7/claude-code-templates |
📝 Prompt Library A comprehensive collection of battle-tested prompts inspired by awesome-chatgpt-prompts and community best practices. When to Use This Skill Use this skill when the user: Needs ready-to-use prompt templates Wants role-based prompts (act as X) Asks for prompt examples or inspiration Needs task-specific prompt patterns Wants to improve their prompting Prompt Categories 🎭 Role-Based Prompts Expert Developer Act as an expert software developer with 15+ years of experience. You s...
|
373 |
| 8740 | perplexity | davila7/claude-code-templates |
Perplexity Tools Use ONLY when user says "search", "find", "look up", "ask", "research", or "what's the latest" for generic queries. NOT for library/framework docs (use Context7), gt CLI (use Graphite MCP), or workspace questions (use Nx MCP). Quick Reference Which Perplexity tool? Need search results/URLs? → Perplexity Search Need conversational answer? → Perplexity Ask Need deep research? → Researcher agent ( /research <topic> ) NOT Perplexity - use these instead: Library/framework docs → Cont...
|
373 |
| 8741 | chrome bridge automation | web-infra-dev/midscene-skills |
Chrome Bridge Automation CRITICAL RULES — VIOLATIONS WILL BREAK THE WORKFLOW: Never run midscene commands in the background. Each command must run synchronously so you can read its output (especially screenshots) before deciding the next action. Background execution breaks the screenshot-analyze-act loop. Run only one midscene command at a time. Wait for the previous command to finish, read the screenshot, then decide the next action. Never chain multiple commands together. Allow enough time for...
|
372 |
| 8742 | github-actions | bobmatnyc/claude-mpm-skills |
GitHub Actions Build Artifacts Overview Reusable GitHub Actions patterns to build React Native apps for iOS simulators and Android emulators in the cloud, then publish artifacts retrievable via gh CLI or GitHub API. When to Apply Use this skill when: Creating CI workflows that build React Native simulator/emulator artifacts. Uploading iOS simulator and Android emulator installables from PRs or manual dispatch runs. Replacing local-only mobile builds with downloadable CI artifacts. Needing stable...
|
372 |
| 8743 | ai-multimodal | mrgoonie/claudekit-skills |
AI Multimodal Processing Skill Process audio, images, videos, documents, and generate images using Google Gemini's multimodal API. Unified interface for all multimedia content understanding and generation. Core Capabilities Audio Processing Transcription with timestamps (up to 9.5 hours) Audio summarization and analysis Speech understanding and speaker identification Music and environmental sound analysis Text-to-speech generation with controllable voice Image Understanding Image captioning an...
|
372 |
| 8744 | hairy | hairyf/skills |
This skill covers Hairyf's preferred tooling, configurations, and best practices for web development. This skill is opinionated. Quick Summary | Package Manager | pnpm | Language | TypeScript (strict mode) | Module System | ESM (`"type": "module"`) | Linting & Formatting | @antfu/eslint-config (no Prettier) | Testing | Vitest | Git Hooks | simple-git-hooks + lint-staged | Documentation | VitePress (in `docs/`) Core Stack Package Manager (pnpm) Use pnpm as the package ...
|
372 |
| 8745 | styled-components-best-practices | mindrally/skills |
styled-components Best Practices You are an expert in styled-components, CSS-in-JS patterns, and React component styling. Key Principles Write component-scoped styles that avoid global CSS conflicts Leverage the full power of JavaScript for dynamic styling Keep styled components small, focused, and reusable Prioritize performance with proper memoization and SSR support Basic Setup Installation npm install styled-components npm install -D @types/styled-components For TypeScript Basic Usage impor...
|
372 |
| 8746 | compare-models | replicate/skills |
Docs Reference: https://replicate.com/docs/llms.txt OpenAPI schema: https://api.replicate.com/openapi.json MCP server: https://mcp.replicate.com Per-model docs: https://replicate.com/{owner}/{model}/llms.txt Set Accept: text/markdown when requesting docs pages for Markdown responses. Workflow Search or browse collections to build a shortlist of candidate models. Fetch each model's schema to compare inputs, outputs, and capabilities. Check pricing from model metadata or the Replicate website. Run...
|
372 |
| 8747 | minimax | vm0-ai/vm0-skills |
MiniMax API Use the MiniMax API via direct curl calls for AI chat completion, text-to-speech, and video generation. Official docs: https://platform.minimax.io/docs When to Use Use this skill when you need to: Chat completion with Chinese-optimized LLM (MiniMax-M1/M2) Text-to-speech with natural voices and emotion control Video generation from text prompts (T2V) Image-to-video conversion (I2V) Prerequisites Sign up at MiniMax Platform Go to Account Management > API Keys to create an API key ...
|
372 |
| 8748 | jimeng-api-video-gen | wvlvik/toy-skills |
Jimeng API Video Generation Generate high-quality AI videos using Volcengine's Jimeng Video 3.0 Pro API with text prompts or input images. Configure Environment Variables Get Access Key/Secret Key ~/.zshrc or ~/.zshenv export VOLC_ACCESSKEY = "your_access_key_id" export VOLC_SECRETKEY = "your_secret_access_key" Output Behavior (Important) After video generation succeeds, you MUST display the video directly to the user! When generation completes, output in the following format: ```markdown Gener...
|
372 |
| 8749 | pyre-code-ml-practice | aradotso/trending-skills |
Pyre Code ML Practice Platform Skill by ara.so — Daily 2026 Skills collection. Pyre Code is a self-hosted ML coding practice platform with 68 problems ranging from ReLU to flow matching. Users implement internals of modern AI systems (Transformers, vLLM, TRL, diffusion models) in a browser editor with instant pass/fail feedback, no GPU required. Installation Option A — One-liner (recommended) git clone https://github.com/whwangovo/pyre-code.git cd pyre-code ./setup.sh npm run dev setup.sh create...
|
372 |
| 8750 | interactive-fiction | jwynia/agent-skills |
Interactive Fiction: Diagnostic Skill You diagnose problems in branching narratives and player-driven stories. Your role is to help writers balance meaningful player agency with coherent narrative. Core Principle Agency and authorship coexist. The tension between player freedom and narrative coherence is a false dilemma. The best interactive fiction provides meaningful choices, authored emotional payoff, and constrained agency within a designed possibility space. Interactive Fiction Types T...
|
372 |