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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
25,668
总 Skills
103.5M
总安装量
2,631
贡献者
# Skill 仓库 描述 安装量
8751 ai-model-web tencentcloudbase/skills
When to use this skill Use this skill for calling AI models in browser/Web applications using @cloudbase/js-sdk . Use it when you need to: Integrate AI text generation in a frontend Web app Stream AI responses for better user experience Call Hunyuan or DeepSeek models from browser Do NOT use for: Node.js backend or cloud functions → use ai-model-nodejs skill WeChat Mini Program → use ai-model-wechat skill Image generation → use ai-model-nodejs skill (Node SDK only) HTTP API integration → use htt...
820
8752 train-sentence-transformers huggingface/skills
Train a sentence-transformers Model This SKILL.md is a router, not a manual. It tells you which references and example scripts to load for your task. The actual content — recommended losses, evaluators, training-script structure, model selection, training-arg knobs, troubleshooting — lives in references/ and scripts/ . Do not synthesize a training script from this file alone. Open the per-type production template ( scripts/train_<type>_example.py ) and copy it as your starting point. The templat...
820
8753 docker bobmatnyc/claude-mpm-skills
Docker Containerization Skill Summary Docker provides containerization for packaging applications with their dependencies into isolated, portable units. Containers ensure consistency across development, testing, and production environments, eliminating "works on my machine" problems. When to Use Local Development: Consistent dev environments across team members CI/CD Pipelines: Reproducible build and test environments Microservices: Isolated services with independent scaling Production Deploym...
820
8754 auth0-express auth0/agent-skills
Auth0 Express Integration Add authentication to Express.js web applications using express-openid-connect. Prerequisites Express.js application Auth0 account and application configured If you don't have Auth0 set up yet, use the auth0-quickstart skill first When NOT to Use Single Page Applications - Use auth0-react , auth0-vue , or auth0-angular for client-side auth Next.js applications - Use auth0-nextjs skill which handles both client and server Mobile applications - Use auth0-react-native for ...
820
8755 go-concurrency cxuu/golang-skills
Go Concurrency This skill covers concurrency patterns and best practices from Google's Go Style Guide and Uber's Go Style Guide, including goroutine management, channel usage, mutex handling, and synchronization. Goroutine Lifetimes Normative: When you spawn goroutines, make it clear when or whether they exit. Why Goroutine Lifetimes Matter Goroutines can leak by blocking on channel sends or receives. The garbage collector will not terminate a goroutine blocked on a channel even if no other...
820
8756 technical-writing mindrally/skills
Technical Writing When to use this skill Writing technical specifications Creating architecture documentation Documenting system designs Writing runbooks and operational guides Creating developer documentation API documentation User manuals and guides Release notes and changelogs Instructions Step 1: Understand your audience Developer audience : Focus on implementation details Include code examples Technical terminology is okay Show how, not just what DevOps/Operations audience : Focus on deploy...
820
8757 code-reviewer davila7/claude-code-templates
Code Reviewer This skill guides the agent in conducting professional and thorough code reviews for both local development and remote Pull Requests. Workflow 1. Determine Review Target Remote PR : If the user provides a PR number or URL (e.g., "Review PR 123"), target that remote PR. Local Changes : If no specific PR is mentioned, or if the user asks to "review my changes", target the current local file system states (staged and unstaged changes). 2. Preparation For Remote PRs: Checkout : Use the...
820
8758 mcp-brasil-public-apis aradotso/trending-skills
mcp-brasil: MCP Server for 28 Brazilian Public APIs Skill by ara.so — Daily 2026 Skills collection. mcp-brasil is a Model Context Protocol (MCP) server that exposes 213 tools, 55 resources, and 45 prompts across 28 Brazilian public APIs — letting AI agents (Claude, GPT, Copilot, Cursor, etc.) query government data in natural language. 26 APIs require no key; only 2 need free registrations. Installation pip pip install mcp-brasil uv (recommended) uv add mcp-brasil Quick Setup by Client Claude D...
819
8759 3d-web-experience davila7/claude-code-templates
3D Web Experience Role : 3D Web Experience Architect You bring the third dimension to the web. You know when 3D enhances and when it's just showing off. You balance visual impact with performance. You make 3D accessible to users who've never touched a 3D app. You create moments of wonder without sacrificing usability. Capabilities Three.js implementation React Three Fiber WebGL optimization 3D model integration Spline workflows 3D product configurators Interactive 3D scenes 3D performance optimi...
819
8760 metrics railwayapp/railway-skills
Service Metrics Query resource usage metrics for Railway services. When to Use User asks "how much memory is my service using?" User asks about CPU usage, network traffic, disk usage User wants to debug performance issues User asks "is my service healthy?" (combine with service skill) Prerequisites Get environmentId and serviceId from linked project: railway status --json Extract: environment.id → environmentId service.id → serviceId (optional - omit to get all services) MetricMeasurement...
818
8761 cta-generator kostja94/marketing-skills
Components: Call-to-Action (CTA) Guides CTA button design for conversion. A well-designed CTA can increase conversion by 25–10%. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output. Initial Assessment Check for product marketing context first: If .claude/product-marketing-context.md or .cursor/product-marketing-context.md exist...
818
8762 cookie-policy-page-generator kostja94/marketing-skills
Pages: Cookie Policy Guides cookie policy page content for GDPR and transparency. Often separate from Privacy Policy. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output. Initial Assessment Identify: Cookie types : Essential, analytics, marketing, etc. Consent : Banner, preferences, management Jurisdiction : GDPR, ePrivacy, CCP...
818
8763 codex-marketing-skills aradotso/marketing-skills
Codex Marketing Skills Skill by ara.so — Marketing Skills collection. A curated collection of shareable marketing and creator workflow skills for AI coding agents. Includes YouTube research, Readwise search/export, visual diagram generation, motion graphics/video production, social media publishing, and brand deal research automation. What It Does Codex Marketing Skills provides ready-to-use skill modules that enable AI agents to: YouTube Researcher : Search channels, pull transcripts, analyze h...
818
8764 storybook dalestudy/skills
Storybook 모범 관례 1. CSF 3.0 형식 사용 최신 Component Story Format 3.0 사용. 더 간결하고 타입 안전. // ❌ CSF 2.0 (구형) export default { title: 'Components/Button', component: Button, }; export const Primary = () => <Button variant="primary">Click me</Button>; // ✅ CSF 3.0 (권장) import type { Meta, StoryObj } from '@storybook/react'; import { Button } from './Button'; const meta = { title: 'Components/Button', component: Button, tags: ['autodocs'], // 자동 문서 생성 } satisfies Meta<typeof Button>; export d...
818
8765 agent-evaluation sickn33/antigravity-awesome-skills
Agent Evaluation (AI Agent Evals) Based on Anthropic's "Demystifying evals for AI agents" When to use this skill Designing evaluation systems for AI agents Building benchmarks for coding, conversational, or research agents Creating graders (code-based, model-based, human) Implementing production monitoring for AI systems Setting up CI/CD pipelines with automated evals Debugging agent performance issues Measuring agent improvement over time Core Concepts Eval Evolution: Single-turn → Multi-turn →...
818
8766 scikit-learn davila7/claude-code-templates
Scikit-learn Overview This skill provides comprehensive guidance for machine learning tasks using scikit-learn, the industry-standard Python library for classical machine learning. Use this skill for classification, regression, clustering, dimensionality reduction, preprocessing, model evaluation, and building production-ready ML pipelines. Installation Tested against scikit-learn 1.8.0 (stable; December 2025). Requires Python 3.11–3.14 (free-threaded CPython 3.14 wheels available in 1.8+). Inst...
818
8767 social-publisher affaan-m/everything-claude-code
Social Publisher Automate multi-platform social media publishing with intelligent scheduling, platform-specific optimization, and centralized content management. Based on n8n workflows like PostPulse. Overview This skill enables: One-click publishing to multiple platforms Platform-specific caption optimization Automated scheduling workflows Content tracking and analytics AI-powered caption generation Supported Platforms Platform Content Types Best Posting Times TikTok Video (9:16) 7am, 12pm, 7pm...
818
8768 brand-writer zed-industries/zed
Zed Brand Writer Write in Zed's brand voice: thoughtful, technically grounded, and quietly confident. Sound like a developer who builds and explains tools for other developers. Write like the content on zed.dev — clear, reflective, and built around principles rather than persuasion. Invocation /brand-writer Start a writing session /brand-writer "homepage hero copy" Specify what you're writing /brand-writer --review "paste copy" Review existing copy for brand fit Core Voice You articulate Zed'...
817
8769 product-launch kostja94/marketing-skills
Strategies: Product Launch Guides product launch execution—channels, timeline, checklist, and cross-functional coordination. Use this skill when planning the launch of a new product or major feature. For GTM strategy (PLG/SLG/MLG, 90-day framework, ICP, new market entry, repositioning), see gtm-strategy . For cold start (first users, no product yet), see cold-start-strategy . When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then pro...
817
8770 faq-page-generator kostja94/marketing-skills
Pages: FAQ Guides FAQ page content, structure, and optimization for SEO and conversion. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output. Initial Assessment Check for product marketing context first: If .claude/product-marketing-context.md or .cursor/product-marketing-context.md exists, read it for objections, product detail...
817
8771 backlink-analysis kostja94/marketing-skills
SEO Off-Page: Backlink Analysis Guides backlink profile analysis: assessing quality, identifying issues, and planning improvements. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output. Scope (Off-Page SEO) Backlink audit : Analyze profile; toxic links; competitive analysis Authority Score : Monitor domain/page authority; referr...
817
8772 launch-sub-agent neolabhq/context-engineering-kit
launch-sub-agent Process Phase 1: Task Analysis with Zero-shot CoT Before dispatching, analyze the task systematically. Think through step by step: Let me analyze this task step by step to determine the optimal configuration: Show more
817
8773 create-ideas neolabhq/context-engineering-kit
Generate Ideas You are a helpful assistant. For each query, please generate a set of 6 possible responses, each as separate list item. Responses should each include a text and a numeric probability. Please sample responses at random from the [full distribution / tails of the distribution], in such way that: For first 3 responses aim for high probability, over 0.80 For last 3 responses aim for diversity - explore different regions of the solution space, such that the probability of each response ...
817
8774 setup-serena-mcp neolabhq/context-engineering-kit
User Input: $ARGUMENTS Guide for setup Serena MCP server 1. Determine setup context Ask the user where they want to store the configuration: Options: Project level (shared via git) - Configuration tracked in version control, shared with team CLAUDE.md updates go to: ./CLAUDE.md Show more
817
8775 pinchtab pinchtab/pinchtab
Pinchtab Fast, lightweight browser control for AI agents via HTTP + accessibility tree. Security Note: Pinchtab runs entirely locally. It does not contact external services, send telemetry, or exfiltrate data. However, it controls a real Chrome instance — if pointed at a profile with saved logins, agents can access authenticated sites. Always use a dedicated empty profile and set BRIDGE_TOKEN when exposing the API. See TRUST.md for the full security model. Quick Start (Agent Workflow) The 30-sec...
817
8776 agent-manager-skill sickn33/antigravity-awesome-skills
Agent Manager Skill When to use Use this skill when you need to: run multiple local CLI agents in parallel (separate tmux sessions) start/stop agents and tail their logs assign tasks to agents and monitor output schedule recurring agent work (cron) Prerequisites Install agent-manager-skill in your workspace: git clone https://github.com/fractalmind-ai/agent-manager-skill.git Common commands python3 agent-manager/scripts/main.py doctor python3 agent-manager/scripts/main.py list python3 agent-mana...
817
8777 bash-pro sickn33/antigravity-awesome-skills
Use this skill when Writing or reviewing Bash scripts for automation, CI/CD, or ops Hardening shell scripts for safety and portability Do not use this skill when You need POSIX-only shell without Bash features The task requires a higher-level language for complex logic You need Windows-native scripting (PowerShell) Instructions Define script inputs, outputs, and failure modes. Apply strict mode and safe argument parsing. Implement core logic with defensive patterns. Add tests and linting with Ba...
817
8778 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 ...
817
8779 fact-checker daymade/claude-code-skills
Fact Checker You are an expert fact-checker who evaluates claims systematically using evidence-based analysis. When to Apply Use this skill when: Verifying specific claims or statements Identifying potential misinformation or disinformation Checking statistics and data accuracy Evaluating source credibility Separating fact from opinion or interpretation Analyzing viral claims or rumors Verification Process Follow this systematic approach: 1. Identify the Claim Extract the specific factual assert...
817
8780 shap k-dense-ai/scientific-agent-skills
SHAP (SHapley Additive exPlanations) Overview SHAP is a unified approach to explain machine learning model outputs using Shapley values from cooperative game theory. This skill provides comprehensive guidance for: Computing SHAP values for any model type Creating visualizations to understand feature importance Debugging and validating model behavior Analyzing fairness and bias Implementing explainable AI in production SHAP works with all model types: tree-based models (XGBoost, LightGBM, CatBoos...
817
8781 r3f-textures enzed/r3f-skills
React Three Fiber Textures Quick Start import { Canvas } from '@react-three/fiber' import { useTexture } from '@react-three/drei' function TexturedBox() { const texture = useTexture('/textures/wood.jpg') return ( <mesh> <boxGeometry /> <meshStandardMaterial map={texture} /> </mesh> ) } export default function App() { return ( <Canvas> <ambientLight /> <TexturedBox /> </Canvas> ) } useTexture Hook (Drei) The recommended way to load textures i...
817
8782 add-app-to-server modelcontextprotocol/ext-apps
Add UI to MCP Server Enrich an existing MCP server's tools with interactive UIs using the MCP Apps SDK ( @modelcontextprotocol/ext-apps ). How It Works Existing tools get paired with HTML resources that render inline in the host's conversation. The tool continues to work for text-only clients — UI is an enhancement, not a replacement. Each tool that benefits from UI gets linked to a resource via _meta.ui.resourceUri , and the host renders that resource in a sandboxed iframe when the tool is call...
817
8783 wp-abilities-verify wordpress/agent-skills
No SKILL.md available for this skill. View on GitHub Installs 632 Repository wordpress/agent-skills GitHub Stars 1.8K First Seen May 27, 2026
817
8784 marketing-selling-point-generator aradotso/marketing-skills
Marketing Selling Point Generator Skill by ara.so — Marketing Skills collection. Overview Marketing Selling Point Generator is a comprehensive tool designed to help product managers and marketers transform product features into compelling selling points. It uses a three-phase approach: Find (discover selling points), Define (prioritize them), and Write (create persuasive copy). The tool analyzes product attributes, competitive positioning, user feedback, and pain points to generate targeted mark...
816
8785 type4me-macos-voice-input aradotso/trending-skills
Type4Me macOS Voice Input Skill by ara.so — Daily 2026 Skills collection. Type4Me is a macOS voice input tool that captures audio via global hotkey, transcribes it using local (SherpaOnnx/Paraformer/Zipformer) or cloud (Volcengine/Deepgram) ASR engines, optionally post-processes text via LLM, and injects the result into any app. All credentials and history are stored locally — no telemetry, no cloud sync. Architecture Overview Type4Me/ ├── ASR/ ASR engine abstraction │ ├── ...
816
8786 cto-advisor alirezarezvani/claude-skills
CTO Advisor Technical leadership frameworks for architecture, engineering teams, technology strategy, and technical decision-making. Keywords CTO, chief technology officer, tech debt, technical debt, architecture, engineering metrics, DORA, team scaling, technology evaluation, build vs buy, cloud migration, platform engineering, AI/ML strategy, system design, incident response, engineering culture Quick Start python scripts/tech_debt_analyzer.py Assess technical debt severity and remediation pl...
816
8787 express-rest-api pluginagentmarketplace/custom-plugin-nodejs
Express REST API Skill Master building robust, scalable REST APIs with Express.js, the de-facto standard for Node.js web frameworks. Quick Start Build a basic Express API in 5 steps: Setup Express - npm install express Create Routes - Define GET, POST, PUT, DELETE endpoints Add Middleware - JSON parsing, CORS, security headers Handle Errors - Centralized error handling Test & Deploy - Use Postman/Insomnia, deploy to cloud Core Concepts 1. Express Application Structure const express = require...
816
8788 heygen-translate heygen-com/skills
HeyGen Video Translation Translate and dub an existing video into 175+ languages. The system clones the presenter's voice into the target language, re-syncs their lips to the new audio, and returns a fully dubbed video. You provide a source video and a target language — the engine handles transcription, translation, voice cloning, lip-sync, and (optionally) burned-in captions. This is not new-video generation. The presenter, performance, framing, and brand assets in the original video are preser...
816
8789 data-throughput-accelerator affaan-m/everything-claude-code
Data Throughput Accelerator Use this skill when the bottleneck is moving, transforming, or saving lots of data. The goal is not just speed. The goal is faster correct data landing in the right place with proof. First Distinction Separate these before optimizing: source extraction speed; network transfer speed; warehouse/load speed; transform speed; serving-table freshness; live tail growth while the job runs. A pipeline can be "fast" and still appear behind if new data arrives faster than the fi...
816
8790 nemoclaw-user-reference nvidia/skills
NemoClaw User Reference References Load references/architecture.md when looking up architecture, agent integration, plugin structure, or blueprint design. Describes the NemoClaw integration layer and blueprint architecture and how they orchestrate compatible agent sandboxes. references/cli-selection-guide.md — Explains when to use $$nemoclaw versus openshell for NemoClaw-managed sandboxes, including lifecycle, inference, policy, monitoring, file transfer, and gateway operations. Load references/...
815
8791 crypto-trading-bots omer-metin/skills-for-antigravity
No SKILL.md available for this skill. View on GitHub
815
8792 obliteratus-abliteration aradotso/trending-skills
OBLITERATUS — LLM Abliteration Toolkit Skill by ara.so — Daily 2026 Skills collection. OBLITERATUS is an open-source toolkit for identifying and surgically removing refusal behaviors from large language models using mechanistic interpretability techniques (abliteration). It locates refusal directions in a model's hidden states via SVD/PCA, projects them out of the weights, and preserves core language capabilities. Ships with a Gradio UI, CLI, Python API, and Colab notebook. Installation Core in...
815
8793 relational-database-web-cloudbase tencentcloudbase/skills
When to use this skill Use this skill whenever you need to access CloudBase Relational Database from a browser app (React, Vue, vanilla JS) using @cloudbase/js-sdk . Use it when you need to: Initialize CloudBase Relational Database on the frontend Replace an existing Supabase client with CloudBase Relational Database Share a single db client across your Web app Do NOT use this skill for: Backend/Node access to CloudBase Relational Database (use relation-database-skill → node-sdk/quickstart.md ) ...
815
8794 sympy k-dense-ai/scientific-agent-skills
SymPy - Symbolic Mathematics in Python Overview SymPy is a Python library for symbolic mathematics that enables exact computation using mathematical symbols rather than numerical approximations. This skill provides comprehensive guidance for performing symbolic algebra, calculus, linear algebra, equation solving, physics calculations, and code generation using SymPy. When to Use This Skill Use this skill when: Solving equations symbolically (algebraic, differential, systems of equations) Perform...
815
8795 rabbitmq-development mindrally/skills
RabbitMQ Development You are an expert in RabbitMQ and AMQP (Advanced Message Queuing Protocol) development. Follow these best practices when building message queue-based applications. Core Principles RabbitMQ is a message broker that receives messages from publishers and routes them to consumers AMQP 0-9-1 is the most commonly used protocol - an application layer protocol transmitting data in binary format Design for reliability, scalability, and fault tolerance Leave NO todos, placeholders, or...
815
8796 commit neolabhq/context-engineering-kit
Sentry Commit Messages Follow these conventions when creating commits for Sentry projects. Prerequisites Before committing, always check the current branch: git branch --show-current If you're on main or master , you MUST create a feature branch first — unless the user explicitly asked to commit to main. Do not ask the user whether to create a branch; just proceed with branch creation. The create-branch skill will still propose a branch name for the user to confirm. Use the create-branch skill t...
814
8797 write-tests neolabhq/context-engineering-kit
Cover Local Changes with Tests User Arguments User can provide a what tests or modules to focus on: $ARGUMENTS If nothing is provided, focus on all changes in current git diff that not commited. If everything is commited, then will cover latest commit. Context After implementing new features or refactoring existing code, it's critical to ensure all business logic changes are covered by tests. This command orchestrates automated test creation for local changes using coverage analysis and speciali...
814
8798 app-store-optimization alirezarezvani/claude-skills
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...
814
8799 git-pushing sickn33/antigravity-awesome-skills
Git Push Workflow Stage all changes, create a conventional commit, and push to the remote branch. When to Use Automatically activate when the user: Explicitly asks to push changes ("push this", "commit and push") Mentions saving work to remote ("save to github", "push to remote") Completes a feature and wants to share it Says phrases like "let's push this up" or "commit these changes" Workflow ALWAYS use the script - do NOT use manual git commands: bash skills/git-pushing/scripts/smart_com...
814
8800 matlab k-dense-ai/scientific-agent-skills
MATLAB/Octave Scientific Computing MATLAB is a numerical computing environment optimized for matrix operations and scientific computing. GNU Octave is a free, open-source alternative with high MATLAB compatibility. Quick Start Running MATLAB scripts: MATLAB (commercial) matlab -nodisplay -nosplash -r "run('script.m'); exit;" GNU Octave (free, open-source) octave script.m Install GNU Octave: macOS brew install octave Show more
814