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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,399
总 Skills
87.6M
总安装量
2,573
贡献者
# Skill 仓库 描述 安装量
1801 rust-testing affaan-m/everything-claude-code
Rust Testing Patterns Comprehensive Rust testing patterns for writing reliable, maintainable tests following TDD methodology. When to Use Writing new Rust functions, methods, or traits Adding test coverage to existing code Creating benchmarks for performance-critical code Implementing property-based tests for input validation Following TDD workflow in Rust projects How It Works Identify target code — Find the function, trait, or module to test Write a test — Use [test] in a [cfg(test)] module, r...
4.5K
1802 continuous-agent-loop affaan-m/everything-claude-code
Continuous Agent Loop This is the v1.8+ canonical loop skill name. It supersedes autonomous-loops while keeping compatibility for one release. Loop Selection Flow Start | +-- Need strict CI/PR control? -- yes --> continuous-pr | +-- Need RFC decomposition? -- yes --> rfc-dag | +-- Need exploratory parallel generation? -- yes --> infinite | +-- default --> sequential Combined Pattern Recommended production stack: RFC decomposition ( ralphinho-rfc-pipeline ) quality gates ( plankton-code-quality +...
4.5K
1803 speech-to-text elevenlabs/skills
ElevenLabs Speech-to-Text Transcribe audio to text with Scribe v2 - supports 90+ languages, speaker diarization, and word-level timestamps. Setup: See Installation Guide . For JavaScript, use @elevenlabs/* packages only. Quick Start Python from elevenlabs import ElevenLabs client = ElevenLabs ( ) with open ( "audio.mp3" , "rb" ) as audio_file : result = client . speech_to_text . convert ( file = audio_file , model_id = "scribe_v2" ) print ( result . text ) JavaScript import { ElevenLabsClient } ...
4.5K
1804 ctf-osint ljagiello/ctf-skills
CTF OSINT Quick reference for OSINT CTF challenges. Each technique has a one-liner here; see supporting files for full details. Additional Resources social-media.md - Twitter/X (user IDs, Snowflake timestamps, Nitter, memory.lol, Wayback CDX), Tumblr (blog checks, post JSON, avatars), BlueSky search + API, Unicode homoglyph steganography, Discord API, username OSINT (namechk, whatsmyname), platform false positives, multi-platform chains geolocation-and-media.md - Image analysis, reverse image se...
4.5K
1805 investor-outreach affaan-m/everything-claude-code
Investor Outreach Write investor communication that is short, personalized, and easy to act on. When to Activate writing a cold email to an investor drafting a warm intro request sending follow-ups after a meeting or no response writing investor updates during a process tailoring outreach based on fund thesis or partner fit Core Rules Personalize every outbound message. Keep the ask low-friction. Use proof, not adjectives. Stay concise. Never send generic copy that could go to any investor. Cold...
4.5K
1806 threejs-shaders cloudai-x/threejs-skills
Three.js Shaders Quick Start import * as THREE from "three"; const material = new THREE.ShaderMaterial({ uniforms: { time: { value: 0 }, color: { value: new THREE.Color(0xff0000) }, }, vertexShader: ` void main() { gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0); } `, fragmentShader: ` uniform vec3 color; void main() { gl_FragColor = vec4(color, 1.0); } `, }); // Update in animation loop material.uniforms.time.value = ...
4.5K
1807 build-dashboard anthropics/knowledge-work-plugins
/build-dashboard - Build Interactive Dashboards If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Build a self-contained interactive HTML dashboard with charts, filters, tables, and professional styling. Opens directly in a browser -- no server or dependencies required. Usage /build-dashboard <description of dashboard> [data source] Workflow 1. Understand the Dashboard Requirements Determine: Purpose : Executive overview, operational monitoring, d...
4.5K
1808 swift-concurrency-6-2 affaan-m/everything-claude-code
Swift 6.2 Approachable Concurrency Patterns for adopting Swift 6.2's concurrency model where code runs single-threaded by default and concurrency is introduced explicitly. Eliminates common data-race errors without sacrificing performance. When to Activate Migrating Swift 5.x or 6.0/6.1 projects to Swift 6.2 Resolving data-race safety compiler errors Designing MainActor-based app architecture Offloading CPU-intensive work to background threads Implementing protocol conformances on MainActor-isol...
4.5K
1809 foundation-models-on-device affaan-m/everything-claude-code
FoundationModels: On-Device LLM (iOS 26) Patterns for integrating Apple's on-device language model into apps using the FoundationModels framework. Covers text generation, structured output with @Generable , custom tool calling, and snapshot streaming — all running on-device for privacy and offline support. When to Activate Building AI-powered features using Apple Intelligence on-device Generating or summarizing text without cloud dependency Extracting structured data from natural language input ...
4.5K
1810 browser browserbase/skills
Browser Automation Automate browser interactions using the browse CLI with Claude. Setup check Before running any browser commands, verify the CLI is available: which browse || npm install -g @browserbasehq/browse-cli Environment Selection (Local vs Remote) The CLI automatically selects between local and remote browser environments based on available configuration: Local mode (default) Uses local Chrome — no API keys needed Best for: development, simple pages, trusted sites with no bot protectio...
4.5K
1811 system-design anthropics/knowledge-work-plugins
System Design Help design systems and evaluate architectural decisions. Framework 1. Requirements Gathering Functional requirements (what it does) Non-functional requirements (scale, latency, availability, cost) Constraints (team size, timeline, existing tech stack) 2. High-Level Design Component diagram Data flow API contracts Storage choices 3. Deep Dive Data model design API endpoint design (REST, GraphQL, gRPC) Caching strategy Queue/event design Error handling and retry logic 4. Scale and R...
4.5K
1812 ctf-forensics ljagiello/ctf-skills
CTF Forensics & Blockchain Quick reference for forensics CTF challenges. Each technique has a one-liner here; see supporting files for full details. Additional Resources 3d-printing.md - 3D printing forensics (PrusaSlicer binary G-code, QOIF, heatshrink) windows.md - Windows forensics (registry, SAM, event logs, recycle bin, USN journal, PowerShell history, Defender MPLog, WMI persistence, Amcache) network.md - Network forensics (PCAP, SMB3, WordPress, credentials, NTLMv2 cracking, USB HID steno...
4.5K
1813 ci-cd-and-automation addyosmani/agent-skills
CI/CD and Automation Overview Automate quality gates so that no change reaches production without passing tests, lint, type checking, and build. CI/CD is the enforcement mechanism for every other skill — it catches what humans and agents miss, and it does so consistently on every single change. Shift Left: Catch problems as early in the pipeline as possible. A bug caught in linting costs minutes; the same bug caught in production costs hours. Move checks upstream — static analysis before tests, ...
4.5K
1814 browser-testing-with-devtools addyosmani/agent-skills
Browser Testing with DevTools Overview Use Chrome DevTools MCP to give your agent eyes into the browser. This bridges the gap between static code analysis and live browser execution — the agent can see what the user sees, inspect the DOM, read console logs, analyze network requests, and capture performance data. Instead of guessing what's happening at runtime, verify it. When to Use Building or modifying anything that renders in a browser Debugging UI issues (layout, styling, interaction) Diagno...
4.5K
1815 n8n-node-configuration czlonkowski/n8n-skills
n8n Node Configuration Expert guidance for operation-aware node configuration with property dependencies. Configuration Philosophy Progressive disclosure: Start minimal, add complexity as needed Configuration best practices: get_node with detail: "standard" is the most used discovery pattern 56 seconds average between configuration edits Covers 95% of use cases with 1-2K tokens response Key insight: Most configurations need only standard detail, not full schema! Core Concepts 1. Operation...
4.5K
1816 gemini-interactions-api google-gemini/gemini-skills
Gemini Interactions API Skill The Interactions API is a unified interface for interacting with Gemini models and agents. It is an improved alternative to generateContent designed for agentic applications. Key capabilities include: Server-side state: Offload conversation history to the server via previous_interaction_id Background execution: Run long-running tasks (like Deep Research) asynchronously Streaming: Receive incremental responses via Server-Sent Events Tool orchestration: Function calli...
4.5K
1817 gmgn-cooking gmgnai/gmgn-skills
IMPORTANT: Always use gmgn-cli commands below. Do NOT use web search, WebFetch, curl, or visit gmgn.ai — all token creation operations must go through the CLI. The CLI handles signing and submission automatically. IMPORTANT: Do NOT guess field names or values. When a field's meaning is unclear, look it up in the Response Fields sections below before using it. ⚠️ IPv6 NOT SUPPORTED: If you get a 401 or 403 error and credentials look correct, check for IPv6 immediately: (1) list all network interf...
4.5K
1818 memory-management anthropics/knowledge-work-plugins
Memory Management Memory makes Claude your workplace collaborator - someone who speaks your internal language. The Goal Transform shorthand into understanding: User: "ask todd to do the PSR for oracle" ↓ Claude decodes "Ask Todd Martinez (Finance lead) to prepare the Pipeline Status Report for the Oracle Systems deal ($2.3M, closing Q2)" Without memory, that request is meaningless. With memory, Claude knows: todd → Todd Martinez, Finance lead, prefers Slack PSR → Pipeline Status Report (weekly s...
4.5K
1819 golang-error-handling samber/cc-skills-golang
Persona: You are a Go reliability engineer. You treat every error as an event that must either be handled or propagated with context — silent failures and duplicate logs are equally unacceptable. Modes: Coding mode — writing new error handling code. Follow the best practices sequentially; optionally launch a background sub-agent to grep for violations in adjacent code (swallowed errors, log-and-return pairs) without blocking the main implementation. Review mode — reviewing a PR's error handling ...
4.5K
1820 charting starchild-ai-agent/official-skills
Charting ⚠️ CRITICAL: DO NOT CALL DATA TOOLS NEVER call price_chart , get_coin_ohlc_range_by_id , twelvedata_time_series , or ANY market data tools when creating charts. Chart scripts fetch data internally. Calling these tools floods your context with 78KB+ of unnecessary data. Workflow (4 steps): Read template from skills/charting/scripts/ Write script to scripts/ Run script with bash Call read_file on the output PNG, then display it using markdown image syntax: ![Chart description](output/file...
4.4K
1821 azure-pricing github/awesome-copilot
Azure Pricing Skill Use this skill to retrieve real-time Azure retail pricing data from the public Azure Retail Prices API. No authentication is required. When to Use This Skill User asks about the cost of an Azure service (e.g., "How much does a D4s v5 VM cost?") User wants to compare pricing across regions or SKUs User needs a cost estimate for a workload or architecture User mentions Azure pricing, Azure costs, or Azure billing User asks about reserved instance vs. pay-as-you-go pricing User ...
4.4K
1822 visa-doc-translate affaan-m/everything-claude-code
You are helping translate visa application documents for visa applications. Instructions When the user provides an image file path, AUTOMATICALLY execute the following steps WITHOUT asking for confirmation: Image Conversion : If the file is HEIC, convert it to PNG using sips -s format png <input> --out <output> Image Rotation : Check EXIF orientation data Automatically rotate the image based on EXIF data If EXIF orientation is 6, rotate 90 degrees counterclockwise Apply additional rotation as ne...
4.4K
1823 compose-multiplatform-patterns affaan-m/everything-claude-code
Compose Multiplatform Patterns Patterns for building shared UI across Android, iOS, Desktop, and Web using Compose Multiplatform and Jetpack Compose. Covers state management, navigation, theming, and performance. When to Activate Building Compose UI (Jetpack Compose or Compose Multiplatform) Managing UI state with ViewModels and Compose state Implementing navigation in KMP or Android projects Designing reusable composables and design systems Optimizing recomposition and rendering performance Sta...
4.4K
1824 kotlin-patterns affaan-m/everything-claude-code
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...
4.4K
1825 tmux steipete/clawdis
tmux Session Control Control tmux sessions by sending keystrokes and reading output. Essential for managing Claude Code sessions. When to Use ✅ USE this skill when: Monitoring Claude/Codex sessions in tmux Sending input to interactive terminal applications Scraping output from long-running processes in tmux Navigating tmux panes/windows programmatically Checking on background work in existing sessions When NOT to Use ❌ DON'T use this skill when: Running one-off shell commands → use exec tool dir...
4.4K
1826 content-quality-auditor aaron-he-zhu/seo-geo-claude-skills
Content Quality Auditor Based on CORE-EEAT Content Benchmark . Full benchmark reference: references/core-eeat-benchmark.md SEO & GEO Skills Library · 20 skills for SEO + GEO · Install all: npx skills add aaron-he-zhu/seo-geo-claude-skills Research · keyword-research · competitor-analysis · serp-analysis · content-gap-analysis Build · seo-content-writer · geo-content-optimizer · meta-tags-optimizer · schema-markup-generator Optimize · on-page-seo-auditor · technical-seo-checker · internal-linking...
4.4K
1827 okx-sentiment-tracker okx/agent-skills
OKX News & Sentiment Crypto news aggregation and coin sentiment analysis for OKX. All commands are read-only and require API credentials (OAuth2.1). Capabilities User Intent Command Latest/important news okx news latest Coin-specific news okx news by-coin Keyword news search okx news search Sentiment-filtered news okx news by-sentiment Full article content okx news detail Coin sentiment snapshot okx news coin-sentiment Sentiment trend okx news coin-trend Sentiment ranking okx news sentiment-rank...
4.4K
1828 content-gap-analysis aaron-he-zhu/seo-geo-claude-skills
Content Gap Analysis This skill identifies content opportunities by analyzing gaps between your content and competitors'. Find topics you're missing, keywords you could target, and content formats you should create. When to Use This Skill Planning content strategy and editorial calendar Finding quick-win content opportunities Understanding where competitors outperform you Identifying underserved topics in your niche Expanding into adjacent topic areas Prioritizing content creation efforts Find...
4.4K
1829 ocr-document-processor dkyazzentwatwa/chatgpt-skills
OCR Document Processor Extract text from images, scanned PDFs, and photographs using Optical Character Recognition (OCR). Supports multiple languages, structured output formats, and intelligent document parsing. Core Capabilities Image OCR: Extract text from PNG, JPEG, TIFF, BMP images PDF OCR: Process scanned PDFs page by page Multi-language: Support for 100+ languages Structured Output: Plain text, Markdown, JSON, or HTML Table Detection: Extract tabular data to CSV/JSON Batch Processing: Pr...
4.4K
1830 plankton-code-quality affaan-m/everything-claude-code
Plankton Code Quality Skill Integration reference for Plankton (credit: @alxfazio), a write-time code quality enforcement system for Claude Code. Plankton runs formatters and linters on every file edit via PostToolUse hooks, then spawns Claude subprocesses to fix violations the agent didn't catch. When to Use You want automatic formatting and linting on every file edit (not just at commit time) You need defense against agents modifying linter configs to pass instead of fixing code You want tiere...
4.4K
1831 laravel-tdd affaan-m/everything-claude-code
Laravel TDD Workflow Test-driven development for Laravel applications using PHPUnit and Pest with 80%+ coverage (unit + feature). When to Use New features or endpoints in Laravel Bug fixes or refactors Testing Eloquent models, policies, jobs, and notifications Prefer Pest for new tests unless the project already standardizes on PHPUnit How It Works Red-Green-Refactor Cycle Write a failing test Implement the minimal change to pass Refactor while keeping tests green Test Layers Unit : pure PHP cla...
4.4K
1832 ultracite haydenbleasel/ultracite
Ultracite Zero-config linting and formatting for JS/TS projects. Supports three linter backends: Biome (recommended), ESLint + Prettier, and Oxlint + Oxfmt. Detecting Ultracite Check if ultracite is in package.json devDependencies. Detect the active linter by looking for: biome.jsonc → Biome eslint.config.mjs → ESLint .oxlintrc.json → Oxlint CLI Commands Check for issues (read-only) bunx ultracite check Auto-fix issues bunx ultracite fix Diagnose setup problems bunx ultracite doctor Initiali...
4.4K
1833 architecture-designer jeffallan/claude-skills
Architecture Designer Senior software architect specializing in system design, design patterns, and architectural decision-making. Role Definition You are a principal architect with 15+ years of experience designing scalable systems. You specialize in distributed systems, cloud architecture, and making pragmatic trade-offs. You document decisions with ADRs and consider long-term maintainability. When to Use This Skill Designing new system architecture Choosing between architectural patterns ...
4.4K
1834 ctf-misc ljagiello/ctf-skills
CTF Miscellaneous Quick reference for miscellaneous CTF challenges. Each technique has a one-liner here; see supporting files for full details. Additional Resources pyjails.md - Python jail/sandbox escape techniques bashjails.md - Bash jail/restricted shell escape techniques encodings.md - Encodings, QR codes, esolangs, Verilog/HDL, UTF-16 tricks, BCD encoding, multi-layer auto-decoding, Gray code cyclic encoding rf-sdr.md - RF/SDR/IQ signal processing (QAM-16, carrier recovery, timing sync) dns...
4.4K
1835 golang-performance samber/cc-skills-golang
Persona: You are a Go performance engineer. You never optimize without profiling first — measure, hypothesize, change one thing, re-measure. Thinking mode: Use ultrathink for performance optimization. Shallow analysis misidentifies bottlenecks — deep reasoning ensures the right optimization is applied to the right problem. Modes: Review mode (architecture) — broad scan of a package or service for structural anti-patterns (missing connection pools, unbounded goroutines, wrong data structures). Us...
4.4K
1836 secure-workflow-guide trailofbits/skills
Secure Workflow Guide Purpose I'll guide you through Trail of Bits' secure development workflow - a 5-step process to enhance smart contract security throughout development. Use this: On every check-in, before deployment, or when you want a security review The 5-Step Workflow I'll guide you through a comprehensive security workflow covering: Step 1: Check for Known Security Issues Run Slither with 70+ built-in detectors to find common vulnerabilities: Parse findings by severity Explain ea...
4.4K
1837 solve-challenge ljagiello/ctf-skills
CTF Challenge Solver You're a skilled CTF player. Your goal is to solve the challenge and find the flag. Workflow Step 1: Recon Explore files -- List the challenge directory, run file * on everything Triage binaries -- strings , xxd | head , binwalk , checksec on binaries Fetch links -- If the challenge mentions URLs, fetch them FIRST for context Connect -- Try remote services ( nc ) to understand what they expect Read hints -- Challenge descriptions, filenames, and comments often contain clues ...
4.4K
1838 meta-tags-optimizer aaron-he-zhu/seo-geo-claude-skills
Meta Tags Optimizer SEO & GEO Skills Library · 20 skills for SEO + GEO · Install all: npx skills add aaron-he-zhu/seo-geo-claude-skills Research · keyword-research · competitor-analysis · serp-analysis · content-gap-analysis Build · seo-content-writer · geo-content-optimizer · meta-tags-optimizer · schema-markup-generator Optimize · on-page-seo-auditor · technical-seo-checker · internal-linking-optimizer · content-refresher Monitor · rank-tracker · backlink-analyzer · performance-reporter · aler...
4.4K
1839 planning-with-files-zht othmanadi/planning-with-files
Contains Hooks This skill uses Claude hooks which can execute code automatically in response to events. Review carefully before installing. 檔案規劃系統 像 Manus 一樣工作:用持久化的 Markdown 檔案作為你的「磁碟工作記憶」。 第一步:恢復上下文(v2.2.0) 在做任何事之前 ,檢查規劃檔案是否存在並讀取它們: 如果 task_plan.md 存在,立即讀取 task_plan.md 、 progress.md 和 findings.md 。 然後檢查上一個會話是否有未同步的上下文: Linux/macOS $( command -v python3 || command -v python ) ${CLAUDE_PLUGIN_ROOT} /scripts/session-catchup.py " $( pwd ) " Windows PowerShell & ( Get-Command python - ErrorAction...
4.4K
1840 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...
4.4K
1841 drizzle-orm bobmatnyc/claude-mpm-skills
Drizzle ORM Modern TypeScript-first ORM with zero dependencies, compile-time type safety, and SQL-like syntax. Optimized for edge runtimes and serverless environments. Quick Start Installation Core ORM npm install drizzle-orm Database driver (choose one) npm install pg PostgreSQL npm install mysql2 MySQL npm install better-sqlite3 SQLite Drizzle Kit (migrations) npm install -D drizzle-kit Basic Setup // db/schema.ts import { pgTable, serial, text, timestamp } from 'd...
4.3K
1842 browser-preview starchild-ai-agent/official-skills
Browser Preview You already know preview_serve and preview_stop . This skill fills the gap: what happens after preview_serve returns a URL — how the user actually sees it. What is Browser The frontend has a right-side panel with two tabs: Workspace and Browser . Browser renders preview URLs inside an iframe. When you call preview_serve , the frontend automatically opens a Browser tab loading that URL. Key facts: Each preview_serve call creates one Browser tab URL format: https://<host>/preview/{...
4.3K
1843 next-browser vercel-labs/next-browser
next-browser If next-browser is not already on PATH, install @vercel/next-browser globally with the user's package manager, then playwright install chromium . If next-browser is already installed, it may be outdated. Run next-browser --version and compare against the latest on npm ( npm view @vercel/next-browser version ). If the installed version is behind, upgrade it ( npm install -g @vercel/next-browser@latest or the equivalent for the user's package manager) before proceeding. Next.js docs a...
4.3K
1844 blueprint affaan-m/everything-claude-code
Blueprint — Construction Plan Generator Turn a one-line objective into a step-by-step construction plan that any coding agent can execute cold. When to Use Breaking a large feature into multiple PRs with clear dependency order Planning a refactor or migration that spans multiple sessions Coordinating parallel workstreams across sub-agents Any task where context loss between sessions would cause rework Do not use for tasks completable in a single PR, fewer than 3 tool calls, or when the user says...
4.3K
1845 nextjs-turbopack affaan-m/everything-claude-code
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...
4.3K
1846 rust-patterns affaan-m/everything-claude-code
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...
4.3K
1847 bun-runtime affaan-m/everything-claude-code
Bun Runtime Bun is a fast all-in-one JavaScript runtime and toolkit: runtime, package manager, bundler, and test runner. When to Use Prefer Bun for: new JS/TS projects, scripts where install/run speed matters, Vercel deployments with Bun runtime, and when you want a single toolchain (run + install + test + build). Prefer Node for: maximum ecosystem compatibility, legacy tooling that assumes Node, or when a dependency has known Bun issues. Use when: adopting Bun, migrating from Node, writing or d...
4.3K
1848 internal-linking-optimizer aaron-he-zhu/seo-geo-claude-skills
Internal Linking Optimizer This skill analyzes your site's internal link structure and provides recommendations to improve SEO through strategic internal linking. It helps distribute authority, establish topical relevance, and improve crawlability. When to Use This Skill Improving site architecture for SEO Distributing authority to important pages Fixing orphan pages with no internal links Creating topic cluster internal link strategies Optimizing anchor text for SEO Recovering pages that have l...
4.3K
1849 prisma-upgrade-v7 prisma/skills
Upgrade to Prisma ORM 7 Complete guide for migrating from Prisma ORM v6 to v7. This upgrade introduces significant breaking changes including ESM-only support, required driver adapters, and a new configuration system. When to Apply Reference this skill when: Upgrading from Prisma v6 to v7 Updating to the prisma-client generator Setting up driver adapters Configuring prisma.config.ts Fixing import errors after upgrade Rule Categories by Priority Priority Category Impact Prefix 1 Schema Migration ...
4.3K
1850 angular-tooling analogjs/angular-skills
Angular Tooling Use Angular CLI and development tools for efficient Angular v20+ development. Project Setup Create New Project Create new standalone project (default in v20+) ng new my-app With specific options ng new my-app --style=scss --routing --ssr=false Skip tests ng new my-app --skip-tests Minimal setup ng new my-app --minimal --inline-style --inline-template Project Structure my-app/ ├── src/ │ ├── app/ │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ └── app.ro...
4.3K