Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
16701 precommit julianobarbosa/claude-code-skills
PreCommit A comprehensive skill for managing pre-commit hooks - the framework for multi-language pre-commit hook management that automates code quality, formatting, linting, and security scanning. Quick Reference Command Description pre-commit install Install git hooks pre-commit run --all-files Run all hooks on all files pre-commit autoupdate Update hooks to latest versions pre-commit run <hook-id> Run specific hook Workflow Routing Workflow Trigger File Setup "setup pre-commit", "initialize ...
44
16702 tool-hooks-doctor heyvhuang/ship-faster
Hooks Doctor (Claude Code) Goal: quickly verify whether Claude Code hooks for skill-evolution are installed and enabled. This is an atomic diagnostic tool used by other workflows so they can warn early when the evolution loop is not active. Scope Applies to: Claude Code hook installation / configuration Does not apply to: Cursor/OpenCode/etc that do not support Claude-style hooks What "healthy" looks like Hook scripts exist at: ~/.claude/skills/skill-evolution/hooks/ Settings enable the hooks in...
44
16703 erpnext-permissions openaec-foundation/erpnext_anthropic_claude_development_skill_package
ERPNext Permissions Skill Deterministic patterns for implementing robust permission systems in Frappe/ERPNext applications. Overview Frappe's permission system has five layers: Layer Controls Configured Via Version Role Permissions What users CAN do DocType permissions table All User Permissions WHICH documents users see User Permission records All Perm Levels WHICH fields users see Field permlevel property All Permission Hooks Custom logic hooks.py All Data Masking MASKED field values Field mas...
44
16704 readme-generator dengineproblem/agents-monorepo
Readme Generator Purpose This skill provides automated assistance for readme generator tasks within the DevOps Basics domain. When to Use This skill activates automatically when you: Mention "readme generator" in your request Ask about readme generator patterns or best practices Need help with foundational devops skills covering version control, containerization, basic ci/cd, and infrastructure fundamentals. Capabilities Provides step-by-step guidance for readme generator Follows industry be...
44
16705 daily-news 6551team/daily-news
Daily News Skill Query daily news and hot topics from the 6551 platform REST API. No authentication required. Base URL : https://ai.6551.io News Operations 1. Get News Categories Get all available news categories and subcategories. curl -s -X GET "https://ai.6551.io/open/free_categories" 2. Get Hot News Get hot news articles and trending tweets by category. curl -s -X GET "https://ai.6551.io/open/free_hot?category=macro" Parameter Type Required Description category string Yes Category key from f...
44
16706 rust-idioms pproenca/dot-skills
Comprehensive refactoring and idiomatic patterns guide for Rust applications, maintained by the Rust Community. Contains 44 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: - Writing new Rust code with strong type guarantees - Refactoring ownership and borrowing patterns - Designing error handling strategies - Creating public APIs with traits and generics - Organizing modules and controllin...
44
16707 typo3-rector dirnbauer/webconsulting-skills
TYPO3 Rector Upgrade Patterns Compatibility: TYPO3 v13.x and v14.x (v14 preferred) This skill covers patterns for writing code that works on both v13 and v14. 1. Introduction to TYPO3 Rector Rector is an automated refactoring tool that helps migrate TYPO3 extensions between major versions. It applies predefined rules to update deprecated code patterns. Installation ddev composer require --dev ssch/typo3-rector Basic Configuration for Dual-Version Support Create rector.php in your project r...
44
16708 haptics johnrogers/claude-swift-engineering
Haptics Haptic feedback provides tactile confirmation of user actions and system events. When designed thoughtfully, haptics transform interfaces from functional to delightful. Overview Haptics should enhance interactions, not dominate them. The core principle: haptic feedback is like sound design—every haptic should have purpose (confirmation, error, warning), timing (immediate or delayed), and restraint (less is more). Reference Loading Guide ALWAYS load reference files if there is even a...
44
16709 video-thumbnail-extractor dkyazzentwatwa/chatgpt-skills
Extract frames and create thumbnails from videos. Features - Frame Extraction: Extract at timestamps or intervals - Best Frame Detection: Find sharpest/brightest frames - Grid Previews: Contact sheet thumbnails - Batch Processing: Process multiple videos - Multiple Formats: PNG, JPG output CLI Usage ``` python video_thumbnail_extractor.py --input video.mp4 --time 00:01:30 --output thumb.jpg python video_thumbnail_extractor.py --input video.mp4 --grid 4x4 --output preview.jpg ``` Dep...
44
16710 dev-browser code-yeongyu/oh-my-opencode
Dev Browser Skill Browser automation that maintains page state across script executions. Write small, focused scripts to accomplish tasks incrementally. Once you've proven out part of a workflow and there is repeated work to be done, you can write a script to do the repeated work in a single execution. Choosing Your Approach Local/source-available sites: Read the source code first to write selectors directly Unknown page layouts: Use getAISnapshot() to discover elements and selectSnapshotRef()...
44
16711 product-specs-writer ncklrs/startup-os-skills
Product Specs Writer Comprehensive product documentation expertise — from strategic PRDs to implementation-ready specifications that engineering teams can actually build from. Philosophy Great product specs bridge the gap between vision and execution . They're not bureaucratic documents; they're communication tools that align teams and prevent expensive misunderstandings. The best product specifications: Start with the why — Context before requirements Are testable — Every requirement has clear ...
44
16712 tokio-patterns geoffjay/claude-plugins
This skill provides common patterns and idioms for building robust async applications with Tokio. Worker Pool Pattern Limit concurrent task execution using a semaphore: ``` use tokio::sync::Semaphore; use std::sync::Arc; pub struct WorkerPool { semaphore: Arc<Semaphore>, } impl WorkerPool { pub fn new(size: usize) -> Self { Self { semaphore: Arc::new(Semaphore::new(size)), } } pub async fn execute<F, T>(&self, f: F) -> T where F: Fut...
44
16713 skill builder proffesor-for-testing/agentic-qe
Skill Builder What This Skill Does Creates production-ready Claude Code Skills with proper YAML frontmatter, progressive disclosure architecture, and complete file$folder structure. This skill guides you through building skills that Claude can autonomously discover and use across all surfaces (Claude.ai, Claude Code, SDK, API). Prerequisites Claude Code 2.0+ or Claude.ai with Skills support Basic understanding of Markdown and YAML Text editor or IDE Quick Start Creating Your First Skill 1. Crea...
44
16714 oxfmt-oxlint upamune/radicaster
OXFMT-OXLINT Skill This skill provides access to OXFMT-OXLINT documentation. Documentation All documentation files are in the docs/ directory as Markdown files. Search Tool python scripts/search_docs.py "<query>" Options: --json - Output as JSON --max-results N - Limit results (default: 10) Usage Search or read files in docs/ for relevant information Each file has frontmatter with source_url and fetched_at Always cite the source URL in responses Note the fetch date - documentation may have chang...
44
16715 sweepi jjenzz/sweepi
Sweepi Orchestrator Parent orchestrates only. Parent does not run Sweepi directly. Trigger User asks for sweepi or linting Parent is preparing to propose a commit Changed files may violate lint rules Flow COLLECT_FILES -> LINT_SUBAGENT -> RESULT COLLECT_FILES : determine lint scope ( changed files or --all ) LINT_SUBAGENT : invoke lint sub-agent RESULT : CLEAN -> report success BLOCKED -> retry with clarified scope or escalate to user with blocker details Sub-Agent Invocation Contract Parent pro...
44
16716 fluxui-development laravel/boost
Flux UI Development When to Apply Activate this skill when: Creating UI components or pages Working with forms, modals, or interactive elements Checking available Flux components Documentation Use search-docs for detailed Flux UI patterns and documentation. Basic Usage This project uses the free edition of Flux UI, which includes all free components and variants but not Pro components. Flux UI is a component library for Livewire built with Tailwind CSS. It provides components that are easy to us...
44
16717 social media reporter eddiebe147/claude-settings
Social Media Reporter Create comprehensive social media analytics reports with insights and recommendations When to Use This Skill Use this skill when you need to: Improve business operations and strategy Make data-driven business decisions Optimize processes and outcomes Not recommended for: Tasks requiring creative design work technical coding Quick Reference Action Command/Trigger Create social media reporter social media report Review and optimize review social media reporter Get best practi...
44
16718 debridge sendaifun/skills
deBridge Solana SDK Development Guide A comprehensive guide for building Solana programs with the deBridge Solana SDK - enabling decentralized cross-chain transfers of arbitrary messages and value between blockchains. Overview deBridge is a cross-chain infrastructure protocol enabling: Cross-Chain Transfers : Bridge assets between Solana and 20+ EVM chains Message Passing : Send arbitrary messages across blockchains External Calls : Execute smart contract calls on destination chains Sub-Second S...
44
16719 finops-expert personamanagmentlayer/pcl
Expert guidance for cloud financial operations, cost optimization, resource management, and cloud economics. Core Concepts FinOps Fundamentals - Cloud cost visibility - Usage optimization - Rate optimization - Architecture optimization - Cloud unit economics - Showback and chargeback Cost Management - Reserved Instances (RIs) - Savings Plans - Spot instances - Right-sizing resources - Idle resource cleanup - Storage lifecycle policies FinOps Practices - Tagging strategies -...
44
16720 physics-rendering-expert erichowens/some_claude_skills
Physics & Rendering Expert: Rope Dynamics & Constraint Solving Expert in computational physics for real-time rope/cable dynamics, constraint solving, and physically-based simulations. When to Use This Skill Use for: Real-time rope/cable/chain simulation (leashes, climbing ropes) Position-Based Dynamics (PBD) implementation Constraint solvers (Gauss-Seidel, Jacobi) Quaternion/dual-quaternion rotation math Verlet integration for particle systems Tangle detection (multi-rope collisions) Do NOT...
44
16721 codebase-study-guide petekp/agent-skills
Codebase Study Guide Generate a study guide that builds durable understanding of a codebase using evidence-based learning techniques. The guide helps readers grasp not just what the code does, but why it exists and how its parts relate. Guiding Pedagogy These principles shape every section of the guide. See references/pedagogy.md for the full research basis. Purpose before structure. Start with the problem being solved, not the file tree. Readers who understand the "why" form stronger schemas fo...
44
16722 web-design-guidelines vudovn/antigravity-kit
Web Interface Guidelines Review files for compliance with Web Interface Guidelines. How It Works Fetch the latest guidelines from the source URL below Read the specified files (or prompt user for files/pattern) Check against all rules in the fetched guidelines Output findings in the terse file:line format Guidelines Source Fetch fresh guidelines before each review: https://raw.githubusercontent.com/vercel-labs/web-interface-guidelines/main/command.md Use WebFetch to retrieve the latest rules. Th...
44
16723 erpnext-impl-jinja openaec-foundation/erpnext_anthropic_claude_development_skill_package
ERPNext Jinja Templates - Implementation This skill helps you determine HOW to implement Jinja templates. For exact syntax, see erpnext-syntax-jinja . Version : v14/v15/v16 compatible (with V16-specific features noted) Main Decision: What Are You Trying to Create? ┌─────────────────────────────────────────────────────────────────────────┐ │ WHAT DO YOU WANT TO CREATE? │ ├─────────────────────────────────────────────────────────────────────────┤ │ ...
44
16724 memory-manage catlog22/claude-code-workflow
Memory Management Skill Unified entry point for project memory (CLAUDE.md) updates and documentation (API.md/README.md) generation. Routes to specialized sub-commands via arguments or interactive needs assessment. Architecture Overview ┌──────────────────────────────────────────────────────┐ │ Memory Manage (Router) │ │ → Parse input → Detect mode → Route to phase │ └───────────────┬──────────────────────────────────────┘ │ ┌───────┴───────┐ ↓ ...
44
16725 hass-config-flow edmundmiller/dotfiles
Home Assistant REST API Docs: https://developers.home-assistant.io/docs/api/rest/ NixOS extraComponents bundles integration code, but config-flow-only integrations (Spotify, Matter, HomeKit Controller, Cast, etc.) require the REST API or UI to complete setup. hass-cli (preferred for inspection/simple calls) home-assistant-cli is installed on the NUC. Prefer it over raw curl for entity listing, service calls, device/area management, and event watching. On NUC (after getting a token): export HASS...
44
16726 api-interface-design tencentblueking/bk-ci
API 接口设计 Quick Reference 路径格式:/{scope}/{resource}/{resourceId}/{subResource} 路径前缀:/user/(Web) | /service/(内部) | /build/(Agent) | /open/(外部) 返回格式:Result<T> { status, message, data } 分页格式:Page<T> { count, page, pageSize, totalPages, records } 错误码格式:21(平台)01(服务)001(业务码) → 如 2100013 = 无效参数 最简示例 @Tag(name = "USER_PIPELINE", description = "用户-流水线资源") @Path("/user/pipelines") @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.APPLICATION_JSON) interface UserPipelineResource { @Operation(su...
44
16727 scenario-analyzer nicepkg/ai-workflow
Headline Scenario Analyzer Overview このスキルは、ニュースヘッドラインを起点として中長期(18ヶ月)の投資シナリオを分析します。 2つの専門エージェント( scenario-analyst と strategy-reviewer )を順次呼び出し、 多角的な分析と批判的レビューを統合した包括的なレポートを生成します。 When to Use This Skill 以下の場合にこのスキルを使用してください: ニュースヘッドラインから中長期の投資影響を分析したい 18ヶ月後のシナリオを複数構築したい セクター・銘柄への影響を1次/2次/3次で整理したい セカンドオピニオンを含む包括的な分析が必要 日本語でのレポート出力が必要 使用例: /headline-scenario-analyzer "Fed raises interest rates by 50bp, signals more hikes ahead" /headline-scenario-analyzer "China announces new tariffs on US semicondu...
44
16728 business-plan jk-0001/skills
Business Plan Overview A business plan is not a static document you write once and file away. For solopreneurs, it is a living strategy document — a forcing function that makes you think clearly about your business and a reference you update as reality proves or disproves your assumptions. This playbook builds it section by section, in the order that makes each section easier to write because the previous one is already done. Step 1: Executive Summary (Write This LAST) Even though it appears fir...
44
16729 selenium teachingai/full-stack-skills
Use this skill whenever the user wants to: - [待完善:根据具体工具添加使用场景] How to use this skill [待完善:根据具体工具添加使用指南] Best Practices [待完善:根据具体工具添加最佳实践] Keywords [待完善:根据具体工具添加关键词]
44
16730 superwall-ios-quickstart superwall/skills
Superwall iOS Quickstart Implement the native iOS SDK quickstart flow end-to-end. Use another skill when Project is Expo -> superwall-expo-quickstart Project is native Android -> superwall-android-quickstart Project is Flutter -> superwall-flutter-quickstart Source of truth Use bundled references under references/quickstart/ as the default source of truth. Implementation order install.md configure.md user-management.md feature-gating.md tracking-subscription-state.md setting-user-properties.md i...
44
16731 compact-markdown nkootstra/skills
Markdown Compactor CRITICAL SECURITY GATE: Before producing ANY output, scan the input for credentials (passwords, API keys, tokens, connection strings like postgres://user:pass@host ). If credentials are found: Do NOT output any compacted markdown. Do not include the credential anywhere in your response. Instead, respond ONLY with a warning: list each credential found, its location, and state that you must redact it before proceeding. Use the word "credential" and "redact" in your warning. Desc...
44
16732 zhy-article-illustrator zhylq/yuan-skills
zhy-article-illustrator Purpose 为任意 Markdown 文章自动规划并生成配图。技能默认采用“高完成度编辑视觉”作为 全局质量基线:不是简单插画,不是装饰图标拼贴,也不是低信息密度草图。系统会先 为文章生成统一的 visual bible,再为每张图生成结构化提示词,使同一篇文章的配图 共享统一风格语言,同时根据章节内容调整构图、信息重点和版式。 默认优先兼容 Gemini Nano Banana 工作流,并默认走 Xiaomi Gemini 兼容接口;同时支持 Gemini 原生代理 / 中转站模式与官方 Gemini 接口。 When to Use 用户请求“为文章配图”、“illustrate article”、“add images to article” zhy-wechat-writing 技能的 Step 6 调用( with_illustrations=true ) 用户希望生成更适合公众号场景的高完成度专题视觉 用户希望将本地图片上传到七牛云获取 CDN URL Prerequisites 文章 Markdown 文件已存在 已配置至...
44
16733 gcp-logs hyperlane-xyz/hyperlane-monorepo
GCP Logs Query Skill When to Use Investigating relayer, validator, or scraper behavior Debugging message processing issues Analyzing operational incidents Looking for specific errors or patterns in agent logs Prerequisites gcloud CLI installed and authenticated Access to abacus-labs-dev GCP project Base Query Templates Relayer (Omniscient) gcloud logging read 'resource.type="k8s_container" AND resource.labels.project_id="abacus-labs-dev" AND resource.labels.location="us-east1-c" AND resource.lab...
44
16734 converting-minikit-to-farcaster base/base-skills
MiniKit to Farcaster SDK Breaking Changes (SDK v0.2.0+) sdk.context is a Promise — must await sdk.isInMiniApp() accepts no parameters sdk.actions.setPrimaryButton() has no onClick callback Check version: npm list @farcaster/miniapp-sdk Quick Reference MiniKit Farcaster SDK Notes useMiniKit().setFrameReady() await sdk.actions.ready() useMiniKit().context await sdk.context Async useMiniKit().isSDKLoaded await sdk.isInMiniApp() No params useClose() await sdk.actions.close() useOpenUrl(url) await sd...
44
16735 book-reader trevors/dot-claude
Book Reader Read and query digital book formats from the command line using BM25 search. Quick Start Get book metadata uv run ~/.claude/skills/book-reader/book.py info ~/Books/mybook.pdf Show table of contents uv run ~/.claude/skills/book-reader/book.py toc ~/Books/mybook.epub Read a specific chapter uv run ~/.claude/skills/book-reader/book.py read ~/Books/mybook.pdf --chapter 3 Read a specific page uv run ~/.claude/skills/book-reader/book.py read ~/Books/mybook.pdf --page 42 Search f...
44
16736 webinar producer eddiebe147/claude-settings
Webinar Producer Plan, produce, and optimize webinars for engagement and conversion When to Use This Skill Use this skill when you need to: Enhance team collaboration Improve stakeholder engagement Facilitate clear dialogue Not recommended for: Tasks requiring technical development data analysis Quick Reference Action Command/Trigger Create webinar producer webinar production Review and optimize review webinar producer Get best practices webinar producer best practices Core Workflows Workflow 1:...
44
16737 sankey-diagram-creator dkyazzentwatwa/chatgpt-skills
Create interactive Sankey diagrams to visualize flows, transfers, and relationships between categories. Perfect for budget flows, energy transfers, user journeys, and data pipelines. Quick Start ``` from scripts.sankey_creator import SankeyCreator From dictionary sankey = SankeyCreator() sankey.from_dict({ 'source': ['A', 'A', 'B', 'B'], 'target': ['C', 'D', 'C', 'D'], 'value': [10, 20, 15, 25] }) sankey.generate().save_html("flow.html") From CSV sankey = SankeyCreator() sanke...
44
16738 playwright-automation aaaaqwq/claude-code-skills
Playwright 浏览器自动化 概述 Playwright 是一个强大的浏览器自动化工具,可以模拟真实用户操作,支持: 无头浏览器模式(后台运行) 数据采集和爬虫 表单自动填写 UI 自动化测试 截图和 PDF 生成 为什么需要 Playwright 与 browser tool 的区别 特性 browser tool Playwright 需要用户参与 ✅ 需要手动打开浏览器 ❌ 完全自动 适合定时任务 ❌ ✅ 后台运行 ❌ ✅ 调试友好 ✅ 可视化操作 ⚠️ 需要日志 无需安装 ✅ 已集成 ❌ 需要安装 使用场景 使用 Playwright : ✅ 定时监控(cron 任务) ✅ 大规模数据采集 ✅ 无人值守运行 ✅ 生产环境部署 使用 browser tool : ✅ 交互式调试 ✅ 需要人工决策的操作 ✅ 一次性任务 ✅ 绕过复杂验证码 快速开始 1. 安装 Playwright 安装 Python 包 pip install playwright 安装浏览器(Chromium) playwright install chromium 验证安装 python3 -c ...
44
16739 hosted-agents-v2-py sickn33/antigravity-awesome-skills
Azure AI Hosted Agents (Python) Build container-based hosted agents using ImageBasedHostedAgentDefinition from the Azure AI Projects SDK. Installation pip install azure-ai-projects >= 2.0 .0b3 azure-identity Minimum SDK Version: 2.0.0b3 or later required for hosted agent support. Environment Variables AZURE_AI_PROJECT_ENDPOINT = https:// < resource > .services.ai.azure.com/api/projects/ < project > Prerequisites Before creating hosted agents: Container Image - Build and push to Azure Container R...
44
16740 skill-creator panaversity/agentfactory
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
44
16741 altinity-expert-clickhouse-replication altinity/skills
Replication Health and Keeper Analysis Diagnose replication health, Keeper connectivity, replica lag, and queue issues. Quick Diagnostics 1. Replication Overview select database, table, is_readonly, is_session_expired, future_parts, parts_to_check, queue_size, inserts_in_queue, merges_in_queue, log_pointer, total_replicas, active_replicas, last_queue_update, absolute_delay, formatReadableTimeDelta(absolute_delay) as delay_human from s...
44
16742 email-html-mjml framix-team/skill-email-html-mjml
email-html-mjml — Responsive Email Developer Generate valid, cross-client MJML 4.x templates and compile them to production-ready HTML. The primary goal is compatibility: Outlook (2013–365), Gmail (web/app), Apple Mail, and major mobile clients. Every output must be compilable with --config.validationLevel=strict and survive Gmail's 102KB clip limit. Workflow Gather requirements — Infer email type, brand colors, and content from the user's message and conversation context. Ask only for what is g...
44
16743 compliance-policy-check oimiragieo/agent-studio
Compliance Policy Check Overview Evaluate a design/plan against framework policy and rule constraints before execution. Use this for regulated or high-risk changes. When to Use Before creator workflows for new artifacts Before HIGH/EPIC implementation phases During reflection when repeated policy violations are observed Iron Laws NEVER execute or modify code during compliance checks — this skill assesses policy alignment only; any implementation must happen separately after compliance is confirm...
44
16744 tikz-flowchart yzlnew/infra-skills
TikZ Flowchart Skill This skill provides a standardized template/style for establishing professional technical diagrams using LaTeX TikZ. It is designed for creating flowcharts, architecture diagrams, and process flows. Usage When asked to "create a flowchart" or "draw a diagram" in this project, use the template below as a starting point. Adjust styles (dataNode, opNode, etc.) as needed for the specific content. Style Guide Colors The template uses a Google Material-like palette: Green (g...
44
16745 iso27001-controls dengineproblem/agents-monorepo
ISO 27001 Controls Expert Expert in implementing and auditing ISO 27001 Information Security Management System controls. Control Categories Overview ISO 27001:2022 Annex A Structure Category Controls Focus Area A.5 Organizational 37 controls Policies, roles, responsibilities A.6 People 8 controls HR security, awareness A.7 Physical 14 controls Physical and environmental A.8 Technological 34 controls Technical security measures Risk-Based Approach Controls selection based on risk assessment outco...
44
16746 team-uidesign catlog22/claude-code-workflow
Team UI Design Systematic UI design pipeline: research -> design tokens -> review -> implementation. Built on team-worker agent architecture — all worker roles share a single agent definition with role-specific Phase 2-4 loaded from roles/<role>/role.md . Architecture Skill(skill="team-uidesign", args="task description") | SKILL.md (this file) = Router | +--------------+--------------+ | | no --role flag --role <name> | | Coord...
44
16747 release-manager borghei/claude-skills
Release Manager Ship features safely with progressive rollouts. Progressive Rollout Strategy Phase 1 - Internal (Day 1): - 100% to internal team - Test thoroughly - Fix critical bugs Phase 2 - Beta (Day 2-3): - 5% to beta users - Monitor errors/performance - Collect feedback Phase 3 - Gradual (Day 4-7): - 25% of users - Watch metrics closely - 50% of users if good - 100% if still good Phase 4 - Full Release: - 100% of users - Remove feature flag - Announce publicly...
44
16748 building-mcp-server-on-cloudflare cloudflare/cloudflare-docs
Building MCP Servers on Cloudflare Creates production-ready Model Context Protocol servers on Cloudflare Workers with tools, authentication, and deployment. When to Use User wants to build a remote MCP server User needs to expose tools via MCP User asks about MCP authentication or OAuth User wants to deploy MCP to Cloudflare Workers Prerequisites Cloudflare account with Workers enabled Node.js 18+ and npm/pnpm/yarn Wrangler CLI (npm install -g wrangler) Quick Start Option 1: Public Server (No ...
44
16749 arize-instrumentation arize-ai/arize-skills
Arize Instrumentation Skill Use this skill when the user wants to add Arize AX tracing to their application. Follow the two-phase, agent-assisted flow from the Agent-Assisted Tracing Setup and the Arize AX Tracing — Agent Setup Prompt . Quick start (for the user) If the user asks you to "set up tracing" or "instrument my app with Arize", you can start with: Follow the instructions from https://arize.com/docs/PROMPT.md and ask me questions as needed. Then execute the two phases below. Core princi...
44
16750 express-microservices-architecture manutej/luxor-claude-marketplace
Express.js Microservices Architecture A comprehensive skill for building production-ready microservices with Express.js. Master middleware patterns, routing strategies, error handling, scalability techniques, and deployment architectures for Node.js microservices at scale. When to Use This Skill Use this skill when: Building RESTful APIs and microservices with Node.js Designing scalable distributed systems with Express.js Implementing middleware-based architecture patterns Creating API gatew...
44