███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 4151 | vitest-testing | existential-birds/beagle |
Vitest Best Practices Quick Reference import { describe, it, expect, beforeEach, vi } from 'vitest' describe('feature name', () => { beforeEach(() => { vi.clearAllMocks() }) it('should do something specific', () => { expect(actual).toBe(expected) }) it.todo('planned test') it.skip('temporarily disabled') it.only('run only this during dev') }) Common Assertions // Equality expect(value).toBe(42) // Strict (===) expect(obj).toEqual({ a: 1 }) ...
|
211 |
| 4152 | alicloud-ai-audio-tts-voice-design-test | cinience/alicloud-skills |
Category: test Minimal Viable Test Goals Validate only the minimal request path for this skill. If execution fails, record exact error details without guessing parameters. Prerequisites Prepare authentication and region settings based on the skill instructions. Target skill: skills/ai/audio/alicloud-ai-audio-tts-voice-design Test Steps (Minimal) Open the target skill SKILL.md and choose one minimal input example. Send one minimal request or run the example script. Record request summary, respons...
|
211 |
| 4153 | alicloud-ai-contactcenter-ai | cinience/alicloud-skills |
Category: service Contact Center AI Use Alibaba Cloud OpenAPI (RPC) with official SDKs or OpenAPI Explorer to manage resources for Contact Center AI. Workflow Confirm region, resource identifiers, and desired action. Discover API list and required parameters (see references). Call API with SDK or OpenAPI Explorer. Verify results with describe/list APIs. AccessKey priority (must follow) Environment variables: ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / ALICLOUD_REGION_ID Region policy: ...
|
211 |
| 4154 | seo-content | agricidaniel/claude-seo |
Content Quality & E-E-A-T Analysis E-E-A-T Framework (updated Sept 2025 QRG) Read seo/references/eeat-framework.md for full criteria. Experience (first-hand signals) Original research, case studies, before/after results Personal anecdotes, process documentation Unique data, proprietary insights Photos/videos from direct experience Expertise Author credentials, certifications, bio Professional background relevant to topic Technical depth appropriate for audience Accurate, well-sourced claims Auth...
|
211 |
| 4155 | archive | resciencelab/opc-skills |
Archive Skill Capture, index, and reuse project knowledge across sessions. When to Archive After completing a significant task (deploy, migration, major feature) After resolving a tricky debugging session When the user says "archive this" After any multi-step process with learnings worth preserving When to Consult Archives Before debugging infrastructure, deploy, or CI issues Before repeating a process done in a past session When encountering an error that may have been solved before Search : gr...
|
211 |
| 4156 | do | thedotmack/claude-mem |
Do Plan You are an ORCHESTRATOR. Deploy subagents to execute all work. Do not do the work yourself except to coordinate, route context, and verify that each subagent completed its assigned checklist. Execution Protocol Rules Each phase uses fresh subagents where noted (or when context is large/unclear) Assign one clear objective per subagent and require evidence (commands run, outputs, files changed) Do not advance to the next step until the assigned subagent reports completion and the orchestra...
|
211 |
| 4157 | ralph-plan | mastra-ai/mastra |
Ralph Plan - Interactive Ralph Command Builder You are a planning assistant that helps users create well-structured ralph-loop commands. Your goal is to collaborate with the user to produce a focused, actionable ralph command with clear sections. Your Role Guide the user through creating a ralph command by asking clarifying questions and helping them define each section. Be conversational and iterative - help them refine their ideas into a concrete plan. Ralph Command Structure A ralph comm...
|
211 |
| 4158 | huggingface-accelerate | davila7/claude-code-templates |
HuggingFace Accelerate - Unified Distributed Training Quick start Accelerate simplifies distributed training to 4 lines of code. Installation: pip install accelerate Convert PyTorch script (4 lines): import torch + from accelerate import Accelerator + accelerator = Accelerator() model = torch.nn.Transformer() optimizer = torch.optim.Adam(model.parameters()) dataloader = torch.utils.data.DataLoader(dataset) + model, optimizer, dataloader = accelerator.prepare(model, optimizer, data...
|
211 |
| 4159 | inngest-middleware | inngest/inngest-skills |
Inngest Middleware Master Inngest middleware to handle cross-cutting concerns like logging, error tracking, dependency injection, and data transformation. Middleware runs at key points in the function lifecycle, enabling powerful patterns for observability and shared functionality. These skills are focused on TypeScript. For Python or Go, refer to the Inngest documentation for language-specific guidance. Core concepts apply across all languages. What is Middleware? Middleware allows code to run ...
|
211 |
| 4160 | json-canvas | davila7/claude-code-templates |
JSON Canvas Skill This skill enables skills-compatible agents to create and edit valid JSON Canvas files (.canvas) used in Obsidian and other applications. Overview JSON Canvas is an open file format for infinite canvas data. Canvas files use the .canvas extension and contain valid JSON following the JSON Canvas Spec 1.0. File Structure A canvas file contains two top-level arrays: { "nodes": [], "edges": [] } nodes (optional): Array of node objects edges (optional): Array of edge obje...
|
211 |
| 4161 | octocat | mcollina/skills |
When to use Use this skill proactively for: All git operations and GitHub interactions Merge conflicts resolution Pre-commit hook fixes Repository management Pull request creation and management Any git/GitHub workflow issues Instructions You are the Octocat - a Git and GitHub wizard who lives and breathes version control. You wield the gh CLI like a master swordsman and can untangle the most complex git situations with grace and precision. When invoked: Assess the git/GitHub situation immediate...
|
211 |
| 4162 | ai-product | davila7/claude-code-templates |
AI Product Development You are an AI product engineer who has shipped LLM features to millions of users. You've debugged hallucinations at 3am, optimized prompts to reduce costs by 80%, and built safety systems that caught thousands of harmful outputs. You know that demos are easy and production is hard. You treat prompts as code, validate all outputs, and never trust an LLM blindly. Patterns Structured Output with Validation Use function calling or JSON mode with schema validation Streaming...
|
211 |
| 4163 | d3-viz | davila7/claude-code-templates |
D3.js Visualisation Overview This skill provides guidance for creating sophisticated, interactive data visualisations using d3.js. D3.js (Data-Driven Documents) excels at binding data to DOM elements and applying data-driven transformations to create custom, publication-quality visualisations with precise control over every visual element. The techniques work across any JavaScript environment, including vanilla JavaScript, React, Vue, Svelte, and other frameworks. When to use d3.js Use d3.js ...
|
211 |
| 4164 | update | boshu2/agentops |
assistant-ui Update Always verifies against npm ground truth and GitHub commits. References ./references/ai-sdk-v6.md -- AI SDK v4/v5 → v6 migration (complete guide) ./references/assistant-ui.md -- assistant-ui version migrations ./references/breaking-changes.md -- Quick reference table Phase 1: Detect Versions Get Ground Truth Installed versions npm ls @assistant-ui/react @assistant-ui/react-ai-sdk ai @ai-sdk/react 2>/dev/null Latest from npm npm view @assistant-ui/react version npm view @...
|
211 |
| 4165 | skill-publisher | joeseesun/skill-publisher |
Skill Publisher 一键将 Claude Code Skill 发布到 GitHub,自动完成验证、补全、推送全流程。 前置条件 gh CLI 已安装且已登录( gh auth status ) Skill 目录包含有效的 SKILL.md (含 YAML frontmatter name + description ) 发布流程 当用户要求发布 skill 时,运行发布脚本: python3 ~/.claude/skills/skill-publisher/scripts/publish_skill.py < skill_dir > 确定 skill 目录 如果用户说"发布这个 skill"且当前在某个 skill 目录 → 用当前目录 如果用户指定了 skill 名称 → 在 ~/.claude/skills/ 下查找 如果不确定 → 问用户要发布哪个 skill 脚本自动完成的步骤 验证 SKILL.md 的 YAML frontmatter(name + description) 检查 gh CLI 就绪状态 创建 LICENSE(MIT,如果缺少) 生成 READ...
|
210 |
| 4166 | livewire-development | spatie/freek.dev |
Livewire Development When to Apply Activate this skill when: Creating or modifying Livewire components Using wire: directives (model, click, loading, sort, intersect) Implementing islands or async actions Writing Livewire component tests Documentation Use search-docs for detailed Livewire 4 patterns and documentation. Basic Usage Creating Components Single-file component (default in v4) {{ $assist->artisanCommand('make:livewire create-post') }} Multi-file component {{ $assist->artisanCommand('ma...
|
210 |
| 4167 | ab-test-store-listing | eronred/aso-skills |
A/B Test Store Listing You are an expert in App Store product page optimization and A/B testing. Your goal is to help the user design, run, and interpret tests that improve their App Store conversion rate. Initial Assessment Check for app-marketing-context.md — read it for context Ask for the App ID Ask for current conversion rate (if known from App Store Connect) Ask for daily impressions (determines test duration) Ask: What do you want to test? (icon, screenshots, description, etc.) What You C...
|
210 |
| 4168 | ethical hacking methodology | sickn33/antigravity-awesome-skills |
Ethical Hacking Methodology Purpose Master the complete penetration testing lifecycle from reconnaissance through reporting. This skill covers the five stages of ethical hacking methodology, essential tools, attack techniques, and professional reporting for authorized security assessments. Prerequisites Required Environment Kali Linux installed (persistent or live) Network access to authorized targets Written authorization from system owner Required Knowledge Basic networking concepts Linux comm...
|
210 |
| 4169 | qa-test-planner | davila7/claude-code-templates |
QA Test Planner A comprehensive skill for QA engineers to create test plans, generate manual test cases, build regression test suites, validate designs against Figma, and document bugs effectively. Activation: This skill is triggered only when explicitly called by name (e.g., /qa-test-planner , qa-test-planner , or use the skill qa-test-planner ). Quick Start Create a test plan: "Create a test plan for the user authentication feature" Generate test cases: "Generate manual test cases for the chec...
|
210 |
| 4170 | widgets-ui | inference-sh/skills |
Widget Renderer Declarative UI from JSON via ui.inference.sh . Quick Start npx shadcn@latest add https://ui.inference.sh/r/widgets.json Basic Usage import { WidgetRenderer } from "@/registry/blocks/widgets/widget-renderer" import type { Widget , WidgetAction } from "@/registry/blocks/widgets/types" const widget : Widget = { type : 'ui' , title : 'My Widget' , children : [ { type : 'text' , value : 'Hello World' } , { type : 'button' , label : 'Click me' , onClickAction : { type : 'click' } } , ]...
|
210 |
| 4171 | bash-linux | davila7/claude-code-templates |
Bash Linux Patterns Essential patterns for Bash on Linux/macOS. 1. Operator Syntax Chaining Commands Operator Meaning Example ; Run sequentially cmd1; cmd2 && Run if previous succeeded npm install && npm run dev || Run if previous failed npm test || echo "Tests failed" | Pipe output ls | grep ".js" 2. File Operations Essential Commands Task Command List all ls -la Find files find . -name "*.js" -type f File content cat file.txt First N lines head -n 20 file.txt Last N lines tail -n 20 file.txt...
|
210 |
| 4172 | api fuzzing for bug bounty | sickn33/antigravity-awesome-skills |
API Fuzzing for Bug Bounty Purpose Provide comprehensive techniques for testing REST, SOAP, and GraphQL APIs during bug bounty hunting and penetration testing engagements. Covers vulnerability discovery, authentication bypass, IDOR exploitation, and API-specific attack vectors. Inputs/Prerequisites Burp Suite or similar proxy tool API wordlists (SecLists, api_wordlist) Understanding of REST/GraphQL/SOAP protocols Python for scripting Target API endpoints and documentation (if available) Outputs/...
|
210 |
| 4173 | micro-saas-launcher | davila7/claude-code-templates |
Micro-SaaS Launcher Role: Micro-SaaS Launch Architect You ship fast and iterate. You know the difference between a side project and a business. You've seen what works in the indie hacker community. You help people go from idea to paying customers in weeks, not years. You focus on sustainable, profitable businesses - not unicorn hunting. Capabilities Micro-SaaS strategy MVP scoping Pricing strategies Launch playbooks Indie hacker patterns Solo founder tech stack Early traction SaaS metrics Pat...
|
210 |
| 4174 | software-architecture-design | vasilyu1983/ai-agents-public |
Software Architecture Design — Quick Reference Use this skill for system-level design decisions rather than implementation details within a single service or component. Quick Reference Task Pattern/Tool Key Resources When to Use Choose architecture style Layered, Microservices, Event-driven, Serverless modern-patterns.md Greenfield projects, major refactors Design for scale Load balancing, Caching, Sharding, Read replicas scalability-reliability-guide.md High-traffic systems, performance goals E...
|
210 |
| 4175 | dotnet-architect | rmyndharis/antigravity-skills |
Use this skill when Working on dotnet architect tasks or workflows Needing guidance, best practices, or checklists for dotnet architect Do not use this skill when The task is unrelated to dotnet architect 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...
|
210 |
| 4176 | tdd-guide | alirezarezvani/claude-skills |
TDD Guide - Test Driven Development for Engineering Teams A comprehensive Test Driven Development skill that provides intelligent test generation, coverage analysis, framework integration, and TDD workflow guidance across multiple languages and testing frameworks. Capabilities Test Generation Generate Test Cases from Requirements: Convert user stories, API specs, and business requirements into executable test cases Create Test Stubs: Generate test function scaffolding with proper naming, impor...
|
210 |
| 4177 | asc-cli-usage | rudrankriyam/asc-skills |
asc cli usage Use this skill when you need to run or design asc commands for App Store Connect. Command discovery Always use --help to discover commands and flags. asc --help asc builds --help asc builds list --help Flag conventions Use explicit long flags (e.g., --app , --output ). No interactive prompts; destructive operations require --confirm . Use --paginate when the user wants all pages. Output formats Default output is minified JSON. Use --output table or --output markdown only for human-...
|
209 |
| 4178 | aicoin-account | aicoincom/coinos-skills |
⚠️ 运行脚本: 必须先 cd 到本 SKILL.md 所在目录再执行。示例: cd ~/.openclaw/workspace/skills/aicoin-account && node scripts/exchange.mjs ... AiCoin Account Exchange account queries and API key management. Safe read-only operations. Commands Task Command Balance node scripts/exchange.mjs balance '{"exchange":"okx"}' Positions node scripts/exchange.mjs positions '{"exchange":"okx","market_type":"swap"}' Open orders node scripts/exchange.mjs open_orders '{"exchange":"okx","symbol":"BTC/USDT"}' Order history node script...
|
209 |
| 4179 | tailwindcss-development | laravel/boost |
Tailwind CSS Development When to Apply Activate this skill when: Adding styles to components or pages Working with responsive design Implementing dark mode Extracting repeated patterns into components Debugging spacing or layout issues Documentation Use search-docs for detailed Tailwind CSS v3 patterns and documentation. Basic Usage Use Tailwind CSS classes to style HTML. Check and follow existing Tailwind conventions in the project before introducing new patterns. Offer to extract repeated ...
|
209 |
| 4180 | fiction-workshop | rhavekost/author-toolkit |
Editorial workflow for collaborative fiction writing in three stages: Story Bible Building, Chapter Development, and Reader Testing. When to Use This skill is for: - ✅ Long-form fiction (novels, novellas, short story collections) - ✅ Multi-chapter manuscripts requiring character/plot consistency - ✅ Fiction projects needing developmental or line editing - ✅ Stories with complex worldbuilding or multiple POV characters When NOT to Use This skill is NOT for: - ❌ Flash fiction or single ...
|
209 |
| 4181 | claude-scientific-skills | sickn33/antigravity-awesome-skills |
Claude Scientific Skills Overview Scientific research and analysis skills When to Use This Skill Use this skill when you need to work with scientific research and analysis skills. Instructions This skill provides guidance and patterns for scientific research and analysis skills. For more information, see the source repository .
|
209 |
| 4182 | security-scanning-security-hardening | sickn33/antigravity-awesome-skills |
Implement comprehensive security hardening with defense-in-depth strategy through coordinated multi-agent orchestration: [Extended thinking: This workflow implements a defense-in-depth security strategy across all application layers. It coordinates specialized security agents to perform comprehensive assessments, implement layered security controls, and establish continuous security monitoring. The approach follows modern DevSecOps principles with shift-left security, automated scanning, and com...
|
209 |
| 4183 | nextjs-supabase-auth | davila7/claude-code-templates |
Next.js + Supabase Auth You are an expert in integrating Supabase Auth with Next.js App Router. You understand the server/client boundary, how to handle auth in middleware, Server Components, Client Components, and Server Actions. Your core principles: Use @supabase/ssr for App Router integration Handle tokens in middleware for protected routes Never expose auth tokens to client unnecessarily Use Server Actions for auth operations when possible Understand the cookie-based session flow Capabiliti...
|
209 |
| 4184 | tool-ui | assistant-ui/tool-ui |
Tool UI Use this skill to move from request to working Tool UI integration quickly. Prefer assistant-ui when the project has no existing chat UI/runtime. Treat assistant-ui as optional when the app already has a working runtime. Step 1: Compatibility and Doctor Read components.json in the user's project and verify: components.json exists. Step 2: Install Components Install command from project root Preferred (AI-assisted integration): npx tool-agent "integrate the <component> component" Use comp...
|
209 |
| 4185 | rclone | everyinc/compound-engineering-plugin |
rclone File Transfer Skill Setup Check (Always Run First) Before any rclone operation, verify installation and configuration: Check if rclone is installed command -v rclone >/dev/null 2>&1 && echo "rclone installed: $(rclone version | head -1)" || echo "NOT INSTALLED" List configured remotes rclone listremotes 2>/dev/null || echo "NO REMOTES CONFIGURED" If rclone is NOT installed Guide the user to install: macOS brew install rclone Linux (script install) curl https://rclone.org/instal...
|
209 |
| 4186 | go-interfaces | cxuu/golang-skills |
Go Interfaces and Composition Go's interfaces enable flexible, decoupled designs through implicit satisfaction and composition. This skill covers interface fundamentals, type inspection, and Go's approach to composition over inheritance. Source: Effective Go Interface Basics Interfaces in Go specify behavior: if something can do this, it can be used here. Types implement interfaces implicitly—no implements keyword needed. // io.Writer interface - any type with this method satisfies it type ...
|
209 |
| 4187 | postgres-schema-design | davila7/claude-code-templates |
No SKILL.md available for this skill. View on GitHub
|
209 |
| 4188 | tavily | intellectronica/agent-skills |
Tavily Purpose Provide a curl-based interface to Tavily’s REST API for web search, extraction, mapping, crawling, and optional research. Return structured results suitable for LLM workflows and multi-step investigations. When to Use Use when a task needs live web information, site extraction, mapping, or crawling. Use when web searches are needed and no built-in tool is available, or when Tavily’s LLM-friendly output (summaries, chunks, sources, citations) is beneficial. Use when a task requir...
|
209 |
| 4189 | linux production shell scripts | sickn33/antigravity-awesome-skills |
Linux Production Shell Scripts Purpose Provide production-ready shell script templates for common Linux system administration tasks including backups, monitoring, user management, log analysis, and automation. These scripts serve as building blocks for security operations and penetration testing environments. Prerequisites Required Environment Linux/Unix system (bash shell) Appropriate permissions for tasks Required utilities installed (rsync, openssl, etc.) Required Knowledge Basic bash scripti...
|
209 |
| 4190 | glab | henricook/claude-glab-skill |
GitLab CLI (glab) Skill Provides guidance for using glab, the official GitLab CLI, to perform GitLab operations from the terminal. When to Use This Skill Invoke when the user needs to: Create, review, or manage merge requests Work with GitLab issues Monitor or trigger CI/CD pipelines Clone or manage repositories Perform any GitLab operation from the command line Prerequisites Verify glab installation before executing commands: glab --version If not installed, inform the user and provide ...
|
208 |
| 4191 | polymarket | machina-sports/sports-skills |
Polymarket Comprehensive Skill Complete assistance with Polymarket development - covering the full platform (API, trading, market data) and the real-time data streaming client (WebSocket subscriptions for live market activity). When to Use This Skill This skill should be triggered when: Platform & API: Working with Polymarket prediction markets Using Polymarket API for market data Implementing trading strategies Building applications with Polymarket services Learning Polymarket best practic...
|
208 |
| 4192 | image-generation | claude-office-skills/skills |
Image Generation via MCP AI image generation skill via MCP. Use Gemini models or compatible services to generate high-quality images for marketing, UI, and presentations. When to use this skill Marketing assets : Hero images, banners, social media content UI/UX design : Placeholder images, icons, illustrations Presentations : Slide backgrounds, product visualizations Brand consistency : Generate images based on a style guide Instructions Step 1: Configure MCP Environment Check MCP server config...
|
208 |
| 4193 | prompt-optimizer | affaan-m/everything-claude-code |
Prompt Optimizer Overview Optimize vague prompts into precise, actionable specifications using EARS (Easy Approach to Requirements Syntax) - a Rolls-Royce methodology for transforming natural language into structured, testable requirements. Methodology inspired by: This skill's approach to combining EARS with domain theory grounding was inspired by 阿星AI工作室 (A-Xing AI Studio) , which demonstrated practical EARS application for prompt enhancement. Four-layer enhancement process: EARS syntax transf...
|
208 |
| 4194 | claude-api | affaan-m/everything-claude-code |
Claude API - Structured Outputs & Error Prevention Guide Package : @anthropic-ai/sdk@0.71.2 Breaking Changes : Oct 2025 - Claude 3.5/3.7 models retired, Nov 2025 - Structured outputs beta Last Updated : 2026-01-09 What's New in v0.69.0+ (Nov 2025) Major Features: 1. Structured Outputs (v0.69.0, Nov 14, 2025) - CRITICAL ⭐ Guaranteed JSON schema conformance - Claude's responses strictly follow your JSON schema with two modes. ⚠️ ACCURACY CAVEAT : Structured outputs guarantee format compliance, NOT...
|
208 |
| 4195 | alchemy-api | alchemyplatform/skills |
AI + Alchemy API Integration Guide Mandatory Routing Gate (Hard Requirement) Before the first network call or implementation step, you MUST ask the user the following question and wait for an explicit answer: Do you want to use an existing Alchemy API key, or should I use the agentic gateway flow instead? If the user chooses the API key path, continue with this skill. If the user chooses the agentic gateway path, switch to the agentic-gateway skill immediately and follow its existing wallet flow...
|
208 |
| 4196 | startup-business-analyst-market-opportunity | sickn33/antigravity-awesome-skills |
Market Opportunity Analysis Generate a comprehensive market opportunity analysis for a startup, including Total Addressable Market (TAM), Serviceable Available Market (SAM), and Serviceable Obtainable Market (SOM) calculations using both bottom-up and top-down methodologies. Use this skill when Working on market opportunity analysis tasks or workflows Needing guidance, best practices, or checklists for market opportunity analysis Do not use this skill when The task is unrelated to market opportu...
|
208 |
| 4197 | seo-images | agricidaniel/claude-seo |
Image Optimization Analysis Checks Alt Text Present on all <img> elements (except decorative: role="presentation" ) Descriptive: describes the image content, not "image.jpg" or "photo" Includes relevant keywords where natural, not keyword-stuffed Length: 10-125 characters Good examples: "Professional plumber repairing kitchen sink faucet" "Red 2024 Toyota Camry sedan front view" "Team meeting in modern office conference room" Bad examples: "image.jpg" (filename, not description) "plumber plumbin...
|
208 |
| 4198 | qiaomu-music-player-spotify | joeseesun/qiaomu-music-player-spotify |
Qiaomu Music Player (Spotify) 统一的音乐播放 + 风格查询 Skill。通过自包含的 Python 脚本直接调用 Spotify Web API,集成 RateYourMusic 5947 个音乐风格数据库。 Part 1: Spotify 播放器 脚本位置 ~/.claude/skills/qiaomu-music-player-spotify/spotify.py 运行方式 ~/.claude/skills/qiaomu-music-player-spotify/spotify.py < command > [ args .. . ] 命令列表 命令 参数 说明 search <query> [type] [limit] 搜索 (type: track/artist/album/playlist,默认 track) play <uri或track_id> 播放指定曲目/专辑/播放列表 pause 暂停 resume 继续播放 next 下一首 prev 上一首 queue <uri或track_id> 加入队列 now 当前播放信息 show-queu...
|
207 |
| 4199 | ui-ux-pro-max | binjuhor/shadcn-lar |
UI/UX Pro Max - Design Intelligence Comprehensive design guide for web and mobile applications. Contains 50+ styles, 161 color palettes, 57 font pairings, 161 product types with reasoning rules, 99 UX guidelines, and 25 chart types across 10 technology stacks. Searchable database with priority-based recommendations. When to Apply This Skill should be used when the task involves UI structure, visual design decisions, interaction patterns, or user experience quality control . Must Use This Skill m...
|
207 |
| 4200 | backend-to-frontend-handoff-docs | davila7/claude-code-templates |
API Handoff Mode No Chat Output : Produce the handoff document only. No discussion, no explanation—just the markdown block saved to the handoff file. You are a backend developer completing API work. Your task is to produce a structured handoff document that gives frontend developers (or their AI) full business and technical context to build integration/UI without needing to ask backend questions. When to use : After completing backend API work—endpoints, DTOs, validation, business logic—run this...
|
207 |