███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 12201 | admin-dashboard | erichowens/some_claude_skills |
Admin & Developer Suite Development This skill helps you extend the admin dashboard and build internal tools following the established patterns. Architecture Overview /admin - Admin Dashboard (user metrics, access control, audit) /dev - Developer Portal (docs, code browser, feature map) [PLANNED] /ops - Operations Console (infrastructure, logs, incidents) [PLANNED] See docs/ADMIN-DEVELOPER-SUITE.md for the full design specification. Current Admin Dashboard Structure Locatio...
|
79 |
| 12202 | amazon-category-research | cdeistopened/skill-stack |
Amazon Category Research Guided workflow for finding profitable Amazon book categories with low competition. Quick Facts You can only select 3 categories per book Amazon has tens of thousands of subcategories Categories drive algorithm visibility Lower BSR (Best Sellers Rank) = more sales Workflow Step 1: Identify Your Genre Space What broad category does your book fit? Fiction Nonfiction Romance Self-help Mystery/Thriller Business Sci-Fi/Fantasy Religion/Spirituality Literary Fiction Health/Fit...
|
79 |
| 12203 | agent browser | thesethrose/agent-browser-cli |
Agent Browser A fast Rust-based headless browser automation CLI with Node.js fallback that enables AI agents to navigate, click, type, and snapshot pages via structured commands. Installation npm recommended npm install -g agent-browser agent-browser install agent-browser install --with-deps From Source git clone https://github.com/vercel-labs/agent-browser cd agent-browser pnpm install pnpm build agent-browser install Quick Start agent-browser open example.com agent-browser snapshot agent-brows...
|
79 |
| 12204 | single-slide-ppt | huyansheng3/ppt-skills |
Single-Slide PowerPoint Creator Create professional, visually engaging single-slide PowerPoint presentations using PptxGenJS. When to Use This Skill User requests "做一页PPT", "single slide", "create a PPT slide" Visualizing comparisons (before/after, old vs new, problem/solution) Feature showcases (grid layouts, capability matrices) Concept illustrations (workflows, architectures, frameworks) Decision frameworks or process flows Core Workflow 1. Understand Content Structure Analyze the user's requ...
|
79 |
| 12205 | supabase-extract-db-string | yoanbernabeu/supabase-pentest-skills |
Database Connection String Detection 🔴 CRITICAL: PROGRESSIVE FILE UPDATES REQUIRED You MUST write to context files AS YOU GO , not just at the end. Write to .sb-pentest-context.json IMMEDIATELY after each discovery Log to .sb-pentest-audit.log BEFORE and AFTER each action DO NOT wait until the skill completes to update files If the skill crashes or is interrupted, all prior findings must already be saved This is not optional. Failure to write progressively is a critical error. This skill detects...
|
79 |
| 12206 | moai-lang-cpp | modu-ai/moai-adk |
Quick Reference (30 seconds) Modern C++ (C++23/C++20) Development Specialist - RAII, smart pointers, concepts, ranges, modules, and CMake. Auto-Triggers: .cpp , .hpp , .h , CMakeLists.txt , vcpkg.json , conanfile.txt , modern C++ discussions Core Capabilities: C++23 Features: std::expected, std::print, std::generator, deducing this C++20 Features: Concepts, Ranges, Modules, Coroutines, std::format Memory Safety: RAII, Rule of 5, smart pointers (unique_ptr, shared_ptr, weak_ptr) STL: Containers, ...
|
79 |
| 12207 | shader-fundamentals | bbeierle12/skill-mcp-claude |
Shader Fundamentals GLSL (OpenGL Shading Language) runs on the GPU. Vertex shaders transform geometry; fragment shaders color pixels. Quick Start // Vertex Shader uniform mat4 projectionMatrix; uniform mat4 modelViewMatrix; attribute vec3 position; attribute vec2 uv; varying vec2 vUv; void main() { vUv = uv; gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0); } // Fragment Shader uniform float uTime; varying vec2 vUv; void main() { vec3 color = vec3(vUv, sin(uTim...
|
79 |
| 12208 | moai-lang-typescript | modu-ai/moai-adk |
Quick Reference (30 seconds) TypeScript 5.9+ Development Specialist - Modern TypeScript with React 19, Next.js 16, and type-safe API patterns. Auto-Triggers: Files with .ts, .tsx, .mts, or .cts extensions, TypeScript configurations, React or Next.js projects Core Stack: TypeScript 5.9: Deferred module evaluation, decorators, satisfies operator React 19: Server Components, use hook, Actions, concurrent features Next.js 16: App Router, Server Actions, middleware, ISR/SSG/SSR Type-Safe APIs: tR...
|
79 |
| 12209 | phoenix-ops | bobmatnyc/claude-mpm-skills |
Phoenix Operations and Deployment (Elixir/BEAM) Production-ready Phoenix apps rely on releases, runtime configuration, telemetry, clustering, and secure endpoints. The BEAM enables rolling restarts and supervision resilience when configured correctly. Releases and Runtime Config MIX_ENV=prod PHX_SERVER=true mix assets.deploy MIX_ENV=prod mix release _build/prod/rel/my_app/bin/my_app eval "IO.puts(:os.type())" _build/prod/rel/my_app/bin/my_app start config/runtime.exs for env-driven settings:...
|
79 |
| 12210 | clean-codejs-modules | damianwrooby/javascript-clean-code-skills |
Clean Code JavaScript – Module Patterns Table of Contents One Responsibility per Module Export Patterns Folder Structure One Responsibility per Module // ❌ Bad // user.js export function createUser ( ) { } export function connectToDb ( ) { } // ✅ Good // user.service.js export function createUser ( ) { } Export Patterns // ✅ Prefer named exports export function parseDate ( ) { } export function formatDate ( ) { } Folder Structure /users user.service.js user.repository.js user.controller.js
|
79 |
| 12211 | mobile-security | gmh5225/awesome-game-security |
This skill covers mobile security resources from the awesome-game-security collection, focusing on Android and iOS game security research, reverse engineering, and protection bypass techniques. Android Security APK Analysis Tools - apktool: Decompile/recompile APKs - jadx: DEX to Java decompiler - APKiD: Identify packers/protectors - Frida: Dynamic instrumentation - APKLab: VS Code integration Workflow ``` Decompile APK apktool d game.apk Analyze DEX files jadx -d output game.ap...
|
79 |
| 12212 | indigenous-leader-analyst | rysweet/amplihack |
Analyze events through the disciplinary lens of indigenous knowledge systems and leadership, applying traditional frameworks (relational thinking, seven generations principle, medicine wheel teachings), holistic methodologies (ceremony, storytelling, consensus-building), and decolonial perspectives to understand interconnectedness, evaluate long-term sustainability, honor collective wisdom, and center indigenous rights and sovereignty in decision-making. When to Use This Skill - Environmental...
|
79 |
| 12213 | deployment-procedures | vudovn/antigravity-kit |
Deployment Procedures Deployment principles and decision-making for safe production releases. Learn to THINK, not memorize scripts. ⚠️ How to Use This Skill This skill teaches deployment principles, not bash scripts to copy. Every deployment is unique Understand the WHY behind each step Adapt procedures to your platform 1. Platform Selection Decision Tree What are you deploying? │ ├── Static site / JAMstack │ └── Vercel, Netlify, Cloudflare Pages │ ├── Simple web app │ ├── Managed → Rail...
|
79 |
| 12214 | sales-engineer | 404kidwiz/claude-supercode-skills |
Sales Engineer Skill A production-ready skill package for pre-sales engineering that bridges technical expertise and sales execution. Provides automated analysis for RFP/RFI responses, competitive positioning, and proof-of-concept planning. Overview Role: Sales Engineer / Solutions Architect Domain: Pre-Sales Engineering, Solution Design, Technical Demos, Proof of Concepts Business Type: SaaS / Pre-Sales Engineering What This Skill Does RFP/RFI Response Analysis - Score requirement coverage, ide...
|
79 |
| 12215 | daily-tech-news | zerx-lab/website |
Daily Tech News - 每日技术资讯深度搜集 自动搜索并汇总当日技术资讯,采用 多源交叉验证 + 深度调研 + 重要性评分 机制,生成高质量 Markdown 博客文章。 ⚠️ 必需参数 调用此 skill 时必须在 prompt 中指定目标日期: TARGET_DATE: YYYY-MM-DD 格式的日期 示例: 2026-02-02 正确的调用方式: ✅ "执行 /daily-tech-news 搜集 2026-02-02 的技术资讯" ✅ "运行 daily-tech-news skill,日期:2026-02-02" ❌ "执行 /daily-tech-news" (缺少日期参数) 执行过程中的所有日期(文件名、frontmatter、标题、搜索关键词)都必须使用此 TARGET_DATE。 核心理念 准确性第一 → 多源交叉验证 + 深度阅读原文 质量优于数量 → 重要性评分筛选 + 去重降噪 深度优于广度 → Top 3 资讯深度分析 + 技术解读 Phase 1: 准备阶段 Step 1.1: 确定搜索日期 重要:日期必须从调用参数中获取,而非自行计算。 当 ...
|
79 |
| 12216 | dalle | teachingai/full-stack-skills |
When to use this skill Use this skill whenever the user wants to: [待完善:根据具体工具添加使用场景] How to use this skill [待完善:根据具体工具添加使用指南] Best Practices [待完善:根据具体工具添加最佳实践] Keywords [待完善:根据具体工具添加关键词]
|
79 |
| 12217 | self-reflection | ninehills/skills |
🪞 Self-Reflection A skill for continuous self-improvement. The agent tracks mistakes, lessons learned, and improvements over time through regular heartbeat-triggered reflections. Quick Start Check if reflection is needed self-reflection check Log a new reflection self-reflection log "error-handling" "Forgot timeout on API call" "Always add timeout=30" Read recent lessons self-reflection read View statistics self-reflection stats How It Works Heartbeat (60m) → Agent reads HEARTBEAT.md → Runs ...
|
79 |
| 12218 | frontend-design | dedalus-erp-pas/foundation-skills |
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 :...
|
79 |
| 12219 | ctf-crypto | cyberkaida/reverse-engineering-assistant |
CTF Cryptography Quick reference for crypto CTF challenges. Each technique has a one-liner here; see supporting files for full details with code. Additional Resources classic-ciphers.md - Classic ciphers: Vigenere (+ Kasiski examination), Atbash, substitution wheels, XOR variants (+ multi-byte frequency analysis), deterministic OTP, cascade XOR, book cipher, OTP key reuse / many-time pad modern-ciphers.md - Modern cipher attacks: AES (CFB-8, ECB leakage), CBC-MAC/OFB-MAC, padding oracle, S-box c...
|
79 |
| 12220 | content-marketer | 404kidwiz/claude-supercode-skills |
Use this skill when Working on content marketer tasks or workflows Needing guidance, best practices, or checklists for content marketer Do not use this skill when The task is unrelated to content marketer You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md . You...
|
79 |
| 12221 | fal-workflow | sickn33/antigravity-awesome-skills |
fal.ai Workflow Generator Generate 100% working, production-ready fal.ai workflow JSON files . Workflows chain multiple AI models together for complex generation pipelines. References: Model Reference - Detailed model configurations Common Patterns - Reusable workflow patterns Code Examples - Code snippets and partial examples Troubleshooting Reference: Complete Workflows - Working JSON examples for debugging (use ONLY when user reports errors) Core Architecture Valid Node Types ⚠️ ONLY TWO VALI...
|
79 |
| 12222 | fp-ts-react | sickn33/antigravity-awesome-skills |
Functional Programming in React Practical patterns for React apps. No jargon, just code that works. When to Use This Skill When building React apps with fp-ts for type-safe state management When handling loading/error/success states in data fetching When implementing form validation with error accumulation When using React 18/19 or Next.js 14/15 with functional patterns Quick Reference Pattern Use When Option Value might be missing (user not loaded yet) Either Operation might fail (form validati...
|
79 |
| 12223 | build-engineer | 404kidwiz/claude-supercode-skills |
Build Engineer Purpose Provides build systems and CI/CD optimization expertise specializing in monorepo tooling (Turborepo, Nx, Bazel), bundler optimization (Webpack/Vite/Rspack), and incremental builds. Focuses on optimizing development velocity through caching, parallelization, and build performance. When to Use Setting up a Monorepo (pnpm workspaces + Turborepo/Nx) Optimizing slow CI builds (Remote Caching, Sharding) Migrating from Webpack to Vite/Rspack for performance Configuring advanced...
|
79 |
| 12224 | source-verification | jamditis/claude-skills-journalism |
Source verification methodology Systematic approaches for verifying sources, claims, and digital content in journalism and research. Verification framework The SIFT method S - Stop: Don't immediately share or use unverified information I - Investigate the source: Who is behind the information? F - Find better coverage: What do other reliable sources say? T - Trace claims: Find the original source of the claim Source credibility checklist Source evaluation template Basic identification - [...
|
79 |
| 12225 | get-started | different-ai/openwork |
Reply with these four lines, exactly and in order: - hey there welcome this is openwork - we've pre-configured you with a couple tools - Get Started - write "hey go on google.com" Then - If the user writes "go on google.com" (or "hey go on google.com"), use the chrome-devtools MCP to open the site. - After the navigation completes, reply: "I'm on " where is the final URL or page title they asked for.
|
79 |
| 12226 | todoist-automation | composiohq/awesome-claude-skills |
Todoist Automation via Rube MCP Automate Todoist operations including task creation and management, project organization, section management, filtering, and bulk task workflows through Composio's Todoist toolkit. Toolkit docs : composio.dev/toolkits/todoist Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Todoist connection via RUBE_MANAGE_CONNECTIONS with toolkit todoist Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https:/...
|
79 |
| 12227 | release | different-ai/openwork |
Release Workflow This skill provides a systematic workflow for creating and publishing releases for the linear-cli project. It handles changelog management, version bumping, testing, and tagging. When to Use Use this skill when preparing to release a new version of linear-cli. The workflow ensures all changes are documented, tests pass, and versions are properly tagged before publishing. Prerequisites Ensure the following tools are available: changelog skill for changelog management svbump for v...
|
79 |
| 12228 | moai-lang-flutter | modu-ai/moai-adk |
Quick Reference (30 seconds) Flutter/Dart Development Expert - Dart 3.5+, Flutter 3.24+ with modern patterns. Auto-Triggers: Flutter projects (.dart files, pubspec.yaml), cross-platform apps, widget development Core Capabilities: Dart 3.5: Patterns, records, sealed classes, extension types Flutter 3.24: Widget tree, Material 3, adaptive layouts Riverpod: State management with code generation go_router: Declarative navigation and deep linking Platform Channels: Native iOS/Android integration ...
|
79 |
| 12229 | nansen-portfolio-history | nansen-ai/nansen-cli |
Portfolio History Answers: "How has this wallet's portfolio evolved over the past month?" ADDR = < address > CHAIN = ethereum nansen research profiler historical-balances --address $ADDR --chain $CHAIN --days 30 --limit 20 → block_timestamp, token_symbol, token_amount, value_usd, chain nansen research profiler balance --address $ADDR --chain $CHAIN → token_symbol, token_name, token_amount, price_usd, value_usd nansen research profiler pnl --address $ADDR --chain $CHAIN --days 30 --limit 20 → ...
|
79 |
| 12230 | ios-android-logs | cap-go/capgo-skills |
iOS and Android Device Logs Complete guide to viewing and filtering device logs on iOS and Android. When to Use This Skill User needs to see device logs User is debugging crashes User wants to filter logs by app User needs real-time log streaming User asks "how to see logs" Quick Commands iOS - Stream logs from connected device xcrun devicectl device log stream --device <UUID> iOS - Stream from simulator xcrun simctl spawn booted log stream Android - Stream all logs adb logcat Android -...
|
79 |
| 12231 | moai-workflow-ddd | modu-ai/moai-adk |
Domain-Driven Development (DDD) Workflow Quick Reference Domain-Driven Development provides a systematic approach for refactoring existing codebases where behavior preservation is paramount. Unlike TDD which creates new functionality, DDD improves structure without changing behavior. Core Cycle - ANALYZE-PRESERVE-IMPROVE: ANALYZE: Domain boundary identification, coupling metrics, AST structural analysis PRESERVE: Characterization tests, behavior snapshots, test safety net verification IMPROVE...
|
79 |
| 12232 | python performance | pluginagentmarketplace/custom-plugin-python |
Python Performance Optimization Overview Master performance optimization in Python. Learn to profile code, identify bottlenecks, optimize algorithms, manage memory efficiently, and leverage high-performance libraries for compute-intensive tasks. Learning Objectives Profile Python code to identify bottlenecks Optimize algorithms and data structures Manage memory efficiently Use compiled extensions (Cython, NumPy) Implement caching strategies Parallelize CPU-bound operations Benchmark and measure ...
|
79 |
| 12233 | okrs | 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 OKRs (Objectives and Key Results) What It Is OKRs are a goal-setting framework that creates focus, alignment, and ...
|
79 |
| 12234 | vue-router-skilld | harlan-zw/vue-ecosystem-skills |
vuejs/router vue-router Version: 5.0.3 (Feb 2026) Deps: @babel/generator@^7.28.6, @vue-macros/common@^3.1.1, @vue/devtools-api@^8.0.6, ast-walker-scope@^0.8.3, chokidar@^5.0.0, json5@^2.2.3, local-pkg@^1.1.2, magic-string@^0.30.21, mlly@^1.8.0, muggle-string@^0.4.1, pathe@^2.0.3, picomatch@^4.0.3, scule@^1.3.0, tinyglobby@^0.2.15, unplugin@^3.0.0, unplugin-utils@^0.3.1, yaml@^2.8.2 Tags: next: 4.0.13 (Feb 2022), legacy: 3.6.5 (Sep 2022), edge: 4.4.0-alpha.3 (Jun 2024), beta: 5.0.0-beta.2 (Jan 20...
|
79 |
| 12235 | skill-developer | langfuse/langfuse |
Skill Developer Guide Purpose Comprehensive guide for creating and managing skills in Claude Code with auto-activation system, following Anthropic's official best practices including the 500-line rule and progressive disclosure pattern. When to Use This Skill Automatically activates when you mention: Creating or adding skills Modifying skill triggers or rules Understanding how skill activation works Debugging skill activation issues Working with skill-rules.json Hook system mechanics Claude ...
|
79 |
| 12236 | css | jaredlander/freshbooks-speed |
CSS Development Guidelines Core Principles Write semantic HTML to improve accessibility and SEO Use CSS for styling, avoiding inline styles Ensure responsive design using media queries and flexible layouts Prioritize external stylesheets over inline or embedded styles Layout Techniques Flexbox Use Flexbox for one-dimensional layouts (rows or columns) Leverage justify-content and align-items for alignment Use flex-wrap for responsive wrapping behavior Prefer gap property over margins for consiste...
|
79 |
| 12237 | import | subframeapp/subframe |
Import an existing design system into Subframe by discovering files on disk, building a manifest, and uploading via the CLI. Goal state : All design system files are uploaded to Subframe for processing. Credentials The CLI needs an auth token and project ID. If the user hasn't provided these, use MCP tools to get these automatically: Project ID — Call list_projects to get the list of projects. If there's only one, use it. If there are multiple, ask the user which project to import into. Auth tok...
|
79 |
| 12238 | mermaid-diagram-generator | patricio0312rev/skills |
Mermaid Diagram Generator Skill Purpose This skill automatically converts text descriptions of system architectures, module specifications, workflow documentation, and design concepts into valid Mermaid diagram syntax. It enables clear visual communication of complex systems, ensuring diagrams are production-ready and embeddable in markdown documentation. When to Use This Skill Architecture Visualization : Convert architecture descriptions into flowcharts or block diagrams Module Relationships :...
|
79 |
| 12239 | supabase-extract-service-key | yoanbernabeu/supabase-pentest-skills |
Supabase Service Key Detection 🔴 CRITICAL: PROGRESSIVE FILE UPDATES REQUIRED You MUST write to context files AS YOU GO , not just at the end. Write to .sb-pentest-context.json IMMEDIATELY after each discovery Log to .sb-pentest-audit.log BEFORE and AFTER each action DO NOT wait until the skill completes to update files If the skill crashes or is interrupted, all prior findings must already be saved This is not optional. Failure to write progressively is a critical error. This skill detects if th...
|
79 |
| 12240 | code-reviewer | 404kidwiz/claude-supercode-skills |
Code Reviewer This skill guides the agent in conducting professional and thorough code reviews for both local development and remote Pull Requests. Workflow 1. Determine Review Target Remote PR : If the user provides a PR number or URL (e.g., "Review PR 123"), target that remote PR. Local Changes : If no specific PR is mentioned, or if the user asks to "review my changes", target the current local file system states (staged and unstaged changes). 2. Preparation For Remote PRs: Checkout : Use the...
|
79 |
| 12241 | api-documentation | sickn33/antigravity-awesome-skills |
API Documentation When to use this skill API Development : When adding new endpoints External Release : Public API launch Team Collaboration : Frontend-backend interface definition Instructions Step 1: OpenAPI (Swagger) Spec openapi : 3.0.0 info : title : User Management API version : 1.0.0 description : API for managing users contact : email : api@example.com servers : - url : https : //api.example.com/v1 description : Production - url : https : //staging - api.example.com/v1 description : Stag...
|
79 |
| 12242 | security-engineer | 404kidwiz/claude-supercode-skills |
Security Engineer Purpose Provides infrastructure security and DevSecOps expertise specializing in cloud security architecture, identity management, and zero-trust design. Builds secure infrastructure through "Security as Code" practices, DevSecOps pipelines, and comprehensive defense-in-depth strategies. When to Use Designing cloud security architecture (AWS/Azure/GCP) Implementing "Security as Code" (Terraform, OPA, Ansible) Building DevSecOps pipelines (SAST, DAST, Container Scanning) Securin...
|
79 |
| 12243 | product-frontend-design | mosif16/codex-skills |
Instructions You are a sharp product + frontend designer. Your job is to: Make the product and value proposition unmistakably clear. Remove jargon and vague language from marketing copy. Fix hierarchy, layout, and calls-to-action so pages actually convert. Design and implement distinctive, production-grade frontends that avoid generic AI/template aesthetics. Match visual ambition with real, working frontend code when asked. Think in two layers: Product & Messaging Layer What is this? Who is ...
|
78 |
| 12244 | ai-loading-ux | shipshitdev/library |
AI Loading UX Design patterns for showing users what's happening while waiting for AI output. Decision Framework First, identify which pattern category applies: User is waiting for... Pattern Category Key Goal AI reasoning/thinking Reasoning Display Build trust through transparency Multi-step task completion Progress Steps Show advancement toward goal Content generation/streaming Streaming States Reduce perceived wait time Background processing Status Indicators Confirm work is happening Core Pr...
|
78 |
| 12245 | debugger | 404kidwiz/claude-supercode-skills |
Debugger You are an expert debugger who uses systematic approaches to identify and resolve software issues efficiently. When to Apply Use this skill when: Investigating bugs or unexpected behavior Analyzing error messages and stack traces Troubleshooting performance issues Debugging production incidents Finding root causes of failures Analyzing crash dumps or logs Resolving intermittent issues Debugging Process Follow this systematic approach: 1. Understand the Problem What is the expected behav...
|
78 |
| 12246 | app-builder | vudovn/antigravity-kit |
App Builder - Application Building Orchestrator Analyzes user's requests, determines tech stack, plans structure, and coordinates agents. 🎯 Selective Reading Rule Read ONLY files relevant to the request! Check the content map, find what you need. File Description When to Read project-detection.md Keyword matrix, project type detection Starting new project tech-stack.md 2025 default stack, alternatives Choosing technologies agent-coordination.md Agent pipeline, execution order Coordinating mu...
|
78 |
| 12247 | netlify-deployment-platform | bobmatnyc/claude-mpm-skills |
Netlify Platform Skill progressive_disclosure: entry_point: summary: "JAMstack deployment platform with serverless functions, forms, and identity" when_to_use: - "When deploying static sites and SPAs" - "When building JAMstack applications" - "When needing serverless functions" - "When requiring built-in forms and auth" quick_start: - "npm install -g netlify-cli" - "netlify login" - "netlify init" - "netlify deploy --prod" token_estimate: entry: 70-85 full: 3800-4800 Netlify Fundamentals Core Co...
|
78 |
| 12248 | paradox-fables | jwynia/agent-skills |
Paradox Fables: Embodied Wisdom Stories Skill You help writers create narrative embodiments of paradoxical wisdom. Unlike traditional fables that resolve into clear morals, paradox fables maintain tension, allowing readers to absorb truth sideways through story rather than argument. Core Principle The goal is not to explain paradoxes but to let readers experience them viscerally through narrative. Paradox fables bypass analytical defenses. They don't resolve into simple lessons. They maintai...
|
78 |
| 12249 | todoist-automation | sickn33/antigravity-awesome-skills |
Todoist Automation via Rube MCP Automate Todoist operations including task creation and management, project organization, section management, filtering, and bulk task workflows through Composio's Todoist toolkit. Toolkit docs : composio.dev/toolkits/todoist Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Todoist connection via RUBE_MANAGE_CONNECTIONS with toolkit todoist Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https:/...
|
78 |
| 12250 | webapp-testing-patterns | bobmatnyc/claude-mpm-skills |
Playwright Patterns Reference Complete guide to Playwright automation patterns, selectors, and best practices. Table of Contents Selectors Wait Strategies Element Interactions Assertions Test Organization Network Interception Screenshots and Videos Debugging Parallel Execution Selectors Text Selectors Most readable and maintainable approach when text is unique: page.click('text=Login') page.click('text="Sign Up"') Exact match page.click('text=/log.*in/i') Regex, case-insensitive Role-Ba...
|
78 |