███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 10501 | typescript | epicenterhq/epicenter |
TypeScript Code Style Guide Types and Type Safety Avoid explicit type annotations when TypeScript can infer Avoid implicitly any ; explicitly type when necessary Use accurate types: prefer Record<PropertyKey, unknown> over object or any Prefer interface for object shapes (e.g., React props); use type for unions/intersections Prefer as const satisfies XyzInterface over plain as const Prefer @ts-expect-error over @ts-ignore over as any Avoid meaningless null/undefined parameters; design strict fun...
|
74 |
| 10502 | code-review | secondsky/claude-skills |
Code Review When to use this skill Reviewing pull requests Checking code quality Providing feedback on implementations Identifying potential bugs Suggesting improvements Security audits Performance analysis Instructions Step 1: Understand the context Read the PR description : What is the goal of this change? Which issues does it address? Are there any special considerations? Check the scope : How many files changed? What type of changes? (feature, bugfix, refactor) Are tests included? Step 2: Hi...
|
74 |
| 10503 | ln-613-code-comments-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. Code Comments Auditor (L3 Worker) Specialized worker auditing code comments and docstrings quality. Purpose & Scope Worker in ln-610 coordinator pipeline - invoked by ln-610-docs-auditor Audit code comments for quality and compliance across 6 categories Universal for any tech stack (auto-detect comment syntax) Return struct...
|
74 |
| 10504 | safe-file-reader | cisco-ai-defense/skill-scanner |
Safe File Reader Reads files from the documents directory with validation. Usage Provide filename to read.
|
74 |
| 10505 | solana-anchor-claude-skill | quiknode-labs/solana-anchor-claude-skill |
Coding Guidelines Apply these rules to ensure code quality, maintainability, and adherence to project standards. Success Criteria Before declaring success or celebrating, run npm test . If the tests fail, there is more work to do. Don't stop until npm test passes on the code you have made. CRITICAL: Placeholder tests don't count as success. Tests that just do assert.ok(true) or similar are NOT real tests DO NOT mark "Write tests" as complete until tests actually call the program instructions DO ...
|
74 |
| 10506 | social-media-content-repurposer | onewave-ai/claude-skills |
Social Media Content Repurposer Transform content across platforms with platform-specific optimization. When to Use This Skill Activate when the user: Asks to "turn this into a Twitter thread" Wants to adapt content for different platforms Needs to create multiple social posts from one source Says "repurpose this blog post" Wants platform-specific content variations Mentions LinkedIn, Twitter/X, Instagram, Facebook, TikTok Needs hashtag suggestions Instructions Analyze Source Content Ident...
|
74 |
| 10507 | nextjs-validator | shipshitdev/library |
Next.js Validator Validates Next.js 16 configuration and prevents deprecated patterns. AI assistants often generate Next.js 14/15 patterns - this skill enforces Next.js 16. When This Activates Setting up a new Next.js project Before any Next.js development work Auditing existing Next.js projects After AI generates Next.js code CI/CD pipeline validation Quick Start python3 ~/.claude/skills/nextjs-validator/scripts/validate.py --root . python3 ~/.claude/skills/nextjs-validator/scripts/validate.p...
|
74 |
| 10508 | mantine-combobox | mantinedev/skills |
Mantine Combobox Skill Overview Combobox provides low-level primitives for building any select-like UI. The built-in Select , Autocomplete , and TagsInput components are all built on top of it. Core Workflow 1. Create the store const combobox = useCombobox ( { onDropdownClose : ( ) => combobox . resetSelectedOption ( ) , onDropdownOpen : ( ) => combobox . selectFirstOption ( ) , } ) ; 2. Render structure < Combobox store = { combobox } onOptionSubmit = { handleSubmit } > < Combobox.Target > < In...
|
74 |
| 10509 | kysely | mindrally/skills |
Kysely - Type-Safe SQL Query Builder Overview Kysely is a type-safe TypeScript SQL query builder that provides end-to-end type safety from database schema to query results. Unlike ORMs, it generates plain SQL and gives you full control while maintaining perfect TypeScript inference. Key Features: Complete type inference (schema → queries → results) Zero runtime overhead (compiles to SQL) Database-agnostic (PostgreSQL, MySQL, SQLite, MSSQL) Migration system included Plugin ecosystem (CTEs, JSO...
|
74 |
| 10510 | funnel-validator | shipshitdev/library |
Funnel Validator - DotCom Secrets Scorecard Overview Ruthlessly assess existing funnels against Russell Brunson's DotCom Secrets framework. Score objectively, expose conversion killers, prescribe actionable fixes. Brunson's Core Principle: "You're one funnel away from changing your life." When This Activates "validate my funnel" / "rate my funnel" "is my funnel good" "why isn't my funnel converting" Checking funnel before driving traffic Low conversion rates on landing pages Optimizing existi...
|
74 |
| 10511 | qdrant-vector-database-integration | giuseppe-trisciuoglio/developer-kit |
Qdrant Vector Database Integration Overview Qdrant is an AI-native vector database for semantic search and similarity retrieval. This skill provides patterns for integrating Qdrant with Java applications, focusing on Spring Boot integration and LangChain4j framework support. Enable efficient vector search capabilities for RAG systems, recommendation engines, and semantic search applications. When to Use Use this skill when implementing: Semantic search or recommendation systems in Spring Boot ap...
|
74 |
| 10512 | rysweet/amplihack |
PDF Processing Guide Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. Quick Start from pypdf import PdfReader , PdfWriter Read a PDF reader = PdfReader ( "document.pdf" ) print ( f"Pages: { len ( reader . pages ) } " ) Extract text text = "" for page in reader . pages : t...
|
74 | |
| 10513 | test-driven-development | izyanrajwani/agent-skills-library |
Test-Driven Development (TDD) Overview Write the test first. Watch it fail. Write minimal code to pass. Core principle: If you didn't watch the test fail, you don't know if it tests the right thing. Violating the letter of the rules is violating the spirit of the rules. When to Use Always: New features Bug fixes Refactoring Behavior changes Exceptions (ask your human partner): Throwaway prototypes Generated code Configuration files Thinking "skip TDD just this once"? Stop. That's rationalization...
|
74 |
| 10514 | terraform | bobmatnyc/claude-mpm-skills |
Terraform Quick Start (workflow) terraform init terraform plan -out=tfplan terraform apply tfplan Safety Checklist State: remote backend + locking; separate state per environment Reviews: plan in CI; apply from a trusted runner with approvals Guardrails: prevent_destroy and policy checks for prod Load Next (References) references/state-and-environments.md — backends, locking, workspaces vs separate state, drift references/modules-and-composition.md — module interfaces, versioning, composition p...
|
74 |
| 10515 | redis-state-management | manutej/luxor-claude-marketplace |
Redis State Management A comprehensive skill for mastering Redis state management patterns in distributed systems. This skill covers caching strategies, session management, pub/sub messaging, distributed locks, data structures, and production-ready patterns using redis-py. When to Use This Skill Use this skill when: Implementing high-performance caching layers for web applications Managing user sessions in distributed environments Building real-time messaging and event distribution systems C...
|
74 |
| 10516 | docx | davepoon/buildwithclaude |
DOCX creation, editing, and analysis Overview A .docx file is a ZIP archive containing XML files. Quick Reference Task Approach Read/analyze content pandoc or unpack for raw XML Create new document Use docx-js - see Creating New Documents below Edit existing document Unpack → edit XML → repack - see Editing Existing Documents below Converting .doc to .docx Legacy .doc files must be converted before editing: python scripts/office/soffice.py --headless --convert-to docx document.doc Reading Conten...
|
74 |
| 10517 | trading-bot-architecture | sanctifiedops/solana-skills |
Role framing: You are a trading systems architect building automated trading bots on Solana. Your goal is to design reliable, safe, and efficient trading systems with proper risk controls and operational monitoring. Initial Assessment - What type of trading: market making, arbitrage, trend following, sniping? - Target assets: SOL pairs, memecoins, specific tokens? - Capital allocation: how much per trade, total capital at risk? - Latency requirements: milliseconds matter or seconds accepta...
|
74 |
| 10518 | senior-prompt-engineer | borghei/claude-skills |
Senior Prompt Engineer World-class senior prompt engineer skill for production-grade AI/ML/Data systems. Quick Start Main Capabilities Core Tool 1 python scripts/prompt_optimizer.py --input data/ --output results/ Core Tool 2 python scripts/rag_evaluator.py --target project/ --analyze Core Tool 3 python scripts/agent_orchestrator.py --config config.yaml --deploy Core Expertise This skill covers world-class capabilities in: Advanced production patterns and architectures Scalable syste...
|
74 |
| 10519 | zoho-crm-automation | composiohq/awesome-claude-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...
|
74 |
| 10520 | agent-framework-azure-ai-py | sickn33/antigravity-awesome-skills |
Agent Framework Azure Hosted Agents Build persistent agents on Azure AI Foundry using the Microsoft Agent Framework Python SDK. Architecture User Query → AzureAIAgentsProvider → Azure AI Agent Service (Persistent) ↓ Agent.run() / Agent.run_stream() ↓ Tools: Functions | Hosted (Code/Search/Web) | MCP ↓ AgentThread (conversation persistence) Installation Full framework (recommended) pip install agent-framework --pre Or Azure-specific package only pip install agent-framework-azure-ai --pre Enviro...
|
74 |
| 10521 | gitnexus-debugging | abhigyanpatwari/gitnexus |
Debugging with GitNexus When to Use "Why is this function failing?" "Trace where this error comes from" "Who calls this method?" "This endpoint returns 500" Investigating bugs, errors, or unexpected behavior Workflow 1. gitnexus_query({query: "<error or symptom>"}) → Find related execution flows 2. gitnexus_context({name: "<suspect>"}) → See callers/callees/processes 3. READ gitnexus://repo/{name}/process/{name} → Trace execution flow 4. gitnexus_cyph...
|
74 |
| 10522 | network-101 | sickn33/antigravity-awesome-skills |
Network 101 Purpose Configure and test common network services (HTTP, HTTPS, SNMP, SMB) for penetration testing lab environments. Enable hands-on practice with service enumeration, log analysis, and security testing against properly configured target systems. Inputs/Prerequisites Windows Server or Linux system for hosting services Kali Linux or similar for testing Administrative access to target system Basic networking knowledge (IP addressing, ports) Firewall access for port configuration Outpu...
|
74 |
| 10523 | rss-digest | odysseus0/feed |
RSS Digest Surface what's worth reading from RSS feeds. Requires feed CLI ( brew install odysseus0/tap/feed ). Workflow Scan — feed get entries --limit 50 for recent unread (title, feed, date, URL, summary). Auto-fetches if stale. If 0 results, run feed get stats — if 0 feeds, import starter set: feed import https://github.com/odysseus0/feed/raw/main/hn-popular-blogs-2025.opml and retry. Triage — Pick 5-10 high-signal posts based on the user's prompt. If no specific interest given, prioritize su...
|
74 |
| 10524 | credentials | alinaqi/claude-bootstrap |
Credentials Management Skill Load with: base.md For securely loading API keys from a centralized access file and configuring project environments. Credentials File Discovery REQUIRED: When a project needs API keys, ask the user: I need API credentials for [service]. Do you have a centralized access keys file? Please provide the path (e.g., ~/Documents/Access.txt) or type 'manual' to enter keys directly. Default Locations to Check ~/Documents/Access.txt ~/Access.txt ~/.secrets/keys.txt ~/....
|
74 |
| 10525 | lifecycle | posit-dev/skills |
R Package Lifecycle Management Manage function and argument lifecycle using tidyverse conventions and the lifecycle package. Setup Check if lifecycle is configured by looking for lifecycle-*.svg files in man/figures/ . If not configured, run: usethis :: use_lifecycle ( ) This: Adds lifecycle to Imports in DESCRIPTION Adds @importFrom lifecycle deprecated to the package documentation file Copies badge SVGs to man/figures/ Lifecycle Badges Insert badges in roxygen2 documentation: ' @description ' ...
|
74 |
| 10526 | miniprogram-development | tencentcloudbase/cloudbase-mcp |
When to use this skill Use this skill for WeChat Mini Program development when you need to: Build or modify mini program pages and components Organize mini program project structure and configuration Debug, preview, or publish mini program projects Work with WeChat Developer Tools workflows Handle mini program runtime behavior, assets, or page config files Integrate CloudBase in a mini program project when explicitly needed Do NOT use for: Web frontend development (use web-development ) Pure bac...
|
74 |
| 10527 | awwwards-ui-skills | ihlamury/design-skills |
Awwwards UI Skills Opinionated constraints for building Awwwards-style interfaces with AI agents. When to Apply Reference these guidelines when: Building light-mode interfaces Creating Awwwards-inspired design systems Implementing UIs with Inter font and 4px grid Colors SHOULD use light backgrounds for primary surfaces MUST use E4E4E4 as page background ( surface-base ) SHOULD reduce color palette (currently 15 colors detected) MUST maintain text contrast ratio of at least 4.5:1 for accessibilit...
|
74 |
| 10528 | ascii-visualizer | yonatangross/orchestkit |
ASCII Visualizer Consistent, readable ASCII diagrams for architecture, workflows, file trees, and data visualizations. All output renders correctly in monospace terminals without external tools. Core principle: Encode information into structure, not decoration. Every diagram element should communicate something meaningful. Box-Drawing Character Reference Standard: ┌─┐ │ └─┘ ├─┤ ┬ ┴ ┼ Heavy: ┏━┓ ┃ ┗━┛ ┣━┫ ┳ ┻ ╋ Double: ╔═╗ ║ ╚═╝ ╠═╣ ╦ ╩ ╬ Rounded: ╭─╮ │ ╰─╯ Arrows: → ← ↑ ↓ ─> <─ ─...
|
74 |
| 10529 | clickhouse-architect | terrylica/cc-skills |
ClickHouse Architect Prescriptive schema design, compression selection, and performance optimization for ClickHouse (v24.4+). Covers both ClickHouse Cloud (SharedMergeTree) and self-hosted (ReplicatedMergeTree) deployments. Core Methodology Schema Design Workflow Follow this sequence when designing or reviewing ClickHouse schemas: Define ORDER BY key (3-5 columns, lowest cardinality first) Select compression codecs per column type Configure PARTITION BY for data lifecycle management Add perf...
|
74 |
| 10530 | job-search-strategist | proyecto26/thejobinterviewguide |
Job Search Strategist Why This Approach Matters Most job searches fail not from lack of effort, but from lack of signal . Candidates spray applications hoping volume compensates for weak positioning. They don't. The modern hiring process demands three things: Clarity : Know exactly what value you offer and to whom Proof : Demonstrate that value through evidence, not claims Distribution : Reach decision-makers through channels that bypass noise This skill treats job searching as a go-to-market pr...
|
74 |
| 10531 | convex | mindrally/skills |
Convex Development Skills This is an index skill for Convex development. Use specific skills for detailed guidance: Core Development Skill Command Use When Functions /convex-functions Writing queries, mutations, actions Schema /convex-schema-validator Defining database schemas and validators Realtime /convex-realtime Building reactive subscriptions HTTP Actions /convex-http-actions Webhooks and HTTP endpoints Data & Storage Skill Command Use When File Storage /convex-file-storage File uploads,...
|
74 |
| 10532 | metrics-review | anthropics/knowledge-work-plugins |
Metrics Review If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Review and analyze product metrics, identify trends, and surface actionable insights. Usage /metrics-review $ARGUMENTS Workflow 1. Gather Metrics Data If ~~product analytics is connected: Pull key product metrics for the relevant time period Get comparison data (previous period, same period last year, targets) Pull segment breakdowns if available If no analytics tool is connected, as...
|
74 |
| 10533 | env-manager | bobmatnyc/claude-mpm-skills |
Environment Variable Manager (env-manager) Comprehensive environment variable validation, security scanning, and management for modern web applications. Overview The env-manager skill provides systematic environment variable management across local development, CI/CD pipelines, and deployment platforms. It prevents common issues like missing variables, exposed secrets, and framework-specific configuration errors. Key Features: Framework-Aware Validation: Next.js, Vite, React, Node.js, Flask...
|
74 |
| 10534 | media-transcoding | bobmatnyc/claude-mpm-skills |
Media Transcoding (FFmpeg) Overview Use FFmpeg presets to normalize video outputs for web streaming, mobile delivery, or archival quality. Your hf-videos repo already includes a simple bash script and a more advanced Python script with presets, backups, and logging. Quick Start (hf-videos) ./ffmpeg_convert.sh check ./ffmpeg_convert.sh web_standard "My Video.mp4" ./ffmpeg_convert.sh batch_web_standard Outputs are written to converted/ with backups in backup/ and logs in conversion.log. Prese...
|
74 |
| 10535 | discord-automation | sickn33/antigravity-awesome-skills |
Discord Automation via Rube MCP Automate Discord operations through Composio's Discord/Discordbot toolkits via Rube MCP. Toolkit docs : composio.dev/toolkits/discord Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Discord connection via RUBE_MANAGE_CONNECTIONS with toolkits discord and discordbot 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 nee...
|
74 |
| 10536 | frontend-design | digitalsamba/claude-code-video-toolkit |
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 :...
|
74 |
| 10537 | user-input-protocol | jwilger/agent-skills |
User Input Protocol Value: Respect -- the developer's judgment governs all consequential decisions. The agent never assumes when it should ask. Purpose Defines a structured format for agents to request human input at decision points. Prevents agents from making assumptions on the developer's behalf, ensures questions include enough context for informed decisions, and provides a pause-and-resume pattern for subagents that cannot directly prompt the user. Practices Stop and Present, Never Assume W...
|
74 |
| 10538 | cloudwatch | itsmostafa/aws-agent-skills |
AWS CloudWatch Amazon CloudWatch provides monitoring and observability for AWS resources and applications. It collects metrics, logs, and events, enabling you to monitor, troubleshoot, and optimize your AWS environment. Table of Contents Core Concepts Common Patterns CLI Reference Best Practices Troubleshooting References Core Concepts Metrics Time-ordered data points published to CloudWatch. Key components: Namespace : Container for metrics (e.g., AWS/Lambda ) Metric name : Name of the measurem...
|
74 |
| 10539 | b2c-webdav | salesforcecommercecloud/b2c-developer-tooling |
B2C WebDAV Skill Use the b2c CLI plugin to perform WebDAV file operations on Salesforce B2C Commerce instances. This includes listing files, uploading, downloading, and managing files across different WebDAV roots. Tip: If b2c is not installed globally, use npx @salesforce/b2c-cli instead (e.g., npx @salesforce/b2c-cli webdav ls ). WebDAV Roots The --root flag specifies the WebDAV directory: impex (default) - Import/Export directory temp - Temporary files cartridges - Code cartridges realmdata -...
|
74 |
| 10540 | process-doc | anthropics/knowledge-work-plugins |
/process-doc If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Document a business process as a complete standard operating procedure (SOP). Usage /process-doc $ARGUMENTS How It Works Walk me through the process — describe it, paste existing docs, or just tell me the name and I'll ask the right questions. I'll produce a complete SOP. Output Process Document: [Process Name] Owner: [Person/Team] | Last Updated: [Date] | Review Cadence: [Quart...
|
74 |
| 10541 | style-detector | wordflowlab/novel-writer-skills |
写作风格探测器 核心功能 自动探测用户的写作风格需求,并无缝加载对应的风格知识库。 可探测的风格 1. natural-voice(自然人声风格) 适合:都市现代小说、现实题材、情感类小说 特点:口语化、生活化、真实感强 触发词:口语化、真实感、接地气、像说话一样 2. literary(文学风格) 适合:严肃文学作品、历史小说、需要思想深度的故事 特点:优美、深刻、有文学性、注重意境 触发词:文学性、严肃文学、纯文学、有深度 3. web-novel(网文风格) 适合:玄幻小说、都市爽文、系统流、重生流 特点:节奏快、冲突密集、爽点频繁 触发词:网文、爽文、打脸、装逼、升级流 4. ancient-style(古风) 适合:武侠小说、仙侠、古代背景小说 特点:有古韵但不纯文言、意象丰富、诗意化 触发词:古风、古韵、武侠风、江湖味 5. minimal(极简风格) 适合:悬疑推理、冷硬派小说、实验性作品 特点:高度简洁、海明威式克制、留白艺术 触发词:极简、海明威、克制、冷硬 详细关键词列表和触发场景请参阅 KEYWORDS.md。 激活后的工作流程 步骤 1:确认风格选择 ...
|
74 |
| 10542 | next-best-practices | vercel-labs/vercel-skills |
Next.js Best Practices Apply these rules when writing or reviewing Next.js code. File Conventions See file-conventions.md for: Project structure and special files Route segments (dynamic, catch-all, groups) Parallel and intercepting routes Middleware rename in v16 (middleware → proxy) RSC Boundaries Detect invalid React Server Component patterns. See rsc-boundaries.md for: Async client component detection (invalid) Non-serializable props detection Server Action exceptions Async Patterns Next.js ...
|
74 |
| 10543 | think | johnlindquist/claude |
Think - Structured Reasoning Apply structured thinking frameworks to complex problems. Prerequisites Gemini CLI installed: pip install google-generativeai export GEMINI_API_KEY=your_api_key CLI Reference All commands use Gemini with structured prompts: gemini -m pro -o text -e "" "Your prompt" Thinking Operations Deep Analysis Multi-framework reasoning on complex problems: gemini -m pro -o text -e "" "Analyze this problem using multiple thinking frameworks: PROBLEM: [Your problem] Ap...
|
74 |
| 10544 | gha-security-review | getsentry/skills |
GitHub Actions Security Review Find exploitable vulnerabilities in GitHub Actions workflows. Every finding MUST include a concrete exploitation scenario — if you can't build the attack, don't report it. This skill encodes attack patterns from real GitHub Actions exploits — not generic CI/CD theory. Scope Review the workflows provided (file, diff, or repo). Research the codebase as needed to trace complete attack paths before reporting. Files to Review .github/workflows/*.yml — all workflow defin...
|
74 |
| 10545 | vendor-check | anthropics/knowledge-work-plugins |
/vendor-check -- Vendor Agreement Status If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Check the status of existing agreements with a vendor across all connected systems. Provides a consolidated view of the legal relationship. Important : This command assists with legal workflows but does not provide legal advice. Agreement status reports should be verified against original documents by qualified legal professionals. Invocation /vendor-check [...
|
74 |
| 10546 | arxiv-mcp | oimiragieo/agent-studio |
Mode: Cognitive/Prompt-Driven — No standalone utility script; use via agent context. arXiv Search Skill ✅ No Installation Required This skill uses existing tools to access arXiv: WebFetch - Direct access to arXiv API Exa - Semantic search with arXiv filtering Works immediately - no MCP server, no restart needed. Result Limits (Memory Safeguard) arxiv-mcp returns academic papers. To prevent memory exhaustion: max_results: 20 (HARD LIMIT) Each paper metadata ~300 bytes 20 papers × 300 bytes = ~6 K...
|
74 |
| 10547 | content-creator | shipshitdev/library |
Content Creator You are an expert content creator who produces engaging, audience-focused content for blogs, social media, and marketing. When to Apply Use this skill when: Writing blog posts and articles Creating social media content (Twitter, LinkedIn, Instagram) Developing marketing copy Crafting compelling headlines and hooks Creating email newsletters Writing product descriptions Content Creation Framework 1. Know Your Audience Who are you writing for? What are their pain points? What level...
|
74 |
| 10548 | brief | anthropics/knowledge-work-plugins |
Content Brief Produce a complete, editor-ready content brief covering intent analysis, competitive SERP review, content outline, E-E-A-T requirements, and SEO targets. Before You Start Gather this context (ask if not provided): Target keyword or topic. The primary keyword this content should rank for. Business context. What does the company do? What should readers do after reading (sign up, buy, contact)? Content type preference. Blog post, landing page, guide, comparison, tutorial? Audience. Wh...
|
74 |
| 10549 | observability-guidelines | mindrally/skills |
Observability Guidelines Apply these observability principles to ensure comprehensive visibility into distributed systems and microservices. Core Observability Principles Guide the development of idiomatic, maintainable, and high-performance code with built-in observability Enforce modular design and separation of concerns through Clean Architecture Promote test-driven development and robust observability from the start OpenTelemetry Integration Use OpenTelemetry for distributed tracing, metri...
|
74 |
| 10550 | shopify | mindrally/skills |
Shopify Development Comprehensive guide for building on Shopify platform: apps, extensions, themes, and API integrations. Platform Overview Core Components: Shopify CLI - Development workflow tool GraphQL Admin API - Primary API for data operations (recommended) REST Admin API - Legacy API (maintenance mode) Polaris UI - Design system for consistent interfaces Liquid - Template language for themes Extension Points: Checkout UI - Customize checkout experience Admin UI - Extend admin dashboa...
|
74 |