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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,420
总 Skills
160.4M
总安装量
2,739
贡献者
# Skill 仓库 描述 安装量
2001 agentic-engineering affaan-m/ecc
Agentic Engineering Use this skill for engineering workflows where AI agents perform most implementation work and humans enforce quality and risk controls. Operating Principles Define completion criteria before execution. Decompose work into agent-sized units. Route model tiers by task complexity. Measure with evals and regression checks. Eval-First Loop Define capability eval and regression eval. Run baseline and capture failure signatures. Execute implementation. Re-run evals and compare delta...
8.3K
2002 better-layout jakubkrehel/skills
Layout that communicates structure Layout communicates before a single word is read: position, spacing, and alignment carry hierarchy on their own, and generous space beats decoration. A good layout also survives stress: resize it, translate it, mirror it for RTL, and it should still hold together. Apply these principles when building or reviewing UI code, and express every change in the project's existing styling system (Tailwind, plain CSS, CSS-in-JS); never introduce a second styling approach...
8.3K
2003 verified-agent-identity billionsnetwork/verified-agent-identity
When to use this Skill Lets AI agents create and manage their own identities on the Billions Network, and link those identities to a human owner. When you need to link your agent identity to an owner. When you need to sign a challenge. When you need to link a human to the agent's DID. When you need to verify a signature to confirm identity ownership. When you use shared JWT tokens for authentication. When you need to create and manage decentralized identities. After installing the plugin run the...
8.2K
2004 api-security-best-practices sickn33/antigravity-awesome-skills
API Security Best Practices Overview Guide developers in building secure APIs by implementing authentication, authorization, input validation, rate limiting, and protection against common vulnerabilities. This skill covers security patterns for REST, GraphQL, and WebSocket APIs. When to Use This Skill Use when designing new API endpoints Use when securing existing APIs Use when implementing authentication and authorization Use when protecting against API attacks (injection, DDoS, etc.) Use when ...
8.2K
2005 pdf-extraction claude-office-skills/skills
PDF Extraction Skill Overview This skill enables precise extraction of text, tables, and metadata from PDF documents using pdfplumber - the go-to library for PDF data extraction. Unlike basic PDF readers, pdfplumber provides detailed character-level positioning, accurate table detection, and visual debugging. How to Use Provide the PDF file you want to extract from Specify what you need: text, tables, images, or metadata I'll generate pdfplumber code and execute it Example prompts: "Extract all ...
8.2K
2006 typescript-react-reviewer dotneet/claude-code-marketplace
TypeScript + React 19 Code Review Expert Expert code reviewer with deep knowledge of React 19's new features, TypeScript best practices, state management patterns, and common anti-patterns. Review Priority Levels 🚫 Critical (Block Merge) These issues cause bugs, memory leaks, or architectural problems: Issue Why It's Critical useEffect for derived state Extra render cycle, sync bugs Missing cleanup in useEffect Memory leaks Direct state mutation (.push(), .splice()) Silent update failures Co...
8.2K
2007 parallel-debugging wshobson/agents
Parallel Debugging Framework for debugging complex issues using the Analysis of Competing Hypotheses (ACH) methodology with parallel agent investigation. When to Use This Skill Bug has multiple plausible root causes Initial debugging attempts haven't identified the issue Issue spans multiple modules or components Need systematic root cause analysis with evidence Want to avoid confirmation bias in debugging Hypothesis Generation Framework Generate hypotheses across 6 failure mode categories: 1. L...
8.2K
2008 nutrient-document-processing affaan-m/ecc
Nutrient Document Processing Note: This skill integrates with the Nutrient commercial API. Review their terms before use. Process documents with the Nutrient DWS Processor API . Convert formats, extract text and tables, OCR scanned documents, redact PII, add watermarks, digitally sign, and fill PDF forms. Setup Get a free API key at nutrient.io export NUTRIENT_API_KEY = "pdf_live_..." All requests go to https://api.nutrient.io/build as multipart POST with an instructions JSON field. Operations C...
8.2K
2009 django-verification affaan-m/ecc
Django Verification Loop Run before PRs, after major changes, and pre-deploy to ensure Django application quality and security. When to Activate Before opening a pull request for a Django project After major model changes, migration updates, or dependency upgrades Pre-deployment verification for staging or production Running full environment → lint → test → security → deploy readiness pipeline Validating migration safety and test coverage Phase 1: Environment Check Verify Python version python ...
8.2K
2010 gh-stack github/gh-stack
gh-stack gh stack is a GitHub CLI extension for managing stacked branches and pull requests . A stack is an ordered list of branches where each branch builds on the one below it, rooted on a trunk branch (typically the repo's default branch). Each branch maps to one PR whose base is the branch below it, so reviewers see only the diff for that layer. main (trunk) └── feat/auth-layer → PR 1 (base: main) - bottom (closest to trunk) └── feat/api-endpoints → PR 2 (base: feat/auth-la...
8.2K
2011 springboot-verification affaan-m/ecc
Spring Boot Verification Loop Run before PRs, after major changes, and pre-deploy. When to Activate Before opening a pull request for a Spring Boot service After major refactoring or dependency upgrades Pre-deployment verification for staging or production Running full build → lint → test → security scan pipeline Validating test coverage meets thresholds Phase 1: Build mvn -T 4 clean verify -DskipTests or ./gradlew clean assemble -x test Show more Installs 1.5K Repository affaan-m/ecc GitHub St...
8.2K
2012 kotlin-coroutines-flows affaan-m/ecc
Kotlin Coroutines & Flows Patterns for structured concurrency, Flow-based reactive streams, and coroutine testing in Android and Kotlin Multiplatform projects. When to Activate Writing async code with Kotlin coroutines Using Flow, StateFlow, or SharedFlow for reactive data Handling concurrent operations (parallel loading, debounce, retry) Testing coroutines and Flows Managing coroutine scopes and cancellation Structured Concurrency Scope Hierarchy Show more Installs 1.5K Repository affaan-m/ecc ...
8.2K
2013 threejs-interaction cloudai-x/threejs-skills
Three.js Interaction Quick Start import * as THREE from "three"; import { OrbitControls } from "three/addons/controls/OrbitControls.js"; // Camera controls const controls = new OrbitControls(camera, renderer.domElement); controls.enableDamping = true; // Raycasting for click detection const raycaster = new THREE.Raycaster(); const mouse = new THREE.Vector2(); function onClick(event) { mouse.x = (event.clientX / window.innerWidth) * 2 - 1; mouse.y = -(event.clientY / window.innerHeight) * ...
8.2K
2014 design-motion-principles kylezantos/design-motion-principles
Design Motion Audit Skill You are a senior design engineer specializing in motion and interaction design. When asked to audit motion design, you MUST follow this workflow exactly. The Three Designers Emil Kowalski (Linear, ex-Vercel) — Restraint, speed, purposeful motion. Best for productivity tools. Jakub Krehel (jakub.kr) — Subtle production polish, professional refinement. Best for shipped consumer apps. Jhey Tompkins (@jh3yy) — Playful experimentation, CSS innovation. Best for creative sit...
8.2K
2015 better-interface jakubkrehel/skills
Review the interface as one system A strong interface is not six independent audits stapled together. Review the whole experience, let each better-* skill own its domain rules, then consolidate the evidence into one prioritized verdict. This skill owns orchestration only. Accessibility rules belong to better-accessibility ; structure to better-layout ; copy to better-writing ; type to better-typography ; color to better-colors ; visual polish and motion to better-ui . Never duplicate or override...
8.2K
2016 parallel-feature-development wshobson/agents
Parallel Feature Development Strategies for decomposing features into parallel work streams, establishing file ownership boundaries, avoiding conflicts, and integrating results from multiple implementer agents. When to Use This Skill Decomposing a feature for parallel implementation Establishing file ownership boundaries between agents Designing interface contracts between parallel work streams Choosing integration strategies (vertical slice vs horizontal layer) Managing branch and merge workflo...
8.1K
2017 cost-aware-llm-pipeline affaan-m/ecc
Cost-Aware LLM Pipeline Patterns for controlling LLM API costs while maintaining quality. Combines model routing, budget tracking, retry logic, and prompt caching into a composable pipeline. When to Activate Building applications that call LLM APIs (Claude, GPT, etc.) Processing batches of items with varying complexity Need to stay within a budget for API spend Optimizing cost without sacrificing quality on complex tasks Core Concepts 1. Model Routing by Task Complexity Automatically select chea...
8.1K
2018 okx-cex-earn okx/agent-skills
OKX CEX Earn CLI Prerequisites Install okx CLI: npm install -g @okx_ai/okx-trade-cli Configure credentials: okx config add-profile AK = < your_api_key > SK = < your_secret_key > PP = < your_passphrase > name = live or interactive wizard: okx config init Verify: okx --profile live earn savings balance Credential & Profile Check Run okx config show before any authenticated command. Error or no configuration → stop , guide user to run okx config init , wait for completion. Credentials configured →...
8.1K
2019 react-email resend/react-email
React Email Build and send HTML emails using React components - a modern, component-based approach to email development that works across all major email clients. Installation You need to scaffold a new React Email project using the create-email CLI. This will create a folder called react-email-starter with sample email templates. Using npm: npx create-email@latest Using yarn: yarn create email Using pnpm: pnpm create email Using bun: bun create email Navigate to Project Directory You must chang...
8.1K
2020 autonomous-loops affaan-m/ecc
Autonomous Loops Skill Compatibility note (v1.8.0): autonomous-loops is retained for one release. The canonical skill name is now continuous-agent-loop . New loop guidance should be authored there, while this skill remains available to avoid breaking existing workflows. Patterns, architectures, and reference implementations for running Claude Code autonomously in loops. Covers everything from simple claude -p pipelines to full RFC-driven multi-agent DAG orchestration. When to Use Setting up auto...
8.1K
2021 svelte-code-writer sveltejs/ai-tools
Svelte 5 Code Writer CLI Tools You have access to @sveltejs/mcp CLI for Svelte-specific assistance. Use these commands via npx : List Documentation Sections npx @sveltejs/mcp list-sections Lists all available Svelte 5 and SvelteKit documentation sections with titles and paths. Get Documentation npx @sveltejs/mcp get-documentation "<section1>,<section2>,..." Retrieves full documentation for specified sections. Use after list-sections to fetch relevant docs. Example: npx @sveltejs/mcp get-document...
8.1K
2022 threejs-materials cloudai-x/threejs-skills
Three.js Materials Quick Start import * as THREE from "three"; // PBR material (recommended for realistic rendering) const material = new THREE.MeshStandardMaterial({ color: 0x00ff00, roughness: 0.5, metalness: 0.5, }); const mesh = new THREE.Mesh(geometry, material); Material Types Overview Material Use Case Lighting MeshBasicMaterial Unlit, flat colors, wireframes No MeshLambertMaterial Matte surfaces, performance Yes (diffuse only) MeshPhongMaterial Shiny surfaces, specular highlight...
8.1K
2023 content-engine affaan-m/ecc
Content Engine Build platform-native content without flattening the author's real voice into platform slop. When to Activate writing X posts or threads drafting LinkedIn posts or launch updates scripting short-form video or YouTube explainers repurposing articles, podcasts, demos, docs, or internal notes into public content building a launch sequence or ongoing content system around a product, insight, or narrative Non-Negotiables Start from source material, not generic post formulas. Adapt the ...
8.1K
2024 eas-app-stores expo/skills
App Store Deployment EAS service - costs apply. This skill uses Expo Application Services (EAS), a paid product with free-tier limits. eas build and eas submit consume your plan's build minutes, and store submission requires paid Apple Developer and Google Play accounts. Review https://expo.dev/pricing before running cloud commands. This skill covers building and releasing Expo apps to the iOS App Store, Google Play Store, and TestFlight using EAS (Expo Application Services). For deploying an Ex...
8.1K
2025 better-accessibility jakubkrehel/skills
Accessibility that comes with the craft Accessibility is not a compliance checkbox bolted on at the end; it is the floor for interface craft. Most of it is free if you use the platform: native elements ship with keyboard support, real labels announce themselves, and a visible focus ring is one CSS rule. Apply these principles when building or reviewing UI code, and match the project's existing styling system (Tailwind vs. plain CSS vs. CSS-in-JS) when applying fixes. When reviewing, walk the int...
8.1K
2026 pptx-presentation-builder supercent-io/skills-template
PPTX Presentation Builder 브랜드 가이드라인에 맞춘 전문 PPTX 프레젠테이션 빌더 스킬입니다. 피치덱, 로드맵, 제품 소개 등 다양한 프레젠테이션을 구조화된 브리프와 검증 단계로 생성합니다. When to use this skill 전문 슬라이드 덱 필요: 프롬프트에서 프레젠테이션 생성 브랜드 일관성 필요: 가이드라인에 맞춘 일관된 슬라이드 반복 가능한 템플릿: 제품, 피치, 로드맵 덱 템플릿화 Instructions Step 1: Gather Brand Constraints brand_kit: colors: primary: "2563EB" secondary: "6366F1" accent: "F59E0B" background: "FFFFFF" text: "1F2937" fonts: heading: "Inter" body: "Inter" mono: "JetBrains Mono" logo: ...
8K
2027 fullstack-developer shubhamsaboo/awesome-llm-apps
Full-Stack Developer You are an expert full-stack web developer specializing in modern JavaScript/TypeScript stacks with React, Node.js, and databases. When to Apply Use this skill when: Building complete web applications Developing REST or GraphQL APIs Creating React/Next.js frontends Setting up databases and data models Implementing authentication and authorization Deploying and scaling web applications Integrating third-party services Technology Stack Frontend React - Modern component pattern...
8K
2028 add-app-clip expo/skills
Add an App Clip to an Expo App Adds an iOS App Clip target to an Expo project. The Clip lives in targets/clip/ , ships alongside the parent app, and is invoked from a URL on the app's domain via an Apple App Site Association (AASA) file. The parent app's bundle ID becomes com.<username>.<app-name> and the Clip's is automatically derived as <parent>.clip (e.g. com.bacon.may20.clip ). 1. Set bundleIdentifier and appleTeamId bun create target warns if these are missing. Add to app.json : Show more
8K
2029 task-coordination-strategies wshobson/agents
Task Coordination Strategies Strategies for decomposing complex tasks into parallelizable units, designing dependency graphs, writing effective task descriptions, and monitoring workload across agent teams. When to Use This Skill Breaking down a complex task for parallel execution Designing task dependency relationships (blockedBy/blocks) Writing task descriptions with clear acceptance criteria Monitoring and rebalancing workload across teammates Identifying the critical path in a multi-task wor...
8K
2030 wordpress-pro jeffallan/claude-skills
WordPress Pro Expert WordPress developer specializing in custom themes, plugins, Gutenberg blocks, WooCommerce, and WordPress performance optimization. Role Definition You are a senior WordPress developer with deep experience building custom themes, plugins, and WordPress solutions. You specialize in modern WordPress development with PHP 8.1+, Gutenberg block development, WooCommerce customization, REST API integration, and performance optimization. You build secure, scalable WordPress sites ...
8K
2031 laravel-tdd affaan-m/ecc
Laravel Testing with TDD Test-driven development for Laravel applications using PHPUnit, Pest, Laravel factories, and testing helpers. When to Activate Writing new Laravel applications or features Implementing API endpoints with Sanctum or Passport authentication Testing Eloquent models, relationships, scopes, and accessors Setting up testing infrastructure for Laravel projects Writing feature tests for HTTP controllers and form requests Mocking external services (queues, mail, notifications, HT...
8K
2032 rust-patterns affaan-m/ecc
Rust Development Patterns Idiomatic Rust patterns and best practices for building safe, performant, and maintainable applications. When to Use Writing new Rust code Reviewing Rust code Refactoring existing Rust code Designing crate structure and module layout How It Works This skill enforces idiomatic Rust conventions across six key areas: ownership and borrowing to prevent data races at compile time, Result / ? error propagation with thiserror for libraries and anyhow for applications, enums an...
8K
2033 multi-reviewer-patterns wshobson/agents
Multi-Reviewer Patterns Patterns for coordinating parallel code reviews across multiple quality dimensions, deduplicating findings, calibrating severity, and producing consolidated reports. When to Use This Skill Organizing a multi-dimensional code review Deciding which review dimensions to assign Deduplicating findings from multiple reviewers Calibrating severity ratings consistently Producing a consolidated review report Review Dimension Allocation Available Dimensions Dimension Focus When to ...
8K
2034 fastapi fastapi/fastapi
FastAPI Official FastAPI skill to write code with best practices, keeping up to date with new versions and features. Use the fastapi CLI Run the development server on localhost with reload: fastapi dev Run the production server: fastapi run Add an entrypoint in pyproject.toml FastAPI CLI will read the entrypoint in pyproject.toml to know where the FastAPI app is declared. [ tool.fastapi ] entrypoint = "my_app.main:app" Use fastapi with a path When adding the entrypoint to pyproject.toml is not p...
8K
2035 nextjs-turbopack affaan-m/ecc
Next.js and Turbopack Next.js 16+ uses Turbopack by default for local development: an incremental bundler written in Rust that significantly speeds up dev startup and hot updates. When to Use Turbopack (default dev) : Use for day-to-day development. Faster cold start and HMR, especially in large apps. Webpack (legacy dev) : Use only if you hit a Turbopack bug or rely on a webpack-only plugin in dev. Disable with --webpack (or --no-turbopack depending on your Next.js version; check the docs for y...
8K
2036 shopify-customer shopify/shopify-ai-toolkit
Required Tool Calls (do not skip) You have a bash tool. Every response must use it — in this order: Call bash with node scripts/search_docs.mjs "<query>" — search before writing code Write the code using the search results Call bash with node scripts/validate.mjs --code '...' --model YOUR_MODEL_NAME --client-name YOUR_CLIENT_NAME --client-version YOUR_CLIENT_VERSION --artifact-id YOUR_ARTIFACT_ID --revision REVISION_NUMBER — validate before returning (Always include these flags. Use your actual ...
8K
2037 ai-first-engineering affaan-m/ecc
AI-First Engineering Use this skill when designing process, reviews, and architecture for teams shipping with AI-assisted code generation. Process Shifts Planning quality matters more than typing speed. Eval coverage matters more than anecdotal confidence. Review focus shifts from syntax to system behavior. Architecture Requirements Prefer architectures that are agent-friendly: explicit boundaries stable contracts typed interfaces deterministic tests Avoid implicit behavior spread across hidden ...
8K
2038 swiftui-patterns affaan-m/ecc
SwiftUI Patterns Modern SwiftUI patterns for building declarative, performant user interfaces on Apple platforms. Covers the Observation framework, view composition, type-safe navigation, and performance optimization. When to Activate Building SwiftUI views and managing state ( @State , @Observable , @Binding ) Designing navigation flows with NavigationStack Structuring view models and data flow Optimizing rendering performance for lists and complex layouts Working with environment values and de...
8K
2039 tavily-dynamic-search tavily-ai/skills
Tavily Dynamic Search Search the web, filter results, and extract content so that raw search data never enters your context window . Only your curated print() output comes back. Why this matters A typical tvly search --include-raw-content returns 8 results × 30-50K chars each = ~300K characters of raw page content. If this enters your context window, you burn tokens reading navigation bars, cookie banners, and boilerplate — and your reasoning quality degrades under the noise. By processing resul...
8K
2040 kotlin-patterns affaan-m/ecc
Kotlin Development Patterns Idiomatic Kotlin patterns and best practices for building robust, efficient, and maintainable applications. When to Use Writing new Kotlin code Reviewing Kotlin code Refactoring existing Kotlin code Designing Kotlin modules or libraries Configuring Gradle Kotlin DSL builds How It Works This skill enforces idiomatic Kotlin conventions across seven key areas: null safety using the type system and safe-call operators, immutability via val and copy() on data classes, seal...
8K
2041 nature-response yuan1z0825/nature-skills
Nature Reviewer Response Skill Use this skill to convert editor decision letters, reviewer comments, author notes, or draft rebuttals into an auditable point-by-point response package for manuscript revisions. The response letter is an editor-facing verification document. The goal is to show that every reviewer concern has been understood, addressed, and mapped to a concrete manuscript change, justified scientific response, or unresolved author action. Default stance Preserve each reviewer comme...
8K
2042 better-writing jakubkrehel/skills
Writing that disappears into the interface Clear and brief beats clever, consistency beats variety, and the best error message is the interaction redesigned so the error can't happen. Apply these principles when writing or reviewing any user-facing text. How copy renders (capitalization via text-transform , truncation, smart punctuation) is covered by the better-typography skill; error markup and announcements ( aria-invalid , live regions) by the better-accessibility skill; room for translated ...
8K
2043 flutter-setting-up-on-macos flutter/skills
Setting Up a macOS Environment for Flutter Development Contents Prerequisites Tooling Configuration Workflow: Configuring macOS Tooling Workflow: Validating the Environment Troubleshooting Prerequisites Ensure the following baseline requirements are met before configuring the macOS-specific toolchain: macOS operating system. Flutter SDK installed and added to the system PATH . Active internet connection for downloading toolchains and dependencies. Tooling Configuration macOS desktop development ...
7.9K
2044 django-patterns affaan-m/everything-claude-code
Django Development Patterns Production-grade Django architecture patterns for scalable, maintainable applications. When to Activate Building Django web applications Designing Django REST Framework APIs Working with Django ORM and models Setting up Django project structure Implementing caching, signals, middleware Project Structure Recommended Layout Show more Installs 1.6K Repository affaan-m/ecc GitHub Stars 239.2K First Seen May 19, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Sny...
7.9K
2045 docker-patterns affaan-m/everything-claude-code
Docker Patterns Docker and Docker Compose best practices for containerized development. Docker Compose for Local Development Standard Web App Stack Show more Installs 1.7K Repository affaan-m/ecc GitHub Stars 239.2K First Seen May 19, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Fail
7.9K
2046 postgres-patterns affaan-m/everything-claude-code
PostgreSQL Patterns Quick reference for PostgreSQL best practices. For detailed guidance, use the database-reviewer agent. When to Activate Writing SQL queries or migrations Designing database schemas Troubleshooting slow queries Implementing Row Level Security Setting up connection pooling Quick Reference Index Cheat Sheet Show more Installs 1.7K Repository affaan-m/ecc GitHub Stars 239.2K First Seen May 19, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
7.9K
2047 flutter-setting-up-on-macos flutter/agent-plugins
Setting Up a macOS Environment for Flutter Development Contents Prerequisites Tooling Configuration Workflow: Configuring macOS Tooling Workflow: Validating the Environment Troubleshooting Prerequisites Ensure the following baseline requirements are met before configuring the macOS-specific toolchain: macOS operating system. Flutter SDK installed and added to the system PATH . Active internet connection for downloading toolchains and dependencies. Tooling Configuration macOS desktop development ...
7.9K
2048 okx-dex-signal okx/onchainos-skills
OKX DEX Signal CLI 2 commands for tracking smart money, KOL, and whale buy signals across supported chains. Pre-flight Checks Every time before running any onchainos command, always follow these steps in order. Do not echo routine command output to the user; only provide a brief status update when installing, updating, or handling a failure. Install : If onchainos is not found, download the installer to a temp file, verify its SHA256 against Installer Checksums (bottom of this document), then ex...
7.9K
2049 angular-signals analogjs/angular-skills
Angular Signals Signals are Angular's reactive primitive for state management. They provide synchronous, fine-grained reactivity. Core Signal APIs signal() - Writable State import { signal } from '@angular/core' ; // Create writable signal const count = signal ( 0 ) ; // Read value console . log ( count ( ) ) ; // 0 // Set new value count . set ( 5 ) ; // Update based on current value count . update ( c => c + 1 ) ; // With explicit type const user = signal < User | null > ( null ) ; user . set ...
7.9K
2050 tailwindcss-advanced-layouts josiahsiegel/claude-plugin-marketplace
Tailwind CSS Advanced Layout Techniques CSS Grid Mastery Complex Grid Layouts <!-- Holy Grail Layout --> <div class="grid min-h-screen grid-rows-[auto_1fr_auto]"> <header class="bg-white shadow">Header</header> <div class="grid grid-cols-[250px_1fr_300px]"> <aside class="bg-gray-50 p-4">Sidebar</aside> <main class="p-6">Main Content</main> <aside class="bg-gray-50 p-4">Right Sidebar</aside> </div> <footer class="bg-gray-800 text-white">Footer</footer> </div> <!-- Responsive ...
7.9K