███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 12051 | database-administrator | 404kidwiz/claude-supercode-skills |
Database Administrator Purpose Provides senior-level database administration expertise for production database systems including PostgreSQL, MySQL, MongoDB, and enterprise databases. Specializes in high availability architectures, performance tuning, backup strategies, disaster recovery, and database security for mission-critical environments. When to Use Setting up production databases with high availability and disaster recovery Optimizing database performance (slow queries, indexing, config...
|
78 |
| 12052 | serving-llms-vllm | orchestra-research/ai-research-skills |
vLLM - High-Performance LLM Serving Quick start vLLM achieves 24x higher throughput than standard transformers through PagedAttention (block-based KV cache) and continuous batching (mixing prefill/decode requests). Installation: pip install vllm Basic offline inference: from vllm import LLM, SamplingParams llm = LLM(model="meta-llama/Llama-3-8B-Instruct") sampling = SamplingParams(temperature=0.7, max_tokens=256) outputs = llm.generate(["Explain quantum computing"], sampling) print(outpu...
|
77 |
| 12053 | alicloud-network-cdn-test | cinience/alicloud-skills |
Category: test NETWORK CDN Smoke Test Prerequisites Configure credentials with least privilege ( ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / optional ALICLOUD_REGION_ID ). Target skill: skills/network/cdn/alicloud-network-cdn/ . Test Steps Run offline script compilation check (no network needed): python3 tests/common/compile_skill_scripts.py \ --skill-path skills/network/cdn/alicloud-network-cdn \ --output output/alicloud-network-cdn-test/compile-check.json Read the target skill SKILL....
|
77 |
| 12054 | wp-project-triage | automattic/agent-skills |
WP Project Triage When to use Use this skill to quickly understand what kind of WordPress repo you’re in and what commands/conventions to follow before making changes. Inputs required Repo root (current working directory). Procedure Run the detector (prints JSON to stdout): node skills/wp-project-triage/scripts/detect_wp_project.mjs If you need the exact output contract, read: skills/wp-project-triage/references/triage.schema.json Use the report to select workflow guardrails: project kind(s) PHP...
|
77 |
| 12055 | clickup-automation | sickn33/antigravity-awesome-skills |
ClickUp Automation via Rube MCP Automate ClickUp project management workflows including task creation and updates, workspace hierarchy navigation, comments, and team member management through Composio's ClickUp toolkit. Toolkit docs : composio.dev/toolkits/clickup Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active ClickUp connection via RUBE_MANAGE_CONNECTIONS with toolkit clickup Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add ...
|
77 |
| 12056 | teacher | sebastiaanwouters/dotagents |
Guide users to deep understanding through active learning methodologies rather than passive explanation. Quick Start - Research Phase - Build deep understanding of the concept first - Identify user's learning goal - Select appropriate methodology (see table below) - Load and apply the methodology from cookbook Research Phase Before teaching, ensure you have comprehensive knowledge of the concept: When to Research - Concept involves recent developments, APIs, or library specifics - T...
|
77 |
| 12057 | docker-compose-production | thebushidocollective/han |
Docker Compose Production Deployment Production-ready Docker Compose configurations with security, reliability, and scalability best practices. Production-Ready Base Template A comprehensive production template with essential configurations: version: '3.8' services: nginx: image: nginx:1.25-alpine container_name: production-nginx restart: unless-stopped ports: - "80:80" - "443:443" volumes: - ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro - ./nginx...
|
77 |
| 12058 | opencode-controller | sundial-org/awesome-openclaw-skills |
Opencode Controller Core rule Clawdbot does not write code. All planning and coding happens inside Opencode. Pre-flight Ask the user which AI provider to use. Ask how the provider should be authenticated. Do not proceed without confirmation. Session management Start Opencode. Open session selector using: /sessions If the current project already exists: Select the existing session. Never create a new session without user approval. Agent (mode) control Open agent selector using: /agents Available ...
|
77 |
| 12059 | traffic-architect | shipshitdev/library |
Traffic Architect - Traffic Secrets Builder Design traffic strategies using Traffic Secrets principles: Dream 100, Work In vs. Buy In, traffic temperature, and audience ownership. Brunson's Core Principle: "Your customers are already congregating. Find the watering holes." When This Activates User asks "build my traffic plan" User asks "create my Dream 100" User asks "plan my audience strategy" User says "I need more traffic" User mentions traffic, leads, or audience building The Framework: T...
|
77 |
| 12060 | storybook-setup | patricio0312rev/skills |
Storybook Setup Configure Storybook for comprehensive component documentation and testing. Core Workflow Initialize Storybook: Setup with framework Configure addons: Controls, actions, a11y Write stories: Document components Add documentation: MDX pages Setup testing: Visual regression Deploy docs: Static hosting Installation Initialize Storybook npx storybook@latest init Or with specific framework npx storybook@latest init --type react npx storybook@latest init --type nextjs npx storybook@...
|
77 |
| 12061 | anygen-doc | anygenio/anygen-skills |
AI Document Generator - AnyGen You MUST strictly follow every instruction in this document. Do not skip, reorder, or improvise any step. Create professional structured documents using AnyGen OpenAPI. When to Use User needs to create documents (specs, proposals, summaries, reports) User has files to upload as reference material for document generation Security & Permissions What this skill does: Sends task prompts and parameters to www.anygen.io Uploads user-provided reference files to www.anygen...
|
77 |
| 12062 | pyright-type-checker | bobmatnyc/claude-mpm-skills |
Pyright - Fast Python Type Checker progressive_disclosure: entry_point: summary: "Fast Python type checker from Microsoft with VS Code integration and strict modes" when_to_use: - "When needing faster type checking than mypy" - "When using VS Code (Pylance)" - "When requiring stricter type checking" - "When migrating from mypy" quick_start: - "npm install -g pyright" - "Create pyrightconfig.json" - "pyright ." token_estimate: entry: 65-80 full: 3500-4500 Installation Node.js (Recommended) Globa...
|
77 |
| 12063 | alicloud-media-live-test | cinience/alicloud-skills |
Category: test MEDIA LIVE Smoke Test Prerequisites Configure credentials with least privilege ( ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / optional ALICLOUD_REGION_ID ). Target skill: skills/media/live/alicloud-media-live/ . Test Steps Run offline script compilation check (no network needed): python3 tests/common/compile_skill_scripts.py \ --skill-path skills/media/live/alicloud-media-live \ --output output/alicloud-media-live-test/compile-check.json Read the target skill SKILL.md and...
|
77 |
| 12064 | agent-browser | shipshitdev/library |
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...
|
77 |
| 12065 | alicloud-media-mps-test | cinience/alicloud-skills |
Category: test MEDIA MPS Smoke Test Prerequisites Configure credentials with least privilege ( ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / optional ALICLOUD_REGION_ID ). Target skill: skills/media/mps/alicloud-media-mps/ . Test Steps Run offline script compilation check (no network needed): python3 tests/common/compile_skill_scripts.py \ --skill-path skills/media/mps/alicloud-media-mps \ --output output/alicloud-media-mps-test/compile-check.json Read the target skill SKILL.md and ident...
|
77 |
| 12066 | growth-experimenter | daffy0208/ai-dev-standards |
Growth Experimenter Run systematic experiments to grow faster through data-driven optimization. Core Philosophy Growth = Experimentation Velocity × Win Rate × Impact per Win Run more experiments Increase your hit rate through better hypotheses Focus on high-impact areas Growth Model (AARRR / Pirate Metrics) Acquisition → Activation → Retention → Revenue → Referral ↓ ↓ ↓ ↓ ↓ Traffic Sign Up Day 30 Upgrade Invites 100% 40% 50...
|
77 |
| 12067 | apple-intelligence | rshankras/claude-code-apple-skills |
Apple Intelligence Skills Skills for implementing Apple Intelligence features including on-device LLMs, visual recognition, App Intents integration, and intelligent assistants. When This Skill Activates Use this skill when the user: Wants to add AI/LLM features to their app Needs on-device text generation or understanding Asks about Foundation Models or Apple Intelligence Wants to implement structured AI output Needs prompt engineering guidance Wants camera-based visual intelligence features Nee...
|
77 |
| 12068 | supabase-report-compare | yoanbernabeu/supabase-pentest-skills |
Report Comparison This skill compares two security audit reports to track progress over time. When to Use This Skill After fixing vulnerabilities, to verify remediation For periodic security reviews To track security posture over time To identify regression (new vulnerabilities) Prerequisites Two audit reports in Markdown format Reports should be from the same project Usage Basic Comparison Compare security reports old-report.md and new-report.md With Specific Paths Compare reports/audit-v1.md w...
|
77 |
| 12069 | chef-assistant | lyndonkl/claude |
Chef Assistant Table of Contents Purpose When to Use What Is It? Workflow Common Patterns Guardrails Quick Reference Purpose Chef Assistant helps you cook with confidence by combining: Culinary technique (knife skills, sauces, searing, braising) Food science (why things work—Maillard, emulsions, brining) Flavor architecture (salt, acid, fat, heat, sweet, bitter, umami, aroma, texture) Cultural context (how cuisines solve similar problems) Home cooking pragmatism (substitutions, shortcuts, pant...
|
77 |
| 12070 | working-backwards | pmprompt/claude-plugin-product-management |
Working Backwards Help the user apply the working backwards methodology using frameworks and insights from 12 product leaders. How to Help When the user asks for help with working backwards: Start with the customer - Ask who the customer is and what problem they have, before discussing solutions Write the press release - Guide them through drafting a mock press release that describes the finished product Develop the FAQ - Help them anticipate and answer internal questions about feasibility and s...
|
77 |
| 12071 | google-analytics-automation | sickn33/antigravity-awesome-skills |
Google Analytics Automation via Rube MCP Automate Google Analytics 4 (GA4) reporting and property management through Composio's Google Analytics toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/google_analytics Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Google Analytics connection via RUBE_MANAGE_CONNECTIONS with toolkit google_analytics Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an...
|
77 |
| 12072 | espocrm-development | bobmatnyc/claude-mpm-skills |
EspoCRM Development Overview EspoCRM is a metadata-driven CRM platform where configuration lives in JSON files, business logic belongs in Services, and data access happens through ORM EntityManager. This skill enforces architectural patterns to prevent common mistakes like passing Container dependencies, bypassing the service layer, or implementing business logic in hooks. When to Use This Skill Activate when developing custom EspoCRM modules, entities, relationships, hooks, services, API end...
|
77 |
| 12073 | omnicaptions-convert | lattifai/omni-captions-skills |
Caption Format Conversion Convert between 30+ caption/caption formats using lattifai-captions. ⚡ YouTube Workflow 1. Transcribe YouTube video directly omnicaptions transcribe "https://youtube.com/watch?v=VIDEO_ID" -o transcript.md 2. Convert to any format omnicaptions convert transcript.md -o output.srt omnicaptions convert transcript.md -o output.ass omnicaptions convert transcript.md -o output.vtt When to Use Converting SRT to VTT, ASS, TTML, etc. Converting Gemini markdown transcript to...
|
77 |
| 12074 | alicloud-compute-fc-agentrun-test | cinience/alicloud-skills |
Category: test COMPUTE FC AGENTRUN Smoke Test Prerequisites Configure credentials with least privilege ( ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / optional ALICLOUD_REGION_ID ). Target skill: skills/compute/fc/alicloud-compute-fc-agentrun/ . Test Steps Run offline script compilation check (no network needed): python3 tests/common/compile_skill_scripts.py \ --skill-path skills/compute/fc/alicloud-compute-fc-agentrun \ --output output/alicloud-compute-fc-agentrun-test/compile-check.jso...
|
77 |
| 12075 | design-ui | mblode/agent-skills |
No SKILL.md available for this skill. View on GitHub
|
77 |
| 12076 | xpai-doubao-web | hunduncn/xpai-doubao-web |
XPAI Doubao Web Overview Use this skill to generate images or text from Doubao Web by reusing browser login cookies. It provides a CLI wrapper with prompt files, optional reference images, presets, sessions, and JSON output. Script Directory All scripts are located in the scripts/ subdirectory of this skill. Script reference: scripts/main.ts : CLI entry point (image/text) scripts/doubao-webapi/* : TypeScript client and helpers Consent Check (required before first use) This skill relies on revers...
|
77 |
| 12077 | alicloud-ai-search-opensearch-test | cinience/alicloud-skills |
Category: test AI SEARCH OPENSEARCH Smoke Test Prerequisites Configure credentials with least privilege ( ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / optional ALICLOUD_REGION_ID ). Target skill: skills/ai/search/alicloud-ai-search-opensearch/ . Test Steps Run offline script compilation check (no network needed): python3 tests/common/compile_skill_scripts.py \ --skill-path skills/ai/search/alicloud-ai-search-opensearch \ --output output/alicloud-ai-search-opensearch-test/compile-check.j...
|
77 |
| 12078 | latex-tables | terrylica/cc-skills |
When to use this skill: - Creating tables with fixed-width columns - Formatting complex table layouts - Need precise column alignment - Migrating from tabular/tabularx/longtable/booktabs - Troubleshooting table overflow issues Why tabularray? Modern LaTeX3 package (replaces old solutions): - Fixed-width columns with proper alignment - Clean, consistent syntax - Replaces: `tabular`, `tabularx`, `longtable`, `booktabs` - Better performance than legacy packages - Part of TeX Live 2025 ...
|
77 |
| 12079 | monetizing-innovation | pmprompt/claude-plugin-product-management |
Domain Context This skill implements a proven product management framework. The approach combines best practices from industry leaders and is designed for practical application in day-to-day PM work. Input Requirements Context about your product, feature, or problem Relevant data, research, or constraints (recommended but optional) Clear articulation of what you're trying to achieve Monetizing Innovation What It Is Monetizing Innovation is a framework for designing products that customers need, ...
|
77 |
| 12080 | indicator-scanner | marketcalls/openalgo-indicator-skills |
Create a multi-symbol indicator scanner that screens stocks by technical conditions. Arguments Parse $ARGUMENTS as: scan-type watchlist $0 = scan type (e.g., rsi-oversold, rsi-overbought, ema-crossover, supertrend-buy, supertrend-sell, macd-crossover, adx-trending, custom). Default: rsi-oversold $1 = watchlist (e.g., nifty50, banknifty, custom). Default: nifty50 If no arguments, ask the user what they want to scan for. Instructions Read the indicator-expert rules for reference Create scanners/{s...
|
77 |
| 12081 | module-spec-generator | rysweet/amplihack |
This skill automatically generates comprehensive module specifications from code analysis, ensuring adherence to amplihack's brick philosophy and enabling effective module regeneration without breaking system connections. When to Use This Skill - Creating new modules: Generate specs before implementation to clarify requirements - Documenting existing modules: Extract specifications from working code for future reference - Module reviews: Verify specs accurately represent implemented contrac...
|
77 |
| 12082 | golang-pro | 404kidwiz/claude-supercode-skills |
Golang Pro Senior Go developer with deep expertise in Go 1.21+, concurrent programming, and cloud-native microservices. Specializes in idiomatic patterns, performance optimization, and production-grade systems. Role Definition You are a senior Go engineer with 8+ years of systems programming experience. You specialize in Go 1.21+ with generics, concurrent patterns, gRPC microservices, and cloud-native applications. You build efficient, type-safe systems following Go proverbs. When to Use Thi...
|
77 |
| 12083 | aws-cost-finops | ahmedasmar/devops-claude-skills |
AWS Cost Optimization & FinOps Systematic workflows for AWS cost optimization and financial operations management. When to Use This Skill Use this skill when you need to: Find cost savings: Identify unused resources, rightsizing opportunities, or commitment discounts Analyze spending: Understand cost trends, detect anomalies, or break down costs Optimize architecture: Choose cost-effective services, storage tiers, or instance types Implement FinOps: Set up governance, tagging, budgets, or mo...
|
77 |
| 12084 | usability-tester | daffy0208/ai-dev-standards |
Usability Tester Validate that users can successfully complete core tasks through systematic observation. Core Principle Watch users struggle. The best way to find UX issues is to observe real users attempting real tasks. Their struggles reveal truth that surveys and analytics cannot. Test Planning 1. Define Test Objectives Good Objectives: - "Can users complete onboarding in <5 minutes?" - "Can users find and use the export feature?" - "Do users understand the pricing page?" Bad Obje...
|
77 |
| 12085 | browser-setup-devtools | different-ai/openwork |
Browser automation setup (DevTools MCP first) Principles Keep prompts minimal; do as much as possible with tools and commands. Always attempt Chrome DevTools MCP first; only fall back to the browser extension when DevTools MCP cannot be used. Workflow Ask: "Do you have Chrome installed on this computer?" If no or unsure: Offer to open the download page yourself and do it if possible. Provide a clickable link: https://www.google.com/chrome/ Continue after installation is confirmed. Check DevTools...
|
77 |
| 12086 | opportunity-solution-trees | pmprompt/claude-plugin-product-management |
Opportunity Solution Trees Domain Context The Opportunity Solution Tree (Teresa Torres, Continuous Discovery Habits ) is the backbone of modern product discovery. It prevents teams from jumping to solutions by forcing them to first map the opportunity space. Structure (4 levels): Desired Outcome (top) — The measurable business or product outcome you're pursuing. Should be a single, clear metric (e.g., "increase 7-day retention to 40%"). This comes from your OKRs or product strategy. Opportunitie...
|
77 |
| 12087 | docs-codebase | vasilyu1983/ai-agents-public |
Technical Documentation Execution-ready patterns for clear, maintainable technical documentation. Modern best practices (January 2026): docs-as-code, ownership + review cadence, documentation QA gates (links/style/spelling), AI-assisted drafting + review, OpenAPI 3.2.0 where streaming schemas matter, and GEO (Generative Engine Optimization) for AI search. Quick Reference Documentation Type Template When to Use Project README readme-template.md New project, onboarding Architecture Decision adr...
|
77 |
| 12088 | mermaid-diagrams | ccheney/robust-skills |
Mermaid Diagramming Create professional software diagrams using Mermaid's text-based syntax. Mermaid renders diagrams from simple text definitions, making diagrams version-controllable, easy to update, and maintainable alongside code. Core Syntax Structure All Mermaid diagrams follow this pattern: diagramType definition content Key principles: First line declares diagram type (e.g., classDiagram , sequenceDiagram , flowchart ) Use %% for comments Line breaks and indentation improve readability b...
|
77 |
| 12089 | resume-builder | amruthpillai/reactive-resume |
Resume Builder for Reactive Resume Build professional resumes through conversational AI for Reactive Resume , a free and open-source resume builder. Core Principles Never hallucinate - Only include information explicitly provided by the user Ask questions - When information is missing or unclear, ask before assuming Be concise - Use clear, direct language; avoid filler words Validate output - Ensure all generated JSON conforms to the schema Workflow Step 1: Gather Basic Information Ask for essen...
|
77 |
| 12090 | roadmap-analyzer | shipshitdev/library |
Roadmap Analyzer Overview This skill analyzes a project's current feature set against the needs of the Ideal Customer Profile (ICP). Before analyzing, discover the project's ICP from documentation (.agent/SYSTEM/ or project docs) and current features from the codebase and documentation. The skill produces three outputs: Gap Analysis Table: Side-by-side comparison of ICP needs vs current features with gaps highlighted Prioritized Backlog: Ranked list of features to build next based on ICP alig...
|
77 |
| 12091 | kotlin-specialist | 404kidwiz/claude-supercode-skills |
Kotlin Specialist Senior Kotlin developer with deep expertise in coroutines, Kotlin Multiplatform (KMP), and modern Kotlin 1.9+ patterns. Role Definition You are a senior Kotlin engineer with 10+ years of JVM experience and mastery of Kotlin 1.9+ features. You specialize in coroutines, Flow API, multiplatform development, Android/Compose, Ktor servers, and functional programming patterns. You write expressive, type-safe code leveraging Kotlin's DSL capabilities. When to Use This Skill Buildi...
|
77 |
| 12092 | api-testing | laurigates/claude-plugins |
API Testing Expert knowledge for testing HTTP APIs with Supertest (TypeScript/JavaScript) and httpx/pytest (Python). TypeScript/JavaScript (Supertest) Installation Using Bun bun add -d supertest @types/supertest or: npm install -D supertest @types/supertest Basic Setup import { describe , it , expect } from 'vitest' import request from 'supertest' import { app } from './app' describe ( 'API Tests' , ( ) => { it ( 'returns health status' , async ( ) => { const response = await request ( app ) ....
|
77 |
| 12093 | latex-build | terrylica/cc-skills |
When to use this skill: - Compiling LaTeX documents - Setting up live preview with auto-rebuild - Managing multi-file projects - Troubleshooting build failures - Cleaning build artifacts - Automating compilation workflows Why latexmk? Industry standard build tool: - Auto-detects dependencies (bibliography, index, etc.) - Runs correct number of times (handles cross-references) - Live preview mode watches for file changes - Works with Skim for SyncTeX auto-reload - Bundled with MacTe...
|
77 |
| 12094 | vercel-networking-domains | bobmatnyc/claude-mpm-skills |
Vercel Networking and Domains Skill progressive_disclosure: entry_point: summary: "Vercel networking: domains, routing rules, headers, CDN, edge cache, and region configuration." when_to_use: - "When configuring domains and DNS" - "When managing redirects, rewrites, or headers" - "When tuning CDN and edge cache behavior" quick_start: - "Add and verify domains" - "Configure redirects and rewrites" - "Set headers and caching" - "Select deployment regions" token_estimate: entry: 90-110 full: 3800-4...
|
77 |
| 12095 | alicloud-compute-fc-serverless-devs-test | cinience/alicloud-skills |
Category: test COMPUTE FC SERVERLESS DEVS Smoke Test Prerequisites Configure credentials with least privilege ( ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / optional ALICLOUD_REGION_ID ). Target skill: skills/compute/fc/alicloud-compute-fc-serverless-devs/ . Test Steps Run offline script compilation check (no network needed): python3 tests/common/compile_skill_scripts.py \ --skill-path skills/compute/fc/alicloud-compute-fc-serverless-devs \ --output output/alicloud-compute-fc-serverless...
|
77 |
| 12096 | workstream-coordinator | rysweet/amplihack |
You are an expert workstream coordinator managing multiple concurrent work efforts. You track progress, detect stalls and conflicts, analyze capacity, and ensure smooth parallel execution of up to 5 workstreams. When to Activate Activate when the user: - Asks "What's the status?" or "How are things going?" - Wants to check workstream progress - Asks about active work or concurrent tasks - Says "Is anything blocked?" or "Are there conflicts?" - Wants coordination analysis - Mentions capa...
|
77 |
| 12097 | dify-workflow-skills | mango-svip/dify-workflow-skills |
Dify Workflow DSL Builder Build, edit, and validate Dify workflow DSL (Domain-Specific Language) files for creating AI-powered automation workflows. This skill is based on the Dify open-source platform's workflow engine, which powers both Workflow apps and Advanced Chat apps with a React Flow-based visual editor. Architecture Overview Dify workflows use a queue-based, event-driven architecture with: Backend (Python - Execution Engine) GraphEngine: Central orchestrator managing workflow exec...
|
77 |
| 12098 | moai-tool-svg | modu-ai/moai-adk |
SVG Creation and Optimization Specialist Comprehensive SVG development covering vector graphics creation, SVGO optimization, icon systems, data visualizations, and animations. This skill provides patterns for all SVG workflows from basic shapes to complex animated graphics. Quick Reference (30 seconds) Basic SVG Template < svg xmlns = " http://www.w3.org/2000/svg " viewBox = " 0 0 100 100 " width = " 100 " height = " 100 " > < title > Accessible Title </ title > < desc > Description for screen r...
|
77 |
| 12099 | release-management | yonatangross/orchestkit |
Music Release Management Manage music release campaigns using RELEASE.md as the single source of truth. Folder Structure Releases live inside an artist workspace under releases/ . The full path from the sandbox root: orgs/{org}/ └── artists/ └── {artist-slug}/ └── releases/ └── {release-slug}/ └── RELEASE.md Use lowercase-kebab-case for release slugs (e.g. blue-slide-park , debut-ep ). Example: orgs/recoup-records/artists/gatsby-grace/releases/adhd-ep/ └── RELEASE.md Step 1: Identify the Release...
|
77 |
| 12100 | nextjs-env-variables | bobmatnyc/claude-mpm-skills |
Next.js Environment Variable Structure Complete guide to Next.js environment variable management. File Structure my-nextjs-app/ ├── .env Shared defaults (committed) ├── .env.local Local secrets (gitignored) ├── .env.development Development defaults (committed) ├── .env.development.local Local dev overrides (gitignored) ├── .env.production Production defaults (committed) ├── .env.production.local Production secrets (gitignored) ├── ...
|
77 |