███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 11251 | observability-edot-python-instrument | elastic/agent-skills |
EDOT Python Instrumentation Read the setup guide before making changes: EDOT Python setup EDOT Python configuration OpenTelemetry Python auto-instrumentation Guidelines Install elastic-opentelemetry via pip (add to requirements.txt or equivalent) Run edot-bootstrap --action=install during image build to install auto-instrumentation packages for detected libraries Wrap the application entrypoint with opentelemetry-instrument — e.g. opentelemetry-instrument gunicorn app:app or opentelemetry-instru...
|
68 |
| 11252 | technical writer | daffy0208/ai-dev-standards |
Technical Writer Transform complex technical concepts into clear, accessible documentation that helps users succeed. This skill specializes in creating API documentation, user guides, README files, tutorials, and reference materials that balance technical accuracy with readability. Whether you're documenting code libraries, software products, system architectures, or processes, this skill ensures your documentation is comprehensive, well-organized, and genuinely helpful. It follows industry best...
|
68 |
| 11253 | draft-response | anthropics/knowledge-work-plugins |
/draft-response If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Draft a professional, customer-facing response tailored to the situation, customer relationship, and communication context. Usage /draft-response <context about the customer question, issue, or request> Examples: /draft-response Acme Corp is asking when the new dashboard feature will ship /draft-response Customer escalation — their integration has been down for 2 days /draft-respons...
|
68 |
| 11254 | tracking-crypto-derivatives | jeremylongshore/claude-code-plugins-plus-skills |
Tracking Crypto Derivatives Overview Comprehensive derivatives market analysis across centralized and decentralized exchanges. This skill aggregates funding rates, open interest, liquidations, and options data to provide actionable trading insights. Supported Markets : Perpetual Swaps : Binance, Bybit, OKX, Deribit, BitMEX Futures : Quarterly and monthly contracts Options : Deribit (primary), OKX, Bybit DEX Perpetuals : dYdX, GMX, Drift Protocol Prerequisites Before using this skill, ensure you ...
|
68 |
| 11255 | gemini | giuseppe-trisciuoglio/developer-kit |
Gemini Skill Guide When to Use Gemini WHEN ASKED TO BE ACTIVATED Code Review : Comprehensive code reviews across multiple files Plan Review : Analyzing architectural plans, technical specifications, or project roadmaps Big Context Processing : Tasks requiring >200k tokens of context (entire codebases, documentation sets) Multi-file Analysis : Understanding relationships and patterns across many files ⚠️ Critical: Background/Non-Interactive Mode Warning NEVER use --approval-mode default in backgr...
|
68 |
| 11256 | design-system | getsentry/sentry |
Frontend Design System This is a skill for production-grade UI design. It supports consistent and scalable frontend development through clear design tokens, layout rules, motion guidelines, and accessibility checks. When to use this skill Production-quality UI needed : Generate high-quality UI from prompts Consistent design language : Consistent visual language across screens Typography/layout/motion guide : Systematic design system Instructions Step 1: Define Design Tokens // design-tokens.ts e...
|
68 |
| 11257 | groq-api | diskd-ai/groq-api |
Groq API Build applications with Groq's ultra-fast LLM inference (300-1000+ tokens/sec). Quick Start Installation Python pip install groq TypeScript/JavaScript npm install groq-sdk Environment Setup export GROQ_API_KEY=<your-api-key> Basic Chat Completion Python: from groq import Groq client = Groq() Uses GROQ_API_KEY env var response = client.chat.completions.create( model="llama-3.3-70b-versatile", messages=[{"role": "user", "content": "Hello"}] ) print(response.choices[0]...
|
68 |
| 11258 | shopify-apps | alinaqi/claude-bootstrap |
Shopify Apps Patterns React Router App Setup Modern Shopify app template with React Router Embedded App with App Bridge Render app embedded in Shopify Admin Webhook Handling Secure webhook processing with HMAC verification Anti-Patterns ❌ REST API for New Apps ❌ Webhook Processing Before Response ❌ Polling Instead of Webhooks ⚠️ Sharp Edges Issue Severity Solution Issue high Respond immediately, process asynchronously Issue high Check rate limit headers Issue high Request protected cust...
|
68 |
| 11259 | graphql-development | mindrally/skills |
GraphQL Development You are an expert in GraphQL development with type-safe clients and modern web frameworks. Core Principles Design schemas with clear, consistent naming Use type-safe clients for all GraphQL operations Optimize queries to fetch only necessary data Implement proper error handling Schema Design Types and Fields Use descriptive type names in PascalCase Field names in camelCase Use nullable types appropriately Implement input types for mutations Use enums for fixed value sets Re...
|
68 |
| 11260 | news-aggregator-skill | ninehills/skills |
News Aggregator Skill Fetch real-time hot news from multiple sources. Tools fetch_news.py Usage: Single Source (Limit 10) ```bash Global Scan (Option 12) - Broad Fetch Strategy > NOTE: This strategy is specifically for the "Global Scan" scenario where we want to catch all trends. ```bash 1. Fetch broadly (Massive pool for Semantic Filtering) python3 scripts/fetch_news.py --source all --limit 15 --deep 2. SEMANTIC FILTERING: Agent manually filters the broad list (approx 120 items) for...
|
68 |
| 11261 | vibe-workflow | khazp/vibe-coding-prompt-template |
You are the master orchestrator for the vibe-coding workflow. Guide users through all 5 steps to transform their idea into a working MVP. The 5-Step Workflow ``` Idea -> Research -> PRD -> Tech Design -> Agent Config -> Build MVP (20 min) (15 min) (15 min) (10 min) (1-3 hrs) ``` Step 1: Assess Current State First, check what already exists in the project: | `docs/research-*.txt` | Check | Research complete | `docs/PRD-*.md` | Check | Requirements defined | `do...
|
68 |
| 11262 | implementing-new-features | streamlit/streamlit |
New Feature Implementation Guide For understanding the underlying architecture (backend runtime, frontend rendering, WebSocket communication, element tree), see the understanding-streamlit-architecture skill. Most features need implementation in three areas: Backend: lib/streamlit/ Frontend: frontend/ Protobufs: proto/ New features should include: Python unit tests in lib/tests Vitest unit tests E2E Playwright tests in e2e_playwright/ Order of Implementation Protobuf changes in proto/ then run m...
|
68 |
| 11263 | slack-webhook | vm0-ai/vm0-skills |
Slack Incoming Webhook Send messages to a Slack channel using Incoming Webhooks. No OAuth or bot setup required. When to Use Send notifications to a specific channel CI/CD notifications, alerts, status updates Quick integration without full Slack app setup Prerequisites export SLACK_WEBHOOK_URL=https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXX Get Webhook URL Create app: https://api.slack.com/apps → Create New App → From scratch Select Incoming Webhooks → Toggle On Click Add New W...
|
68 |
| 11264 | add-skill-installer | mo7amedhassan11/add-skill-installer |
Add Skill Installer 透過 npx add-skill 從任何 Git 儲存庫安裝 Agent Skills。 支援的 Agents Agent 識別名稱 全域技能目錄 Antigravity antigravity ~/.gemini/antigravity/skills/ Claude Code claude-code ~/.claude/skills/ Cursor cursor .cursor/skills/ Codex codex .codex/skills/ OpenCode opencode .opencode/skills/ GitHub Copilot github-copilot .github/copilot/skills/ Roo Code roo .roo/skills/ CLI 完整用法 Usage: add-skill [options] <source> Install skills onto coding agents Arguments: source Git repo URL, GitHub s...
|
68 |
| 11265 | healthcare-medical | dylantarre/animation-principles |
Apply Disney's 12 principles to create calming, trustworthy experiences that prioritize clarity and reduce anxiety. The 12 Principles Applied 1. Squash & Stretch - Minimal Use: Avoid playful squash on health data - Breathing Exercises: Gentle expand/contract for guided breathing - Heart Rate: Subtle pulse matching actual rhythm 2. Anticipation - Appointment Booking: Brief preparation before confirmation - Test Results: Thoughtful pause before revealing sensitive data - Medication Rem...
|
68 |
| 11266 | support-systems-architect | shipshitdev/library |
Support Systems Architect - Scalable Customer Support Overview You are a support systems architect specializing in building scalable customer support for indie businesses. You help solo founders handle support volume without burning out or hiring prematurely. Your job is to execute support infrastructure—not just advise—by designing self-service systems, FAQ content, and automation that deflect tickets while keeping customers happy. Core Principle: "The best support ticket is the one that neve...
|
68 |
| 11267 | uv-project-management | laurigates/claude-plugins |
UV Project Management Quick reference for UV project setup, dependencies, and lockfiles. When This Skill Applies Initializing new Python projects (uv init) Adding, removing, or updating dependencies (uv add, uv remove) Managing lockfiles (uv lock) Syncing project environments (uv sync) Configuring pyproject.toml For running scripts, see uv-run skill. Quick Reference Project Initialization Create new project with complete structure uv init my-project cd my-project Initialize in existing di...
|
68 |
| 11268 | auth0-nuxt | auth0/agent-skills |
Auth0 Nuxt SDK Overview Server-side session authentication for Nuxt 3/4. NOT the same as @auth0/auth0-vue (client-side SPA). Core principle: Uses server-side encrypted cookie sessions, not client-side tokens. When to Use Use this when: Building Nuxt 3/4 applications with server-side rendering (Node.js 20 LTS+) Need secure session management with encrypted cookies Protecting server routes and API endpoints Accessing Auth0 Management API or custom APIs Don't use this when: Using Nuxt 2 (not suppor...
|
68 |
| 11269 | ai-dev-loop | shipshitdev/library |
AI Development Loop Autonomous task execution with QA gates across multiple AI platforms. Overview The AI Development Loop enables fully autonomous feature development where: AI agents pick up and implement tasks from a queue You do QA only (approve or reject in Testing column) Multiple platforms (Claude CLI, Cursor, Codex) can work in parallel Rate limits are maximized by switching between platforms Architecture ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │ ...
|
68 |
| 11270 | monday-automation | sickn33/antigravity-awesome-skills |
Monday.com Automation via Rube MCP Automate Monday.com work management workflows including board creation, item management, column value updates, group organization, subitems, and update/comment threads through Composio's Monday toolkit. Toolkit docs : composio.dev/toolkits/monday Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Monday.com connection via RUBE_MANAGE_CONNECTIONS with toolkit monday Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup ...
|
68 |
| 11271 | local-environment | polarsource/polar |
This skill enables Claude to help manage the Polar local development environment using Docker. Use this when the user needs to start, stop, debug, or understand the local development stack. Conductor Integration CRITICAL: When running in Conductor, always check `CONDUCTOR_PORT` first to determine the instance number: ``` echo $CONDUCTOR_PORT ``` - If `CONDUCTOR_PORT` is not set → Not running in Conductor, use instance 0 - If `CONDUCTOR_PORT` is set → Calculate instance: `INSTANCE=$((CONDU...
|
68 |
| 11272 | tool-design | shipshitdev/library |
When to Use This Skill Build tools that agents can use effectively, including architectural reduction patterns Use this skill when working with build tools that agents can use effectively, including architectural reduction patterns. Tool Design for Agents Tools are the primary mechanism through which agents interact with the world. They define the contract between deterministic systems and non-deterministic agents. Unlike traditional software APIs designed for developers, tool APIs must be desig...
|
68 |
| 11273 | git-commit-workflow | laurigates/claude-plugins |
Git Commit Workflow Expert guidance for commit message conventions, staging practices, and commit best practices using conventional commits and explicit staging workflows. For detailed examples, advanced patterns, and best practices, see REFERENCE.md . Core Expertise Conventional Commits : Standardized format for automation and clarity Explicit Staging : Always stage files individually with clear visibility Logical Grouping : Group related changes into focused commits Communication Style : Humbl...
|
68 |
| 11274 | ai-mlops | vasilyu1983/ai-agents-public |
MLOps & ML Security - Complete Reference (Jan 2026) Production ML lifecycle with modern security practices. This skill covers: Production: Data ingestion, deployment, drift detection, monitoring, incident response Security: Prompt injection, jailbreak defense, RAG security, output filtering Governance: Privacy protection, supply chain security, safety evaluation Data ingestion (dlt): Load data from APIs, databases to warehouses Model deployment: Batch jobs, real-time APIs, hybrid systems, eve...
|
68 |
| 11275 | pr-marketing | kostja94/marketing-skills |
Channels: PR Marketing Guides PR and press release strategy. Journalists use ~3% of releases they receive; proper structure is critical. Use this skill when writing press releases, planning product announcements, or building media relations. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output. Initial Assessment Check for produ...
|
68 |
| 11276 | commit-push-pr | llama-farm/llamafarm |
Commit, Push & PR Skill Automates the git workflow of committing changes, pushing to GitHub, and opening a PR with intelligent handling of edge cases. Required Reading Before executing, internalize the git workflow standards: @.claude/rules/git_workflow.md Key rules: Use Conventional Commits format: type(scope): description NEVER attribute Claude in commits or PRs (no co-author, no mentions) NEVER skip pre-commit hooks (no --no-verify) Execution Workflow Step 1: Assess Git State Run these ...
|
68 |
| 11277 | github | odyssey4me/agent-skills |
GitHub Patterns Tools Use gh CLI for all GitHub operations. Prefer CLI over GitHub MCP servers for lower context usage. Quick Commands Create a PR from the current branch gh pr create --title "feat: add feature" --body "Description" Squash-merge a PR gh pr merge < PR_NUMBER > --squash --title "feat: add feature (<PR_NUMBER>)" View PR status and checks gh pr status gh pr checks < PR_NUMBER > Stacked PR Workflow Summary When merging a chain of stacked PRs (each targeting the previous branch): M...
|
68 |
| 11278 | jwt-authentication | pluginagentmarketplace/custom-plugin-nodejs |
JWT Authentication Skill Implement secure, scalable authentication in Node.js applications using JSON Web Tokens. Quick Start JWT authentication in 4 steps: Install - npm install jsonwebtoken bcryptjs Register - Hash password, create user, generate token Login - Verify password, generate token Protect - Verify token in middleware Core Concepts Generate JWT const jwt = require('jsonwebtoken'); function generateToken(userId) { return jwt.sign( { id: userId }, process.env.JWT_SECRET,...
|
68 |
| 11279 | project-analyzer | oimiragieo/agent-studio |
Step 1: Identify Project Root Locate project root by finding manifest files: Search for package manager files: package.json (Node.js/JavaScript/TypeScript) requirements.txt, pyproject.toml, setup.py (Python) go.mod (Go) Cargo.toml (Rust) pom.xml, build.gradle (Java/Maven/Gradle) composer.json (PHP) Identify project root: Directory containing primary package manager file Handle monorepos (multiple package.json files) Detect workspace configuration Validate project root: Check for .git dire...
|
68 |
| 11280 | git-workflow | asyrafhussin/agent-skills |
Git Workflow When to use this skill Creating meaningful commit messages Managing branches Merging code Resolving conflicts Collaborating with team Git best practices Instructions Step 1: Branch management Create feature branch : Create and switch to new branch git checkout -b feature/feature-name Or create from specific commit git checkout -b feature/feature-name < commit-hash > Naming conventions : feature/description : New features bugfix/description : Bug fixes hotfix/description : Urgent f...
|
68 |
| 11281 | dbg | theodo-group/debug-that |
dbg Debugger dbg is a CLI debugger that supports Node.js (V8/CDP), Bun (WebKit/JSC), and native code (C/C++/Rust/Swift via LLDB/DAP). It uses short @refs for all entities -- use them instead of long IDs. Supported Runtimes Runtime Language Launch example Node.js JavaScript dbg launch --brk node app.js tsx / ts-node TypeScript dbg launch --brk tsx src/app.ts Bun JavaScript / TypeScript dbg launch --brk bun app.ts LLDB C / C++ / Rust / Swift dbg launch --brk --runtime lldb ./program The runtime is...
|
68 |
| 11282 | axiom-app-store-diag | charleswiltgen/axiom |
App Store Rejection Diagnostics Overview Systematic App Store rejection diagnosis and remediation. 9 diagnostic patterns covering the most common rejection categories including technical, metadata, privacy, business, subjective, and safety violations. Core principle Most App Store rejections fall into well-known categories. Reading the rejection message carefully and mapping to the correct guideline prevents the 1 mistake: fixing the wrong thing and getting rejected again for the same reason. Mo...
|
68 |
| 11283 | db-migrations | lobehub/lobehub |
Database Migrations Guide Step 1: Generate Migrations bun run db:generate This generates: packages/database/migrations/0046_meaningless_file_name.sql And updates: packages/database/migrations/meta/_journal.json packages/database/src/core/migrations.json docs/development/database-schema.dbml Step 2: Optimize Migration SQL Filename Rename auto-generated filename to be meaningful: 0046_meaningless_file_name.sql → 0046_user_add_avatar_column.sql Step 3: Use Idempotent Clauses (Defensive Programming)...
|
68 |
| 11284 | figma developer | daffy0208/ai-dev-standards |
Figma Developer Turn Figma designs into production-ready code. Core Principle Design is the single source of truth. Designers work in Figma. Developers build from Figma. The bridge between them should be automated, not manual. Phase 1: Setup & Authentication Get Figma Access Token Go to Figma Settings Scroll to "Personal access tokens" Click "Generate new token" Name it (e.g., "Development") Copy and save securely Environment Setup .env FIGMA_ACCESS_TOKEN = figd_ .. . Install Figma Client npm i...
|
68 |
| 11285 | systematic-debugging | secondsky/claude-skills |
Systematic Debugging Overview Random fixes waste time and create new bugs. Quick patches mask underlying issues. Core principle: ALWAYS find root cause before attempting fixes. Symptom fixes are failure. Violating the letter of this process is violating the spirit of debugging. The Iron Law NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST If you haven't completed Phase 1, you cannot propose fixes. When to Use Use for ANY technical issue: Test failures Bugs in production Unexpected behavior Perfor...
|
68 |
| 11286 | ai-sdk-5 | prowler-cloud/prowler |
Breaking Changes from AI SDK 4 // ❌ AI SDK 4 (OLD) import { useChat } from "ai"; const { messages, handleSubmit, input, handleInputChange } = useChat({ api: "/api/chat", }); // ✅ AI SDK 5 (NEW) import { useChat } from "@ai-sdk/react"; import { DefaultChatTransport } from "ai"; const { messages, sendMessage } = useChat({ transport: new DefaultChatTransport({ api: "/api/chat" }), }); Client Setup import { useChat } from "@ai-sdk/react"; import { DefaultChatTransport } from "ai"; import { us...
|
68 |
| 11287 | audit-full | yonatangross/orchestkit |
Full-Codebase Audit Single-pass whole-project analysis leveraging Opus 4.6's extended context window. Loads entire codebases (~50K LOC) into context for cross-file vulnerability detection, architecture review, and dependency analysis. Quick Start /ork:audit-full Full audit (all modes) /ork:audit-full security Security-focused audit /ork:audit-full architecture Architecture review /ork:audit-full dependencies Dependency audit Opus 4.6 : Uses complexity: max for extended thinking across entire...
|
68 |
| 11288 | research-executor | liangdabiao/claude-code-stock-deep-research-agent |
Research Executor Role You are a Deep Research Executor responsible for conducting comprehensive, multi-phase research using the 7-stage deep research methodology and Graph of Thoughts (GoT) framework. Core Responsibilities Execute the 7-Phase Deep Research Process Deploy Multi-Agent Research Strategy Ensure Citation Accuracy and Quality Generate Structured Research Outputs The 7-Phase Deep Research Process Phase 1: Question Scoping ✓ (Already Done) Verify the structured prompt is complete and a...
|
68 |
| 11289 | segment-automation | sickn33/antigravity-awesome-skills |
Segment Automation via Rube MCP Automate Segment customer data platform operations through Composio's Segment toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/segment Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Segment connection via RUBE_MANAGE_CONNECTIONS with toolkit segment 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 —...
|
68 |
| 11290 | humanizer | shipshitdev/library |
Humanizer: Remove AI Writing Patterns You are a writing editor that identifies and removes signs of AI-generated text to make writing sound more natural and human. This guide is based on Wikipedia's "Signs of AI writing" page, maintained by WikiProject AI Cleanup. Your Task When given text to humanize: Identify AI patterns - Scan for the patterns listed below Rewrite problematic sections - Replace AI-isms with natural alternatives Preserve meaning - Keep the core message intact Maintain voice - ...
|
68 |
| 11291 | feishu-channel | aaaaqwq/claude-code-skills |
飞书 Channel 集成 将飞书接入 OpenClaw,实现双向消息通道。 与 feishu-automation 的区别 特性 feishu-channel feishu-automation 主要用途 消息通道集成 平台自动化操作 消息接收 ✅ Webhook 事件订阅 ❌ 不支持 消息发送 ✅ 实时对话 ✅ 通知推送 多维表格 ❌ 不涉及 ✅ 完整支持 文档管理 ❌ 不涉及 ✅ 完整支持 适用场景 AI 对话机器人 数据同步、自动化工作流 架构概述 ┌─────────────┐ ┌──────────────────┐ ┌─────────────┐ │ 飞书用户 │ ←→ │ 飞书开放平台 │ ←→ │ OpenClaw │ │ (私聊/群聊) │ │ (Webhook) │ │ Gateway │ └─────────────┘ └──────────────────┘ └─────────────┘ ↓ ┌──────────────────┐ │ Webhook 服...
|
68 |
| 11292 | godot-procedural-generation | thedivergentai/gd-agentic-skills |
Procedural Generation Seeded algorithms, noise functions, and constraint propagation define replayable content generation. Available Scripts wfc_level_generator.gd Expert Wave Function Collapse implementation with tile adjacency rules. NEVER Do in Procedural Generation NEVER forget to seed RNG — randi() without seed = same dungeon every time. Use seed(hash(Time.get_ticks_msec())) OR expose seed for speedrunning. NEVER use randf() in _ready() for multiplayer — Each client calls _ready() at differ...
|
68 |
| 11293 | software-code-review | vasilyu1983/ai-agents-public |
Code Reviewing Skill — Quick Reference This skill provides operational checklists and prompts for structured code review across languages and stacks. Use it when the primary task is reviewing existing code rather than designing new systems. Quick Reference Review Type Focus Areas Key Checklist When to Use Security Review Auth, input validation, secrets, OWASP Top 10 software-security-appsec Security-critical code, API endpoints Supply Chain Review Dependencies, lockfiles, licenses, SBOM, CI po...
|
68 |
| 11294 | influencer-outreach-template | dengineproblem/agents-monorepo |
Influencer Outreach Templates Expert in creating personalized, high-converting influencer outreach communications. Core Framework Personalization Approach Deep research into recent content and engagement patterns Lead with mutual benefits rather than brand-only needs Match communication style to influencer's voice Time outreach around posting schedules Reference specific content to show genuine familiarity Campaign Hierarchy Warm introduction with specific content reference Clear collaboration b...
|
68 |
| 11295 | pricing-strategist | shipshitdev/library |
Pricing Strategist Purpose Build a comprehensive, justified pricing strategy — tier structures, price points, positioning, and revenue optimization — tailored to the business through context and conversation. Execution Logic Check $ARGUMENTS first to determine execution mode: If $ARGUMENTS is empty or not provided: Respond with: "pricing-strategist loaded, ready to build your pricing strategy" Then wait for the user to provide context in the next message. If $ARGUMENTS contains content: Proceed ...
|
68 |
| 11296 | vector-search-workflows | bobmatnyc/claude-mpm-skills |
Vector Search Workflows (MCP Vector Search) Overview Use mcp-vector-search to index codebases into ChromaDB and search via semantic embeddings. The recommended flow is setup (init + index + MCP integration), then search, and use index or auto-index to keep data fresh. Quick Start pip install mcp-vector-search mcp-vector-search setup mcp-vector-search search "authentication logic" setup detects languages, initializes config, indexes the repo, and configures MCP integrations (Claude Code, Curs...
|
68 |
| 11297 | tailwind-validator | shipshitdev/library |
Tailwind 4 Validator Validates that a project uses Tailwind CSS v4 with proper CSS-first configuration. Detects and flags Tailwind v3 patterns that should be migrated. Purpose CRITICAL: Claude and other AI assistants often default to Tailwind v3 patterns. This skill ensures: Projects use Tailwind v4 CSS-first configuration Old tailwind.config.js patterns are detected and flagged Proper @theme blocks are used instead of JS config Dependencies are v4+ When to Use Before any Tailwind work: Run ...
|
68 |
| 11298 | material-design-3 | 7spade/black-tortoise |
Material Design 3 (Material You) Skill 🎯 Purpose This skill provides comprehensive guidance on Material Design 3 (also known as Material You), Google's latest design system that emphasizes personalization, accessibility, and modern UI patterns for Angular applications. 📦 What is Material Design 3? Material Design 3 is Google's latest design language that introduces: Dynamic Color: Adaptive color palettes based on user preferences Enhanced Accessibility: WCAG 2.1 AA compliance by default Flex...
|
68 |
| 11299 | gis | vamseeachanta/workspace-hub |
GIS Skill — Integration Reference Cross-application geospatial skill covering supported CRS, data formats, and application integration steps for the digitalmodel.gis module (WRK-020). 1. Supported Coordinate Reference Systems EPSG Name Use case EPSG:4326 WGS84 geographic Default for GeoJSON, GPS, BSEE well data EPSG:3857 Web Mercator (Pseudo-Mercator) Tile maps (Google Maps, OpenStreetMap) EPSG:32601–32660 UTM Zone 1N–60N Northern hemisphere metre-accurate work EPSG:32701–32760 UTM Zone 1S–60S S...
|
68 |
| 11300 | network | markdown-viewer/skills |
Network Topology Diagram Generator Quick Start: Choose topology type → Add network devices (routers, switches, firewalls) → Connect with appropriate link types → Add labels and zones → Wrap in ```drawio fence. ⚠️ IMPORTANT: Always use ```drawio code fence. NEVER use ```xml — it will NOT render as a diagram. Critical Rules 🔗 This is a drawio-derived skill. All structure, layout, and edge routing rules inherit from drawio SKILL.md . Read the base rules first. Network-specific additions: Check sten...
|
68 |