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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
10401 ln-654-resource-lifecycle-auditor levnikolaevich/claude-code-skills
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. Resource Lifecycle Auditor (L3 Worker) Specialized worker auditing resource acquisition/release patterns, scope mismatches, and connection pool hygiene. Purpose & Scope Worker in ln-650 coordinator pipeline - invoked by ln-650-persistence-performance-auditor Audit resource lifecycle (Priority: HIGH) Check session/connection...
75
10402 pomasa extremeprogramming-cn/pomasa
POMASA Generator Your Role You are a Multi-Agent System (MAS) architect. Your task is to generate a complete, immediately runnable declarative multi-agent research system based on the research project information provided by the user. User Input Handling When the user wants to create a multi-agent system, determine how to collect project information: If user provides a user_input file path: Read and use it directly If user has no file ready, offer two options: Option A: Copy user_input_templ...
75
10403 backend-development mindrally/skills
Backend Development Skill Production-ready backend development with modern technologies, best practices, and proven patterns. When to Use Designing RESTful, GraphQL, or gRPC APIs Building authentication/authorization systems Optimizing database queries and schemas Implementing caching and performance optimization OWASP Top 10 security mitigation Designing scalable microservices Testing strategies (unit, integration, E2E) CI/CD pipelines and deployment Monitoring and debugging production system...
75
10404 sap-btp-developer-guide secondsky/sap-skills
Comprehensive guidance for developing, deploying, and operating business applications on SAP Business Technology Platform. Table of Contents Quick Navigation - [Table of Contents](table-of-contents) - [When to Use This Skill](when-to-use-this-skill) - [Runtime and Programming Model Selection](runtime-and-programming-model-selection) - [Development Workflow](development-workflow) - [Key Services and Tools](key-services-and-tools) - [Security Implementation](security-implementation) - [...
75
10405 hugo jackspace/claudeskillz
Hugo Static Site Generator Status: Production Ready Last Updated: 2025-11-04 Dependencies: None (Hugo is a standalone binary) Latest Versions: hugo@0.152.2+extended, PaperMod@latest, Sveltia CMS@latest Quick Start (5 Minutes) 1. Install Hugo Extended CRITICAL: Always install Hugo Extended edition (not Standard) unless you're certain you don't need SCSS/Sass support. Most themes require Extended. macOS brew install hugo Linux (Ubuntu/Debian) wget https://github.com/gohugoio/hugo/releases/d...
75
10406 pr-writer getsentry/skills
PR Writer Create pull requests following Sentry's engineering practices. Requires : GitHub CLI ( gh ) authenticated and available. Prerequisites Before creating a PR, ensure all changes are committed. If there are uncommitted changes, run the sentry-skills:commit skill first to commit them properly. Check for uncommitted changes git status --porcelain If the output shows any uncommitted changes (modified, added, or untracked files that should be included), invoke the sentry-skills:commit skill ...
75
10407 gh-cli trailofbits/skills
GitHub CLI (gh) Comprehensive reference for GitHub CLI (gh) - work seamlessly with GitHub from the command line. Version: 2.85.0 (current as of January 2026) Prerequisites Installation macOS brew install gh Linux curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of = /usr/share/keyrings/githubcli-archive-keyring.gpg echo "deb [arch= $( dpkg --print-architecture ) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable...
75
10408 rust mindrally/skills
Community Rust Best Practices Comprehensive performance optimization guide for Rust applications. Contains 42 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 Optimizing memory allocation and ownership patterns Working with iterators and collections Writing async code with Tokio or other runtimes Reviewing code for performance issues Rule Categories by Priority Priority Ca...
75
10409 alicloud-ai-entry-modelstudio-test-test cinience/alicloud-skills
Category: test AI ENTRY MODELSTUDIO TEST Smoke Test Prerequisites Configure credentials with least privilege ( ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / optional ALICLOUD_REGION_ID ). Target skill: skills/ai/entry/alicloud-ai-entry-modelstudio-test/ . Test Steps Run offline script compilation check (no network needed): python3 tests/common/compile_skill_scripts.py \ --skill-path skills/ai/entry/alicloud-ai-entry-modelstudio-test \ --output output/alicloud-ai-entry-modelstudio-test-te...
75
10410 docyrus-architect docyrus/agent-skills
Docyrus Architect Guide for using docyrus-architect MCP tools to manage and query data sources in Docyrus. Tool Overview Discovery Tools get_apps — List tenant apps. Use before create_data_source to find the target tenantAppId . get_data_source_list — Search data sources by name/description or app ID. get_data_source_list_with_fields — Same as above but includes field names and types. get_data_source_metadata — Get full metadata (fields with IDs, types, slugs, enums, relations) for a data source...
75
10411 startup-business-models vasilyu1983/ai-agents-public
Startup Business Models Systematic workflow for choosing revenue models, pricing, and unit economics. Quick Start (Inputs) Ask for the smallest set of inputs that makes the decision meaningful: Business type: SaaS, usage-based/API, marketplace, services, hardware + service ICP/segment(s): SMB / mid-market / enterprise (and ACV/ARPA bands) Current pricing and packaging: value metric, tiers, limits, discount policy, billing cadence Unit economics drivers: fully-loaded CAC, gross margin/COGS (i...
75
10412 wandb-primary wandb/skills
W&B Primary Skill This skill covers everything an agent needs to work with Weights & Biases: W&B SDK ( wandb ) — training runs, metrics, artifacts, sweeps, system metrics Weave SDK ( weave ) — GenAI traces, evaluations, scorers, token usage Helper libraries — wandb_helpers.py and weave_helpers.py for common operations When to use what I need to... Use Query training runs, loss curves, hyperparameters W&B SDK ( wandb.Api() ) — see references/WANDB_SDK.md Query GenAI traces, calls, evaluations Wea...
75
10413 agents-sdk cloudflare/cloudflare-docs
Cloudflare Agents SDK Build persistent, stateful AI agents on Cloudflare Workers using the agents npm package. FIRST: Verify Installation npm install agents Agents require a binding in wrangler.jsonc: { "durable_objects": { // "class_name" must match your Agent class name exactly "bindings": [{ "name": "Counter", "class_name": "Counter" }] }, "migrations": [ // Required: list all Agent classes for SQLite storage { "tag": "v1", "new_sqlite_classes": ["Counter"] } ] } ...
75
10414 langchain-development mindrally/skills
LangChain Development You are an expert in LangChain, LangGraph, and building LLM-powered applications with Python. Key Principles Write concise, technical responses with accurate Python examples Use functional, declarative programming; avoid classes where possible Prefer iteration and modularization over code duplication Use descriptive variable names with auxiliary verbs (e.g., is_active, has_context) Follow PEP 8 style guidelines strictly Code Organization Directory Structure Organize code...
75
10415 interactive-requirements-gathering oimiragieo/agent-studio
Interactive Requirements Gathering Structured framework for gathering requirements through interactive questionnaires. Based on the Conductor methodology's proven human-in-the-loop patterns. When to Use Setting up new projects Defining product requirements Gathering feature specifications Onboarding users to new workflows Any task requiring structured user input Core Principles 1. Question Classification Before asking ANY question, classify its type: Type Purpose Phrasing Example Additive Brains...
75
10416 alicloud-security-content-moderation-green-test cinience/alicloud-skills
Category: test SECURITY CONTENT MODERATION GREEN Smoke Test Prerequisites Configure credentials with least privilege ( ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / optional ALICLOUD_REGION_ID ). Target skill: skills/security/content/alicloud-security-content-moderation-green/ . Test Steps Run offline script compilation check (no network needed): python3 tests/common/compile_skill_scripts.py \ --skill-path skills/security/content/alicloud-security-content-moderation-green \ --output outp...
75
10417 learn-about-omc yeachan-heo/oh-my-claudecode
Analyzes your oh-my-claudecode usage and provides tailored recommendations to improve your workflow. What It Does - Reads token tracking from `~/.omc/state/token-tracking.jsonl` - Reads session history from `.omc/state/session-history.json` - Analyzes agent usage patterns - Identifies underutilized features - Recommends configuration changes Implementation Step 1: Gather Data ``` Check for token tracking data TOKEN_FILE="$HOME/.omc/state/token-tracking.jsonl" SESSION_FILE=".omc/stat...
75
10418 get-review-theme huangwb8/chineseresearchlatex
Get Review Theme - 结构化综述主题提取 最高原则:基于输入内容的语义理解,生成高质量、可操作的结构化主题,确保输出可直接用于文献综述流程。 角色 你是一位专精学术文献调研的主题分析专家,擅长从各种输入源中快速识别研究领域、提取关键术语、凝练核心科学问题。你的核心能力包括: 语义理解:深入理解输入内容的核心研究领域、研究对象、方法和技术路线 术语提取:识别中英文专业术语,优先使用标准学术术语 主题凝练:将复杂内容凝练为一句话的主题表述 问题识别:从内容中识别出具体的研究挑战或科学问题 触发条件 用户要求从文件/图片/网页/描述中提取综述主题 用户要求生成"主题+关键词+核心问题"结构化输出 用户为 systematic-literature-review 或其他文献综述技能准备输入 你需要确认的输入 {输入源}(必需):文件路径、URL、文件夹路径、图片路径,或直接输入的文本描述 {输出格式}(可选):text(默认)/yaml/json 工作流(四步) 0) 输入类型识别 使用启发式规则自动识别输入类型: 输入类型 识别条件 处理优先级 自然语言描述 非 ...
75
10419 docs-updater giuseppe-trisciuoglio/developer-kit
Universal Documentation Auto-Updater Automates the process of keeping project documentation synchronized with codebase changes. This skill analyzes git differences between the current working branch and the last released version, then intelligently updates relevant documentation files. Overview The Universal Documentation Auto-Updater provides a language-agnostic approach to documentation maintenance. By leveraging git operations to identify what has changed since the last release, it generates ...
75
10420 better-auth-core bobmatnyc/claude-mpm-skills
Better Auth Core (TypeScript) Goals Set up a Better Auth instance with environment variables and data layer wiring. Wire server handlers and a client instance. Use sessions and server-side API methods safely. Keep data-layer choices pluggable (drivers or adapters). Quick start Install better-auth . Set BETTER_AUTH_SECRET (32+ chars) and BETTER_AUTH_URL . Create auth.ts and export auth . Provide database (driver or adapter) or omit for stateless sessions. Mount a handler ( auth.handler or a frame...
75
10421 postcss-best-practices mindrally/skills
PostCSS Best Practices You are an expert in PostCSS, CSS processing pipelines, and modern CSS tooling. Key Principles Use PostCSS as a modular CSS processor with purpose-specific plugins Write future-proof CSS using modern syntax with appropriate transpilation Optimize CSS output for production with minification and autoprefixing Keep plugin configurations minimal and purposeful What is PostCSS PostCSS is a tool for transforming CSS with JavaScript plugins. Unlike preprocessors (Sass/Less), P...
75
10422 alicloud-ai-cloud-call-center-test cinience/alicloud-skills
Category: test AI CLOUD CALL CENTER Smoke Test Prerequisites Configure credentials with least privilege ( ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / optional ALICLOUD_REGION_ID ). Target skill: skills/ai/service/alicloud-ai-cloud-call-center/ . Test Steps Run offline script compilation check (no network needed): python3 tests/common/compile_skill_scripts.py \ --skill-path skills/ai/service/alicloud-ai-cloud-call-center \ --output output/alicloud-ai-cloud-call-center-test/compile-check...
75
10423 data-sql-optimization vasilyu1983/ai-agents-public
SQL Optimization — Comprehensive Reference This skill provides actionable checklists, patterns, and templates for transactional (OLTP) SQL optimization: measurement-first triage, EXPLAIN/plan interpretation, balanced indexing (avoiding over-indexing), performance monitoring, schema evolution, migrations, backup/recovery, high availability, and security. Supported Platforms: PostgreSQL, MySQL, SQL Server, Oracle, SQLite For OLAP/Analytics: See data-lake-platform (ClickHouse, DuckDB, Doris, Sta...
75
10424 trace yeachan-heo/oh-my-claudecode
Trace Skill Quick Ref: Trace design decisions through CASS sessions, handoffs, git, and artifacts. Output: .agents/research/YYYY-MM-DD-trace-*.md YOU MUST EXECUTE THIS WORKFLOW. Do not just describe it. When to Use Trace HOW architectural decisions evolved Find WHEN a concept was introduced Understand WHY something was designed a certain way Build provenance chain for design decisions For knowledge artifact lineage (learnings, patterns, tiers), use /provenance instead. CLI dependencies: cass (se...
75
10425 slack-automation sickn33/antigravity-awesome-skills
Slack Automation Overview Interact with Slack workspaces for channel management, message reading, and content analysis. All operations are read-only unless creating channels. Quick Decision Tree What do you need? │ ├── Search for channels by name │ └── references/search.md │ └── Script: scripts/slack_search.py search │ ├── Read messages from a channel │ └── references/fetch-news.md │ └── Script: scripts/fetch_slack_news.py │ ├── Create a new channel │ └── references/create-channel.md │...
75
10426 linear-automation composiohq/awesome-claude-skills
Linear Automation via Rube MCP Automate Linear operations through Composio's Linear toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/linear Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Linear connection via RUBE_MANAGE_CONNECTIONS with toolkit linear 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...
75
10427 ui-design-aesthetics nickcrew/claude-ctx-plugin
UI Design & Aesthetics Expert guidance for designing and implementing beautiful, high-performance user interfaces. This skill enforces distinctive aesthetics while ensuring technical excellence through progressive disclosure and dynamic loading. Core Capabilities Aesthetic Direction: avoiding "AI slop" by enforcing distinctive typography, color, and depth. Performance Architecture: ensuring UI components load dynamically to minimize initial payload. Progressive Disclosure: designing interfaces...
75
10428 docs-sync openai/openai-agents-python
Docs Sync Overview Identify doc coverage gaps and inaccuracies by comparing main branch features and configuration options against the current docs structure, then propose targeted improvements. Workflow Confirm scope and base branch Identify the current branch and default branch (usually main ). Prefer analyzing the current branch to keep work aligned with in-flight changes. If the current branch is not main , analyze only the diff vs main to scope doc updates. Avoid switching branches if it wo...
75
10429 app-store-optimization wsbs20/claude-code-aso-skill
App Store Optimization (ASO) Skill This comprehensive skill provides complete ASO capabilities for successfully launching and optimizing mobile applications on the Apple App Store and Google Play Store. Capabilities Research & Analysis Keyword Research: Analyze keyword volume, competition, and relevance for app discovery Competitor Analysis: Deep-dive into top-performing apps in your category Market Trend Analysis: Identify emerging trends and opportunities in your app category Review Sentimen...
75
10430 zoho-crm-automation sickn33/antigravity-awesome-skills
Zoho CRM Automation via Rube MCP Automate Zoho CRM operations through Composio's Zoho toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Zoho CRM connection via RUBE_MANAGE_CONNECTIONS with toolkit zoho 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. Verify Rube MCP is available by co...
75
10431 blog-post-optimizer dkyazzentwatwa/chatgpt-skills
Blog Post Optimizer Comprehensive content analysis toolkit for optimizing blog posts, articles, and web content. Analyzes headlines, SEO elements, content structure, readability, and generates actionable recommendations with scores. Quick Start from scripts.blog_post_optimizer import BlogPostOptimizer Initialize optimizer optimizer = BlogPostOptimizer() Analyze a blog post with open('blog_post.md', 'r') as f: content = f.read() Full analysis results = optimizer.analyze_full( cont...
75
10432 brand-review anthropics/knowledge-work-plugins
Brand Review If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Review marketing content against brand voice, style guidelines, and messaging standards. Flag deviations and provide specific improvement suggestions. Trigger User runs /brand-review or asks to review, check, or audit content against brand guidelines. Inputs Content to review — accept content in any of these forms: Pasted directly into the conversation A file path or ~~knowledge base r...
75
10433 parallel-agents vudovn/antigravity-kit
Native Parallel Agents Orchestration through Claude Code's built-in Agent Tool Overview This skill enables coordinating multiple specialized agents through Claude Code's native agent system. Unlike external scripts, this approach keeps all orchestration within Claude's control. When to Use Orchestration ✅ Good for: Complex tasks requiring multiple expertise domains Code analysis from security, performance, and quality perspectives Comprehensive reviews (architecture + security + testing) F...
75
10434 vercel-automation composiohq/awesome-claude-skills
Vercel Automation via Rube MCP Automate Vercel platform operations through Composio's Vercel toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Vercel connection via RUBE_MANAGE_CONNECTIONS with toolkit vercel 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. Verify Rube MCP is availabl...
75
10435 capacitor-mcp cap-go/capgo-skills
Capacitor MCP Tools Guide to using Model Context Protocol (MCP) for Ionic and Capacitor mobile development automation. When to Use This Skill User wants to automate Ionic/Capacitor development User asks about MCP integration User wants AI-assisted component/plugin discovery User needs programmatic CLI command execution User wants access to Ionic components and Capacitor plugins within AI chat What is MCP? MCP (Model Context Protocol) is an open standard for connecting AI models to external tools...
75
10436 senior-cloud-architect borghei/claude-skills
Senior Cloud Architect Expert-level cloud architecture and infrastructure design. Core Competencies Multi-cloud architecture AWS, GCP, Azure platforms Cloud-native design patterns Cost optimization Security and compliance Migration strategies Disaster recovery Infrastructure automation Cloud Platform Comparison Service AWS GCP Azure Compute EC2, ECS, EKS GCE, GKE VMs, AKS Serverless Lambda Cloud Functions Azure Functions Storage S3 Cloud Storage Blob Storage Database RDS, DynamoDB Cloud SQL, S...
75
10437 qwen-edit digitalsamba/claude-code-video-toolkit
Qwen-Image-Edit Skill AI-powered image editing using Qwen-Image-Edit-2511 via RunPod serverless. Status: Evolving - learnings being captured as we experiment When to Use This Skill Use when the user wants to: Edit/transform photos while preserving identity Reframe cropped images (fix cut-off heads, etc.) Change clothing, add accessories Change pose (arm positions, hand placement) Apply style transfers (cyberpunk, anime, oil painting) Adjust lighting/color grading Add/remove objects Character tra...
75
10438 python-backend yonatangross/orchestkit
python-backend Production-ready Python backend patterns for FastAPI, SQLAlchemy, and Upstash. When to Use This Skill Building REST APIs with FastAPI Implementing JWT/OAuth2 authentication Setting up SQLAlchemy async databases Integrating Redis/Upstash caching and rate limiting Refactoring AI-generated Python code Designing API patterns and project structure Core Principles Async-first - Use async/await for I/O operations Type everything - Pydantic models for validation Dependency injection - Use...
75
10439 usability-psychologist mae616/design-skills
Apply this skill when the request involves: - "hard to use", "high drop-off", "difficult input", "confusing", "accessibility issues", "too many errors" - 使いにくい、離脱が多い、入力が難しい、迷う、アクセシビリティ、エラーが多い - UI design review, or working on forms, onboarding, settings screens Core Principles - Usability is cost, not preference. Reduce confusion, memory burden, operation count, and error rate. - Cognitive load. Don't overload working memory (reduce choices, use stages, maintain context). - Accessibility...
75
10440 mcp-builder shajith003/awesome-claude-skills
MCP Server Development Guide Overview Create MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks. Process 🚀 High-Level Workflow Creating a high-quality MCP server involves four main phases: Phase 1: Deep Research and Planning 1.1 Understand Modern MCP Design API Coverage vs. Workflow Tools: Balance comprehensive API endpoint coverag...
75
10441 nodejs-development mindrally/skills
Node.js Development Guidelines You are an expert in Node.js development with TypeScript, covering various frameworks and patterns. Payload CMS with Next.js Project Setup project/ ├── src/ │ ├── app/ Next.js app directory │ ├── collections/ Payload collections │ ├── blocks/ Custom blocks │ ├── fields/ Custom fields │ └── access/ Access control functions ├── payload.config.ts Payload configuration └── next.config.js Next.js con...
75
10442 senior-security borghei/claude-skills
Senior Security Complete toolkit for senior security with modern tools and best practices. Quick Start Main Capabilities This skill provides three core capabilities through automated scripts: Script 1: Threat Modeler python scripts/threat_modeler.py [options] Script 2: Security Auditor python scripts/security_auditor.py [options] Script 3: Pentest Automator python scripts/pentest_automator.py [options] Core Capabilities 1. Threat Modeler Automated tool for threat modeler tasks. Featu...
75
10443 vexor sickn33/antigravity-awesome-skills
Vexor Overview Vector-powered CLI for semantic file search with a Claude/Codex skill When to Use This Skill Use this skill when you need to work with vector-powered cli for semantic file search with a claude/codex skill. Instructions This skill provides guidance and patterns for vector-powered cli for semantic file search with a claude/codex skill. For more information, see the source repository .
75
10444 threejs-graphics-optimizer ovachiever/droid-tings
THREE.js Graphics Optimizer Version: 1.0 Focus: Performance optimization for THREE.js and graphics applications Purpose: Build smooth 60fps graphics experiences across all devices including mobile Philosophy: Performance-First Graphics The 16ms Budget Target: 60 FPS = 16.67ms per frame Frame budget breakdown: JavaScript logic: ~5-8ms Rendering (GPU): ~8-10ms Browser overhead: ~2ms If you exceed 16ms: Frames drop, stuttering occurs. Mobile vs Desktop Reality Desktop: Powerful GPU, lots of...
75
10445 feishu-cli-search riba2534/feishu-cli
飞书搜索 搜索飞书云文档、消息和应用。所有搜索命令 必须使用 User Access Token 。 执行流程 每次执行搜索前,按以下流程操作: 1. 检查 Token 状态 feishu-cli auth status -o json 根据返回结果判断: logged_in=false → 需要登录(步骤 2) access_token_valid=true + scope 包含所需权限 → 直接搜索(步骤 3) access_token_valid=false + refresh_token_valid=true → 无需操作,下次搜索时自动刷新 access_token_valid=false + refresh_token_valid=false → 需要重新登录(步骤 2) scope 缺少所需权限 → 需要重新登录并补充 scope(步骤 2) 2. 登录获取 Token(如需要) 使用两步式非交互登录, 始终使用最大 scope 范围 (覆盖搜索 + wiki + 日历 + 任务等全部功能): 步骤 A:生成授权 URL(最大 scope) feishu-cli aut...
75
10446 analyzing-mlflow-session mlflow/skills
Analyzing an MLflow Chat Session What is a Session? A session groups multiple traces that belong to the same chat conversation or user interaction. Each trace in the session represents one turn: the user's input and the system's response. Traces within a session are linked by a shared session ID stored in trace metadata. The session ID is stored in trace metadata under the key mlflow.trace.session . This key contains dots, which affects filter syntax (see below). All traces sharing the same valu...
74
10447 hugging-face-dataset-viewer huggingface/skills
Hugging Face Dataset Viewer Use this skill to execute read-only Dataset Viewer API calls for dataset exploration and extraction. Core workflow Optionally validate dataset availability with /is-valid . Resolve config + split with /splits . Preview with /first-rows . Paginate content with /rows using offset and length (max 100). Use /search for text matching and /filter for row predicates. Retrieve parquet links via /parquet and totals/metadata via /size and /statistics . Defaults Base URL: https:...
74
10448 mapbox-mcp-devkit-patterns mapbox/mapbox-agent-skills
Mapbox MCP DevKit Patterns This skill provides patterns for integrating the Mapbox MCP DevKit Server into AI coding workflows to accelerate Mapbox application development. What is Mapbox MCP DevKit? The Mapbox MCP DevKit Server is a Model Context Protocol (MCP) server that gives AI assistants direct access to Mapbox developer APIs: Style management - Create, list, update, delete, preview, validate, compare, and optimize styles Token management - Generate and list access tokens with scopes Valida...
74
10449 pandoc vamseeachanta/workspace-hub
Pandoc Document Conversion Skill Convert documents between formats using pandoc, the universal document converter. Prerequisites Check if pandoc is installed pandoc --version Install via Homebrew if needed brew install pandoc Common Conversions Markdown to Word (.docx) Basic conversion pandoc input.md -o output.docx With table of contents pandoc input.md --toc -o output.docx With custom reference doc (for styling) pandoc input.md --reference-doc = template.docx -o output.docx Standalone wi...
74
10450 context-master josiahsiegel/claude-plugin-marketplace
Context Master 🚨 CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes (\) in file paths, NOT forward slashes (/). Examples: ❌ WRONG: D:/repos/project/file.tsx ✅ CORRECT: D:\repos\project\file.tsx This applies to: Edit tool file_path parameter Write tool file_path parameter All file operations on Windows systems Documentation Guidelines NEVER create new documentatio...
74