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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,580
总 Skills
95.1M
总安装量
2,587
贡献者
# Skill 仓库 描述 安装量
10551 video-producer daffy0208/ai-dev-standards
Video Producer Skill I help you build video players, handle video streaming, and create engaging video experiences. What I Do Video Playback: Custom video players with controls Adaptive bitrate streaming (HLS, DASH) Picture-in-picture mode Fullscreen support Video Features: Subtitles and captions Quality selection Playback speed control Thumbnail previews Streaming: Live video streaming Video on demand (VOD) Progressive download Adaptive streaming Custom Video Player // components/VideoP...
407
10552 background-agent-pings parcadei/continuous-claude-v3
Background Agent Pings Trust system reminders as agent progress notifications. Don't poll. Pattern When you launch a background agent, continue working on other tasks. The system will notify you via reminders when: Agent makes progress: Agent <id> progress: X new tools used, Y new tokens Agent writes output file (check the path you specified) DO 1. Task(run_in_background=true, prompt="... Output to: .claude/cache/agents/<type>/output.md") 2. Continue with next task immediately 3. When system...
407
10553 tldr-code parcadei/continuous-claude-v3
TLDR-Code: Complete Reference Token-efficient code analysis. 95% savings vs raw file reads. Quick Reference Task Command File tree tldr tree src/ Code structure tldr structure . --lang python Search code tldr search "pattern" . Call graph tldr calls src/ Who calls X? tldr impact func_name . Control flow tldr cfg file.py func Data flow tldr dfg file.py func Program slice tldr slice file.py func 42 Dead code tldr dead src/ Architecture tldr arch src/ Imports tldr imports file.py Who imports X? t...
407
10554 skill-upgrader parcadei/continuous-claude-v3
Skill Upgrader Meta-skill that upgrades any SKILL.md to Decision Theory v5 Hybrid format using 4 parallel Ragie-backed agents. When to Use "Upgrade this skill to v5" "Formalize this skill with decision theory" "Add MDP structure to this skill" "Apply the skill-upgrader to X" Prerequisites Ragie RAG with indexed books: decision-theory partition: LaValle Planning Algorithms, Sutton & Barto RL modal-logic partition: Blackburn Modal Logic, Huth & Ryan Logic in CS Workflow Step 1: Setup Session S...
407
10555 ln-100-documents-pipeline levnikolaevich/claude-code-skills
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. Documentation Pipeline (Orchestrator) This skill orchestrates the creation of a complete documentation system by invoking L2 coordinator + 4 L2 workers. The coordinator (ln-110) delegates to 5 L3 workers for project docs; other L2 workers handle reference/tasks/test/presentation domains. Each component validates its own out...
407
10556 slash-commands parcadei/continuous-claude-v3
Slash Commands Reference Create and use user-triggered prompts with /command-name syntax. When to Use "How do I create a slash command?" "What slash commands are available?" "Add bash to my command" "Use file references in commands" "Slash commands vs skills" Built-in Commands Command Purpose /clear Clear conversation history /compact Compact conversation with focus /config Open settings interface /cost Show token usage /agents Manage sub-agents /mcp Manage MCP servers /memory Edit CLAUDE.md f...
407
10557 implement_plan parcadei/continuous-claude-v3
Implement Plan You are tasked with implementing an approved technical plan from thoughts/shared/plans/. These plans contain phases with specific changes and success criteria. Execution Modes You have two execution modes: Mode 1: Direct Implementation (Default) For small plans (3 or fewer tasks) or when user requests direct implementation. You implement each phase yourself Context accumulates in main conversation Use this for quick, focused implementations Mode 2: Agent Orchestration (Recom...
407
10558 ln-620-codebase-auditor levnikolaevich/claude-code-skills
Coordinates 9 specialized audit workers to perform comprehensive codebase quality analysis. Purpose & Scope - Coordinates 9 audit workers (ln-621 through ln-629) running in parallel - Research current best practices for detected tech stack via MCP tools ONCE - Pass shared context to all workers (token-efficient) - Aggregate worker results into single consolidated report - Create single refactoring task in Linear under Epic 0 with all findings - Manual invocation by user; not part of Stor...
406
10559 write-unit-tests tldraw/tldraw
Writing tests Unit and integration tests use Vitest. Tests run from workspace directories, not the repo root. Test file locations Unit tests - alongside source files: packages/editor/src/lib/primitives/Vec.ts packages/editor/src/lib/primitives/Vec.test.ts Same directory Integration tests - in src/test/ directory: packages/tldraw/src/test/SelectTool.test.ts packages/tldraw/src/test/commands/createShape.test.ts Shape/tool tests - alongside the implementation: packages/tldraw/src/lib/sh...
406
10560 search-skill gbsoss/skill-from-masters
Search Skill Search and recommend Claude Code Skills from trusted marketplaces based on user requirements. When to Use When users describe a need and want to find an existing Skill to solve it. Examples: "Is there a skill that can auto-generate changelogs?" "Find me a skill for frontend design" "I need a skill that can automate browser actions" Data Sources (by trust level) Tier 1 - Official / High Trust (show first) Source URL Notes anthropics/skills github.com/anthropics/skills Official e...
406
10561 llm mindrally/skills
LLM Development You are an expert in Large Language Model development, training, and fine-tuning. Core Principles Understand transformer architectures deeply Implement efficient training strategies Apply proper evaluation methodologies Optimize for inference performance Model Architecture Attention Mechanisms Implement self-attention correctly Use multi-head attention patterns Apply positional encodings appropriately Understand context length limitations Tokenization Choose appropriate tokeniz...
406
10562 sql-injection-prevention aj-geddes/useful-ai-prompts
SQL Injection Prevention Overview Implement comprehensive SQL injection prevention using prepared statements, parameterized queries, ORM best practices, and input validation. When to Use Database query development Legacy code security review Security audit remediation API endpoint development User input handling Dynamic query generation Implementation Examples 1. Node.js with PostgreSQL // secure-db.js const { Pool } = require('pg'); class SecureDatabase { constructor() { this.pool = ne...
406
10563 azure-diagrams eraserlabs/eraser-io
Azure Diagram Generator Generates architecture diagrams for Azure infrastructure from ARM templates, Azure CLI output, or natural language descriptions. When to Use Activate this skill when: User has ARM (Azure Resource Manager) templates (JSON) User provides Azure CLI output (e.g., az vm list) User wants to visualize Azure resources User mentions Azure services (Virtual Machines, Storage Accounts, VNets, etc.) User asks to "diagram my Azure infrastructure" How It Works This skill generates...
406
10564 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 ❌ ✗ 🔴...
406
10565 mcp:setup-context7-mcp neolabhq/context-engineering-kit
User Input: $ARGUMENTS Guide for setup Context7 MCP server 1. Determine setup context Ask the user where they want to store the configuration: Options: Project level (shared via git) - Configuration tracked in version control, shared with team CLAUDE.md updates go to: ./CLAUDE.md Project level (personal preferences) - Configuration stays local, not tracked in git CLAUDE.md updates go to: ./CLAUDE.local.md Verify these files are listed in .gitignore , add them if not User level (global) - Configu...
405
10566 pencilkit-drawing dpearson2699/swift-ios-skills
PencilKit Drawing Capture Apple Pencil and finger input using PKCanvasView , manage drawing tools with PKToolPicker , serialize drawings with PKDrawing , and wrap PencilKit in SwiftUI. Targets Swift 6.2 / iOS 26+. Contents Setup PKCanvasView Basics PKToolPicker PKDrawing Serialization Exporting to Image Stroke Inspection SwiftUI Integration PaperKit Relationship Common Mistakes Review Checklist References Setup PencilKit requires no entitlements or Info.plist entries. Import PencilKit and create...
405
10567 callkit-voip dpearson2699/swift-ios-skills
CallKit + PushKit VoIP Build VoIP calling features that integrate with the native iOS call UI using CallKit and PushKit. Covers incoming/outgoing call flows, VoIP push registration, audio session coordination, and call directory extensions. Targets Swift 6.2 / iOS 26+. Contents Setup Provider Configuration Incoming Call Flow Outgoing Call Flow PushKit VoIP Registration Audio Session Coordination Call Directory Extension Common Mistakes Review Checklist References Setup Project Configuration Enab...
405
10568 code-review-checklist davila7/claude-code-templates
Code Review Checklist Overview Provide a systematic checklist for conducting thorough code reviews. This skill helps reviewers ensure code quality, catch bugs, identify security issues, and maintain consistency across the codebase. When to Use This Skill Use when reviewing pull requests Use when conducting code audits Use when establishing code review standards for a team Use when training new developers on code review practices Use when you want to ensure nothing is missed in reviews Use when...
405
10569 ocr mr-shaper/opencode-skills-paddle-ocr
OCR Skill Usage To extract text from an image or PDF, run: python3 "/Users/mrshaper/Library/Application Support/com.differentai.openwork/workspaces/starter/.opencode/skills/paddle-ocr/scripts/ocr.py" "/path/to/image.png" Options Option Description --prompt "text" Custom prompt (e.g., "Extract table as markdown") --fast Use faster PaddleOCR instead of DeepSeek-OCR --json Output as JSON format Examples Basic OCR python3 scripts/ocr.py image.png Extract table as markdown python3 scripts/ocr.py ta...
405
10570 context-manager sickn33/antigravity-awesome-skills
Use this skill when Working on context manager tasks or workflows Needing guidance, best practices, or checklists for context manager Do not use this skill when The task is unrelated to context manager You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md . You ar...
405
10571 mcp-scripts parcadei/continuous-claude-v3
MCP Script Rules When working with files in scripts/: DO Use CLI arguments for all parameters (argparse) Include USAGE docstring at top of file Use call_mcp_tool("server__tool", params) pattern Handle errors gracefully with informative messages Print results to stdout for Claude to process DON'T Hardcode parameters in the script Edit scripts to change parameters (use CLI args instead) Import from servers/ directly (use runtime.mcp_client) Tool Naming Tool IDs use double underscore: serverName...
405
10572 database-migrations-sql-migrations sickn33/antigravity-awesome-skills
SQL Database Migration Strategy and Implementation Overview You are a SQL database migration expert specializing in zero-downtime deployments, data integrity, and production-ready migration strategies for PostgreSQL, MySQL, and SQL Server. Create comprehensive migration scripts with rollback procedures, validation checks, and performance optimization. When to Use This Skill Use when working on SQL database migration strategy and implementation tasks. Use when needing guidance, best practices, or...
405
10573 voltagent-best-practices voltagent/skills
VoltAgent Best Practices Quick reference for VoltAgent conventions and patterns. Choosing Agent or Workflow Use When Agent Open-ended tasks that require tool selection and adaptive reasoning Workflow Multi-step pipelines with explicit control flow and suspend/resume Layout src/ |-- index.ts |-- agents/ |-- tools/ `-- workflows/ Quick Snippets Basic Agent import { Agent } from "@voltagent/core"; const agent = new Agent({ name: "assistant", instructions: "You are helpful.", model: "opena...
405
10574 homekit-matter dpearson2699/swift-ios-skills
HomeKit + MatterSupport Control home automation accessories and commission Matter devices. HomeKit manages the home/room/accessory model, action sets, and triggers. MatterSupport handles device commissioning into your ecosystem. Targets Swift 6.2 / iOS 26+. Contents Setup HomeKit Data Model Managing Accessories Reading and Writing Characteristics Action Sets and Triggers Matter Commissioning MatterAddDeviceExtensionRequestHandler Common Mistakes Review Checklist References Setup HomeKit Configur...
404
10575 fix-review trailofbits/skills
Fix Review Differential analysis to verify commits address security findings without introducing bugs. When to Use Reviewing fix branches against security audit reports Validating that remediation commits actually address findings Checking if specific findings (TOB-XXX format) have been fixed Analyzing commit ranges for bug introduction patterns Cross-referencing code changes with audit recommendations When NOT to Use Initial security audits (use audit-context-building or differential-review) ...
404
10576 react-router-declarative-mode remix-run/agent-skills
React Router Declarative Mode Declarative mode is React Router's simplest mode using <BrowserRouter> , <Routes> , and <Route> for basic client-side routing without data loading features like loaders or actions. When to Apply Using <BrowserRouter> for routing Configuring routes with <Routes> and <Route> Navigating with <Link> , <NavLink> , or useNavigate Reading URL params with useParams Working with search params using useSearchParams Accessing location with useLocation References Load the relev...
404
10577 seo-meta-optimizer sickn33/antigravity-awesome-skills
Use this skill when Working on seo meta optimizer tasks or workflows Needing guidance, best practices, or checklists for seo meta optimizer Do not use this skill when The task is unrelated to seo meta optimizer You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md...
404
10578 anime-js mindrally/skills
Anime.js Animation Guidelines You are an expert in Anime.js, JavaScript, and web animation performance. Follow these guidelines when creating animations. Core Principles Installation and Import npm install animejs // Full import import anime from "animejs" ; // Modular import for smaller bundle size import { animate , timeline , stagger } from "animejs" ; Basic Animation anime ( { targets : ".element" , translateX : 250 , rotate : "1turn" , duration : 800 , easing : "easeInOutQuad" } ) ; Perform...
404
10579 opc-architecture parcadei/continuous-claude-v3
OPC Architecture Understanding OPC (Orchestrated Parallel Claude) extends Claude Code - it does NOT replace it. Core Concept Claude Code CLI is the execution engine. OPC adds orchestration via: Hooks - Intercept Claude Code events (PreToolUse, PostToolUse, SessionStart, etc.) Skills - Load prompts into Claude Code Scripts - Called by hooks/skills for coordination Database - Store state between Claude Code instances How Agents Work When you spawn an agent: Main Claude Code instance (your te...
404
10580 hook-developer parcadei/continuous-claude-v3
Hook Developer Complete reference for developing Claude Code hooks. Use this to write hooks with correct input/output schemas. When to Use Creating a new hook Debugging hook input/output format Understanding what fields are available Setting up hook registration in settings.json Learning what hooks can block vs inject context Quick Reference Hook Fires When Can Block? Primary Use PreToolUse Before tool executes YES Block/modify tool calls PostToolUse After tool completes Partial React to tool ...
404
10581 cypress mindrally/skills
Cypress (E2E + Component Testing) Overview Cypress runs browser automation with first-class network control, time-travel debugging, and a strong local dev workflow. Use it for critical path E2E tests and for component tests when browser-level rendering matters. Quick Start Install and open npm i -D cypress npx cypress open Minimal spec // cypress/e2e/health.cy.ts describe("health", () => { it("loads", () => { cy.visit("/"); cy.contains("Hello").should("be.visible"); }); }); Core ...
404
10582 passkit-wallet dpearson2699/swift-ios-skills
PassKit — Apple Pay & Wallet Accept Apple Pay payments for physical goods and services, and add passes to the user's Wallet. Covers payment buttons, payment requests, authorization, Wallet passes, and merchant configuration. Targets Swift 6.2 / iOS 26+. Contents Setup Displaying the Apple Pay Button Creating a Payment Request Presenting the Payment Sheet Handling Payment Authorization Wallet Passes Checking Pass Library Common Mistakes Review Checklist References Setup Project Configuration Enab...
403
10583 book-review readwiseio/readwise-skills
Draft a long-form book review from a user's Reader highlights — not just the target book, but pulling in related highlights from their entire library to build original arguments. The goal is a review that's more interesting than the book itself: summary + critique + original ideas, where the original ideas come from connecting the book to everything else the user has read. Readwise Access Check if Readwise MCP tools are available (e.g. mcp__readwise__reader_list_documents ). If they are, use the...
403
10584 livewire-development spatie/freek.dev
Livewire Development When to Apply Activate this skill when: Creating or modifying Livewire components Using wire: directives (model, click, loading, sort, intersect) Implementing islands or async actions Writing Livewire component tests Documentation Use search-docs for detailed Livewire 4 patterns and documentation. Basic Usage Creating Components Single-file component (default in v4) {{ $assist->artisanCommand('make:livewire create-post') }} Multi-file component {{ $assist->artisanCommand('ma...
403
10585 english-learner learnwy/skills
English Learner Personal vocabulary learning assistant with persistent storage and mastery tracking. Keywords (Special Commands) Keyword Action 学习 / review / quiz Start interactive learning session stats / 统计 Show learning statistics All other input is treated as content to translate/learn (English, Chinese, or mixed). Workflow 1. CHECK KEYWORD → If "学习"/"review"/"quiz" → Learning Mode 2. PARSE INPUT → Understand user intent (clarify if ambiguous) 3. IDENTIFY CONTENT → Extract word(s)/ph...
403
10586 integration-testing aj-geddes/useful-ai-prompts
Integration Testing Overview Integration testing validates that different components, modules, or services work correctly together. Unlike unit tests that isolate single functions, integration tests verify the interactions between multiple parts of your system including databases, APIs, external services, and infrastructure. When to Use Testing API endpoints with real database connections Verifying service-to-service communication Validating data flow across multiple layers Testing repository/...
402
10587 logistics-expert personamanagmentlayer/pcl
Expert guidance for supply chain management, logistics optimization, warehouse management systems, and transportation planning. Core Concepts Supply Chain Management - Inventory management - Demand forecasting - Procurement and sourcing - Warehouse management (WMS) - Transportation management (TMS) - Order fulfillment - Last-mile delivery Optimization - Route optimization - Load planning - Inventory optimization - Network design - Cost minimization - Delivery scheduling Tech...
402
10588 encore-auth encoredev/skills
Encore Authentication Instructions Encore.ts provides a built-in authentication system for identifying API callers and protecting endpoints. 1. Create an Auth Handler // auth.ts import { Header, Gateway } from "encore.dev/api"; import { authHandler } from "encore.dev/auth"; // Define what the auth handler receives interface AuthParams { authorization: Header<"Authorization">; } // Define what authenticated requests will have access to interface AuthData { userID: string; email: string;...
402
10589 writing-plans davila7/claude-code-templates
Writing Plans Overview Write comprehensive implementation plans assuming the engineer has zero context for our codebase and questionable taste. Document everything they need to know: which files to touch for each task, code, testing, docs they might need to check, how to test it. Give them the whole plan as bite-sized tasks. DRY. YAGNI. TDD. Frequent commits. Assume they are a skilled developer, but know almost nothing about our toolset or problem domain. Assume they don't know good test design ...
402
10590 backend-to-frontend-handoff-docs davila7/claude-code-templates
API Handoff Mode No Chat Output : Produce the handoff document only. No discussion, no explanation—just the markdown block saved to the handoff file. You are a backend developer completing API work. Your task is to produce a structured handoff document that gives frontend developers (or their AI) full business and technical context to build integration/UI without needing to ask backend questions. When to use : After completing backend API work—endpoints, DTOs, validation, business logic—run this...
402
10591 openalex-database davila7/claude-code-templates
OpenAlex Database Overview OpenAlex is a comprehensive open catalog of 240M+ scholarly works, authors, institutions, topics, sources, publishers, and funders. This skill provides tools and workflows for querying the OpenAlex API to search literature, analyze research output, track citations, and conduct bibliometric studies. Quick Start Basic Setup Always initialize the client with an email address to access the polite pool (10x rate limit boost): from scripts.openalex_client import OpenAlex...
402
10592 twitter-cli jackwener/twitter-cli
twitter-cli — Twitter/X CLI Tool Binary: twitter Credentials: browser cookies (auto-extracted) or env vars Setup Install (requires Python 3.8+) uv tool install twitter-cli Or: pipx install twitter-cli Upgrade to latest (recommended to avoid API errors) uv tool upgrade twitter-cli Or: pipx upgrade twitter-cli Authentication IMPORTANT FOR AGENTS : Before executing ANY twitter-cli command, you MUST first check if credentials exist. If not, you MUST proactively guide the user through the authent...
402
10593 remotion-best-practices digitalsamba/claude-code-video-toolkit
When to use Use this skills whenever you are dealing with Remotion code to obtain the domain-specific knowledge. Captions When dealing with captions or subtitles, load the ./rules/subtitles.md file for more information. Using FFmpeg For some video operations, such as trimming videos or detecting silence, FFmpeg should be used. Load the ./rules/ffmpeg.md file for more information. Audio visualization When needing to visualize audio (spectrum bars, waveforms, bass-reactive effects), load the ./rul...
402
10594 using-dbt-for-analytics-engineering dbt-labs/dbt-agent-skills
When you use this skill, announce: "Using dbt analytics engineering skill to [brief purpose]." Core principle: Apply software engineering discipline (DRY, modularity, testing) to data transformation work through dbt's abstraction layer. When to Use - Building new dbt models, sources, or tests - Modifying existing model logic or configurations - Refactoring a dbt project structure - Creating analytics pipelines or data transformations - Working with warehouse data that needs modeling Do ...
402
10595 send-feishu jssfy/k-skills
Send Feishu Message Send messages, images, and files to Feishu groups or individuals. Environment Variables Variable Purpose Required FEISHU_WEBHOOK Group Webhook URL For text/card/image to group FEISHU_APP_ID App credential For image/file upload & API send FEISHU_APP_SECRET App credential For image/file upload & API send FEISHU_CHAT_ID Group chat ID ( oc_xxx ) For API send to group FEISHU_USER_OPEN_ID Personal open_id ( ou_xxx ) For send to individual Decision Logic Choose the sending method ba...
401
10596 sub-agent-patterns jezweb/claude-skills
Sub-Agents in Claude Code Status: Production Ready ✅ Last Updated: 2026-01-14 Source: https://code.claude.com/docs/en/sub-agents Sub-agents are specialized AI assistants that Claude Code can delegate tasks to. Each sub-agent has its own context window, configurable tools, and custom system prompt. Why Use Sub-Agents: Context Hygiene The primary value of sub-agents isn't specialization—it's keeping your main context clean. Without agent (context bloat): Main context accumulates: ├─ git stat...
401
10597 contributing nuxt/ui
Nuxt UI Development Guidelines for contributing to the Nuxt UI component library. Project Structure src/ ├── runtime/ │ ├── components/ Vue components (PascalCase.vue) │ ├── composables/ Composables (use*.ts) │ ├── types/ TypeScript types │ └── utils/ Utility functions ├── theme/ Tailwind Variants themes (kebab-case.ts) └── module.ts test/ ├── components/ Component tests (*.spec.ts) │ └── __snapshots__/ Auto-generated snapshots └── ...
401
10598 wechat-automation cacr92/wereply
WeChat Automation Skill Expert guidance for WeChat monitoring and automation using wxauto (Windows) and Accessibility API (macOS). Overview WeReply uses Platform-specific Agents to monitor WeChat conversations and control the input box: Windows Agent : Python 3.12 + wxauto v4 macOS Agent : Swift + Accessibility API Communication : JSON protocol via stdin/stdout with Rust Orchestrator Architecture Pattern 微信窗口 ↓ (UI Automation) Platform Agent ├→ 监听消息(定时轮询) ├→ 提取消息内容 ├→ 发送到 Orchestrator (JSON via ...
401
10599 devops mindrally/skills
DevOps Skill Deploy and manage cloud infrastructure across Cloudflare, Docker, Google Cloud, and Kubernetes. When to Use Deploy serverless apps to Cloudflare Workers/Pages Containerize apps with Docker, Docker Compose Manage GCP with gcloud CLI (Cloud Run, GKE, Cloud SQL) Kubernetes cluster management (kubectl, Helm) GitOps workflows (Argo CD, Flux) CI/CD pipelines, multi-region deployments Security audits, RBAC, network policies Platform Selection Need Choose Sub-50ms latency globally Cloudfl...
401
10600 pnpm mindrally/skills
pnpm is a fast, disk space efficient package manager. It uses a content-addressable store to deduplicate packages across all projects on a machine, saving significant disk space. pnpm enforces strict dependency resolution by default, preventing phantom dependencies. Configuration should preferably be placed in pnpm-workspace.yaml for pnpm-specific settings. Important: When working with pnpm projects, agents should check for pnpm-workspace.yaml and .npmrc files to understand workspace structure a...
401