███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 6451 | database-query-optimization | aj-geddes/useful-ai-prompts |
Database Query Optimization Overview Slow database queries are a common performance bottleneck. Optimization through indexing, efficient queries, and caching dramatically improves application performance. When to Use Slow response times High database CPU usage Performance regression New feature deployment Regular maintenance Instructions 1. Query Analysis -- Analyze query performance EXPLAIN ANALYZE SELECT users.id, users.name, COUNT(orders.id) as order_count FROM users LEFT JOIN orders ON us...
|
323 |
| 6452 | add-provider-package | vercel/ai |
Adding a New Provider Package This guide covers the process of creating a new @ai-sdk/<provider> package to integrate an AI service into the AI SDK. First-Party vs Third-Party Providers Third-party packages : Any provider can create a third-party package. We're happy to link to it from our documentation. First-party @ai-sdk/<provider> packages : If you prefer a first-party package, please create an issue first to discuss. Reference Example See https://github.com/vercel/ai/pull/8136/files for a c...
|
323 |
| 6453 | oauth-implementation | aj-geddes/useful-ai-prompts |
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...
|
323 |
| 6454 | playwright-recording | digitalsamba/claude-code-video-toolkit |
Playwright can record browser interactions as video - perfect for demo footage in Remotion compositions. Quick Start Installation ``` In your video project npm init -y npm install -D playwright @playwright/test npx playwright install chromium ``` Basic Recording Script ``` // scripts/record-demo.ts import { chromium } from 'playwright'; async function recordDemo() { const browser = await chromium.launch(); const context = await browser.newContext({ viewport: { width: 1920, hei...
|
323 |
| 6455 | performance-testing | aj-geddes/useful-ai-prompts |
Performance Testing Overview Performance testing measures how systems behave under various load conditions, including response times, throughput, resource utilization, and scalability. It helps identify bottlenecks, validate performance requirements, and ensure systems can handle expected loads. When to Use Validating response time requirements Measuring API throughput and latency Testing database query performance Identifying performance bottlenecks Comparing algorithm efficiency Benchmarking...
|
323 |
| 6456 | angular-best-practices-primeng | alfredoperez/angular-best-practices |
Angular PrimeNG Best Practices PrimeNG rules for component imports, table performance, and theming. Use with the core angular-best-practices skill for comprehensive Angular coverage. Links Core Skill: angular-best-practices Browse All Skills GitHub Repository When to Apply Importing PrimeNG standalone components Configuring tables with server-side pagination or virtual scrolling Setting up Aura/Lara themes with design tokens Rules Rule Impact Description Tree-Shake PrimeNG Imports MEDIUM Standal...
|
323 |
| 6457 | mongodb-schema-design | mongodb/agent-skills |
MongoDB Schema Design Data modeling patterns and anti-patterns for MongoDB, maintained by MongoDB. Bad schema is the root cause of most MongoDB performance and cost issues—queries and indexes cannot fix a fundamentally wrong model. When to Apply Reference these guidelines when: Designing a new MongoDB schema from scratch Migrating from SQL/relational databases to MongoDB Reviewing existing data models for performance issues Troubleshooting slow queries or growing document sizes Deciding between ...
|
323 |
| 6458 | prototype-prompt-generator | cexll/myclaude |
Prototype Prompt Generator Overview Generate comprehensive, production-ready prompts for UI/UX prototype creation. Transform user requirements into detailed technical specifications that include design systems, color palettes, component specifications, layout structures, and implementation guidelines. Output prompts are structured for optimal consumption by AI tools or human developers building HTML/CSS/React prototypes. Workflow Step 1: Gather Requirements Begin by collecting essential infor...
|
322 |
| 6459 | jira-cli | code-and-sorts/awesome-copilot-agents |
Jira CLI Interact with Atlassian Jira from the command line using jira-cli. When to Use User asks to create, view, edit, or search Jira issues/tickets User needs to transition issues through workflow states (To Do → In Progress → Done) User wants to manage sprints, epics, or boards User needs to assign issues, add comments, or log work time User asks about their current tasks or sprint progress Prerequisites Install jira-cli: brew install ankitpokhrel/jira-cli/jira-cli (macOS) or download from...
|
322 |
| 6460 | chroma | davila7/claude-code-templates |
Chroma - Open-Source Embedding Database The AI-native database for building LLM applications with memory. When to use Chroma Use Chroma when: Building RAG (retrieval-augmented generation) applications Need local/self-hosted vector database Want open-source solution (Apache 2.0) Prototyping in notebooks Semantic search over documents Storing embeddings with metadata Metrics: 24,300+ GitHub stars 1,900+ forks v1.3.3 (stable, weekly releases) Apache 2.0 license Use alternatives instead: Pin...
|
322 |
| 6461 | frontend-design | vercel-labs/agent-eval |
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: Purpose :...
|
322 |
| 6462 | pptx-official | sickn33/antigravity-awesome-skills |
PPTX creation, editing, and analysis Overview A user may ask you to create, edit, or analyze the contents of a .pptx file. A .pptx file is essentially a ZIP archive containing XML files and other resources that you can read or edit. You have different tools and workflows available for different tasks. Reading and analyzing content Text extraction If you just need to read the text contents of a presentation, you should convert the document to markdown: Convert document to markdown python -m mark...
|
322 |
| 6463 | resolve-conflicts | antinomyhq/forge |
Git Conflict Resolution Resolve Git merge conflicts by intelligently combining changes from both branches while preserving the intent of both changes. This skill follows a plan-first approach: assess conflicts, create a detailed resolution plan, get approval, then execute. Core Principles Plan Before Executing: Always create a structured resolution plan and get user approval before making changes Prefer Both Changes: Default to keeping both changes unless they directly contradict Merge, Don't ...
|
322 |
| 6464 | writing-for-interfaces | andrewgleave/skills |
Writing for Interfaces Good interface writing is invisible. When words work seamlessly with design, people don't notice them. Writing should be part of the design process from the start, not something filled in at the end. When words are considered alongside layout, interaction, and visual design, the result feels seamless. When they're an afterthought, product experiences feel stitched together. Every piece of text in an interface is a small act of communication: it should respect the person's ...
|
322 |
| 6465 | cms-best-practices | webflow/webflow-skills |
CMS Best Practices Provide expert guidance on Webflow CMS architecture, relationships, optimization, and troubleshooting. Important Note ALWAYS use Webflow MCP tools for all operations: Use Webflow MCP's webflow_guide_tool to get best practices before starting Use Webflow MCP's data_sites_tool with action list_sites to identify available sites Use Webflow MCP's data_sites_tool with action get_site to retrieve site details and plan limits Use Webflow MCP's data_cms_tool with action get_collec...
|
322 |
| 6466 | long-task-coordinator | charon-fan/agent-playbook |
Long Task Coordinator Keep long-running work recoverable, stateful, and honest. When to Use This Skill Use this skill when the work: Spans multiple turns or multiple sessions Involves handoffs to workers, subagents, or background jobs Needs explicit waiting states instead of "still looking" updates Must survive interruption and resume from a durable state file Skip this skill for small, single-turn tasks. Use planning-with-files when simple planning is enough and recovery logic is not the main c...
|
322 |
| 6467 | dodo-best-practices | dodopayments/skills |
Dodo Payments Integration Guide Always consult docs.dodopayments.com for the latest API reference and code examples. Dodo Payments is the all-in-one engine to launch, scale, and monetize worldwide. Designed for SaaS and AI products, it handles payments, billing, subscriptions, and distribution without extra engineering. Quick Reference Environment Variables DODO_PAYMENTS_API_KEY - Your API key from the dashboard DODO_PAYMENTS_WEBHOOK_SECRET - Webhook signing secret for verification API Enviro...
|
322 |
| 6468 | docker-containerization | ailabs-393/ai-labs-claude-skills |
Docker Containerization Overview Build production-ready Docker containers following best practices for security, performance, and maintainability. When to Use Containerizing applications for deployment Creating Dockerfiles for new services Optimizing existing container images Setting up development environments Building CI/CD container pipelines Implementing microservices Instructions 1. Multi-Stage Builds Multi-stage build for Node.js application Stage 1: Build FROM node:18-alpine AS builde...
|
322 |
| 6469 | ts-agent-sdk | jezweb/claude-skills |
ts-agent-sdk Overview This skill generates typed TypeScript SDKs that allow AI agents (primarily Claude Code) to interact with web applications via MCP servers. It replaces verbose JSON-RPC curl commands with clean function calls. Template Location The core SDK template files are bundled with this skill at: templates/ Copy these files to the target project's scripts/sdk/ directory as a starting point: cp -r ~/.claude/skills/ts-agent-sdk/templates/* ./scripts/sdk/ SDK Generation Workflow St...
|
321 |
| 6470 | cloudflare-python-workers | jezweb/claude-skills |
Cloudflare Python Workers Status: Beta (requires python_workers compatibility flag) Runtime: Pyodide (Python 3.12+ compiled to WebAssembly) Package Versions: workers-py@1.7.0, workers-runtime-sdk@0.3.1, wrangler@4.58.0 Last Verified: 2026-01-21 Quick Start (5 Minutes) 1. Prerequisites Ensure you have installed: uv - Python package manager Node.js - Required for Wrangler 2. Initialize Project Create project directory mkdir my-python-worker && cd my-python-worker Initialize Python project u...
|
321 |
| 6471 | design-game | opusgamelabs/game-creator |
Design Game Run a UI/UX design pass on an existing game to improve visuals, atmosphere, and game feel. No design experience needed — this command analyzes your game and applies proven visual patterns. Instructions Analyze the game at $ARGUMENTS (or the current directory if no path given). First, load the game-designer skill to get the full design vocabulary and patterns. Step 1: Audit Read package.json to identify the engine Read src/core/Constants.js for the current color palette and config Rea...
|
321 |
| 6472 | subtitle-generation | eachlabs/skills |
Subtitle Generation Generate professional subtitles and captions for videos using each::sense. This skill creates accurate transcriptions, multi-language subtitles, animated captions, and various export formats optimized for social media, video production, and accessibility. Features Auto-Generated Subtitles : Automatic speech-to-text transcription with accurate timing Multi-Language Generation : Generate subtitles in multiple languages from audio Animated Captions : TikTok/Instagram-style anima...
|
321 |
| 6473 | 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...
|
321 |
| 6474 | react-router-data-mode | remix-run/agent-skills |
React Router Data Mode Data mode uses createBrowserRouter and RouterProvider to enable data loading, actions, and pending UI without the framework's Vite plugin. This is ideal for existing React applications that want to add data loading and mutation capabilities. When to Apply Using createBrowserRouter with route objects Loading data with loader property on routes Handling mutations with action property Navigating with <Link> , <NavLink> , <Form> , redirect , and useNavigate Implementing pendin...
|
321 |
| 6475 | aesthetic | mrgoonie/claudekit-skills |
Aesthetic Create aesthetically beautiful interfaces by following proven design principles and systematic workflows. When to Use This Skill Use when: Building or designing user interfaces Analyzing designs from inspiration websites (Dribbble, Mobbin, Behance) Generating design images and evaluating aesthetic quality Implementing visual hierarchy, typography, color theory Adding micro-interactions and animations Creating design documentation and style guides Need guidance on accessibility and ...
|
321 |
| 6476 | bun | dalestudy/skills |
Bun Node.js 대신 Bun을 기본 런타임으로 사용. 설치 macOS / Linux brew install oven-sh/bun/bun npm npm install -g bun 명령어 매핑 Node.js / npm Bun npm install bun install npm install <pkg> bun add <pkg> npm install -D <pkg> bun add -d <pkg> npm uninstall <pkg> bun remove <pkg> npm run <script> bun run <script> 또는 bun <script> npx <cmd> bunx <cmd> node <file> bun <file> npm init bun init npm create <template> bun create <template> 프로젝트 초기화 새 프로젝트 bun init 템플릿 사용 bun create next-app my-app bun create vite my-app ...
|
321 |
| 6477 | widgets-ui | inference-sh/skills |
Widget Renderer Declarative UI from JSON via ui.inference.sh . Quick Start npx shadcn@latest add https://ui.inference.sh/r/widgets.json Basic Usage import { WidgetRenderer } from "@/registry/blocks/widgets/widget-renderer" import type { Widget , WidgetAction } from "@/registry/blocks/widgets/types" const widget : Widget = { type : 'ui' , title : 'My Widget' , children : [ { type : 'text' , value : 'Hello World' } , { type : 'button' , label : 'Click me' , onClickAction : { type : 'click' } } , ]...
|
321 |
| 6478 | stock-evaluator-v3 | sundial-org/awesome-openclaw-skills |
Stock Evaluator (Enhanced) ⚠️ CRITICAL: MANDATORY DELIVERABLES CHECKLIST Every analysis MUST include ALL of these: ☐ Technical Analysis (price action, indicators, key levels, Ichimoku Cloud) ☐ Fundamental Analysis (business, financials, competitive position) ☐ Advanced Financial Metrics (F-Score, Z-Score, M-Score, Max Drawdown, Value Trap Score) ☐ Investor Persona Scores (8 legendary investor frameworks) ☐ Valuation Assessment (multiple methods with margin of safety) ☐ Bull vs. Bear Case (both s...
|
321 |
| 6479 | nestjs-code-review | giuseppe-trisciuoglio/developer-kit |
NestJS Code Review Overview This skill provides structured, comprehensive code review for NestJS applications. It evaluates code against NestJS best practices, TypeScript conventions, SOLID principles, and production-readiness criteria. The review produces actionable findings categorized by severity (Critical, Warning, Suggestion) with concrete code examples for improvements. This skill delegates to the nestjs-code-review-expert agent for deep analysis when invoked through the agent system. When...
|
321 |
| 6480 | memory-optimization | aj-geddes/useful-ai-prompts |
Memory Optimization Overview Memory optimization improves application performance, stability, and reduces infrastructure costs. Efficient memory usage is critical for scalability. When to Use High memory usage Memory leaks suspected Slow performance Out of memory crashes Scaling challenges Instructions 1. Memory Profiling // Browser memory profiling // Check memory usage performance.memory: { jsHeapSizeLimit: 2190000000, // Max available totalJSHeapSize: 1300000000, // Total allocat...
|
321 |
| 6481 | project-estimation | aj-geddes/useful-ai-prompts |
Project Estimation Overview Accurate project estimation determines realistic timelines, budgets, and resource allocation. Effective estimation combines historical data, expert judgment, and structured techniques to minimize surprises. When to Use Defining project scope and deliverables Creating project budgets and timelines Allocating team resources Managing stakeholder expectations Assessing project feasibility Planning for contingencies Updating estimates during project execution Instruction...
|
321 |
| 6482 | biomedical-search | yorkeccak/scientific-skills |
Biomedical Search Search across all major biomedical databases (PubMed, bioRxiv, medRxiv, ClinicalTrials.gov, FDA drug labels) simultaneously using natural language queries powered by Valyu's semantic search API. Why This Skill is Powerful No API Parameter Parsing: Just pass natural language queries directly - no need to construct complex search parameters Semantic Search: Understands the meaning of your query, not just keyword matching Full-Text Access: Returns complete content from literatur...
|
321 |
| 6483 | markit-markdown-converter | aradotso/trending-skills |
markit-markdown-converter Skill by ara.so — Daily 2026 Skills collection. markit converts almost anything to markdown: PDFs, Word docs, PowerPoint, Excel, HTML, EPUB, Jupyter notebooks, RSS feeds, CSV, JSON, YAML, images (with EXIF + AI description), audio (with metadata + AI transcription), ZIP archives, URLs, Wikipedia pages, and source code files. It works as a CLI tool and as a TypeScript/Node.js library, supports pluggable converters, and integrates with OpenAI, Anthropic, and any OpenAI-co...
|
321 |
| 6484 | subscription-integration | dodopayments/skills |
Reference: [docs.dodopayments.com/developer-resources/subscription-integration-guide](https://docs.dodopayments.com/developer-resources/subscription-integration-guide) Implement recurring billing with trials, plan changes, and usage-based pricing. Quick Start 1. Create Subscription Product In the dashboard (Products → Create Product): - Select "Subscription" type - Set billing interval (monthly, yearly, etc.) - Configure pricing 2. Create Checkout Session ``` import DodoPayments from...
|
321 |
| 6485 | knowledge-management | anthropics/knowledge-work-plugins |
Knowledge Management Skill You are an expert at creating, organizing, and maintaining support knowledge base content. You write articles that are searchable, scannable, and solve customer problems on the first read. You understand that every good KB article reduces future ticket volume. Article Structure and Formatting Standards Universal Article Elements Every KB article should include: Title : Clear, searchable, describes the outcome or problem (not internal jargon) Overview : 1-2 sentences ex...
|
320 |
| 6486 | ce:compound-refresh | everyinc/compound-engineering-plugin |
Compound Refresh Maintain the quality of docs/solutions/ over time. This workflow reviews existing learnings against the current codebase, then refreshes any derived pattern docs that depend on them. Mode Detection Check if $ARGUMENTS contains mode:autofix . If present, strip it from arguments (use the remainder as a scope hint) and run in autofix mode . Mode When Behavior Interactive (default) User is present and can answer questions Ask for decisions on ambiguous cases, confirm actions Autofix...
|
320 |
| 6487 | docker-deployment | pluginagentmarketplace/custom-plugin-nodejs |
Docker Deployment Skill Master containerizing and deploying Node.js applications with Docker for consistent, portable deployments. Quick Start Dockerize Node.js app in 3 steps: Create Dockerfile - Define container image Build Image - docker build -t myapp . Run Container - docker run -p 3000:3000 myapp Core Concepts Basic Dockerfile FROM node:18-alpine WORKDIR /app COPY package*.json ./ RUN npm ci --only=production COPY . . EXPOSE 3000 CMD ["node", "src/index.js"] Multi-Stage Build (Op...
|
320 |
| 6488 | claude-reflect | bayramannakov/claude-reflect |
Claude Reflect - Self-Learning System A two-stage system that helps Claude Code learn from user corrections. How It Works Stage 1: Capture (Automatic) Hooks detect correction patterns ("no, use X", "actually...", "use X not Y") and queue them to ~/.claude/learnings-queue.json. Stage 2: Process (Manual) User runs /reflect to review and apply queued learnings to CLAUDE.md files. Available Commands Command Purpose /reflect Process queued learnings with human review /reflect --scan-history Scan...
|
320 |
| 6489 | canvas-design | davila7/claude-code-templates |
These are instructions for creating design philosophies - aesthetic movements that are then EXPRESSED VISUALLY. Output only .md files, .pdf files, and .png files. Complete this in two steps: Design Philosophy Creation (.md file) Express by creating it on a canvas (.pdf file or .png file) First, undertake this task: DESIGN PHILOSOPHY CREATION To begin, create a VISUAL PHILOSOPHY (not layouts or templates) that will be interpreted through: Form, space, color, composition Images, graphics, shapes, ...
|
320 |
| 6490 | openviking-memory | volcengine/openviking |
OpenViking Memory Guide How It Works Auto-Capture : At the end of a conversation, automatically extracts memories from user messages semantic mode: captures all qualifying user text, relying on OpenViking's extraction pipeline to filter keyword mode: only captures text matching trigger words (e.g. "remember", "preference", etc.) Auto-Recall : Before a conversation starts, automatically searches for relevant memories and injects them into context Available Tools memory_recall — Search Memories Se...
|
320 |
| 6491 | improve-game | opusgamelabs/game-creator |
Improve Game Make your game better. This command deep-audits gameplay, visuals, code quality, performance, and player experience, then implements the highest-impact improvements. Run it as many times as you want — each pass finds the next most impactful thing to fix. Instructions Improve the game in the current directory. If $ARGUMENTS specifies a focus area (e.g., "gameplay", "visuals", "performance", "polish", "game-over"), weight that area higher but still audit everything. Step 1: Deep audit...
|
320 |
| 6492 | devops-cicd | miles990/claude-software-skills |
DevOps & CI/CD Overview Practices for automating build, test, and deployment pipelines. CI/CD Pipeline Pipeline Stages ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ │ Commit │ → │ Build │ → │ Test │ → │ Deploy │ → │ Release │ │ │ │ │ │ │ │ Staging │ │ Prod │ └──────────┘ └──────────┘ └──────────┘ └──────────┘ └──────────┘ │ │ │ │ │ │ ┌────┴────┐ ┌─...
|
320 |
| 6493 | filesystem | oimiragieo/agent-studio |
Filesystem Skill Claude Code Built-in Tools Reading Files Read Tool: Read file contents Read file_path="/path/to/file.txt" Options: offset: Start line (for large files) limit: Number of lines to read Finding Files Glob Tool: Find files by pattern Glob pattern="/*.ts" Common patterns: /*.ts - All TypeScript files src//*.tsx - React components in src /test*.js - Test files anywhere Searching Content Grep Tool: Search file contents Grep pattern="function myFunc" path="/src" Options: ...
|
320 |
| 6494 | autopilot | yeachan-heo/oh-my-claudecode |
Autopilot Skill Full autonomous execution from idea to working code. Overview Autopilot is the ultimate hands-off mode. Give it a brief product idea (2-3 lines) and it handles everything: Understands your requirements (Analyst) Designs the technical approach (Architect) Plans the implementation (Critic-validated) Builds with parallel agents (Ralph + Ultrawork) Tests until everything passes (UltraQA) Validates quality and security (Multi-architect review) Usage /oh-my-claudecode:autopilot <yo...
|
320 |
| 6495 | seo-content-writer | sickn33/antigravity-awesome-skills |
SEO Content Writer SEO & GEO Skills Library · 20 skills for SEO + GEO · Install all: npx skills add aaron-he-zhu/seo-geo-claude-skills Research · keyword-research · competitor-analysis · serp-analysis · content-gap-analysis Build · seo-content-writer · geo-content-optimizer · meta-tags-optimizer · schema-markup-generator Optimize · on-page-seo-auditor · technical-seo-checker · internal-linking-optimizer · content-refresher Monitor · rank-tracker · backlink-analyzer · performance-reporter · alert...
|
320 |
| 6496 | xstate | vercel-labs/json-render |
@json-render/xstate XState Store adapter for json-render's StateStore interface. Wire an @xstate/store atom as the state backend for json-render. Installation npm install @json-render/xstate @json-render/core @json-render/react @xstate/store Requires @xstate/store v3+. Usage import { createAtom } from "@xstate/store" ; import { xstateStoreStateStore } from "@json-render/xstate" ; import { StateProvider } from "@json-render/react" ; // 1. Create an atom const uiAtom = createAtom ( { count : 0 } )...
|
320 |
| 6497 | blender-web-pipeline | freshtechbro/claudedesignskills |
Blender Web Pipeline Overview Blender Web Pipeline skill provides workflows for exporting 3D models and animations from Blender to web-optimized formats (primarily glTF 2.0). It covers Python scripting for batch processing, optimization techniques for web performance, and integration with web 3D libraries like Three.js and Babylon.js. When to use this skill: Exporting Blender models for web applications Batch processing multiple 3D assets Optimizing file sizes for web delivery Automating repetit...
|
320 |
| 6498 | 3d-modeling | omer-metin/skills-for-antigravity |
3D Modeling Identity Role: Senior 3D Artist / Technical Artist Personality: I'm a battle-hardened 3D artist who has shipped AAA games and worked on VFX productions. I've debugged more topology nightmares than I can count, and I know exactly which shortcuts will burn you in production. I speak the truth about poly counts, edge flow, and UV layouts - even when it hurts. Expertise Areas: Production topology for games and film Non-destructive modeling workflows High-to-low poly baking pipelines ...
|
320 |
| 6499 | systemverilog | mindrally/skills |
SystemVerilog Development You are an expert in SystemVerilog for FPGA and ASIC design, verification, and hardware optimization. Modular Design & Code Organization Structure designs into small, reusable modules to enhance readability and testability Begin with a top-level module and decompose into sub-modules Use clear interface blocks for module connections Maintain consistent coding style and naming conventions Synchronous Design Principles Prioritize single clock domains for simpler timing a...
|
320 |
| 6500 | tinybird-cli-guidelines | tinybirdco/tinybird-agent-skills |
Tinybird CLI Guidelines Guidance for using the Tinybird CLI (tb) for local development, deployments, data operations, and workspace management. When to Apply Running any tb command Local development with Tinybird Local Building and deploying projects Appending, replacing, or deleting data Managing tokens and secrets via CLI Generating mock data Running tests Rule Files rules/cli-commands.md rules/build-deploy.md rules/local-development.md rules/data-operations.md rules/append-data.md rules/mock-...
|
320 |