███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 20351 | react-native-project-creater | teachingai/full-stack-skills |
Use this skill whenever the user wants to: - [待完善:根据具体工具添加使用场景] How to use this skill [待完善:根据具体工具添加使用指南] Best Practices [待完善:根据具体工具添加最佳实践] Keywords [待完善:根据具体工具添加关键词]
|
37 |
| 20352 | xaut-trade | aurehub/skills |
xaut-trade Execute USDT -> XAUT buy and XAUT -> USDT sell flows via Uniswap V3 + Foundry cast . When to Use Use when the user wants to buy or sell XAUT (Tether Gold): Buy : USDT → XAUT Sell : XAUT → USDT External Communications This skill connects to external services (Ethereum RPC, UniswapX API, and optionally xaue.com rankings). On first setup, it may install Foundry via curl | bash . Inform the user before executing any external communication for the first time. See the README for a full list...
|
37 |
| 20353 | codemapper | knoopx/pi |
CodeMapper (`cm`) uses tree-sitter AST parsing to provide instant code analysis without databases. Get project structure, find symbols, trace call graphs, and analyze dependencies in milliseconds. Supported Languages: Python, JavaScript, TypeScript, Rust, Java, Go, C, Markdown When to Use Use CodeMapper when you need to: - ✅ Explore unfamiliar codebases (get overview, find structure) - ✅ Find symbol definitions and usages (functions, classes, methods) - ✅ Understand call graphs (who calls...
|
37 |
| 20354 | warden-lint-judge | getsentry/skills |
Lint Judge You are a second-pass Warden skill. Your job: turn AI findings into deterministic lint rules. The bar is high. Only propose a rule when you can guarantee it catches the exact pattern through AST structure, not heuristics. A rule that fires on eval(anything) is deterministic. A rule that tries to guess whether a string "looks like user input" is a heuristic. Only the first kind belongs here. Step 1: Detect the linter Before evaluating any findings, determine what linter system the proj...
|
37 |
| 20355 | cloudbase-guidelines | tencentcloudbase/cloudbase-mcp |
CloudBase Development Guidelines 💡 Recommended: MCP Installation For enhanced CloudBase development experience, we recommend installing CloudBase MCP (Model Context Protocol). CloudBase MCP provides essential tools for CloudBase development, including environment management, function deployment, database operations, and more. While not required, installing MCP will significantly improve your development workflow. MCP Configuration Instructions Most Coding Agents support project-level MCP configu...
|
37 |
| 20356 | laravel:custom-helpers | jpcaparas/superpowers-laravel |
Add to `composer.json`: ``` { "autoload": { "files": ["app/Support/helpers.php"] } } ``` Run `composer dump-autoload`. Guidelines - Keep helpers small and pure; avoid hidden IO/state - Prefer static methods on value objects when domain-specific
|
37 |
| 20357 | llm-inference | eyadsibai/ltk |
High-performance inference engines for serving large language models. Engine Comparison | vLLM | Production serving | GPU | Highest | Medium | llama.cpp | Local/edge, CPU | CPU/GPU | Good | Easy | TGI | HuggingFace models | GPU | High | Easy | Ollama | Local desktop | CPU/GPU | Good | Easiest | TensorRT-LLM | NVIDIA production | NVIDIA GPU | Highest | Complex Decision Guide | Production API server | vLLM or TGI | Maximum throughput | vLLM | Local developm...
|
37 |
| 20358 | playwright-skill | zenobi-us/dotfiles |
IMPORTANT - Path Resolution: This skill can be installed in different locations (plugin system, manual installation, global, or project-specific). Before executing any commands, determine the skill directory based on where you loaded this SKILL.md file, and use that path in all commands below. Replace $SKILL_DIR with the actual discovered path. Common installation paths: Plugin system: ~/.claude/plugins/marketplaces/playwright-skill/skills/playwright-skill Manual global: ~/.claude/skills/playwri...
|
37 |
| 20359 | svelte-development | manutej/luxor-claude-marketplace |
Svelte Development Skill This skill provides comprehensive guidance for building modern Svelte applications using reactivity runes (Svelte 5), components, stores, lifecycle hooks, transitions, and animations based on official Svelte documentation. When to Use This Skill Use this skill when: Building high-performance web applications with minimal JavaScript overhead Creating single-page applications (SPAs) with reactive UI Developing interactive user interfaces with compile-time optimization ...
|
37 |
| 20360 | brevo-automation | davepoon/buildwithclaude |
Brevo Automation via Rube MCP Automate Brevo (formerly Sendinblue) email marketing operations through Composio's Brevo toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Brevo connection via RUBE_MANAGE_CONNECTIONS with toolkit brevo Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works. Ver...
|
37 |
| 20361 | process-db-report | blogic-cz/blogic-marketplace |
Database Performance Report Processing Use this skill to analyze database observability reports and create prioritized optimization plans. Covers PostgreSQL performance triage heuristics specific to Drizzle ORM codebases. Triage Workflow Parse Report — Extract data from the pasted observability report Analyze Issues — Identify critical performance problems Priority Ranking — Sort issues by impact (high/medium/low) Generate Action Plan — Create specific tasks with code snippets Issue Detection He...
|
37 |
| 20362 | integration-test-builder | patricio0312rev/skills |
Integration Test Builder Build comprehensive integration tests for APIs and database flows. Test Harness Setup // tests/setup/test-harness.ts import { PrismaClient } from "@prisma/client"; import { execSync } from "child_process"; export class TestHarness { prisma: PrismaClient; async setup() { // Setup test database process.env.DATABASE_URL = process.env.TEST_DATABASE_URL; // Run migrations execSync("npx prisma migrate deploy"); // Initialize Prisma client this...
|
37 |
| 20363 | recharts | tartinerlabs/skills |
Recharts React charting library built on top of D3 for composable, declarative data visualization. Quick Start 1. Install Recharts npm install recharts 2. Basic Chart Structure All Recharts charts follow the same pattern: import { LineChart , Line , XAxis , YAxis , CartesianGrid , Tooltip , Legend , ResponsiveContainer } from 'recharts' ; const data = [ { name : 'Jan' , sales : 4000 , profit : 2400 } , { name : 'Feb' , sales : 3000 , profit : 1398 } , { name : 'Mar' , sales : 2000 , profit : 980...
|
37 |
| 20364 | design-spec | duc01226/easyplatform |
[IMPORTANT] Use TaskCreate to break ALL work into small tasks BEFORE starting — including tasks for each file read. This prevents context loss from long files. For simple tasks, AI MUST ask user whether to skip. Quick Summary Goal: Create structured UI/UX design specification documents from requirements or PBIs for developer handoff. Workflow: Read Source — Extract UI requirements from PBI, story, or Figma URL Determine Complexity — Quick Spec (sections 1-4) vs Full Spec (all 7 sections) Build C...
|
37 |
| 20365 | game-asset-generation | eachlabs/skills |
Game Asset Generation Generate professional game art assets using each::sense. This skill creates 2D sprites, textures, UI elements, icons, environments, and more optimized for game development workflows. Cost Savings 60-80% cost reduction compared to traditional game art production. AI-powered asset generation dramatically reduces time and budget for indie developers, studios, and game jams. Features 2D Sprites : Pixel art characters, objects, and props Sprite Sheets : Animation-ready character...
|
37 |
| 20366 | interactive-component-creator | qodex-ai/ai-agent-skills |
Web Artifacts Builder To build powerful frontend claude.ai artifacts, follow these steps: Initialize the frontend repo using scripts/init-artifact.sh Develop your artifact by editing the generated code Bundle all code into a single HTML file using scripts/bundle-artifact.sh Display artifact to user (Optional) Test the artifact Stack: React 18 + TypeScript + Vite + Parcel (bundling) + Tailwind CSS + shadcn/ui Design & Style Guidelines VERY IMPORTANT: To avoid what is often referred to as "AI...
|
37 |
| 20367 | clip-aware-embeddings | erichowens/some_claude_skills |
CLIP-Aware Image Embeddings Smart image-text matching that knows when CLIP works and when to use alternatives. MCP Integrations MCP Purpose Firecrawl Research latest CLIP alternatives and benchmarks Hugging Face (if configured) Access model cards and documentation Quick Decision Tree Your task: ├─ Semantic search ("find beach images") → CLIP ✓ ├─ Zero-shot classification (broad categories) → CLIP ✓ ├─ Counting objects → DETR, Faster R-CNN ✗ ├─ Fine-grained ID (celebrities, car models) → Specia...
|
37 |
| 20368 | experiment-design | lingzhi227/agent-research-skills |
Experiment Design Design structured, progressive experiment plans for research papers. Input $0 — Research idea, plan, or method description References 4-stage progressive experiment prompts: ~/.claude/skills/experiment-design/references/stage-prompts.md Scripts Generate experiment design python ~/.claude/skills/experiment-design/scripts/design_experiments.py --plan research_plan.json --output experiment_design.json python ~/.claude/skills/experiment-design/scripts/design_experiments.py --method...
|
37 |
| 20369 | skill-system-postgres | arthur0824hao/skills |
Skill System (Postgres State) Database schema for skill system observability and policy. Install Replace 'postgres' with your PostgreSQL superuser if needed (e.g. your OS username) psql -U postgres -d agent_memory -v ON_ERROR_STOP = 1 -f init.sql Replace 'postgres' with your PostgreSQL superuser if needed & "C:\Program Files\PostgreSQL\18\bin\psql.exe" - U postgres - d agent_memory - v "ON_ERROR_STOP=1" - f init . sql For existing v1 installations, also run migrate-v2.sql . Tables skill_system...
|
37 |
| 20370 | frontend-design | dmmulroy/overseer |
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 :...
|
37 |
| 20371 | git-commit | thinkinaixyz/deepchat |
Git Commit with Conventional Commits Overview Create standardized, semantic git commits using the Conventional Commits specification. Analyze the actual diff to determine appropriate type, scope, and message. Conventional Commit Format <type>[optional scope]: <description> [optional body] [optional footer(s)] Commit Types Type Purpose feat New feature fix Bug fix docs Documentation only style Formatting/style (no logic) refactor Code refactor (no feature/fix) perf Performance improvement test Ad...
|
37 |
| 20372 | deliberation-debate-red-teaming | lyndonkl/claude |
Deliberation, Debate & Red Teaming What Is It? Deliberation-debate-red-teaming is a structured adversarial process where you intentionally challenge plans, designs, or decisions from multiple critical perspectives to surface blind spots, hidden assumptions, and vulnerabilities before they cause real damage. Quick example: Proposal: "Launch new feature to all users next week" Red team critiques: Security: "No penetration testing done, could expose user data" Operations: "No runbook for rollb...
|
37 |
| 20373 | word-processor-expert | eddiebe147/claude-settings |
No SKILL.md available for this skill. View on GitHub
|
37 |
| 20374 | valet | valetdotdev/skills |
You are an expert at using the Valet CLI to manage AI agents on the Valet platform. You execute valet commands via the Bash tool to accomplish tasks. Always confirm destructive actions (destroy, remove, revoke) with the user before running them. Communication style : Always explain what you're doing and why before running commands. The user should never be surprised by a command — they should understand the purpose of each step in the workflow. When something goes wrong, explain the issue clearl...
|
37 |
| 20375 | cloudbase-document-database-web-sdk | tencentcloudbase/cloudbase-mcp |
CloudBase Document Database Web SDK This skill provides guidance on using the CloudBase document database Web SDK for data operations in web applications. Core Concepts Initialization Before using any database operations, initialize the CloudBase SDK: import cloudbase from "@cloudbase/js-sdk" ; // UMD version // If you are not using npm, And want to use UMD version instead. You should refer to https://docs.cloudbase.net/quick-start/web-%E5%BF%AB%E9%80%9F%E4%BD%93%E9%AA%8C for latest version of U...
|
37 |
| 20376 | webapp-testing | teachingai/full-stack-skills |
Web Application Testing To test local web applications, write native Python Playwright scripts. Helper Scripts Available : scripts/with_server.py - Manages server lifecycle (supports multiple servers) Always run scripts with --help first to see usage. DO NOT read the source until you try running the script first and find that a customized solution is abslutely necessary. These scripts can be very large and thus pollute your context window. They exist to be called directly as black-box scripts ra...
|
37 |
| 20377 | nerdzao-elite | sickn33/antigravity-awesome-skills |
@nerdzao-elite Você é um Engenheiro de Software Sênior Elite (15+ anos) + Designer de Produto Senior. Ative automaticamente TODAS as skills abaixo em toda tarefa: @concise-planning @brainstorming @senior-architect @architecture @test-driven-development @testing-patterns @refactor-clean-code @clean-code @lint-and-validate @ui-visual-validator @ui-ux-pro-max @frontend-design @web-design-guidelines @production-code-audit @code-reviewer @systematic-debugging @error-handling-patterns @kaizen @verific...
|
37 |
| 20378 | identity-hub | gravito-framework/gravito |
Identity Hub Expert You are a security-first specialist in Identity and Access Management. Your goal is to implement robust authentication and authorization flows that protect user data and system integrity. 🔐 Domain Logic: Identity & Auth 1. Authentication Patterns JWT vs Session : Determine the best state-management for the client (Inertia apps usually use Sessions; Mobile APIs use JWT). MFA Flow : Implement multi-factor authentication as an interceptor before full session access. Social Auth ...
|
37 |
| 20379 | freshdesk-automation | davepoon/buildwithclaude |
Freshdesk Automation via Rube MCP Automate Freshdesk customer support workflows including ticket management, contact and company operations, notes, replies, and ticket search through Composio's Freshdesk toolkit. Toolkit docs : composio.dev/toolkits/freshdesk Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Freshdesk connection via RUBE_MANAGE_CONNECTIONS with toolkit freshdesk Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add h...
|
37 |
| 20380 | bootstrap-customize | sjnims/bootstrap-expert |
Bootstrap 5.3 Customization Bootstrap 5.3 provides powerful customization through Sass variables, CSS custom properties, and a comprehensive theming system including built-in color modes. Customization Methods 1. CSS Variables (Runtime Customization) Bootstrap's docs call these "CSS variables" (technically CSS custom properties). Modify styles without recompiling by overriding at any level: /* Global override */ :root { --bs-primary: 0074d9; --bs-primary-rgb: 0, 116, 217; --bs-body-fon...
|
37 |
| 20381 | sector-rotation-detector | geeksfino/finskills |
行业轮动信号探测器 扮演宏观投资策略师。分析中国宏观经济指标,识别A股行业轮动机会 — 未来6–12个月哪些行业有望跑赢、哪些可能跑输 — 并解释背后的经济逻辑。 工作流程 第一步:确定分析框架 与用户确认: 市场范围 — 仅A股、含港股通、或含海外中概 时间维度 — 默认:未来6–12个月 行业分类 — 申万一级行业(31个,默认)、或更细的二级/三级行业 现有持仓 — 用户是否有需要评估的现有行业配置 风险偏好 — 保守(小幅偏离)、稳健(显著超配/低配)、激进(集中行业押注) 第二步:评估宏观指标 分析五大宏观支柱的当前状态和趋势。详细指标参见 references/macro-sector-framework.md 。 支柱 核心指标 货币政策 LPR(1Y/5Y)、MLF利率、存款准备金率、公开市场操作、社融增速 通胀 CPI、PPI、CPI-PPI剪刀差、大宗商品价格、猪肉价格周期 经济增长 GDP增速、官方PMI(制造业/非制造业)、财新PMI、工业增加值、固定资产投资、社零 就业与消费 城镇调查失业率、PMI就业分项、居民收入增速、消费者信心指数 政策导向 中央经济工作...
|
37 |
| 20382 | langgraph-docs | langchain-ai/deepagentsjs |
langgraph-docs Overview This skill explains how to access LangGraph Python documentation to help answer questions and guide implementation. Instructions 1. Fetch the Documentation Index Use the fetch_url tool to read the following URL: https://docs.langchain.com/llms.txt This provides a structured list of all available documentation with descriptions. 2. Select Relevant Documentation Based on the question, identify 2-4 most relevant documentation URLs from the index. Prioritize: Specific ...
|
37 |
| 20383 | culinary-assistant | nweii/agent-stuff |
Culinary Assistant Assist with cooking, recipe development, and kitchen tasks. General assistance Answer questions on techniques, ingredients, tools, and food science Suggest ingredient substitutions for dietary needs or availability Adapt recipes for different cooking methods (instant pot, air fryer, stovetop) Generate recipe ideas from available ingredients Troubleshoot kitchen mistakes and recipe problems Plan meals and create grocery lists Provide history and cultural context for dishes and ...
|
37 |
| 20384 | alex-hormozi | blicktz/knowledge_base_repo |
Alex Hormozi - Persona Agent You are now speaking as Alex Hormozi. CRITICAL: Complete Linguistic Style Profile YOU MUST WRITE ALL RESPONSES IN ALEX HORMOZI'S VOICE USING THIS EXACT STYLE. Tone Energetic, blunt, pragmatic, and coaching-oriented. Confident, entrepreneurial, and data-driven with casual profanity and high urgency. All Catchphrases (Use Naturally - Aim for 1-2 per Response) "Let's rock and roll" "Sell the vacation, not the plane flight" "There's no such thing as too long, only ...
|
37 |
| 20385 | playwright-testing | laurigates/claude-plugins |
Playwright E2E Testing Skill Load with: base.md + [framework].md For end-to-end testing of web applications with Playwright - cross-browser, fast, reliable. Sources: Playwright Best Practices | Playwright Docs | Better Stack Guide Setup Installation New project npm init playwright@latest Existing project npm install -D @playwright/test npx playwright install Configuration // playwright.config.ts import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ te...
|
37 |
| 20386 | gitlab-automation | davepoon/buildwithclaude |
GitLab Automation via Rube MCP Automate GitLab operations including project management, issue tracking, merge request workflows, CI/CD pipeline monitoring, branch management, and user administration through Composio's GitLab toolkit. Toolkit docs : composio.dev/toolkits/gitlab Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active GitLab connection via RUBE_MANAGE_CONNECTIONS with toolkit gitlab Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube...
|
37 |
| 20387 | cloudflare-expert | personamanagmentlayer/pcl |
Expert guidance for Cloudflare Workers, edge computing, CDN optimization, and Cloudflare security services. Core Concepts Cloudflare Services - Cloudflare Workers (serverless edge computing) - CDN and caching - DDoS protection - Web Application Firewall (WAF) - DNS management - Load balancing - Workers KV (key-value storage) - Durable Objects Edge Computing - Deploy code globally - Reduce latency - Process at the edge - Distributed state - Real-time applications Developer To...
|
37 |
| 20388 | pachca-search | pachca/openapi |
pachca-search Quick start Ask user for Pachca token (bot: Automations → Integrations → API, or user: Automations → API). Run commands with npx @pachca/cli and --token flag: npx @pachca/cli <command> --token $PACHCA_TOKEN Or set PACHCA_TOKEN for multiple commands: export PACHCA_TOKEN=<token> npx @pachca/cli <command> Help: npx @pachca/cli --help | Scenarios: npx @pachca/cli guide After successful use, suggest installing CLI globally: npm install -g @pachca/cli && pachca auth login --token $PACHCA...
|
37 |
| 20389 | container-security-auditor | jeremylongshore/claude-code-plugins-plus-skills |
Container Security Auditor Purpose This skill provides automated assistance for container security auditor tasks within the Security Advanced domain. When to Use This skill activates automatically when you: Mention "container security auditor" in your request Ask about container security auditor patterns or best practices Need help with advanced security skills covering penetration testing, compliance frameworks, threat modeling, and enterprise security. Capabilities Provides step-by-step gu...
|
37 |
| 20390 | cloudflare-workers-ai | ovachiever/droid-tings |
Cloudflare Workers AI Status: Production Ready ✅ Last Updated: 2026-01-21 Dependencies: cloudflare-worker-base (for Worker setup) Latest Versions: wrangler@4.58.0, @cloudflare/workers-types@4.20260109.0, workers-ai-provider@3.0.2 Recent Updates (2025): April 2025 - Performance: Llama 3.3 70B 2-4x faster (speculative decoding, prefix caching), BGE embeddings 2x faster April 2025 - Breaking Changes: max_tokens now correctly defaults to 256 (was not respected), BGE pooling parameter (cls NOT bac...
|
37 |
| 20391 | fivem-nui | germanfndez/fiveai-skills |
FiveM NUI Development Best practices for FiveM NUI development — fullscreen UIs, NUI callbacks, messaging, and UI integration. Use this skill whenever you are dealing with FiveM user interfaces to obtain domain-specific knowledge. When to use User asks how to create a UI for FiveM. Creating or editing HTML/CSS/JS files for FiveM resources. Setting up ui_page in fxmanifest.lua. Questions about NUI callbacks, SendNUIMessage, or SetNUIFocus. Need to look up natives → point to https://docs.fivem.net...
|
37 |
| 20392 | team-communication | qodex-ai/ai-agent-skills |
When to use this skill To write internal communications, use this skill for: 3P updates (Progress, Plans, Problems) Company newsletters FAQ responses Status reports Leadership updates Project updates Incident reports How to use this skill To write any internal communication: Identify the communication type from the request Load the appropriate guideline file from the examples/ directory: examples/3p-updates.md - For Progress/Plans/Problems team updates examples/company-newsletter.md - For co...
|
37 |
| 20393 | laravel-query-builders | leeovery/claude-laravel |
Always use custom query builders instead of local scopes. Related guides: - [Models](https://github.com/leeovery/claude-laravel/blob/main/skills/laravel-query-builders/../laravel-models/SKILL.md) - Model integration with custom builders - [Controllers](https://github.com/leeovery/claude-laravel/blob/main/skills/laravel-query-builders/../laravel-controllers/SKILL.md) - Using query objects in controllers Why Custom Builders Over Scopes ❌ Do NOT use local scopes. ✅ Use custom query builders ...
|
37 |
| 20394 | skill-system-soul | arthur0824hao/skills |
Skill System Soul Soul profiles define how you behave, not what you can do. Load a profile to adopt its behavioral guidelines. Why Different models (Claude, GPT, Gemini) have different default behaviors. Soul profiles normalize this — the same profile produces similar behavior regardless of the underlying model. Different tasks also need different behavioral modes: Exploring ideas → be creative, divergent, ask lots of questions Reviewing code → be strict, one rule at a time, no mercy Discussing ...
|
37 |
| 20395 | seo-wordpress-manager | nicepkg/ai-workflow |
SEO WordPress Manager Skill Purpose This skill manages Yoast SEO metadata in WordPress sites via the WPGraphQL API. It enables batch updates of: SEO titles Meta descriptions Focus keyphrases Open Graph metadata When to Use This Skill User asks to "update SEO titles" or "fix meta descriptions" User wants to batch process WordPress posts for SEO User mentions Yoast SEO optimization User needs to update SEO metadata across multiple posts Prerequisites WordPress Setup Required WPGraphQL plugin insta...
|
37 |
| 20396 | cloudflare-workers-expert | sickn33/antigravity-awesome-skills |
You are a senior Cloudflare Workers Engineer specializing in edge computing architectures, performance optimization at the edge, and the full Cloudflare developer ecosystem (Wrangler, KV, D1, Queues, etc.). Use this skill when Designing and deploying serverless functions to Cloudflare's Edge Implementing edge-side data storage using KV, D1, or Durable Objects Optimizing application latency by moving logic to the edge Building full-stack apps with Cloudflare Pages and Workers Handling request/res...
|
37 |
| 20397 | cpp-core-guidelines-review | openharmonyinsight/openharmony-skills |
C++ Core Guidelines Review Overview Review C++ code against the C++ Core Guidelines by launching parallel sub-agents, each analyzing code against a specific guideline section. This skill ensures comprehensive coverage while maintaining high confidence in violation identification. Workflow Step 1: Understand Scope Clarification Before launching any sub-agents, clarify the review scope with the user: Target files/directories : Which C++ source files or directories to review? File patterns : What f...
|
37 |
| 20398 | ui-analyzer | smallnest/langgraphgo |
This skill provides a systematic approach to analyzing UI design screenshots and translating them into production-ready React components using TypeScript and Tailwind CSS. Purpose Transform UI design screenshots into well-structured, accessible, and maintainable React components. The skill guides through analyzing layouts, extracting design tokens, identifying components, and generating clean code that matches the design while following best practices. When to Use This Skill Use this skill...
|
37 |
| 20399 | dev-workflows | nickcrew/claude-ctx-plugin |
Dev Workflows Overview Unify build, test, and DX improvement workflows so they are repeatable and reliable. Focus on safe execution, clear diagnostics, and actionable follow-ups. When to Use Running builds or resolving build failures Executing tests or analyzing test failures Improving onboarding, tooling, or developer workflows Avoid when: The task is pure code implementation A full release process is required (use release-prep) Quick Reference Task Load reference Build workflows skills/dev...
|
37 |
| 20400 | flare | spatie/flare-cli |
Flare CLI The flare CLI lets you manage Flare error tracking and performance monitoring from the terminal. Every Flare API endpoint has a corresponding command. Prerequisites Check that the CLI is installed: flare --version If not installed: composer global require spatie/flare-cli Ensure Composer's global bin directory is in PATH : composer global config bin-dir --absolute Authentication Log in — you'll be prompted for your API token flare login Log out flare logout Get your API token at http...
|
37 |