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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
10801 python-data-pipeline-designer jorgealves/agent_skills
Python Data Pipeline Designer Purpose and Intent Design ETL workflows with data validation using tools like Pandas, Dask, or PySpark. Use when building robust data processing systems in Python. When to Use Project Setup : When initializing a new Python project. Continuous Integration : As part of automated build and test pipelines. Legacy Refactoring : When updating older Python codebases to modern standards. When NOT to Use Non-Python Projects : This tool is specialized for the Python ecosystem...
71
10802 zendesk-automation composiohq/awesome-claude-skills
Zendesk Automation via Rube MCP Automate Zendesk operations through Composio's Zendesk toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/zendesk Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Zendesk connection via RUBE_MANAGE_CONNECTIONS with toolkit zendesk Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint ...
71
10803 intent-plan arcblock/idd
Intent Plan Transform an approved Intent into a structured, executable development plan with strict TDD discipline. Core Principles Test First, Always: Every implementation step starts with writing tests Phased Execution: Break work into phases with clear deliverables Verification Gates: Each phase ends with e2e validation Automation Priority: Prefer CLI/script testing over manual/browser testing Plan Structure Phase 1: [Phase Name] ├── Step 1.1: [Feature/Component] │ ├── Unit 1: Write Tests...
71
10804 dropbox-automation composiohq/awesome-claude-skills
Dropbox Automation via Rube MCP Automate Dropbox operations including file upload/download, search, folder management, sharing links, batch operations, and metadata retrieval through Composio's Dropbox toolkit. Toolkit docs : composio.dev/toolkits/dropbox Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Dropbox connection via RUBE_MANAGE_CONNECTIONS with toolkit dropbox Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://r...
71
10805 multi-agent architect daffy0208/ai-dev-standards
Multi-Agent Architect Design systems where multiple specialized agents collaborate to solve complex problems. Core Principle Divide complex tasks among specialized agents , each expert in their domain, coordinated through clear communication patterns. When to Use Multi-Agent Systems Use Multi-Agent When: ✅ Task requires multiple specializations (research + writing + coding) ✅ Parallel processing speeds up solution (independent subtasks) ✅ Need self-correction through peer review ✅ Complex workfl...
71
10806 performance-profiling vudovn/antigravity-kit
Performance Profiling Measure, analyze, optimize - in that order. 🔧 Runtime Scripts Execute these for automated profiling: Script Purpose Usage scripts/lighthouse_audit.py Lighthouse performance audit python scripts/lighthouse_audit.py https://example.com 1. Core Web Vitals Targets Metric Good Poor Measures LCP < 2.5s > 4.0s Loading INP < 200ms > 500ms Interactivity CLS < 0.1 > 0.25 Stability When to Measure Stage Tool Development Local Lighthouse CI/CD Lighthouse CI Production RUM (Real Use...
71
10807 pdf dedalus-erp-pas/foundation-skills
PDF Processing Guide Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. Quick Start from pypdf import PdfReader , PdfWriter Read a PDF reader = PdfReader ( "document.pdf" ) print ( f"Pages: { len ( reader . pages ) } " ) Extract text text = "" for page in reader . pages : t...
71
10808 instrumenting-with-mlflow-tracing mlflow/skills
MLflow Tracing Instrumentation Guide Language-Specific Guides Based on the user's project, load the appropriate guide: Python projects : Read references/python.md TypeScript/JavaScript projects : Read references/typescript.md If unclear, check for package.json (TypeScript) or requirements.txt / pyproject.toml (Python) in the project. What to Trace Trace these operations (high debugging/observability value): Operation Type Examples Why Trace Root operations Main entry points, top-level pipelines,...
71
10809 hubspot-automation sickn33/antigravity-awesome-skills
HubSpot CRM Automation via Rube MCP Automate HubSpot CRM workflows including contact/company management, deal pipeline tracking, ticket search, and custom property creation through Composio's HubSpot toolkit. Toolkit docs : composio.dev/toolkits/hubspot Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active HubSpot connection via RUBE_MANAGE_CONNECTIONS with toolkit hubspot Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rub...
71
10810 mapbox-integration-patterns mapbox/mcp-devkit-server
Mapbox Integration Patterns Skill This skill provides official patterns for integrating Mapbox GL JS into web applications across different frameworks. These patterns are based on Mapbox's create-web-app scaffolding tool and represent production-ready best practices. Version Requirements Mapbox GL JS Recommended: v3.x (latest) Minimum: v3.0.0 Why v3.x: Modern API, improved performance, active development v2.x: Still supported but deprecated patterns (see migration notes below) Installing vi...
71
10811 oauth-implementation mindrally/skills
OAuth Implementation Overview Implement industry-standard OAuth 2.0 and OpenID Connect authentication flows with JWT tokens, refresh tokens, and secure session management. When to Use User authentication systems Third-party API integration Single Sign-On (SSO) implementation Mobile app authentication Microservices security Social login integration Implementation Examples 1. Node.js OAuth 2.0 Server // oauth-server.js - Complete OAuth 2.0 implementation const express = require('express'); const...
71
10812 ios-design pproenca/dot-skills
Apple SwiftUI iOS Design Best Practices A builder's guide for implementing Apple-quality iOS interfaces in SwiftUI, grounded in two foundational design texts: Ken Kocienda — Creative Selection (empathy for the user, craft in coding, taste in choosing the best solution, demo culture of iterative refinement) John Edson — Design Like Apple (systems thinking, the product is the marketing, design out loud, design with conviction) Contains 62 rules across 8 principle-based categories. Each rule identi...
71
10813 tailwindcss-debugging josiahsiegel/claude-plugin-marketplace
Tailwind CSS Debugging & Troubleshooting Common Issues & Solutions 1. Styles Not Applying Check Content Detection v4 automatically detects content, but if styles are missing: /* Explicitly specify sources */ @import "tailwindcss"; @source "./src//*.{html,js,jsx,ts,tsx,vue,svelte}"; Verify Class Names <!-- WRONG - Dynamic class won't be detected --> <div class={`text-${color}-500`}> <!-- CORRECT - Use complete class names --> <div class={color === 'blue' ? 'text-blue-500' : 'text-red-500'}> ...
71
10814 codemap jordancoin/codemap
Codemap Codemap gives you instant architectural context about any codebase. Use it proactively before exploring or modifying code. Commands codemap . Project structure and top files codemap --deps Dependency flow (imports/functions) codemap --diff Changes vs main branch codemap --diff --ref <branch> Changes vs specific branch When to Use ALWAYS run codemap . when: Starting any new task or feature User asks "where is X?" or "what files hand...
71
10815 cli-developer 404kidwiz/claude-supercode-skills
CLI Developer Senior CLI developer with expertise in building intuitive, cross-platform command-line tools with excellent developer experience. Role Definition You are a senior CLI developer with 10+ years of experience building developer tools. You specialize in creating fast, intuitive command-line interfaces across Node.js, Python, and Go ecosystems. You build tools with <50ms startup time, comprehensive shell completions, and delightful UX. When to Use This Skill Building CLI tools and t...
71
10816 github-issue-creator sickn33/antigravity-awesome-skills
GitHub Issue Creator This skill guides the creation of high-quality GitHub issues that adhere to the repository's standards and use the appropriate templates. Workflow Follow these steps to create a GitHub issue: Identify Issue Type : Determine if the request is a bug report, feature request, or other category. Locate Template : Search for issue templates in .github/ISSUE_TEMPLATE/ . bug_report.yml feature_request.yml website_issue.yml If no relevant YAML template is found, look for .md template...
71
10817 localization-l10n mindrally/skills
Localization (l10n) You are an expert in localization for web and mobile applications. Apply these guidelines to adapt internationalized applications for specific regions, languages, and cultures. Core Principles Localization (l10n) builds on internationalization (i18n) Ensure all user-facing text supports localization Adapt content for cultural appropriateness Respect regional conventions for dates, numbers, and currency Design for content that varies significantly between locales Localizatio...
71
10818 rich-terminal-output autumnsgrove/groveengine
Rich Terminal Output Skill When to Activate Activate this skill when: Building CLI applications Displaying structured data (tables) Showing progress for long operations Creating error/status panels Pretty-printing objects for debugging Enhancing logging output Installation uv add rich Quick test python -c "from rich import print; print('[bold green]Rich working![/]')" Core Concepts Console Object from rich . console import Console console = Console ( ) Basic output console . print ( "Hello, Wo...
71
10819 ghostty-config sammcj/agentic-coding
Ghostty Configuration Guidance for configuring the Ghostty terminal emulator. Ghostty uses text-based config files with sensible defaults and zero required configuration. Config File Locations XDG Path (All Platforms): $XDG_CONFIG_HOME/ghostty/config Defaults to ~/.config/ghostty/config if XDG_CONFIG_HOME undefined macOS Additional Path: ~/Library/Application Support/com.mitchellh.ghostty/config If both XDG and macOS paths exist, both are loaded with macOS path taking precedence Config Syntax C...
71
10820 comps-analysis anthropics/financial-services-plugins
Comparable Company Analysis ⚠️ CRITICAL: Data Source Priority (READ FIRST) ALWAYS follow this data source hierarchy: FIRST: Check for MCP data sources - If S&P Kensho MCP, FactSet MCP, or Daloopa MCP are available, use them exclusively for financial and trading information DO NOT use web search if the above MCP data sources are available ONLY if MCPs are unavailable: Then use Bloomberg Terminal, SEC EDGAR filings, or other institutional sources NEVER use web search as a primary data source - it ...
71
10821 creating-agent-skills everyinc/compound-engineering-plugin
Creating Agent Skills This skill teaches how to create effective Claude Code Skills following Anthropic's official specification. Core Principles 1. Skills Are Prompts All prompting best practices apply. Be clear, be direct. Assume Claude is smart - only add context Claude doesn't have. 2. Standard Markdown Format Use YAML frontmatter + markdown body. No XML tags - use standard markdown headings. --- name: my-skill-name description: What it does and when to use it --- My Skill Name Qui...
71
10822 powershell-shell-detection josiahsiegel/claude-plugin-marketplace
PowerShell Shell Detection & Cross-Shell Compatibility Critical guidance for distinguishing between PowerShell and Git Bash/MSYS2 shells on Windows, with shell-specific path handling and compatibility notes. Shell Detection Priority (Windows) When working on Windows, correctly identifying the shell environment is crucial for proper path handling and command execution. Detection Order (Most Reliable First) process.env.PSModulePath (PowerShell specific) process.env.MSYSTEM (Git Bash/MinGW spec...
71
10823 git-expert personamanagmentlayer/pcl
Git Expert You are an expert in Git version control with deep knowledge of advanced workflows, branching strategies, collaboration patterns, and best practices. You help teams manage code efficiently and resolve complex version control issues. Core Expertise Essential Git Commands Basic Operations: Initialize repository git init git clone https://github.com/user/repo.git Check status and differences git status git diff Unstaged changes git diff --staged Staged changes git diff main .. .featu...
71
10824 salesforce-automation composiohq/awesome-claude-skills
Salesforce Automation via Rube MCP Automate Salesforce CRM operations through Composio's Salesforce toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/salesforce Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Salesforce connection via RUBE_MANAGE_CONNECTIONS with toolkit salesforce Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — ...
71
10825 electron-architect tomlord1122/tomtom-skill
Electron Architecture Expert Expert assistant for Electron desktop application architecture, Main/Renderer process design, IPC communication, security best practices, and application packaging. How It Works Analyzes application requirements Designs secure Main/Renderer architecture Implements safe IPC communication patterns Provides packaging and distribution configuration Ensures security best practices Usage Scaffold New Project bash /mnt/skills/user/electron-architect/scripts/scaffold-proje...
71
10826 flutter-patterns cleydson/flutter-claude-code
A comprehensive collection of battle-tested Flutter patterns and best practices for building production-quality applications. Overview This skill provides quick-reference patterns for: - Widget Patterns: Common UI components (cards, lists, forms, dialogs, navigation) - Testing Patterns: Unit, widget, and integration testing approaches - Performance Patterns: Optimization techniques and performance checklists - Security Patterns: Security best practices and vulnerability prevention - Anim...
71
10827 code-hardcode-audit terrylica/cc-skills
Code Hardcode Audit When to Use This Skill Use this skill when the user mentions: "hardcoded values", "hardcodes", "magic numbers" "constant detection", "find constants" "duplicate constants", "DRY violations" "code audit", "hardcode audit" "PLR2004", "semgrep", "jscpd", "gitleaks" "secret scanning", "leaked secrets", "API keys" "passwords in code", "credential leaks" Quick Start Full audit (all tools, both outputs) uv run --script scripts/audit_hardcodes.py -- src/ Python magic numbers onl...
71
10828 expo-react-native-coder pproenca/dot-skills
Expo React Native Coder Best Practices Comprehensive feature development guide for Expo React Native applications. Contains 50 rules across 10 categories, covering everything from project setup to testing. Includes production-ready code templates for common features. When to Apply Reference these guidelines when: Setting up a new Expo project with TypeScript Building navigation with Expo Router (tabs, stacks, drawers, modals) Creating screens (list, detail, form, settings) Implementing authentic...
71
10829 pr-review proffesor-for-testing/agentic-qe
PyTorch PR Review Skill Review PyTorch pull requests focusing on what CI cannot check: code quality, test coverage adequacy, security vulnerabilities, and backward compatibility. Linting, formatting, type checking, and import ordering are handled by CI. Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . Instead, ask the user what they would like to review: What would you like me to review? A PR number or URL (e.g., /pr-review 12345 ) A local branc...
71
10830 council danielmiessler/personal_ai_infrastructure
/council — Multi-Model Consensus Council Spawn parallel judges with different perspectives, consolidate into consensus. Works for any task — validation, research, brainstorming. Quick Start /council --quick validate recent fast inline check /council validate this plan validation (2 agents) /council brainstorm caching approaches brainstorm /council validate the implementation validation (critique triggers map here) /council research kubernetes upgrade strategies research /council research th...
71
10831 conversation-archaeologist onewave-ai/claude-skills
Conversation Archaeologist Mine ALL past Claude conversations to build a living 'User Manual About You'. Extract writing style, business context, goals, preferences, and patterns. Make all other skills smarter with context. Instructions You are a master conversation analyst and profile builder. Use conversation_search and recent_chats tools to mine hundreds of past conversations. Extract patterns in: writing style, business context, recurring problems, stated goals, preferences, pet peeves, d...
71
10832 sentry-automation composiohq/awesome-claude-skills
Sentry Automation via Rube MCP Automate Sentry error tracking and monitoring operations through Composio's Sentry toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/sentry Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Sentry connection via RUBE_MANAGE_CONNECTIONS with toolkit sentry Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed ...
71
10833 mkdocs vamseeachanta/workspace-hub
MkDocs Documentation Skill Build fast, beautiful project documentation with MkDocs and Material for MkDocs theme. This skill covers everything from basic setup to advanced deployment pipelines with versioning. When to Use This Skill USE When Building project documentation for open source or internal projects Need a fast, searchable static documentation site Want beautiful Material Design without custom CSS Require multi-version documentation (v1.x, v2.x, etc.) Deploying documentation to GitHub...
71
10834 sqlc kalbasit/ncps
This skill provides instructions for working with `sqlc` and database queries in the NCPS repository. NCPS supports multiple database engines (SQLite, PostgreSQL, MySQL), and `sqlc` is used to generate type-safe Go code from SQL queries for each engine. Configuration - SQLC Config: `sqlc.yml` - Queries: SQLite: `db/query.sqlite.sql` - PostgreSQL: `db/query.postgres.sql` - MySQL: `db/query.mysql.sql` - Output: SQLite: `pkg/database/sqlitedb` - PostgreSQL: `pkg/database/postgresdb` - My...
71
10835 ultrapilot yeachan-heo/oh-my-claudecode
Ultrapilot Skill Parallel autopilot that spawns multiple workers with file ownership partitioning for maximum speed. Overview Ultrapilot is the parallel evolution of autopilot. It decomposes your task into independent parallelizable subtasks, assigns non-overlapping file sets to each worker, and runs them simultaneously. Key Capabilities: Decomposes task into parallel-safe components Partitions files with exclusive ownership (no conflicts) Spawns up to 5 parallel workers (Claude Code limit) Coor...
71
10836 aws-cloudformation-bedrock giuseppe-trisciuoglio/developer-kit
AWS CloudFormation Amazon Bedrock Overview Create production-ready AI infrastructure using AWS CloudFormation templates for Amazon Bedrock. This skill covers Bedrock agents, knowledge bases for RAG implementations, data source connectors, guardrails for content moderation, prompt management, workflow orchestration with flows, and inference profiles for optimized model access. When to Use Use this skill when: Creating Bedrock agents with action groups and function definitions Implementing Retriev...
71
10837 bun tanstack start secondsky/claude-skills
Bun TanStack Start Run TanStack Start (full-stack React framework) with Bun. Quick Start Create new TanStack Start project bunx create-tanstack-start@latest my-app cd my-app Install dependencies bun install Development bun run dev Build bun run build Preview bun run start Project Setup package.json { "scripts" : { "dev" : "vinxi dev" , "build" : "vinxi build" , "start" : "vinxi start" } , "dependencies" : { "@tanstack/react-router" : "^1.139.0" , "@tanstack/start" : "^1.120.0" , "react" : "...
71
10838 excalidraw-skill yctimlin/mcp_excalidraw
Excalidraw Skill Step 0: Determine Connection Mode Two modes are available. Try MCP first — it has more capabilities. MCP mode (preferred): If excalidraw/batch_create_elements and other excalidraw/* tools appear in your tool list, use them directly. MCP tools handle label and arrow binding format automatically. REST API mode (fallback): If MCP tools aren't available, use HTTP endpoints at http://localhost:3000 . See the cheatsheet for REST payloads. Note the format differences in the table below...
71
10839 develop-web-game davila7/claude-code-templates
Develop Web Game Build games in small steps and validate every change. Treat each iteration as: implement → act → pause → observe → adjust. Skill paths (set once) export CODEX_HOME = " ${CODEX_HOME :- $HOME / .codex} " export WEB_GAME_CLIENT = " $CODEX_HOME /skills/develop-web-game/scripts/web_game_playwright_client.js" export WEB_GAME_ACTIONS = " $CODEX_HOME /skills/develop-web-game/references/action_payloads.json" User-scoped skills install under $CODEX_HOME/skills (default: ~/.codex/skills )....
71
10840 backport-pr-assistant cockroachdb/cockroach
CockroachDB Backport Assistant Help the user backport pull requests to older release branches, especially when conflicts need resolution. Backport CLI Tool Reference Basic Usage: backport <pull-request>... Backport entire PR(s) backport <pr> -r <release> Target specific release (e.g., -r 23.2) backport <pr> -b <branch> Target specific branch (e.g., -b release-23.1.10-rc) backport <pr> -j "justification" Add release justification backport <pr...
71
10841 draft-content anthropics/knowledge-work-plugins
Draft Content If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Generate marketing content drafts tailored to a specific content type, audience, and brand voice. Trigger User runs /draft-content or asks to draft, write, or create marketing content. Inputs Gather the following from the user. If not provided, ask before proceeding: Content type — one of: Blog post Social media post (specify platform: LinkedIn, Twitter/X, Instagram, Facebook) Email n...
71
10842 qa-use desplega-ai/qa-use
E2E testing and browser automation for AI-driven development workflows. Quick Start ``` qa-use browser create --viewport desktop Create browser session qa-use browser goto https://example.com Navigate qa-use browser snapshot Get element refs qa-use browser click e3 Interact by ref qa-use browser close Cleanup ``` For localhost: Add `--tunnel` to create (browser runs locally with API tunnel). Core Workflow - Create session →...
71
10843 xcodebuildmcp getsentry/xcodebuildmcp
XcodeBuildMCP Prefer XcodeBuildMCP tools over shell commands for Apple platform tasks when available. If a capability is missing, assume your tool list may be hiding tools (search/progressive disclosure) or not loading schemas yet. Use your tool-search or “load tools” mechanism. If you still can’t find the tools, ask the user to enable them in the MCP client configuration. Tools (exact names + official descriptions) Session defaults Most tools require session defaults to be set before they c...
71
10844 moai-lang-go modu-ai/moai-adk
Quick Reference (30 seconds) Go 1.23+ Development Expert for high-performance backend systems and CLI applications. Auto-Triggers: Files with .go extension, go.mod, go.sum, goroutines, channels, Fiber, Gin, GORM, Echo, Chi Core Use Cases: High-performance REST APIs and microservices Concurrent and parallel processing systems CLI tools and system utilities Cloud-native containerized services Quick Patterns: Fiber API Pattern: Create app by calling fiber.New function. Define a get route at ...
71
10845 project-astrology-numerology vasilyu1983/ai-agents-public
Astrology & Numerology - Expert Advisor You are a professional astrologer and numerologist with 30+ years of practice. Priorities: Calculation correctness (timezone/DST, quadrant handling, coordinate systems). Verification against authoritative references (astro.com Swiss Ephemeris, JPL Horizons, Meeus). Psychology-first interpretations (no deterministic fortune-telling). Operating Rules Validate inputs early: birth date, birth time, birthplace (lat/lon), timezone (IANA name), house system, an...
71
10846 docs-search davila7/claude-code-templates
AI Maestro Documentation Search Search your codebase's auto-generated documentation for function signatures, class definitions, API docs, and code comments. Verify correct patterns before writing code. Part of the AI Maestro suite. Prerequisites Requires AI Maestro running locally with documentation indexed. Install doc tools git clone https://github.com/23blocks-OS/ai-maestro-plugins.git cd ai-maestro-plugins && ./install-doc-tools.sh Core Behavior Before implementing any code changes, search ...
71
10847 drawio-diagram-forge aktsmm/agent-skills
Draw.io Diagram Forge Generate draw.io editable diagrams using AI-powered orchestrated workflow. When to Use General diagram requests - "Create a diagram", "Draw me a chart", etc. Creating architecture diagrams (Azure, AWS, on-premises) Converting flowcharts, system diagrams from text descriptions Transforming existing images/screenshots into editable draw.io format Generating swimlane diagrams, sequence diagrams from Excel/Markdown Prerequisites Tool Purpose Required VS Code IDE ✅ Draw.io Int...
71
10848 umbraco-backoffice umbraco/umbraco-cms-backoffice-skills
Umbraco Backoffice Extensions Overview What This Skill Does Backoffice customisations are combinations of extension types working together: A "custom admin area" = Section + Menu + Dashboard A "data management tool" = Section + Menu + Workspace A "hierarchical browser" = Section + Menu + Tree + Workspace This skill provides complete working blueprints. The source code is in ./examples/ - copy and adapt for your needs. For details on individual extension types, invoke the referenced sub-skills. T...
71
10849 blender davincidreams/agent-team-plugins
Blender Blender Interface and Workflows Workspace Layout 3D Viewport : Main viewport for modeling and scene manipulation Outliner : Hierarchical view of scene objects Properties Panel : Object, modifier, and material properties Timeline : Animation timeline and playback controls Graph Editor : Animation curve editing UV Editor : UV mapping and texture editing Shader Editor : Node-based material and shader creation Navigation Orbit : Middle mouse button Pan : Shift + Middle mouse button Zoom : Sc...
71
10850 text-to-speech martinholovsky/claude-skills-generator
ElevenLabs Text-to-Speech Generate natural speech from text - supports 70+ languages, multiple models for quality vs latency tradeoffs. Setup: See Installation Guide . For JavaScript, use @elevenlabs/* packages only. Quick Start Python from elevenlabs import ElevenLabs client = ElevenLabs ( ) audio = client . text_to_speech . convert ( text = "Hello, welcome to ElevenLabs!" , voice_id = "JBFqnCBsd6RMkjVDRZzb" , George model_id = "eleven_multilingual_v2" ) with open ( "output.mp3" , "wb" ) as f ...
71