███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 8501 | deno-typescript | mindrally/skills |
Deno TypeScript Development You are an expert in Deno and TypeScript development with deep knowledge of building secure, modern applications using Deno's native TypeScript support and built-in tooling. TypeScript General Guidelines Basic Principles Use English for all code and documentation Always declare types for variables and functions (parameters and return values) Avoid using any type - create necessary types instead Use JSDoc to document public classes and methods Write concise, maintain...
|
386 |
| 8502 | expo-react-native-javascript-best-practices | mindrally/skills |
Expo React Native JavaScript Best Practices Guidelines for building high-quality Expo React Native applications with JavaScript, focusing on clean code, modularity, and performance. Code Style and Structure Clean, Readable Code: Ensure your code is easy to read and understand. Use descriptive names for variables and functions. Functional Components: Prefer functional components with hooks (useState, useEffect) over class components Component Modularity: Break components into smaller, reusable ...
|
386 |
| 8503 | evaluating-llms-harness | davila7/claude-code-templates |
lm-evaluation-harness - LLM Benchmarking Quick start lm-evaluation-harness evaluates LLMs across 60+ academic benchmarks using standardized prompts and metrics. Installation: pip install lm-eval Evaluate any HuggingFace model: lm_eval --model hf \ --model_args pretrained=meta-llama/Llama-2-7b-hf \ --tasks mmlu,gsm8k,hellaswag \ --device cuda:0 \ --batch_size 8 View available tasks: lm_eval --tasks list Common workflows Workflow 1: Standard benchmark evaluation Evaluate model o...
|
386 |
| 8504 | database-optimizer | sickn33/antigravity-awesome-skills |
Database Optimizer Senior database optimizer with expertise in performance tuning, query optimization, and scalability across multiple database systems. Role Definition You are a senior database performance engineer with 10+ years of experience optimizing high-traffic databases. You specialize in PostgreSQL and MySQL optimization, execution plan analysis, strategic indexing, and achieving sub-100ms query performance at scale. When to Use This Skill Analyzing slow queries and execution plans ...
|
386 |
| 8505 | grepai-embeddings-openai | yoanbernabeu/grepai-skills |
This skill covers using OpenAI's embedding API with GrepAI for high-quality, cloud-based embeddings. When to Use This Skill - Need highest quality embeddings - Team environment with shared infrastructure - Don't want to manage local embedding server - Willing to trade privacy for quality/convenience Considerations | ✅ Quality | State-of-the-art embeddings | ✅ Speed | Fast, no local compute needed | ✅ Scalability | Handles any codebase size | ⚠️ Privacy | Code sent to OpenAI se...
|
386 |
| 8506 | grepai-storage-postgres | yoanbernabeu/grepai-skills |
This skill covers using PostgreSQL with the pgvector extension as the storage backend for GrepAI. When to Use This Skill - Team environments with shared index - Large codebases (10K+ files) - Need concurrent access - Integration with existing PostgreSQL infrastructure Prerequisites - PostgreSQL 14+ with pgvector extension - Database user with create table permissions - Network access to PostgreSQL server Advantages | 👥 Team sharing | Multiple users can access same index | 📏 Scal...
|
386 |
| 8507 | web-design-patterns | jezweb/claude-skills |
Web Design Patterns Principle-based patterns for designing website sections that feel human-designed, not AI-generated. Each pattern teaches WHY and WHEN, not just templates to copy. What You Produce Well-designed website sections: heroes, card layouts, CTAs, trust signals, and testimonials that match the business context and avoid the "AI skeleton" look. When to Read Which Reference Building this... Read this reference Homepage hero, page headers, landing pages references/hero-patterns.md Servi...
|
385 |
| 8508 | review-delta | tirth8205/code-review-graph |
Review Delta Perform a focused, token-efficient code review of only the changed code and its blast radius. Token optimization: Before starting, call get_docs_section_tool(section_name="review-delta") for the optimized workflow. Use ONLY changed nodes + 2-hop neighbors in context. Steps Ensure the graph is current by calling build_or_update_graph_tool() (incremental update). Get review context by calling get_review_context_tool() . This returns: Changed files (auto-detected from git diff) Impacte...
|
385 |
| 8509 | interview-me | addyosmani/agent-skills |
Interview Me Overview What people ask for and what they actually want are different things. They ask for "a dashboard" because that's what one asks for, not because a dashboard solves their problem. They say "make it faster" without a number to hit. The cheapest moment to find this gap is before any plan, spec, or code exists. Once you've started building, switching costs are real, and the user will rationalize the wrong thing into a "good enough" thing. The misfit gets locked in. This skill clo...
|
385 |
| 8510 | context-engineering | neolabhq/context-engineering-kit |
Context Engineering Overview Feed agents the right information at the right time. Context is the single biggest lever for agent output quality — too little and the agent hallucinates, too much and it loses focus. Context engineering is the practice of deliberately curating what the agent sees, when it sees it, and how it's structured. When to Use Starting a new coding session Agent output quality is declining (wrong patterns, hallucinated APIs, ignoring conventions) Switching between different p...
|
385 |
| 8511 | swift-security-expert | ivan-magda/swift-security-skill |
Keychain & Security Expert Skill Philosophy: Non-opinionated, correctness-focused. This skill provides facts, verified patterns, and Apple-documented best practices — not architecture mandates. It covers iOS 13+ as a minimum deployment target, with modern recommendations targeting iOS 17+ and forward-looking guidance through iOS 26 (post-quantum). Every code pattern is grounded in Apple documentation, DTS engineer posts (Quinn "The Eskimo!"), WWDC sessions, and OWASP MASTG — never from memory al...
|
385 |
| 8512 | api-authentication | aj-geddes/useful-ai-prompts |
API Authentication Overview Implement comprehensive authentication strategies for APIs including JWT tokens, OAuth 2.0, API keys, and session management with proper security practices. When to Use Securing API endpoints Implementing user login/logout flows Managing access tokens and refresh tokens Integrating OAuth 2.0 providers Protecting sensitive data Implementing API key authentication Instructions 1. JWT Authentication // Node.js JWT Implementation const express = require('express'); cons...
|
385 |
| 8513 | encore-service | encoredev/skills |
Encore Service Structure Instructions Creating a Service Every Encore service needs an encore.service.ts file: // encore.service.ts import { Service } from "encore.dev/service"; export default new Service("my-service"); Minimal Service Structure my-service/ ├── encore.service.ts Service definition (required) ├── api.ts API endpoints └── db.ts Database (if needed) Application Patterns Single Service (Recommended Start) Best for new projects - start simple,...
|
385 |
| 8514 | magento-hyva-specialist | maxnorm/magento2-agent-skills |
Magento 2 Hyvä Specialist Expert specialist in creating high-performance, modern Magento 2 storefronts using the Hyvä theme framework, leveraging Alpine.js, Tailwind CSS, and cutting-edge frontend technologies. When to Use Developing Hyvä-based storefronts Working with Alpine.js components Implementing Tailwind CSS styling Optimizing frontend performance Building modern, fast e-commerce experiences Hyvä Development Stack Alpine.js : Reactive JavaScript framework for dynamic interfaces Tailwind C...
|
385 |
| 8515 | social-media-management | manojbajaj95/claude-gtm-plugin |
Social Media Management Create, optimize, analyze, and repurpose social media content across all platforms. Before Creating Content Check for product marketing context first: If .claude/product-marketing-context.md exists, read it before asking questions. Gather this context (ask if not provided): Goals — Brand awareness, leads, traffic, or community? Personal brand, company brand, or both? Audience — Who to reach? What platforms? What content engages them? Brand Voice — Tone (professional, casu...
|
385 |
| 8516 | ce-frontend-design | everyinc/compound-engineering-plugin |
Frontend Design Guide creation of distinctive, production-grade frontend interfaces that avoid generic AI aesthetics. This skill covers the full lifecycle: detect what exists, plan the design, build with intention, and verify visually. Authority Hierarchy Every rule in this skill is a default, not a mandate. Existing design system / codebase patterns -- highest priority, always respected User's explicit instructions -- override skill defaults Skill defaults -- apply in greenfield work or when th...
|
385 |
| 8517 | find-models | replicate/skills |
Always search the API for current models The AI model landscape changes weekly. New models ship constantly and older ones are deprecated or surpassed. Don't rely on model names you've seen before, including names from past conversations or training data. A specific model you "know" may no longer be the best choice, may be slower than newer alternatives, or may not exist anymore. Always start by querying the Replicate API. Use search and collections to discover what's currently available, then re...
|
385 |
| 8518 | marketing-psychology | davila7/claude-code-templates |
Marketing Psychology & Mental Models You are an expert in applying psychological principles and mental models to marketing. Your goal is to help users understand why people buy, how to influence behavior ethically, and how to make better marketing decisions. How to Use This Skill 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 applying mental models. Use that context to tailor reco...
|
385 |
| 8519 | chroma | davila7/claude-code-templates |
Chroma - Open-Source Embedding Database The AI-native database for building LLM applications with memory. When to use Chroma Use Chroma when: Building RAG (retrieval-augmented generation) applications Need local/self-hosted vector database Want open-source solution (Apache 2.0) Prototyping in notebooks Semantic search over documents Storing embeddings with metadata Metrics: 24,300+ GitHub stars 1,900+ forks v1.3.3 (stable, weekly releases) Apache 2.0 license Use alternatives instead: Pin...
|
385 |
| 8520 | compression | patternsdev/skills |
Compressing JavaScript Table of Contents When to Use Instructions Details Source JavaScript is the second biggest contributor to page size and the second most requested web resource on the internet after images. We use patterns that reduce the transfer, load, and execution time for JavaScript to improve website performance. Compression can help reduce the time needed to transfer scripts over the network. When to Use Use this when you need to reduce JavaScript payload sizes for faster page loads ...
|
385 |
| 8521 | auth-implementation-patterns | sickn33/antigravity-awesome-skills |
Authentication & Authorization Implementation Patterns Build secure, scalable authentication and authorization systems using industry-standard patterns and modern best practices. When to Use This Skill Implementing user authentication systems Securing REST or GraphQL APIs Adding OAuth2/social login Implementing role-based access control (RBAC) Designing session management Migrating authentication systems Debugging auth issues Implementing SSO or multi-tenancy Core Concepts 1. Authentication vs A...
|
385 |
| 8522 | git-master | josiahsiegel/claude-plugin-marketplace |
Git Mastery - Complete Git Expertise 🚨 CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes ( \ ) in file paths, NOT forward slashes ( / ). Examples: ❌ WRONG: D:/repos/project/file.tsx ✅ CORRECT: D:\repos\project\file.tsx This applies to: Edit tool file_path parameter Write tool file_path parameter All file operations on Windows systems Documentation Guidelines NEVER crea...
|
385 |
| 8523 | atomic-design-fundamentals | thebushidocollective/han |
Atomic Design Fundamentals Master Brad Frost's Atomic Design methodology (extended with quarks) for building scalable, maintainable component-based user interfaces. This skill covers the core hierarchy, principles, and organization strategies for modern design systems. Overview Atomic Design is a methodology for creating design systems inspired by chemistry. Just as atoms combine to form molecules, which combine to form organisms, UI components follow a similar hierarchical structure. We exte...
|
385 |
| 8524 | instrumentation | pydantic/skills |
Instrument with Logfire When to Use This Skill Invoke this skill when: User asks to "add logfire", "add observability", "add tracing", or "add monitoring" User wants to instrument an app with structured logging or tracing (Python, JS/TS, or Rust) User mentions Logfire in any context User asks to "add logging" or "see what my app is doing" User wants to monitor AI/LLM calls (PydanticAI, OpenAI, Anthropic) User asks to add observability to an AI agent or LLM pipeline How Logfire Works Logfire is a...
|
384 |
| 8525 | confluence-expert | alirezarezvani/claude-skills |
Atlassian Confluence Expert Master-level expertise in Confluence space management, documentation architecture, content creation, macros, templates, and collaborative knowledge management. Atlassian MCP Integration Primary Tool : Confluence MCP Server Key Operations : // Create a new space create_space({ key: "TEAM", name: "Engineering Team", description: "Engineering team knowledge base" }) // Create a page under a parent create_page({ spaceKey: "TEAM", title: "Sprint 42 Notes", parentId: "12345...
|
384 |
| 8526 | home-assistant-esphome | bradsjm/hassio-addons |
ESPHome + Home Assistant Workflow Identify the task: new device/adopt, offline troubleshooting, or YAML feature changes. For HA-side validation, discover ESPHome entities and map to devices before changing names. For YAML changes, edit in ESPHome Device Builder (UI-first), validate, then install (USB first flash, OTA thereafter). When building automations from ESPHome entities, follow home-assistant-best-practices for automation patterns. HA-side discovery (common) Check integration state: ha_ge...
|
384 |
| 8527 | python-testing | mindrally/skills |
Python Testing Patterns Comprehensive testing strategies for Python applications using pytest, TDD methodology, and best practices. When to Activate Writing new Python code (follow TDD: red, green, refactor) Designing test suites for Python projects Reviewing Python test coverage Setting up testing infrastructure Core Testing Philosophy Test-Driven Development (TDD) Always follow the TDD cycle: RED : Write a failing test for the desired behavior GREEN : Write minimal code to make the test pass R...
|
384 |
| 8528 | go-functions | cxuu/golang-skills |
Go Function Design When this skill does NOT apply : For functional options constructors ( WithTimeout , WithLogger ), see go-functional-options . For error return conventions, see go-error-handling . For naming functions and methods, see go-naming . Function Grouping and Ordering Organize functions in a file by these rules: Functions sorted in rough call order Functions grouped by receiver Exported functions appear first, after struct / const / var definitions NewXxx / newXxx constructors appear...
|
384 |
| 8529 | qwen-edit | digitalsamba/claude-code-video-toolkit |
Qwen-Image-Edit Skill AI-powered image editing using Qwen-Image-Edit-2511 via RunPod serverless. Status: Evolving - learnings being captured as we experiment When to Use This Skill Use when the user wants to: Edit/transform photos while preserving identity Reframe cropped images (fix cut-off heads, etc.) Change clothing, add accessories Change pose (arm positions, hand placement) Apply style transfers (cyberpunk, anime, oil painting) Adjust lighting/color grading Add/remove objects Character tra...
|
384 |
| 8530 | agent-context-isolation | parcadei/continuous-claude-v3 |
Agent Context Isolation Prevent agent output from polluting the main context window. Rules 1. Use Background Agents with File-Based Coordination RIGHT - background agent writes to file, main reads file Task(subagent_type="...", run_in_background=true, prompt="... Output to: /path/to/file.md") WRONG - foreground agent dumps full transcript into main context Task(subagent_type="...", run_in_background=false) Background agents with run_in_background=true isolate their context. Have them writ...
|
384 |
| 8531 | financial-calculator | dkyazzentwatwa/chatgpt-skills |
Professional-grade financial calculations with detailed breakdowns, visualizations, and exportable reports. Handles everything from simple loan payments to complex retirement projections with Monte Carlo simulations. Core Calculators - Loan Calculator: Amortization schedules, payment breakdowns, prepayment scenarios - Investment Calculator: Future value, compound growth, recurring contributions - NPV/IRR Calculator: Net present value, internal rate of return, payback period - Retirement Ca...
|
384 |
| 8532 | intent-framed-agent | pskoett/pskoett-ai-skills |
Intent Framed Agent Install npx skills add pskoett/pskoett-ai-skills npx skills add pskoett/pskoett-ai-skills/intent-framed-agent Purpose This skill turns implicit intent into an explicit, trackable artifact at the moment execution starts. It creates a lightweight intent contract, watches for scope drift while work is in progress, and closes each intent with a short resolution record. Scope (Important) Use this skill for coding tasks only. It is designed for implementation work that changes exec...
|
384 |
| 8533 | ce-release-notes | everyinc/compound-engineering-plugin |
Compound-Engineering Release Notes Look up what shipped in recent releases of the compound-engineering plugin. Bare invocation summarizes the last 5 plugin releases. Argument invocation searches the last 40 releases and answers a specific question, citing the release version that introduced the change. Data comes from the GitHub Releases API for EveryInc/compound-engineering-plugin , filtered to the compound-engineering-v* tag prefix so sibling components ( cli-v* , coding-tutor-v* , marketplace...
|
384 |
| 8534 | asc-wall-submit | rorkai/app-store-connect-cli-skills |
asc wall submit Use this skill to add or update a Wall of Apps entry without introducing new CLI surface area. When to use User wants to submit an app to the Wall of Apps User wants to update an existing Wall of Apps entry User asks for the exact Wall submission flow Required inputs Collect and confirm all fields before running commands: app : app name link : app URL ( http / https , usually App Store URL) creator : GitHub handle or creator name platform : comma-separated labels (for example: iO...
|
384 |
| 8535 | powershell-windows | davila7/claude-code-templates |
PowerShell Windows Patterns Critical patterns and pitfalls for Windows PowerShell. 1. Operator Syntax Rules CRITICAL: Parentheses Required ❌ Wrong ✅ Correct if (Test-Path "a" -or Test-Path "b") if ((Test-Path "a") -or (Test-Path "b")) if (Get-Item $x -and $y -eq 5) if ((Get-Item $x) -and ($y -eq 5)) Rule: Each cmdlet call MUST be in parentheses when using logical operators. 2. Unicode/Emoji Restriction CRITICAL: No Unicode in Scripts Purpose ❌ Don't Use ✅ Use Success ✅ ✓ [OK] [+] Error ❌ ✗ 🔴...
|
384 |
| 8536 | telegram-automation | sickn33/antigravity-awesome-skills |
Telegram Automation via Rube MCP Automate Telegram operations through Composio's Telegram toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Telegram connection via RUBE_MANAGE_CONNECTIONS with toolkit telegram Always call RUBE_SEARCH_TOOLS first to get current tool schemas Telegram Bot Token required (created via @BotFather) Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add ...
|
384 |
| 8537 | segment-cdp | sickn33/antigravity-awesome-skills |
Segment CDP Patterns Analytics.js Browser Integration Client-side tracking with Analytics.js. Include track, identify, page, and group calls. Anonymous ID persists until identify merges with user. Server-Side Tracking with Node.js High-performance server-side tracking using @segment/analytics-node. Non-blocking with internal batching. Essential for backend events, webhooks, and sensitive data. Tracking Plan Design Design event schemas using Object + Action naming convention. Define required...
|
384 |
| 8538 | modern-csharp-coding-standards | wshaddix/dotnet-skills |
Use this skill when: - Writing new C code or refactoring existing code - Designing public APIs for libraries or services - Optimizing performance-critical code paths - Implementing domain models with strong typing - Building async/await-heavy applications - Working with binary data, buffers, or high-throughput scenarios Core Principles - Immutability by Default - Use `record` types and `init`-only properties - Type Safety - Leverage nullable reference types and value objects - Modern ...
|
384 |
| 8539 | atlas-stream-processing | mongodb/agent-skills |
MongoDB Atlas Streams Build, operate, and debug Atlas Stream Processing (ASP) pipelines using four MCP tools from the MongoDB MCP Server. Prerequisites This skill requires the MongoDB MCP Server connected with: Atlas API credentials ( apiClientId and apiClientSecret ) The 4 tools: atlas-streams-discover , atlas-streams-build , atlas-streams-manage , atlas-streams-teardown . All operations require an Atlas project ID. If unknown, call atlas-list-projects first to find your project ID. If MCP tool...
|
383 |
| 8540 | market-researcher | 404kidwiz/claude-supercode-skills |
Provides comprehensive market research expertise specializing in market sizing, consumer behavior analysis, and strategic opportunity identification. Excels at quantitative market analysis, qualitative consumer insights, and strategic market positioning for business decision-making. When to Use - Sizing markets (TAM/SAM/SOM calculations) - Analyzing consumer behavior and purchase decisions - Conducting competitive market analysis - Identifying market opportunities and white spaces - Valid...
|
383 |
| 8541 | ce:brainstorm | everyinc/compound-engineering-plugin |
Brainstorm a Feature or Improvement Note: The current year is 2026. Use this when dating requirements documents. Brainstorming helps answer WHAT to build through collaborative dialogue. It precedes /ce:plan , which answers HOW to build it. The durable output of this workflow is a requirements document . In other workflows this might be called a lightweight PRD or feature brief. In compound engineering, keep the workflow name brainstorm , but make the written artifact strong enough that planning ...
|
383 |
| 8542 | create mcp app | modelcontextprotocol/ext-apps |
Create MCP App Build interactive UIs that run inside MCP-enabled hosts like Claude Desktop. An MCP App combines an MCP tool with an HTML resource to display rich, interactive content. Core Concept: Tool + Resource Every MCP App requires two parts linked together: Tool - Called by the LLM/host, returns data Resource - Serves the bundled HTML UI that displays the data The tool's _meta.ui.resourceUri references the resource's URI. Host calls tool → Host renders resource UI → Server returns result →...
|
383 |
| 8543 | hyva-render-media-image | hyva-themes/hyva-ai-tools |
Hyvä Render Image Generate responsive <picture> elements for Hyvä Theme templates using the \Hyva\Theme\ViewModel\Media view model. When to Use Adding images to Hyvä PHTML templates Creating responsive images with different sources for mobile/desktop Implementing hero banners, product images, or CMS content images Optimizing images for Core Web Vitals (LCP, CLS) Workflow 1. Gather Image Requirements The user may provide image data in one of these ways: Option A: Direct values - Ask the user ...
|
383 |
| 8544 | dart-expert | personamanagmentlayer/pcl |
Dart & Flutter Expert Expert guidance for Dart programming, Flutter framework, mobile development, and cross-platform applications. Core Concepts Dart Language Strong typing with type inference Async/await and Futures Streams Mixins and extensions Null safety Collections Flutter Framework Widgets (Stateless & Stateful) State management (Provider, Riverpod, Bloc) Navigation and routing Material and Cupertino design Responsive layouts Platform integration Dart Fundamentals // Variables and types...
|
383 |
| 8545 | deploying-airflow | astronomer/agents |
Deploying Airflow This skill covers deploying Airflow DAGs and projects to production, whether using Astro (Astronomer's managed platform) or open-source Airflow on Docker Compose or Kubernetes. Choosing a path: Astro is a good fit for managed operations and faster CI/CD. For open-source, use Docker Compose for dev and the Helm chart for production. Astro (Astronomer) Astro provides CLI commands and GitHub integration for deploying Airflow projects. Deploy Commands Command What It Does astro dep...
|
383 |
| 8546 | sentry-pr-code-review | getsentry/sentry-agent-skills |
All Skills > Workflow > PR Code Review Sentry Code Review Review and fix issues identified by Seer (by Sentry) in GitHub PR comments. Invoke This Skill When User asks to "review Sentry comments" or "fix Sentry issues" on a PR User shares a PR URL/number and mentions Sentry or Seer feedback User asks to "address Sentry review" or "resolve Sentry findings" User wants to find PRs with unresolved Sentry comments Prerequisites gh CLI installed and authenticated Repository has the Seer by Sentry GitHu...
|
383 |
| 8547 | medical-imaging-review | luwill/research-skills |
Write comprehensive literature reviews following a systematic 7-phase workflow. Quick Start - Initialize project with three core files: `CLAUDE.md` - Writing guidelines and terminology - `IMPLEMENTATION_PLAN.md` - Staged execution plan - `manuscript_draft.md` - Main manuscript - Follow the 7-phase workflow (see [references/WORKFLOW.md](https://github.com/luwill/research-skills/blob/main/medical-imaging-review/references/WORKFLOW.md)) - Use domain-specific templates (see [references/DO...
|
383 |
| 8548 | java-jpa-hibernate | pluginagentmarketplace/custom-plugin-java |
Java JPA Hibernate Skill Master data persistence with JPA and Hibernate for production applications. Overview This skill covers JPA entity design, Hibernate optimization, Spring Data repositories, query strategies, and caching. Focuses on preventing N+1 queries and building high-performance persistence layers. When to Use This Skill Use when you need to: Design JPA entities with relationships Optimize database queries Configure Hibernate for performance Implement caching strategies Debug p...
|
383 |
| 8549 | patents-search | yorkeccak/scientific-skills |
Patents Search Search the complete global patent database using natural language queries powered by Valyu's semantic search API. Why This Skill is Powerful No API Parameter Parsing: Just pass natural language queries directly - no need to construct complex search parameters Semantic Search: Understands the meaning of your query, not just keyword matching Full-Text Access: Returns complete patent information including claims, descriptions, and technical details Image Links: Includes patent diag...
|
383 |
| 8550 | next | vercel-labs/json-render |
Next.js is a React framework for building full-stack web applications. It provides file-system based routing, Server Components, automatic code splitting, image optimization, and built-in performance optimizations. Next.js supports both static site generation (SSG) and server-side rendering (SSR), making it ideal for building modern web applications. The skill is based on Next.js v16.2.0-canary.16, generated at 2026-01-30. Core References | File-System Routing | Routes defined by folder str...
|
383 |