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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
10651 omnicaptions-download lattifai/omni-captions-skills
Download from Video Platforms Download videos, audio, and captions from YouTube and 1000+ video platforms using yt-dlp. Confirmation Required IMPORTANT : Before executing any download, you MUST confirm with the user using AskUserQuestion: Show the URL to download Show the quality setting (audio/video) Show the output directory Ask for confirmation Example confirmation: Ready to download: - URL: https://youtube.com/watch?v=xxx - Type: Audio only / Video (1080p) - Save to: Current directory Confir...
73
10652 technical-writer 404kidwiz/claude-supercode-skills
Technical Writer You are an expert technical writer who creates clear, user-friendly documentation for technical products. When to Apply Use this skill when: Writing API documentation Creating README files and setup guides Developing user manuals and tutorials Documenting architecture and design Writing changelog and release notes Creating onboarding guides Explaining complex technical concepts Writing Principles 1. User-Centered Lead with the user's goal, not the feature Answer "why should I ca...
73
10653 systematic-debugging bobmatnyc/claude-mpm-skills
Systematic Debugging Overview Random fixes waste time and create new bugs. Quick patches mask underlying issues. Core principle: ALWAYS find root cause before attempting fixes. Symptom fixes are failure. Violating the letter of this process is violating the spirit of debugging. The Iron Law NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST If you haven't completed Phase 1, you cannot propose fixes. When to Use Use for ANY technical issue: Test failures Bugs in production Unexpected behavior Perfor...
73
10654 beancount accounting ouachitalabs/skills
Beancount Accounting Skill Beancount is a plain-text double-entry accounting system. This skill provides expertise for creating, editing, and querying beancount files. Core Concepts Double-Entry Accounting Every transaction must balance to zero. Money flows between accounts: Debits increase Assets/Expenses, decrease Liabilities/Income/Equity Credits decrease Assets/Expenses, increase Liabilities/Income/Equity Five Account Types Type Purpose Normal Balance Assets What you own (bank accounts, inve...
73
10655 logging-best-practices mindrally/skills
Logging Best Practices Skill Version: 1.0.0 Purpose This skill provides guidelines for implementing effective logging in applications. It focuses on wide events (also called canonical log lines) - a pattern where you emit a single, context-rich event per request per service, enabling powerful debugging and analytics. When to Apply Apply these guidelines when: Writing or reviewing logging code Adding console.log, logger.info, or similar Designing logging strategy for new services Setting up...
73
10656 presentation-generator glebis/claude-skills
Create stunning presentations in neobrutalism style with Agency brand colors. Generate interactive HTML presentations with smooth scrolling navigation, export individual slides as PNG, or create PDF documents. Output formats: - HTML - Interactive presentation with navigation dots, keyboard support, smooth scrolling - PNG - Individual slide images via Playwright (1920x1080) - PDF - Multi-page document via Playwright Quick Start 1. Create presentation from JSON/YAML content ``` node scrip...
73
10657 data-analysis scientiacapital/skills
Data Analysis When to use this skill Data exploration : Understand a new dataset Report generation : Derive data-driven insights Quality validation : Check data consistency Decision support : Make data-driven recommendations Instructions Step 1: Load and explore data Python (Pandas) : import pandas as pd import numpy as np Load CSV df = pd . read_csv ( 'data.csv' ) Basic info print ( df . info ( ) ) print ( df . describe ( ) ) print ( df . head ( 10 ) ) Check missing values print ( df . isnul...
73
10658 review-pr yonatangross/orchestkit
Deep code review using 6-7 parallel specialized agents. Quick Start ``` /review-pr 123 /review-pr feature-branch ``` ⚠️ CRITICAL: Task Management is MANDATORY (CC 2.1.16) BEFORE doing ANYTHING else, create tasks to track progress: ``` 1. Create main review task IMMEDIATELY TaskCreate( subject="Review PR {number}", description="Comprehensive code review with parallel agents", activeForm="Reviewing PR {number}" ) 2. Create subtasks for each phase TaskCreate(subject="Gather PR info...
73
10659 setup alirezarezvani/claude-skills
assistant-ui Setup CLI Commands Quick Decision Flow Existing Next.js app ( package.json exists): use npx assistant-ui@latest init Existing app in CI/agent/non-interactive shell: use npx assistant-ui@latest init --yes Existing app + force overwrite of conflicts: add --overwrite New app / empty directory: use npx assistant-ui@latest create <name> Need specific starter template: add -t <default|minimal|cloud|cloud-clerk|langgraph|mcp> Need a curated example: use npx assistant-ui@latest create <name...
73
10660 function-creator get-convex/convex-agent-plugins
Convex Function Creator Generate secure, type-safe Convex functions following all best practices. When to Use Creating new query functions (read data) Creating new mutation functions (write data) Creating new action functions (external APIs, long-running) Adding API endpoints to your Convex backend Function Types Queries (Read-Only) Can only read from database Cannot modify data or call external APIs Cached and reactive Run in transactions import { query } from "./_generated/server" ; import { v...
73
10661 quality assurance daffy0208/ai-dev-standards
Quality Assurance Overview Quality Assurance is a consolidated skill that combines three critical quality dimensions: comprehensive testing strategy, code quality enforcement, and phase-gate validation. It ensures your code is tested, maintainable, and ready for production at every stage. Consolidated from: testing-strategist - Test pyramid and comprehensive testing code-quality-enforcer - Code standards and best practices validation-gate-checker - Phase transition validation When to Use This Sk...
73
10662 database-optimizer 404kidwiz/claude-supercode-skills
Database Optimizer Senior database optimizer with expertise in performance tuning, query optimization, and scalability across multiple database systems. Role Definition You are a senior database performance engineer with 10+ years of experience optimizing high-traffic databases. You specialize in PostgreSQL and MySQL optimization, execution plan analysis, strategic indexing, and achieving sub-100ms query performance at scale. When to Use This Skill Analyzing slow queries and execution plans ...
73
10663 axiom-xcode-mcp-ref charleswiltgen/axiom
Xcode MCP Tool Reference Complete reference for all 20 tools exposed by Xcode's MCP server ( xcrun mcpbridge ). Important : Parameter schemas below are sourced from blog research and initial testing. Validate against your live mcpbridge with tools/list if behavior differs. Discovery XcodeListWindows Call this first. Returns open Xcode windows with tabIdentifier values needed by most other tools. Parameters : None Returns : List of { tabIdentifier: string, workspacePath: string } Notes : No param...
73
10664 voice-ai-integration qodex-ai/ai-agent-skills
Voice AI Integration Build intelligent voice-enabled AI applications that understand spoken language and respond naturally through audio, creating seamless voice-first user experiences. Overview Voice AI systems combine three key capabilities: Speech Recognition - Convert audio input to text Natural Language Processing - Understand intent and context Text-to-Speech - Generate natural-sounding responses Speech Recognition Providers See examples/speech_recognition_providers.py for implementat...
73
10665 rdt-cli jackwener/rdt-cli
rdt-cli — Reddit CLI Tool Binary: rdt Credentials: browser cookies (auto-extracted via browser-cookie3) Setup Install (requires Python 3.10+) uv tool install rdt-cli Or: pip install rdt-cli Upgrade uv tool upgrade rdt-cli Authentication IMPORTANT FOR AGENTS : Before executing ANY rdt command that requires auth, check if credentials exist. Step 0: Check if already authenticated rdt status --json 2 > /dev/null | jq -r '.data.authenticated' | grep -q true && echo "AUTH_OK" || echo "AUTH_NEEDED" ...
73
10666 pytest testing pluginagentmarketplace/custom-plugin-python
Pytest Testing Overview Master software testing with pytest, Python's most popular testing framework. Learn test-driven development (TDD), write maintainable tests, and ensure code quality through comprehensive testing strategies. Learning Objectives Write unit, integration, and functional tests with pytest Use fixtures for test setup and teardown Mock external dependencies effectively Implement test-driven development (TDD) Measure and improve code coverage Integrate tests with CI/CD pipelines ...
73
10667 powershell-ui-architect 404kidwiz/claude-supercode-skills
Provides expertise in building graphical user interfaces (GUI) and terminal user interfaces (TUI) with PowerShell. Specializes in WinForms, WPF, and console-based TUI frameworks for creating user-friendly PowerShell tools. When to Use - Building PowerShell tools with GUI - Creating WinForms applications - Developing WPF interfaces for scripts - Building terminal user interfaces (TUI) - Adding dialogs to automation scripts - Creating interactive admin tools - Building configuration wizar...
73
10668 godot-camera-systems thedivergentai/gd-agentic-skills
Camera Systems Expert guidance for creating smooth, responsive cameras in 2D and 3D games. NEVER Do NEVER use global_position = target.global_position every frame — Instant position matching causes jittery movement. Use lerp() or position_smoothing_enabled = true . NEVER forget limit_smoothed = true for Camera2D — Hard limits cause sudden stops at edges. Smoothing prevents jarring halts. NEVER use offset for permanent camera positioning — offset is for shake/sway effects only. Use position for p...
73
10669 write-pr 2ykwang/agent-skills
Writing pull requests Standards for PR titles and descriptions in tldraw/tldraw. PR title Use semantic PR titles (Conventional Commits format): <type>(<scope>): <description> Types feat - New feature fix - Bug fix docs - Documentation only refactor - Code change that neither fixes a bug nor adds a feature perf - Performance improvement test - Adding or fixing tests chore - Maintenance tasks Scope (optional) A noun describing the affected area: fix(editor):, feat(sync):, docs(examples): Ex...
73
10670 event-modeling jwilger/agent-skills
Event Modeling Value: Communication -- event modeling is a structured conversation that surfaces hidden domain knowledge and creates shared understanding between humans and agents before any code is written. Purpose Teaches the agent to facilitate event modeling sessions following Martin Dilger's "Understanding Eventsourcing" methodology. Produces a complete event model (actors, events, commands, read models, automations, slices) that drives all downstream implementation. The model lives in docs...
73
10671 go-api-development mindrally/skills
Go API Development with Standard Library Core Principles Always use the latest stable version of Go (1.22 or newer) and be familiar with RESTful API design principles, net/http package, and the new ServeMux introduced in Go 1.22 Follow the user's requirements carefully and to the letter First think step-by-step - describe your plan for the API structure, endpoints, and data flow in pseudocode, written out in great detail Write correct, up-to-date, bug-free, fully functional, secure, and efficien...
73
10672 finviz-screener tradermonty/claude-trading-skills
FinViz Screener Overview Translate natural-language stock screening requests into FinViz screener filter codes, build the URL, and open it in Chrome. No API key required for public screener; FINVIZ Elite is auto-detected from $FINVIZ_API_KEY for enhanced functionality. Key Features: Natural language → filter code mapping (Japanese + English) URL construction with view type and sort order selection Elite/Public auto-detection (environment variable or explicit flag) Chrome-first browser opening wi...
73
10673 lambda itsmostafa/aws-agent-skills
AWS Lambda AWS Lambda runs code without provisioning servers. You pay only for compute time consumed. Lambda automatically scales from a few requests per day to thousands per second. Table of Contents Core Concepts Common Patterns CLI Reference Best Practices Troubleshooting References Core Concepts Function Your code packaged with configuration. Includes runtime, handler, memory, timeout, and IAM role. Invocation Types Type Description Use Case Synchronous Caller waits for response API Gate...
73
10674 cloud-network-security elastic/agent-skills
Cloud Network Security Manage network security policies for Elastic Cloud Serverless projects: IP filters to allowlist specific IPs or CIDRs, and VPC filters (AWS PrivateLink) to restrict traffic to specific VPC endpoints. Prerequisite: This skill assumes the cloud-setup skill has already run — EC_API_KEY is set in the environment and the organization context is established. If EC_API_KEY is missing, instruct the agent to invoke cloud-setup first. Do NOT prompt the user for an API key directly. ...
73
10675 nsfc-reviewers huangwb8/chineseresearchlatex
NSFC 标书专家评审模拟器 重要声明(非官方) 本技能输出仅用于 写作改进与自查 ,不代表任何官方评审口径,也不构成资助结论或承诺。 “函评/会评给不过”的判断仅作为 当前版本送审风险预估 ,用于帮助用户判断优先修改方向,不代表真实评审结果。 技能依赖 并行多组评审模式依赖 parallel-vibe 技能。 若 parallel-vibe 不可用、被禁用,或 panel_count == 1 ,自动退化为单组模式(仍包含 7 位专家)。 专家 prompt 模板位于 references/expert_*.md ,聚合规则位于 references/aggregation_rules.md 。 安全与隐私(硬规则) 默认将标书内容视为 敏感信息 :仅处理用户明确提供的文件/目录;不擅自扩展扫描范围。 除非用户明确要求且确认风险: 不联网 、不把原文大段外发、不在输出中复述不必要的个人信息/单位信息。 只做“文本读取与评审”,默认不执行任何编译/运行(例如不运行 LaTeX 编译,不执行脚本)。 输出若需分享:优先提供“问题摘要 + 可执行修改建议”,必要引用原文时只引用 最短必要片...
72
10676 codex-readiness-unit-test openai/skills
LLM Codex Readiness Unit Test Instruction-first, in-session "readiness" for evaluating AGENTS/PLANS documentation quality without any external APIs or SDKs. All checks run against the current working directory (cwd), with no monorepo discovery. Each run writes to .codex-readiness-unit-test/<timestamp>/ and updates .codex-readiness-unit-test/latest.json. Keep execution deterministic (filesystem scanning + local command execution only). All LLM evaluation happens in-session and must output strict...
72
10677 pipedrive-automation sickn33/antigravity-awesome-skills
Pipedrive Automation via Rube MCP Automate Pipedrive CRM workflows including deal management, contact and organization operations, activity scheduling, notes, and pipeline/stage queries through Composio's Pipedrive toolkit. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Pipedrive connection via RUBE_MANAGE_CONNECTIONS with toolkit pipedrive Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server...
72
10678 klaviyo-automation composiohq/awesome-claude-skills
Klaviyo Automation via Rube MCP Automate Klaviyo email and SMS marketing operations through Composio's Klaviyo toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/klaviyo Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Klaviyo connection via RUBE_MANAGE_CONNECTIONS with toolkit klaviyo 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 ...
72
10679 digest anthropics/knowledge-work-plugins
Digest Command If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Scan recent activity across all connected sources and generate a structured digest highlighting what matters. Instructions 1. Parse Flags Determine the time window from the user's input: --daily — Last 24 hours (default if no flag specified) --weekly — Last 7 days The user may also specify a custom range: --since yesterday --since Monday --since 2025-01-20 2. Check Available Sources ...
72
10680 web-performance-audit secondsky/claude-skills
Web Performance Audit Overview Web performance audits measure load times, identify bottlenecks, and guide optimization efforts to create faster, better user experiences. When to Use Regular performance monitoring After major changes User complaints about slowness SEO optimization Mobile optimization Performance baseline setting Instructions 1. Performance Metrics Core Web Vitals (Google): Largest Contentful Paint (LCP): Measure: Time to load largest visible element Good: <2.5 seconds Po...
72
10681 issue-progress-tracking yonatangross/orchestkit
Automatic GitHub issue progress tracking that updates issues based on commits and marks sub-tasks as complete. Overview - Working on GitHub issues with checkbox sub-tasks - Making commits that reference issue numbers - Using issue-prefixed branches (e.g., `issue/123-feature`, `fix/456-bug`) - Wanting automatic progress visibility without manual updates How It Works Automatic Progress Tracking The plugin automatically tracks your work through three coordinated hooks: - Commit Detecti...
72
10682 people-report anthropics/knowledge-work-plugins
/people-report If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Generate people analytics reports from your HR data. Analyze workforce data to surface trends, risks, and opportunities. Usage /people-report $ARGUMENTS Report Types Headcount : Current org snapshot — by team, location, level, tenure Attrition : Turnover analysis — voluntary/involuntary, by team, trends Diversity : Representation metrics — by level, team, pipeline Org Health : Span o...
72
10683 fal-audio sickn33/antigravity-awesome-skills
fal.ai Audio Text-to-speech and speech-to-text using state-of-the-art audio models on fal.ai. How It Works User provides text (for TTS) or audio URL (for STT) Script selects appropriate model Sends request to fal.ai API Returns audio URL (TTS) or transcription text (STT) Finding Models To discover the best and latest audio models, use the search API: Search for text-to-speech models bash /mnt/skills/user/fal-generate/scripts/search-models.sh --category "text-to-speech" Search for speech-to-tex...
72
10684 chat-sdk lobehub/lobehub
Chat SDK Unified TypeScript SDK for building chat bots across Slack, Teams, Google Chat, Discord, GitHub, and Linear. Write bot logic once, deploy everywhere. Critical: Read the bundled docs The chat package ships with full documentation in node_modules/chat/docs/ and TypeScript source types. Always read these before writing code: node_modules/chat/docs/ Full documentation (MDX files) node_modules/chat/dist/ Built types (.d.ts files) Key docs to read based on task: docs/get...
72
10685 custom-indicator marketcalls/openalgo-indicator-skills
Create a custom technical indicator with Numba JIT compilation for production-grade speed. Arguments $0 = indicator name (e.g., zscore, squeeze, vwap-bands, custom-rsi, mean-reversion). Required. If no arguments, ask the user what indicator they want to build. Instructions Read the indicator-expert rules, especially: rules/custom-indicators.md — Numba patterns and templates rules/numba-optimization.md — Performance best practices rules/indicator-catalog.md — Check if indicator already exists in ...
72
10686 migrating-latex-templates huangwb8/chineseresearchlatex
核心入口:`python skills/transfer_old_latex_to_new/scripts/run.py --help` 一键迁移:`bash skills/transfer_old_latex_to_new/scripts/migrate.sh --old ... --new ...` 配置中心:[config.yaml](https://github.com/huangwb8/chineseresearchlatex/blob/main/skills/transfer_old_latex_to_new/config.yaml) 参考文档:[references/](https://github.com/huangwb8/chineseresearchlatex/blob/main/skills/transfer_old_latex_to_new/references/) 拆分文档: [docs/quickstart.md](https://github.com/huangwb8/chineseresearchlatex/blob/main/skills/tr...
72
10687 husky-test-coverage shipshitdev/library
Husky Test Coverage Set up or verify Husky git hooks to ensure tests run and coverage thresholds are enforced on every commit. Purpose This skill automates the setup of: Husky git hooks for pre-commit testing Test runner detection (Jest, Vitest, Mocha) Coverage configuration with thresholds (default: 80%) Pre-commit hook that runs tests with coverage Configurable coverage enforcement (block or warn) When to Use This skill should be used when: Setting up test coverage enforcement for the fi...
72
10688 api-authentication secondsky/claude-skills
API Authentication Overview Implement comprehensive authentication strategies for APIs including JWT tokens, OAuth 2.0, API keys, and session management with proper security practices. When to Use Securing API endpoints Implementing user login/logout flows Managing access tokens and refresh tokens Integrating OAuth 2.0 providers Protecting sensitive data Implementing API key authentication Instructions 1. JWT Authentication // Node.js JWT Implementation const express = require('express'); cons...
72
10689 policy-lookup anthropics/knowledge-work-plugins
/policy-lookup If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Look up and explain company policies in plain language. Answer employee questions about policies, benefits, and procedures by searching connected knowledge bases or using provided handbook content. Usage /policy-lookup $ARGUMENTS Search for policies matching: $ARGUMENTS How It Works ┌─────────────────────────────────────────────────────────────────┐ │ POLICY LOOKUP...
72
10690 axum-web-framework manutej/luxor-claude-marketplace
Axum Web Framework A comprehensive skill for building production-ready web applications and APIs using Axum, the ergonomic and modular Rust web framework built on Tokio and Tower. Master routing, extractors, middleware, state management, error handling, and deployment patterns. When to Use This Skill Use this skill when: Building REST APIs with Rust and async/await Creating high-performance web services with type safety Developing microservices with Tokio ecosystem integration Implementing W...
72
10691 check-review-alignment huangwb8/chineseresearchlatex
Check Review Alignment 适用场景 已有 {主题}_review.tex 与对应 .bib,需要核查正文每条引用是否“真的在引用该论文”,并在必要时最小化改写以消除错配/幻觉引用。 需要在优化后自动渲染生成 PDF 与 Word。 输入 work_dir:综述工作目录(包含 {主题}_review.tex 与 .bib,可含 PDF)。 可选:--tex 指定 tex 文件名(默认取目录下首个 *_review.tex;若目录内存在多个候选,脚本会给出 warning 并提示使用 --tex 明确指定)。 输出 {work_dir}/.check-review-alignment/ai_alignment_report.md:单一报告,包含 Summary / Critical Fixes (P0) / Warnings (P1) / Rendering Result(末尾附 PDF/Word 路径或错误摘要)。 {work_dir}/.check-review-alignment/ai_alignment_input.json:脚本生成的"引用 + 文献元信息(含...
72
10692 intercom-automation composiohq/awesome-claude-skills
Intercom Automation via Rube MCP Automate Intercom operations through Composio's Intercom toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/intercom Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Intercom connection via RUBE_MANAGE_CONNECTIONS with toolkit intercom 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 end...
72
10693 meme-trader dreamineering/meme-times
Aggressive memecoin analysis, rug detection, and trade execution support for Solana ecosystem. Built for speed, alpha generation, and maximum degen potential. Activation Triggers Core Capabilities 1. Token Analysis - Contract verification (mint authority, freeze authority) - Liquidity depth and lock status - Holder distribution (whale concentration, dev wallets) - Social sentiment scraping - Volume/MCAP ratio analysis 2. Rug Detection - Honeypot detection (sell tax, blacklist funct...
72
10694 csharp-pro rmyndharis/antigravity-skills
Use this skill when Working on csharp pro tasks or workflows Needing guidance, best practices, or checklists for csharp pro Do not use this skill when The task is unrelated to csharp pro You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md . You are a C expert sp...
72
10695 aws-cloudformation-security giuseppe-trisciuoglio/developer-kit
AWS CloudFormation Security Overview Create secure AWS infrastructure using CloudFormation templates with security best practices. This skill covers encryption with AWS KMS, secrets management with Secrets Manager, secure parameters, IAM least privilege, security groups, TLS/SSL certificates, and defense-in-depth strategies. When to Use Use this skill when: Creating CloudFormation templates with encryption at-rest and in-transit Managing secrets and credentials with AWS Secrets Manager Configuri...
72
10696 asyncio programming pluginagentmarketplace/custom-plugin-python
Asyncio Programming Overview Master asynchronous programming in Python with asyncio. Learn to write concurrent code that efficiently handles I/O-bound operations, build async web applications, and understand the async/await paradigm. Learning Objectives Understand asynchronous programming concepts Write async functions with async/await syntax Manage concurrent operations with asyncio Build async web applications Handle async I/O operations efficiently Debug and test async code Core Topics 1. Asy...
72
10697 github-projects existential-birds/beagle
GitHub Projects CLI GitHub Projects (v2) management via gh project commands. Requires the project scope which can be added with gh auth refresh -s project. Prerequisites Verify authentication includes project scope: gh auth status Check current scopes gh auth refresh -s project Add project scope if missing Quick Reference List & View Projects List your projects gh project list List org projects (including closed) gh project list --owner ORG_NAME --closed View project details gh pro...
72
10698 jira-automation sickn33/antigravity-awesome-skills
Jira Automation via Rube MCP Automate Jira operations through Composio's Jira toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/jira Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Jira connection via RUBE_MANAGE_CONNECTIONS with toolkit jira 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. Veri...
72
10699 vuejs-development manutej/luxor-claude-marketplace
Vue.js Development Skill This skill provides comprehensive guidance for building modern Vue.js applications using the Composition API, reactivity system, single-file components, directives, and lifecycle hooks based on official Vue.js documentation. When to Use This Skill Use this skill when: Building single-page applications (SPAs) with Vue.js Creating progressive web applications (PWAs) with Vue Developing interactive user interfaces with reactive data Building component-based architecture...
72
10700 api-design-patterns asyrafhussin/agent-skills
API Design Patterns Design robust, scalable APIs using proven patterns for REST, GraphQL, and gRPC with proper versioning, authentication, and error handling. Quick Reference API Style Selection: REST: Resource-based CRUD, simple clients, HTTP-native caching GraphQL: Client-driven queries, complex data graphs, real-time subscriptions gRPC: High-performance RPC, microservices, strong typing, streaming Critical Patterns: Versioning: URI (/v1/users), header (Accept: application/vnd.api+json;v...
72