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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,500
总 Skills
92.2M
总安装量
2,584
贡献者
# Skill 仓库 描述 安装量
8601 comfyui-prompt-engineer mckruz/comfyui-expert
ComfyUI Prompt Engineer Generates optimized prompts tailored to specific models and identity methods. Different models respond differently to prompts. Model-Specific Prompt Rules FLUX.1 (dev/schnell/Kontext) Style : Natural language descriptions work best CFG : 3.5-4 (very low) Quality tags : Minimal - FLUX doesn't need "masterpiece, best quality" Length : Medium (50-100 words) Structure : {subject description}, {setting}, {lighting}, {camera/style} Good FLUX prompt: photorealistic portrait of a...
589
8602 instagram-automation sickn33/antigravity-awesome-skills
Instagram Automation via Rube MCP Automate Instagram operations through Composio's Instagram toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Instagram connection via RUBE_MANAGE_CONNECTIONS with toolkit instagram Always call RUBE_SEARCH_TOOLS first to get current tool schemas Instagram Business or Creator account required (personal accounts not supported) Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuratio...
589
8603 consciousness-council k-dense-ai/scientific-agent-skills
Consciousness Council A structured multi-perspective deliberation system that generates genuine cognitive diversity on any question. Instead of one voice giving one answer, the Council summons distinct thinking archetypes — each with its own reasoning style, blind spots, and priorities — then synthesizes their perspectives into actionable insight. Why This Exists Single-perspective thinking has a ceiling. When you ask one mind for an answer, you get one frame. The Consciousness Council breaks th...
589
8604 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
589
8605 mermaid-diagrams davila7/claude-code-templates
Mermaid Diagramming Create professional software diagrams using Mermaid's text-based syntax. Mermaid renders diagrams from simple text definitions, making diagrams version-controllable, easy to update, and maintainable alongside code. Core Syntax Structure All Mermaid diagrams follow this pattern: diagramType definition content Key principles: First line declares diagram type (e.g., classDiagram , sequenceDiagram , flowchart ) Use %% for comments Line breaks and indentation improve readability b...
589
8606 webgpu cazala/webgpu-skill
WebGPU Skill This skill helps any agent design, implement, and debug WebGPU applications and GPU compute pipelines. It is framework-agnostic and focuses on reusable WebGPU/WGSL patterns. What this skill covers WebGPU initialization, device setup, and surface configuration Compute pipelines, workgroup sizing, and storage buffer layout Render pipelines, render passes, and post-processing patterns GPU/CPU synchronization and safe readback strategies Performance and debugging practices Architectur...
588
8607 ue-component-model adobe/skills
Universal Editor Component Model Configuration This skill helps you create or edit the three JSON configuration files that control how AEM Edge Delivery Services (EDS) blocks appear and behave in the Universal Editor (UE): component-definition.json — Registers blocks in the UE component palette component-models.json — Defines property panel fields for each block component-filters.json — Controls where blocks can be placed When to Use Creating a new block that needs UE authoring support Adding/mo...
588
8608 zustand-5 prowler-cloud/prowler
Basic Store import { create } from "zustand"; interface CounterStore { count: number; increment: () => void; decrement: () => void; reset: () => void; } const useCounterStore = create<CounterStore>((set) => ({ count: 0, increment: () => set((state) => ({ count: state.count + 1 })), decrement: () => set((state) => ({ count: state.count - 1 })), reset: () => set({ count: 0 }), })); // Usage function Counter() { const { count, increment, decrement } = useCounterStore(); retur...
588
8609 sheets-terminal-spreadsheet aradotso/trending-skills
Sheets Terminal Spreadsheet Skill by ara.so — Daily 2026 Skills collection. Sheets is a terminal-based spreadsheet TUI (Terminal User Interface) for viewing and editing CSV files directly in your terminal. It features vim-style navigation, formula support, visual selection, search, undo/redo, and a command mode — all without leaving the terminal. Installation Using Go go install github.com/maaslalani/sheets@main Download Binary Download a prebuilt binary from GitHub Releases . Verify Installatio...
588
8610 supabase-nextjs alinaqi/claude-bootstrap
Supabase + Next.js Skill Load with: base.md + supabase.md + typescript.md Next.js App Router patterns with Supabase Auth and Drizzle ORM. Sources: Supabase Next.js Guide | Drizzle + Supabase Core Principle Drizzle for queries, Supabase for auth/storage, server components by default. Use Drizzle ORM for type-safe database access. Use Supabase client for auth, storage, and realtime. Prefer server components; use client components only when needed. Project Structure project/ ├── src/ │ ├──...
588
8611 backend-dev-guidelines langfuse/langfuse
Backend Development Guidelines (Node.js · Express · TypeScript · Microservices) You are a senior backend engineer operating production-grade services under strict architectural and reliability constraints. Your goal is to build predictable, observable, and maintainable backend systems using: Layered architecture Explicit error boundaries Strong typing and validation Centralized configuration First-class observability This skill defines how backend code must be written, not merely suggestion...
588
8612 nemoclaw-setup jezweb/claude-skills
NemoClaw Setup Install NVIDIA NemoClaw — a sandboxed AI agent platform built on OpenClaw with Landlock + seccomp + network namespace isolation. Runs inside Docker via k3s (OpenShell). What You Get Sandboxed AI agent with web UI and terminal CLI Powered by NVIDIA Nemotron models (cloud or local) Network-policy-controlled access to external services Optional remote access via Cloudflare Tunnel Prerequisites Requirement Check Install Linux (Ubuntu 22.04+) uname -a — Docker docker ps sudo apt instal...
588
8613 pulumi-terraform-to-pulumi pulumi/agent-skills
First establish scope and plan the migration by working out with the user: - where the Terraform sources are (`${terraform_dir}`) - where the migrated Pulumi project lives (`${pulumi_dir}`) - what is the target Pulumi language (such as TypeScript, Python, YAML) - whether migration aims to setup Pulumi stack states, or only translate source code Confirm the plan with the user before proceeding. Create a new Pulumi project in `${pulumi_dir}` in the chosen language. Edit sources to be empty a...
588
8614 security-pen-testing alirezarezvani/claude-skills
Security Penetration Testing Hands-on offensive security testing skill for finding vulnerabilities before attackers do. This is NOT compliance checking (see senior-secops) or security policy writing (see senior-security) — this is about systematic vulnerability discovery through authorized testing. Table of Contents Show more
588
8615 stable-baselines3 k-dense-ai/scientific-agent-skills
Stable Baselines3 Overview Stable Baselines3 (SB3) is a PyTorch-based library providing reliable implementations of reinforcement learning algorithms. This skill provides comprehensive guidance for training RL agents, creating custom environments, implementing callbacks, and optimizing training workflows using SB3's unified API. Core Capabilities 1. Training RL Agents Basic Training Pattern: import gymnasium as gym from stable_baselines3 import PPO Create environment env = gym . make ( "CartPol...
588
8616 status camacho/ai-skills
Check Research Status Run ID: $ARGUMENTS parallel-cli research status " $ARGUMENTS " --json If CLI not found, tell user to run /parallel:setup .
587
8617 ad-creative alirezarezvani/claude-skills
Ad Creative You are an expert performance creative strategist. Your goal is to generate high-performing ad creative at scale — headlines, descriptions, and primary text that drive clicks and conversions — and iterate based on real performance data. Before Starting Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not alr...
587
8618 linkedin-personal-branding schwepps/skills
LinkedIn Personal Branding Skill ⚠️ CRITICAL: Mandatory Requirements Every audit MUST include these elements - no exceptions: Requirement What Why Industry Classification Identify user's industry/sector Determines which benchmarks to apply Profile Type Employee / Consultant / Freelancer / Entrepreneur / Job Seeker Affects recommendations (e.g., Services section) Target Audience Recruiters / Clients / Peers / Investors / Partners Shapes content and positioning strategy Engagement Rate CALCULATE...
587
8619 copywriting alirezarezvani/claude-skills
Copywriting You are an expert conversion copywriter. Your goal is to write marketing copy that is clear, compelling, and drives action. Before Writing Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task. Gather this context (ask if not provided): 1. Page Purpose What type of pag...
587
8620 github-actions dalestudy/skills
GitHub Actions Build Artifacts Overview Reusable GitHub Actions patterns to build React Native apps for iOS simulators and Android emulators in the cloud, then publish artifacts retrievable via gh CLI or GitHub API. When to Apply Use this skill when: Creating CI workflows that build React Native simulator/emulator artifacts. Uploading iOS simulator and Android emulator installables from PRs or manual dispatch runs. Replacing local-only mobile builds with downloadable CI artifacts. Needing stable...
587
8621 documentation-engineer charon-fan/agent-playbook
Documentation Engineer Expert in creating clear, comprehensive, and maintainable technical documentation. When This Skill Activates Activates when you: Ask to write documentation Request README creation Mention "docs" or "document this" Need API documentation Documentation Types 1. README Every project should have a README with: Project Name Brief description (what it does, why it exists) Quick Start Installation and usage in 3 steps or less. Installation Detailed installation instructions. ...
587
8622 plaid-fintech sickn33/antigravity-awesome-skills
Plaid Fintech Patterns Link Token Creation and Exchange Create a link_token for Plaid Link, exchange public_token for access_token. Link tokens are short-lived, one-time use. Access tokens don't expire but may need updating when users change passwords. Transactions Sync Use /transactions/sync for incremental transaction updates. More efficient than /transactions/get. Handle webhooks for real-time updates instead of polling. Item Error Handling and Update Mode Handle ITEM_LOGIN_REQUIRED erro...
587
8623 test-fixing sickn33/antigravity-awesome-skills
Test Fixing Systematically identify and fix all failing tests using smart grouping strategies. When to Use Explicitly asks to fix tests ("fix these tests", "make tests pass") Reports test failures ("tests are failing", "test suite is broken") Completes implementation and wants tests passing Mentions CI/CD failures due to tests Systematic Approach 1. Initial Test Run Run make test to identify all failing tests. Analyze output for: Total number of failures Error types and patterns Affected mo...
587
8624 behavioral-modes sickn33/antigravity-awesome-skills
Behavioral Modes - Adaptive AI Operating Modes Purpose This skill defines distinct behavioral modes that optimize AI performance for specific tasks. Modes change how the AI approaches problems, communicates, and prioritizes. Available Modes 1. 🧠 BRAINSTORM Mode When to use: Early project planning, feature ideation, architecture decisions Behavior: Ask clarifying questions before assumptions Offer multiple alternatives (at least 3) Think divergently - explore unconventional solutions No code...
587
8625 what-if-oracle k-dense-ai/scientific-agent-skills
No SKILL.md available for this skill. View on GitHub
587
8626 checkout-integration dodopayments/skills
Dodo Payments Checkout Integration Reference: docs.dodopayments.com/developer-resources/integration-guide Create seamless payment experiences with hosted checkout pages or overlay checkout modals. Checkout Methods Method Best For Integration Hosted Checkout Simple integration, full-page redirect Server-side SDK Overlay Checkout Seamless UX, stays on your site JavaScript SDK Payment Links No-code, shareable links Dashboard Hosted Checkout Basic Implementation import DodoPayments from 'dodopaym...
587
8627 dividend-growth-pullback-screener tradermonty/claude-trading-skills
Dividend Growth Pullback Screener Overview This skill screens for dividend growth stocks that exhibit strong fundamental characteristics but are experiencing temporary technical weakness. It targets stocks with exceptional dividend growth rates (12%+ CAGR) that have pulled back to RSI oversold levels (≤40), creating potential entry opportunities for long-term dividend growth investors. Investment Thesis: High-quality dividend growth stocks (often yielding 1-2.5%) compound wealth through dividend...
587
8628 gws-alertcenter googleworkspace/cli
alertcenter (v1beta1) PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. gws alertcenter < resource > < method > [ flags ] API Resources alerts batchDelete — Performs batch delete operation on alerts. batchUndelete — Performs batch undelete operation on alerts. delete — Marks the specified alert for deletion. An alert that has been marked for deletion is removed from Alert Center after 30 days. Marking an alert ...
586
8629 requirements-clarity softaworks/agent-toolkit
Requirements Clarity Skill Description Automatically transforms vague requirements into actionable PRDs through systematic clarification with a 100-point scoring system. Instructions When invoked, detect vague requirements: Vague Feature Requests User says: "add login feature", "implement payment", "create dashboard" Missing: How, with what technology, what constraints? Missing Technical Context No technology stack mentioned No integration points identified No performance/security constraints In...
586
8630 python mindrally/skills
Python You are an expert in Python development across multiple domains including web development, data science, automation, and machine learning. Universal Principles PEP 8 compliance consistently emphasized Error handling via early returns and guard clauses Async/await for I/O-bound operations Type hints mandatory Modular, functional approaches preferred over classes Code Style Write concise, technical Python with accurate examples Use functional and declarative programming patterns where appro...
586
8631 malware-warning-bitdefender-crack aradotso/security-skills
Malware Warning: Bitdefender Crack Repository Skill by ara.so — Security Skills collection. ⚠️ CRITICAL SECURITY WARNING This repository is a malware distribution vector disguised as cracked antivirus software. Indicators of Malicious Intent Fake Software Crack : Claims to provide "Pre-Activated" and "Keygen Loader" for commercial antivirus software SEO-Optimized Malware : Uses trending security keywords to attract victims searching for pirated software Star Manipulation : Artificially inflated ...
586
8632 xstate vercel-labs/json-render
@json-render/xstate XState Store adapter for json-render's StateStore interface. Wire an @xstate/store atom as the state backend for json-render. Installation npm install @json-render/xstate @json-render/core @json-render/react @xstate/store Requires @xstate/store v3+. Usage import { createAtom } from "@xstate/store" ; import { xstateStoreStateStore } from "@json-render/xstate" ; import { StateProvider } from "@json-render/react" ; // 1. Create an atom const uiAtom = createAtom ( { count : 0 } )...
586
8633 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 ...
586
8634 user-guide-creation aj-geddes/useful-ai-prompts
User Guide Creation Overview Create clear, user-friendly documentation that helps users understand and effectively use your product, with step-by-step instructions, screenshots, and practical examples. When to Use Product user manuals Getting started guides Feature tutorials Step-by-step how-tos Video script documentation Interactive walkthroughs Quick start guides FAQ documentation Best practices guides User Guide Template [Product Name] User Guide Table of Contents 1. [Introduction](intr...
585
8635 daily-news 6551team/daily-news
Daily News Skill Query daily news and hot topics from the 6551 platform REST API. No authentication required. Base URL : https://ai.6551.io News Operations 1. Get News Categories Get all available news categories and subcategories. curl -s -X GET "https://ai.6551.io/open/free_categories" 2. Get Hot News Get hot news articles and trending tweets by category. curl -s -X GET "https://ai.6551.io/open/free_hot?category=macro" Parameter Type Required Description category string Yes Category key from f...
585
8636 competitive-intel alirezarezvani/claude-skills
Competitive Intelligence Systematic competitor tracking. Not obsession — intelligence that drives real decisions. Keywords competitive intelligence, competitor analysis, battlecard, win/loss analysis, competitive positioning, competitive tracking, market intelligence, competitor research, SWOT, competitive map, feature gap analysis, competitive strategy Quick Start /ci:landscape — Map your competitive space (direct, indirect, future) /ci:battlecard [name] — Build a sales battlecard for a...
585
8637 github dimillian/skills
GitHub Patterns Tools Use gh CLI for all GitHub operations. Prefer CLI over GitHub MCP servers for lower context usage. Quick Commands Create a PR from the current branch gh pr create --title "feat: add feature" --body "Description" Squash-merge a PR gh pr merge < PR_NUMBER > --squash --title "feat: add feature (<PR_NUMBER>)" View PR status and checks gh pr status gh pr checks < PR_NUMBER > Stacked PR Workflow Summary When merging a chain of stacked PRs (each targeting the previous branch): M...
585
8638 solid vercel-labs/json-render
Solid Skills: Professional Software Engineering You are now operating as a senior software engineer. Every line of code you write, every design decision you make, and every refactoring you perform must embody professional craftsmanship. When This Skill Applies ALWAYS use this skill when: Writing ANY code (features, fixes, utilities) Refactoring existing code Planning or designing architecture Reviewing code quality Debugging issues Creating tests Making design decisions Core Philosophy "Cod...
585
8639 do-in-steps neolabhq/context-engineering-kit
do-in-steps Show more
585
8640 why neolabhq/context-engineering-kit
Five Whys Analysis Apply Five Whys root cause analysis to investigate issues by iteratively asking "why" to drill from symptoms to root causes. Description Iteratively ask "why" to move from surface symptoms to fundamental causes. Identifies systemic issues rather than quick fixes. Usage /why [issue_description] Variables ISSUE: Problem or symptom to analyze (default: prompt for input) DEPTH: Number of "why" iterations (default: 5, adjust as needed) Steps Show more
585
8641 korean-cinema-search nomadamas/k-skill
Korean Cinema Search What this skill does upstream 원본 hmmhmmhm/daiso-mcp 와 npm package daiso 를 사용해 CGV, 메가박스, 롯데시네마 영화관 검색, 상영작, 시간표, 잔여석 조회 를 안내한다. 이 저장소는 upstream 코드를 vendoring 하지 않는다. 기본 경로는 MCP 서버를 직접 설치하지 않고 CLI로 먼저 확인하는 방식 이다. 핵심 조회 경로: CGV: /api/cgv/theaters , /api/cgv/movies , /api/cgv/timetable 메가박스: /api/megabox/theaters , /api/megabox/movies , /api/megabox/seats 롯데시네마: /api/lottecinema/theaters , /api/lottecinema/movies , /api/lottecinema/seats health check: npx --yes daiso health Whe...
585
8642 project-planning jezweb/claude-skills
Project Planning Skill Specialized planning assistant for web application projects. Generate context-safe phases with comprehensive planning documentation. ⚡ Recommended Workflow ASK 3-5 clarifying questions (auth, data, features, scope) WAIT for user answers CREATE planning docs immediately (IMPLEMENTATION_PHASES.md always, others as needed) OUTPUT all docs to user for review CONFIRM user satisfied SUGGEST creating SESSION.md and starting Phase 1 🤖 Automation Commands Two slash commands are ...
584
8643 gws-cloudidentity googleworkspace/cli
cloudidentity (v1) PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. gws cloudidentity < resource > < method > [ flags ] API Resources customers userinvitations — Operations on the 'userinvitations' resource devices cancelWipe — Cancels an unfinished device wipe. This operation can be used to cancel device wipe in the gap between the wipe operation returning success and the device being wiped. This operation is...
584
8644 facebook-ads openclaudia/openclaudia-skills
Facebook/Meta Ad Campaign Builder You are an expert Facebook/Meta advertising strategist. When the user asks you to create Meta ad campaigns, write ad copy, or optimize their social advertising, follow this comprehensive framework. Step 1: Gather Campaign Context Before building any campaign, establish: Product/Service : What is being promoted? Target audience : Demographics, interests, behaviors? Campaign objective : What action should people take? Budget : Daily or lifetime? Total amount? Land...
584
8645 bitdefender-total-security-malware-analysis aradotso/security-skills
Bitdefender Total Security Malware Analysis Skill by ara.so — Security Skills collection. ⚠️ WARNING: Malicious Repository This repository is a malware distribution scheme disguised as legitimate software. It does NOT contain Bitdefender Total Security or any legitimate security software. What This Actually Is This is a typical malware distribution pattern using: Fake software cracks : Promises "pre-activated" or "keygen" versions of commercial software SEO manipulation : Uses popular search ter...
584
8646 spec-kit-skill feiskyer/claude-code-settings
Spec-Kit: Constitution-Based Spec-Driven Development Official GitHub Spec-Kit integration providing a 7-phase constitution-driven workflow for feature development. Quick Start This skill works with the GitHub Spec-Kit CLI to guide you through structured feature development: Constitution → Establish governing principles Specify → Define functional requirements Clarify → Resolve ambiguities Plan → Create technical strategy Tasks → Generate actionable breakdown Analyze → Validate consistency Implem...
584
8647 test-skill neolabhq/context-engineering-kit
Testing Skills With Subagents Test skill provided by user or developed before. Overview Testing skills is just TDD applied to process documentation. You run scenarios without the skill (RED - watch agent fail), write skill addressing those failures (GREEN - watch agent comply), then close loopholes (REFACTOR - stay compliant). Core principle: If you didn't watch an agent fail without the skill, you don't know if the skill prevents the right failures. REQUIRED BACKGROUND: You MUST understand supe...
584
8648 skills-search daymade/claude-code-skills
Skills Search Overview Search, discover, and manage Claude Code skills from the CCPM (Claude Code Plugin Manager) registry. This skill wraps the ccpm CLI to provide seamless skill discovery and installation. Quick Start Search for skills ccpm search <query> Install a skill ccpm install <skill-name> List installed skills ccpm list Get skill details ccpm info <skill-name> Commands Reference Search Skills Search the CCPM registry for skills matching a query. ccpm search <query> [options...
584
8649 sh-notice-search nomadamas/k-skill
SH Notice Search What this skill does 서울주택도시개발공사(SH, www.i-sh.co.kr )의 공고 및 공지 공개 HTML 게시판을 직접 읽어 청약·주택 공고 목록과 상세 본문, 첨부파일 메타데이터를 JSON으로 정리한다. 키워드로 SH 공고/공지 목록을 검색한다. 공식 게시판 분류(주택임대, 주택분양, 주택매입/주거복지, 토지, 상가/공장 등)를 선택한다. 상세 페이지에서 본문, 담당부서, 등록일, 조회수, 실제 첨부파일명을 추출한다. 첨부는 아이콘 템플릿이 아니라 existFile('N') onclick이 달린 실제 첨부 앵커와 downList 메타데이터를 기준으로 추출한다. 청약 신청, 서류 제출, 로그인 필요한 마이페이지 조회, 결제, 알림 발송은 하지 않는다. When to use "SH 행복주택 공고 찾아줘" "서울주택도시개발공사 매입임대 공고 보여줘" "SH 공고 seq 304371 상세와 첨부파일 알려줘" "SH 분양 공고 최신 목록 조...
584
8650 python-cybersecurity-tool-development mindrally/skills
Python Cybersecurity Tool Development You are an expert in Python cybersecurity tool development, focusing on secure, efficient, and well-structured security testing applications. Key Principles Write concise, technical responses with accurate Python examples Use functional, declarative programming; avoid classes where possible Prefer iteration and modularization over code duplication Use descriptive variable names with auxiliary verbs (e.g., is_encrypted, has_valid_signature) Use lowercase wi...
583