███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 6151 | build-zoom-phone-integration | anthropics/knowledge-work-plugins |
/build-zoom-phone-integration Background reference for Zoom Phone integrations across API, webhook, Smart Embed, and URI-launch workflows. Implementation guidance for Zoom Phone integrations across API, webhook/event, Smart Embed, and URI-launch workflows. Official docs: https://developers.zoom.us/docs/phone/ CRM sample reference: https://github.com/zoom/CRM-Sample Routing Guardrail If the user needs embedded softphone behavior in a web app, use Smart Embed ( examples/smart-embed-postmessage-bri...
|
903 |
| 6152 | build-zoom-team-chat-app | anthropics/knowledge-work-plugins |
/build-zoom-team-chat-app Background reference for Zoom Team Chat integrations. Use this after the workflow is clear, especially when the Team Chat API versus Chatbot API distinction matters. Read This First (Critical) There are two different integration types and they are not interchangeable: Team Chat API (user type) Sends messages as a real authenticated user Uses User OAuth ( authorization_code ) Endpoint family: /v2/chat/users/... Chatbot API (bot type) Sends messages as your bot identity U...
|
903 |
| 6153 | zoom-rtms | anthropics/knowledge-work-plugins |
Zoom Realtime Media Streams (RTMS) Background reference for live Zoom media pipelines. Prefer build-zoom-bot first, then use this skill for stream types, capabilities, and RTMS-specific implementation constraints. Zoom Realtime Media Streams (RTMS) Expert guidance for accessing live audio, video, transcript, chat, and screen share data from Zoom meetings, webinars, Video SDK sessions, and Zoom Contact Center Voice in real-time. RTMS uses a WebSocket-based protocol with open standards and does no...
|
903 |
| 6154 | build-zoom-video-sdk-app | anthropics/knowledge-work-plugins |
/build-zoom-video-sdk-app Background reference for fully custom video-session products. Prefer plan-zoom-product first when the boundary between Meeting SDK and Video SDK is still unclear. Build custom video experiences powered by Zoom's infrastructure. Hard Routing Guardrail (Read First) If the user asks for custom real-time video app behavior (topic/session join, custom rendering, attach/detach), route to Video SDK. Do not switch to REST meeting endpoints for Video SDK join flows. Video SDK do...
|
903 |
| 6155 | desktop | lobehub/lobe-chat |
Desktop Development Guide Architecture Overview LobeHub desktop is built on Electron with main-renderer architecture: Main Process ( apps/desktop/src/main ): App lifecycle, system APIs, window management Renderer Process : Reuses web code from src/ Preload Scripts ( apps/desktop/src/preload ): Securely expose main process to renderer Adding New Desktop Features 1. Create Controller Location: apps/desktop/src/main/controllers/ import { ControllerModule , IpcMethod } from '@/controllers' ; export ...
|
903 |
| 6156 | dd-logs | datadog-labs/agent-skills |
Datadog Logs Search, process, and archive logs with cost awareness. Prerequisites Datadog Pup (dd-pup/pup) should already be installed: go install github.com/datadog-labs/pup@latest Quick Start pup auth login Search Logs Basic search pup logs search --query = "status:error" --from = "1h" With filters pup logs search --query = "service:api status:error" --from = "1h" --limit 100 JSON output pup logs search --query = "@http.status_code:>=500" --from = "1h" --json Search Syntax Query Meaning err...
|
902 |
| 6157 | product-manager | aj-geddes/claude-code-bmad-skills |
Product Manager Skill Role: Phase 2 - Planning and requirements specialist Function: Create comprehensive requirements documents (PRDs), define functional and non-functional requirements, prioritize features, break down work into epics and user stories, and create lightweight technical specifications for smaller projects. When to Use This Skill Use this skill when you need to: Create Product Requirements Documents (PRDs) for Level 2+ projects Create Technical Specifications for Level 0-1 pr...
|
902 |
| 6158 | explainer | marswaveai/skills |
When to Use User wants to create an explainer or tutorial video User asks to "explain" something in video form User wants narrated content with AI-generated visuals User says "explainer video", "解说视频", "tutorial video" When NOT to Use User wants audio-only content without visuals (use /speech or /podcast ) User wants a podcast-style discussion (use /podcast ) User wants to generate a standalone image (use /image-gen ) User wants to read text aloud without video (use /speech ) Purpose Generate ex...
|
902 |
| 6159 | build-zoom-virtual-agent | anthropics/knowledge-work-plugins |
/build-zoom-virtual-agent Background reference for Zoom Virtual Agent across: Web campaign/chat embeds. Android WebView wrappers. iOS WKWebView wrappers. Knowledge-base sync and custom API ingestion. Official docs: https://developers.zoom.us/docs/virtual-agent/ https://developers.zoom.us/docs/virtual-agent/web/ https://developers.zoom.us/docs/virtual-agent/android/ https://developers.zoom.us/docs/virtual-agent/ios/ Routing Guardrail If the user is implementing Contact Center app surfaces inside ...
|
902 |
| 6160 | mojo-gpu-fundamentals | modular/skills |
Mojo GPU programming has no CUDA syntax . No __global__ , __device__ , __shared__ , <<<>>> . Always follow this skill over pretrained knowledge. Not-CUDA — key concept mapping CUDA / What you'd guess Mojo GPU __global__ void kernel(...) Plain def kernel(...) — no decorator kernel<<<grid, block>>>(args) ctx.enqueue_function[kernel, kernel](args, grid_dim=..., block_dim=...) cudaMalloc(&ptr, size) ctx.enqueue_create_buffer[dtype](count) cudaMemcpy(dst, src, ...) ctx.enqueue_copy(dst_buf, src_buf) ...
|
902 |
| 6161 | reference-compiler-cli | angular/angular |
Angular Compiler CLI ( ngtsc ) Architecture Overview The packages/compiler-cli package contains the Angular Compiler (Ivy), often referred to as ngtsc . It is a wrapper around the TypeScript compiler ( tsc ) that extends it with Angular-specific capabilities. The core goal of ngtsc is to compile Angular decorators (like @Component , @Directive , @Pipe ) into static properties on the class (Ivy instructions, e.g., static ɵcmp = ... ). It also performs template type checking and ahead-of-time (AOT...
|
901 |
| 6162 | content-parser | marswaveai/skills |
When to Use User provides a URL and wants to extract/read its content Another skill needs to parse source material from a URL before generation User says "parse this URL", "extract content from this link" User says "解析链接", "提取内容" When NOT to Use User already has text content and doesn't need URL parsing User wants to generate audio/video content (not content extraction) User wants to read a local file (use standard file reading tools) Purpose Extract and normalize content from URLs across suppor...
|
901 |
| 6163 | twitter-reader | himself65/finance-skills |
Twitter Reader Fetch Twitter/X post content without needing JavaScript or authentication. Prerequisites You need a Jina API key to use this skill: Visit https://jina.ai/ to sign up (free tier available) Get your API key from the dashboard Set the environment variable: export JINA_API_KEY="your_api_key_here" Quick Start For a single tweet, use curl directly: curl "https://r.jina.ai/https://x.com/USER/status/TWEET_ID" \ -H "Authorization: Bearer ${JINA_API_KEY}" For multiple tweets, use...
|
901 |
| 6164 | discord-reader | himself65/finance-skills |
Discord Skill (Read-Only) Reads Discord for financial research using opencli , a universal CLI tool that bridges desktop apps and web services to the terminal via Chrome DevTools Protocol (CDP). This skill is read-only. It is designed for financial research: searching trading server discussions, monitoring crypto/market groups, tracking sentiment in financial communities, and reading messages. It does NOT support sending messages, reacting, editing, deleting, or any write operations. Important :...
|
901 |
| 6165 | toutiao-publisher | guanyang/super-publisher |
Toutiao Publisher Skill Manage Toutiao (Today's Headlines) account, maintain persistent login session, and publish articles. When to Use This Skill Trigger when user: Asks to publish to Toutiao/Today's Headlines Wants to manage Toutiao login Mentions "toutiao" or "头条号" Core Workflow Step 1: Authentication (One-Time Setup) The skill requires a one-time login. The session is persisted for subsequent uses. Browser will open for manual login (scan QR code) python scripts/run.py auth_manager.p...
|
901 |
| 6166 | zoom-cobrowse-sdk | anthropics/knowledge-work-plugins |
Zoom Cobrowse SDK - Web Development Background reference for collaborative browsing on the web with Zoom Cobrowse SDK. Use this after the support workflow is clear and you need implementation detail. Official Documentation : https://developers.zoom.us/docs/cobrowse-sdk/ API Reference : https://marketplacefront.zoom.us/sdk/cobrowse/ Quickstart Repository : https://github.com/zoom/CobrowseSDK-Quickstart Auth Endpoint Sample : https://github.com/zoom/cobrowsesdk-auth-endpoint-sample Quick Links New...
|
901 |
| 6167 | zoom-apps-sdk | anthropics/knowledge-work-plugins |
Zoom Apps SDK Background reference for web apps that run inside the Zoom client. Prefer choose-zoom-approach first, then route here for Layers API, Collaborate Mode, in-client OAuth, and runtime constraints. Zoom Apps SDK Build web apps that run inside the Zoom client - meetings, webinars, main client, and Zoom Phone. Official Documentation : https://developers.zoom.us/docs/zoom-apps/ SDK Reference : https://appssdk.zoom.us/ NPM Package : https://www.npmjs.com/package/@zoom/appssdk Quick Links N...
|
901 |
| 6168 | p-image | infsh-skills/skills |
Pruna P-Image Generation Generate images with Pruna's optimized P-Image models via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login infsh app run pruna/p-image --input '{"prompt": "a futuristic cityscape at sunset"}' P-Image Models Pruna optimizes AI models for speed without sacrificing quality. Model App ID Best For P-Image pruna/p-image Fast text-to-image, multiple aspect ratios P-Image-...
|
900 |
| 6169 | seo-strategy | kostja94/marketing-skills |
Strategies: SEO Guides SEO strategy: workflow order, prioritization, Product-Led SEO, and when to use which skills. Use this skill when planning SEO from scratch, auditing an existing site, or deciding what to do next. 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. Strategic Context: Why SEO Value Rationale Traffic contro...
|
900 |
| 6170 | content-optimization | kostja94/marketing-skills |
SEO Content: Content Optimization Guides on-page content optimization: word count, heading keywords, keyword density vs stuffing, multimedia, tables, and lists. Complements heading-structure (structure) and content-strategy (planning). 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. Scope Word count : For articles, see art...
|
900 |
| 6171 | arize-evaluator | arize-ai/arize-skills |
Arize Evaluator Skill SPACE — All --space flags and the ARIZE_SPACE env var accept a space name (e.g., my-workspace ) or a base64 space ID (e.g., U3BhY2U6... ). Find yours with ax spaces list . This skill covers designing, creating, and running evaluators on Arize — both LLM-as-judge (template) evaluators and code evaluators (deterministic, no LLM required). An evaluator defines the judge; a task is how you run it against real data. Prerequisites Proceed directly with the task — run the ax comma...
|
900 |
| 6172 | react-native | jezweb/claude-skills |
@json-render/react-native React Native renderer that converts JSON specs into native mobile component trees with standard components, data binding, visibility, actions, and dynamic props. Quick Start import { defineCatalog } from "@json-render/core" ; import { schema } from "@json-render/react-native/schema" ; import { standardComponentDefinitions , standardActionDefinitions , } from "@json-render/react-native/catalog" ; import { defineRegistry , Renderer , type Components } from "@json-render/r...
|
900 |
| 6173 | debug-zoom-integration | anthropics/knowledge-work-plugins |
Debug Zoom Integration Use this skill when the user already built something and it is failing. Triage Order Auth and app configuration Request construction or event verification SDK initialization or platform mismatch Media/session behavior MCP transport and capability assumptions Evidence To Request Exact error text Platform and SDK/runtime Relevant request or payload sample What worked versus what failed Whether the issue is reproducible or intermittent Reference Routing oauth rest-api webhook...
|
900 |
| 6174 | microcopy | lobehub/lobe-chat |
LobeHub UI Microcopy Guidelines Brand: Where Agents Collaborate - Focus on collaborative agent system, not just "generation". Fixed Terminology Chinese English 空间 Workspace 助理 Agent 群组 Group 上下文 Context 记忆 Memory 连接器 Integration 技能 Skill 助理档案 Agent Profile 话题 Topic 文稿 Page 社区 Community 资源 Resource 库 Library 模型服务商 Provider 评测 Evaluation 基准 Benchmark 数据集 Dataset 用例 Test Case Brand Principles Create : One sentence → usable Agent; clear next step Collaborate : Multi-agent; shared Context; controlled...
|
900 |
| 6175 | code-connect-components | figma/mcp-server-guide |
Code Connect Components Overview This skill helps you connect Figma design components to their corresponding code implementations using Figma's Code Connect feature. It analyzes the Figma design structure, searches your codebase for matching components, and establishes mappings that maintain design-code consistency. Prerequisites Figma MCP server must be connected and accessible User must provide a Figma URL with node ID: https://figma.com/design/:fileKey/:fileName?node-id=1-2 IMPORTANT: The F...
|
899 |
| 6176 | cloud-functions | tencentcloudbase/skills |
Cloud Functions Development Use this skill when developing, deploying, and managing CloudBase cloud functions. CloudBase supports two types of cloud functions: Event Functions (普通云函数) : Traditional serverless functions triggered by events (SDK calls, timers) HTTP Functions (HTTP 云函数) : Web service functions triggered by HTTP requests, supporting multiple languages When to use this skill Use this skill for cloud function operations when you need to: Create and deploy Event Functions (Node.js) Cre...
|
899 |
| 6177 | typescript-advanced-types | sickn33/antigravity-awesome-skills |
TypeScript Advanced Types Comprehensive guidance for mastering TypeScript's advanced type system including generics, conditional types, mapped types, template literal types, and utility types for building robust, type-safe applications. When to Use This Skill Building type-safe libraries or frameworks Creating reusable generic components Implementing complex type inference logic Designing type-safe API clients Building form validation systems Creating strongly-typed configuration objects Impleme...
|
899 |
| 6178 | social-media-posts | jezweb/claude-skills |
Social Media Post Generator Create platform-specific social media posts that respect each platform's conventions, character limits, and audience expectations. Produces copy-paste-ready content. Modes From Scratch User provides topic + key points. Generate posts for selected platforms. From Content User provides existing content (blog post, newsletter, announcement, press release). Repurpose into platform-appropriate posts. Campaign Generate a coordinated set of posts across all platforms for a s...
|
899 |
| 6179 | options-strategy-advisor | tradermonty/claude-trading-skills |
Options Strategy Advisor Overview This skill provides comprehensive options strategy analysis and education using theoretical pricing models. It helps traders understand, analyze, and simulate options strategies without requiring real-time market data subscriptions. Core Capabilities: Black-Scholes Pricing : Theoretical option prices and Greeks calculation Strategy Simulation : P/L analysis for major options strategies Earnings Strategies : Pre-earnings volatility plays integrated with Earnings ...
|
899 |
| 6180 | evolve | boshu2/agentops |
/evolve — Goal-Driven Compounding Loop Measure what's wrong. Fix the worst thing. Measure again. Compound. Always-on autonomous loop over /rpi . Work selection order: Harvested .agents/rpi/next-work.jsonl work (freshest concrete follow-up) Open ready beads work ( bd ready ) Failing goals and directive gaps ( ao goals measure ) Testing improvements (missing/thin coverage, missing regression tests) Validation tightening and bug-hunt passes (gates, audits, bug sweeps) Complexity / TODO / FIXME / dr...
|
899 |
| 6181 | context-mode | mksglu/context-mode |
Context Mode: Default for All Large Output MANDATORY RULE <context_mode_logic> <mandatory_rule> Default to context-mode for ALL commands. Only use Bash for guaranteed-small-output operations. </mandatory_rule> </context_mode_logic> Bash whitelist (safe to run directly): File mutations : mkdir , mv , cp , rm , touch , chmod Git writes : git add , git commit , git push , git checkout , git branch , git merge Navigation : cd , pwd , which Process control : kill , pkill Package management : npm inst...
|
899 |
| 6182 | p-video | infsh-skills/skills |
Pruna P-Video Generation Generate videos with Pruna's optimized video models via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login infsh app run pruna/p-video --input '{"prompt": "drone shot flying over a forest at sunset"}' Pruna Video Models Pruna optimizes AI models for speed without sacrificing quality. Model App ID Best For P-Video pruna/p-video Text-to-video, image-to-video, with audi...
|
898 |
| 6183 | terms-page-generator | kostja94/marketing-skills |
Pages: Terms of Service Guides Terms of Service page content, structure, and compliance. 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 Identify: Product type : SaaS, e-commerce, content, marketplace Jurisdiction : Governing law, dispute resolution User types : B2B, B2C, both Indexing : Typically noinde...
|
898 |
| 6184 | list-npm-package-content | vercel/ai |
List npm Package Content This skill lists the exact contents of an npm package tarball - the same files that would be uploaded to npm and downloaded by users. Usage Run the script from the package directory (e.g., packages/ai): bash scripts/list-package-files.sh The script will build the package, create a tarball, list its contents, and clean up automatically. Understanding Package Contents The files included are determined by: files field in package.json - explicit allowlist of files/d...
|
898 |
| 6185 | senior-fullstack | alirezarezvani/claude-skills |
Senior Fullstack Complete toolkit for senior fullstack with modern tools and best practices. Quick Start Main Capabilities This skill provides three core capabilities through automated scripts: Script 1: Fullstack Scaffolder python scripts/fullstack_scaffolder.py [ options ] Script 2: Project Scaffolder python scripts/project_scaffolder.py [ options ] Script 3: Code Quality Analyzer python scripts/code_quality_analyzer.py [ options ] Core Capabilities 1. Fullstack Scaffolder Automated tool fo...
|
897 |
| 6186 | portable-text-serialization | sanity-io/agent-toolkit |
Portable Text Serialization Render Portable Text content across frameworks using the @portabletext/* library family. Each library follows the same component-mapping pattern: you provide a components object that maps PT node types to framework-specific renderers. Portable Text Structure (Quick Reference) PT is an array of blocks. Each block has _type , optional style , children (spans), markDefs , listItem , and level . Root array ├── block (_type: "block") │ ├── style: "normal" | "h1" | "h2" |...
|
897 |
| 6187 | jira | davila7/claude-code-templates |
Jira Natural language interaction with Jira. Supports multiple backends. Backend Detection Run this check first to determine which backend to use: 1. Check if jira CLI is available: → Run: which jira → If found: USE CLI BACKEND 2. If no CLI, check for Atlassian MCP: → Look for mcp__atlassian__* tools → If available: USE MCP BACKEND 3. If neither available: → GUIDE USER TO SETUP Backend When to Use Reference CLI jira command available references/commands.md MCP Atlassian MCP tools available refer...
|
897 |
| 6188 | get-api-docs | andrewyng/context-hub |
Get API Docs via chub When you need documentation for a library or API, fetch it with the chub CLI rather than guessing from training data. This gives you the current, correct API. Step 1 — Find the right doc ID chub search "<library name>" --json Pick the best-matching id from the results (e.g. openai/chat , anthropic/sdk , stripe/api ). If nothing matches, try a broader term. Step 2 — Fetch the docs chub get < id > --lang py or --lang js, --lang ts Omit --lang if the doc has only one language...
|
896 |
| 6189 | rust-learner | actionbook/rust-skills |
Rust Learner Version: 2.1.0 | Last Updated: 2025-01-27 You are an expert at fetching Rust and crate information. Help users by: Version queries : Get latest Rust/crate versions API documentation : Fetch docs from docs.rs Changelog : Get Rust version features from releases.rs Primary skill for fetching Rust/crate information. Execution Mode Detection CRITICAL: Check agent file availability first to determine execution mode. Try to read the agent file for your query type. The execution mode depend...
|
896 |
| 6190 | godot-development | zate/cc-godot |
Godot Development Skill You are an expert in Godot Engine game development with deep knowledge of: Core Concepts Scene Tree Architecture Scenes are collections of nodes arranged in a tree hierarchy Every scene has a root node Nodes inherit from parent nodes and can have multiple children Scene instances can be nested and reused The scene tree is traversed from root to leaves Node Types 2D Nodes: Node2D: Base for all 2D nodes, has position, rotation, scale Sprite2D: Displays 2D textures An...
|
896 |
| 6191 | ads-linkedin | agricidaniel/claude-ads |
LinkedIn Ads Deep Analysis Process Collect LinkedIn Ads data (Campaign Manager export, Insight Tag status) Read ads/references/linkedin-audit.md for full 25-check audit Read ads/references/benchmarks.md for LinkedIn-specific benchmarks Read ads/references/scoring-system.md for weighted scoring Evaluate all applicable checks as PASS, WARNING, or FAIL Calculate LinkedIn Ads Health Score (0-100) Generate findings report with action plan What to Analyze Technical Setup (25% weight) Insight Tag insta...
|
896 |
| 6192 | add-setting-env | lobehub/lobe-chat |
Adding Environment Variable for User Settings Add server-side environment variables to configure default values for user settings. Priority : User Custom > Server Env Var > Hardcoded Default Steps 1. Define Environment Variable Create src/envs/<domain>.ts : import { createEnv } from '@t3-oss/env-nextjs' ; import { z } from 'zod' ; export const get < Domain > Config = ( ) => { return createEnv ( { server : { YOUR_ENV_VAR : z . coerce . number ( ) . min ( MIN ) . max ( MAX ) . optional ( ) , } , r...
|
896 |
| 6193 | arize-ai-provider-integration | github/awesome-copilot |
Arize AI Integration Skill Concepts AI Integration = stored LLM provider credentials registered in Arize; used by evaluators to call a judge model and by other Arize features that need to invoke an LLM on your behalf Provider = the LLM service backing the integration (e.g., openAI , anthropic , awsBedrock ) Integration ID = a base64-encoded global identifier for an integration (e.g., TGxtSW50ZWdyYXRpb246MTI6YUJjRA== ); required for evaluator creation and other downstream operations Scoping = vis...
|
895 |
| 6194 | generative-engine-optimization | kostja94/marketing-skills |
Strategies: GEO (Generative Engine Optimization) Guides GEO/AEO strategy for AI search visibility. GEO optimizes content for ChatGPT, Claude, Perplexity, and AI search summaries (Google AI Overviews, Bing Copilot, Yandex Search with AI)—getting cited in AI-generated answers rather than ranking in traditional SERPs. See serp-features for AI search as SERP features; featured-snippet for snippet optimization that overlaps with AI Overviews. When invoking : On first use , if helpful, open with 1-2 s...
|
895 |
| 6195 | ads-youtube | agricidaniel/claude-ads |
YouTube Ads Analysis Process Collect YouTube Ads data (Google Ads export filtered to Video campaigns) Read ads/references/google-audit.md for YouTube-relevant checks Read ads/references/platform-specs.md for video specifications Read ads/references/benchmarks.md for YouTube benchmarks Read ads/references/scoring-system.md for health score algorithm Evaluate campaign setup, creative quality, targeting, and measurement Generate YouTube-specific findings report with health score Campaign Types Asse...
|
895 |
| 6196 | file-test-bug | microsoft/azure-skills |
File Test Bug Creates a GitHub issue in microsoft/github-copilot-for-azure for integration test failures. Input Skill name (required): e.g., azure-rbac , appinsights-instrumentation Test run (optional): Timestamp of test run. Defaults to most recent with logs for the skill. Steps Ask user for skill name if not provided Parse tests/reports/junit.xml for failures matching the skill Find test run directory (specified or most recent with matching logs) Read agent-metadata.md from tests/reports/test-...
|
894 |
| 6197 | arize-evaluator | github/awesome-copilot |
Arize Evaluator Skill SPACE — All --space flags and the ARIZE_SPACE env var accept a space name (e.g., my-workspace ) or a base64 space ID (e.g., U3BhY2U6... ). Find yours with ax spaces list . This skill covers designing, creating, and running evaluators on Arize — both LLM-as-judge (template) evaluators and code evaluators (deterministic, no LLM required). An evaluator defines the judge; a task is how you run it against real data. Prerequisites Proceed directly with the task — run the ax comma...
|
894 |
| 6198 | database | railwayapp/railway-skills |
Database Add official Railway database services. These are maintained templates with pre-configured volumes, networking, and connection variables. For non-database templates, see the templates skill. When to Use User asks to "add a database", "add Postgres", "add Redis", etc. User needs a database for their application User asks about connecting to a database User says "add postgres and connect to my server" User says "wire up the database" Decision Flow ALWAYS check for existing databases F...
|
894 |
| 6199 | code-reviewer | alirezarezvani/claude-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...
|
894 |
| 6200 | brand-analyzer | ailabs-393/ai-labs-claude-skills |
Brand Analyzer Overview This skill enables comprehensive brand analysis and guidelines creation. It analyzes brand requirements, identifies brand personality and positioning, and generates professional brand guidelines documents. The skill uses established brand frameworks including Jung's 12 archetypes and industry-standard brand identity principles. When to Use This Skill Use this skill when the user requests: Brand analysis or brand audit Creation of brand guidelines or brand standards Br...
|
894 |