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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,096
总 Skills
59.3M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
1501 product-marketing coreyhaines31/marketingskills
Product Marketing Context You help users create and maintain a product marketing context document. This captures foundational positioning and messaging information that other marketing skills reference, so users don't repeat themselves. The document is stored at .agents/product-marketing.md . Workflow Step 1: Check for Existing Context First, check if .agents/product-marketing.md already exists. Also check .claude/product-marketing.md and the legacy filename product-marketing-context.md (in eith...
4.5K
1502 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...
4.5K
1503 strategic-compact affaan-m/everything-claude-code
Strategic Compact Skill Suggests manual /compact at strategic points in your workflow rather than relying on arbitrary auto-compaction. Why Strategic Compaction? Auto-compaction triggers at arbitrary points: Often mid-task, losing important context No awareness of logical task boundaries Can interrupt complex multi-step operations Strategic compaction at logical boundaries: After exploration, before execution - Compact research context, keep implementation plan After completing a milestone...
4.5K
1504 continuous-learning affaan-m/everything-claude-code
Continuous Learning Skill Automatically evaluates Claude Code sessions on end to extract reusable patterns that can be saved as learned skills. How It Works This skill runs as a Stop hook at the end of each session: Session Evaluation: Checks if session has enough messages (default: 10+) Pattern Detection: Identifies extractable patterns from the session Skill Extraction: Saves useful patterns to ~/.claude/skills/learned/ Configuration Edit config.json to customize: { "min_session_length...
4.5K
1505 springboot-tdd affaan-m/everything-claude-code
TDD guidance for Spring Boot services with 80%+ coverage (unit + integration). When to Use - New features or endpoints - Bug fixes or refactors - Adding data access logic or security rules Workflow - Write tests first (they should fail) - Implement minimal code to pass - Refactor with tests green - Enforce coverage (JaCoCo) Unit Tests (JUnit 5 + Mockito) ``` @ExtendWith(MockitoExtension.class) class MarketServiceTest { @Mock MarketRepository repo; @InjectMocks MarketService ser...
4.5K
1506 database-migrations affaan-m/everything-claude-code
Database Migration Patterns Safe, reversible database schema changes for production systems. When to Activate Creating or altering database tables Adding/removing columns or indexes Running data migrations (backfill, transform) Planning zero-downtime schema changes Setting up migration tooling for a new project Core Principles Every change is a migration — never alter production databases manually Migrations are forward-only in production — rollbacks use new forward migrations Schema and data mi...
4.5K
1507 security-scan affaan-m/everything-claude-code
Security Scan Skill Audit your Claude Code configuration for security issues using AgentShield . When to Activate Setting up a new Claude Code project After modifying .claude/settings.json , CLAUDE.md , or MCP configs Before committing configuration changes When onboarding to a new repository with existing Claude Code configs Periodic security hygiene checks What It Scans File Checks CLAUDE.md Hardcoded secrets, auto-run instructions, prompt injection patterns settings.json Overly permissive all...
4.5K
1508 cpp-coding-standards affaan-m/everything-claude-code
C++ Coding Standards (C++ Core Guidelines) Comprehensive coding standards for modern C++ (C++17/20/23) derived from the C++ Core Guidelines . Enforces type safety, resource safety, immutability, and clarity. When to Use Writing new C++ code (classes, functions, templates) Reviewing or refactoring existing C++ code Making architectural decisions in C++ projects Enforcing consistent style across a C++ codebase Choosing between language features (e.g., enum vs enum class , raw pointer vs smart poin...
4.5K
1509 market-research affaan-m/everything-claude-code
Market Research Produce research that supports decisions, not research theater. When to Activate researching a market, category, company, investor, or technology trend building TAM/SAM/SOM estimates comparing competitors or adjacent products preparing investor dossiers before outreach pressure-testing a thesis before building, funding, or entering a market Research Standards Every important claim needs a source. Prefer recent data and call out stale data. Include contrarian evidence and downside...
4.5K
1510 e2e-testing affaan-m/everything-claude-code
E2E Testing Patterns Comprehensive Playwright patterns for building stable, fast, and maintainable E2E test suites. Test File Organization tests/ ├── e2e/ │ ├── auth/ │ │ ├── login.spec.ts │ │ ├── logout.spec.ts │ │ └── register.spec.ts │ ├── features/ │ │ ├── browse.spec.ts │ │ ├── search.spec.ts │ │ └── create.spec.ts │ └── api/ │ └── endpoints.spec.ts ├── fixtures/ │ ├── auth.ts │ └── data.ts └── playwright.config.ts Page Object Model (POM) import { Pag...
4.5K
1511 tailwind-v4-shadcn secondsky/claude-skills
Tailwind v4 + shadcn/ui Production Stack Production-tested : WordPress Auditor ( https://wordpress-auditor.webfonts.workers.dev ) Last Updated : 2025-12-04 Status : Production Ready ✅ Table of Contents Before You Start Quick Start Four-Step Architecture Dark Mode Setup Critical Rules Semantic Color Tokens Common Issues & Fixes File Templates Setup Checklist Advanced Topics Dependencies Tailwind v4 Plugins Reference Documentation When to Load References ⚠️ BEFORE YOU START (READ THIS!) CRITICAL F...
4.5K
1512 deployment-patterns affaan-m/everything-claude-code
Deployment Patterns Production deployment workflows and CI/CD best practices. When to Activate Setting up CI/CD pipelines Dockerizing an application Planning deployment strategy (blue-green, canary, rolling) Implementing health checks and readiness probes Preparing for a production release Configuring environment-specific settings Deployment Strategies Rolling Deployment (Default) Replace instances gradually — old and new versions run simultaneously during rollout. Instance 1: v1 → v2 (update f...
4.5K
1513 excalidraw-diagram coleam00/excalidraw-diagram-skill
Excalidraw Diagram Creator Generate .excalidraw JSON files that argue visually , not just display information. Setup: If the user asks you to set up this skill (renderer, dependencies, etc.), see README.md for instructions. Customization All colors and brand-specific styles live in one file: references/color-palette.md . Read it before generating any diagram and use it as the single source of truth for all color choices — shape fills, strokes, text colors, evidence artifact backgrounds, everythi...
4.5K
1514 code-review anthropics/knowledge-work-plugins
Code Review When to use this skill Reviewing pull requests Checking code quality Providing feedback on implementations Identifying potential bugs Suggesting improvements Security audits Performance analysis Instructions Step 1: Understand the context Read the PR description : What is the goal of this change? Which issues does it address? Are there any special considerations? Check the scope : How many files changed? What type of changes? (feature, bugfix, refactor) Are tests included? Step 2: Hi...
4.5K
1515 learn tw93/waza
Learn: From Raw Materials to Published Output Prefix your first line with 🥷 inline, not as its own paragraph. Your role: collect, organize, translate, explain, structure. You support the user's thinking; you do not replace it. Pre-check Check whether /read and /write skills are installed (look for their SKILL.md in the skills directories). Warn if missing, do not block: /read missing -- Phase 1 fetch falls back to native WebFetch / curl ; coverage on paywalled, JS-heavy, and Chinese-platform pag...
4.5K
1516 jpa-patterns affaan-m/everything-claude-code
Use for data modeling, repositories, and performance tuning in Spring Boot. Entity Design ``` @Entity @Table(name = "markets", indexes = { @Index(name = "idx_markets_slug", columnList = "slug", unique = true) }) @EntityListeners(AuditingEntityListener.class) public class MarketEntity { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @Column(nullable = false, length = 200) private String name; @Column(nullable = false, unique = true, length = 120) priva...
4.5K
1517 clickhouse-io affaan-m/everything-claude-code
ClickHouse Analytics Patterns ClickHouse-specific patterns for high-performance analytics and data engineering. When to Activate Designing ClickHouse table schemas (MergeTree engine selection) Writing analytical queries (aggregations, window functions, joins) Optimizing query performance (partition pruning, projections, materialized views) Ingesting large volumes of data (batch inserts, Kafka integration) Migrating from PostgreSQL/MySQL to ClickHouse for analytics Implementing real-time dashboar...
4.5K
1518 eval-harness affaan-m/everything-claude-code
Eval Harness Skill A formal evaluation framework for Claude Code sessions, implementing eval-driven development (EDD) principles. Philosophy Eval-Driven Development treats evals as the "unit tests of AI development": Define expected behavior BEFORE implementation Run evals continuously during development Track regressions with each change Use pass@k metrics for reliability measurement Eval Types Capability Evals Test if Claude can do something it couldn't before: [CAPABILITY EVAL: feature-...
4.5K
1519 ask-questions-if-underspecified trailofbits/skills
Ask Questions If Underspecified When to Use Use this skill when a request has multiple plausible interpretations or key details (objective, scope, constraints, environment, or safety) are unclear. When NOT to Use Do not use this skill when the request is already clear, or when a quick, low-risk discovery read can answer the missing details. Goal Ask the minimum set of clarifying questions needed to avoid wrong work; do not start implementing until the must-have questions are answered (or th...
4.5K
1520 instaclaw napoleond/instaclaw
Instaclaw 🦞 A photo sharing platform designed for AI agents at instaclaw.xyz Quick Start Install ATXP: npx skills add atxp-dev/cli --skill atxp Call MCP tools: npx atxp-call https://instaclaw.xyz/mcp <tool> [params] Creating Images with ATXP Recommended: Use ATXP's image generation to create your posts! Generate unique AI art to share with other agents: Generate an image npx atxp image "a cyberpunk lobster in neon city lights" The command returns an image URL you can use directly in your post ...
4.5K
1521 pricing coreyhaines31/marketingskills
Pricing Strategy You are an expert in SaaS pricing and monetization strategy. Your goal is to help design pricing that captures value, drives growth, and aligns with customer willingness to pay. Before Starting Check for product marketing context first: If .agents/product-marketing.md exists (or .claude/product-marketing.md , or the legacy product-marketing-context.md filename, in older setups), read it before asking questions. Use that context and only ask for information not already covered or...
4.4K
1522 terraform-style-guide hashicorp/agent-skills
Terraform Style Guide Generate and maintain Terraform code following HashiCorp's official style conventions and best practices. Reference: HashiCorp Terraform Style Guide Code Generation Strategy When generating Terraform code: Start with provider configuration and version constraints Create data sources before dependent resources Build resources in dependency order Add outputs for key resource attributes Use variables for all configurable values File Organization File Purpose terraform.tf ...
4.4K
1523 langfuse langfuse/skills
Langfuse This skill helps you use Langfuse effectively across all common workflows: instrumenting applications, migrating prompts, debugging traces, and accessing data programmatically. Core Principles Follow these principles for ALL Langfuse work: Documentation First : NEVER implement based on memory. Always fetch current docs before writing code (Langfuse updates frequently) See the section below on how to access documentation. CLI for Data Access : Use langfuse-cli when querying/modifying Lan...
4.4K
1524 ui-animation mblode/agent-skills
UI Animation Core rules Animate to clarify cause/effect or add deliberate delight. Keep interactions fast (200-300ms; up to 1s only for illustrative motion). Never animate keyboard interactions (arrow-key navigation, shortcut responses, tab/focus). Prefer CSS; use WAAPI or JS only when needed. Make animations interruptible and input-driven. Honor prefers-reduced-motion (reduce or disable). What to animate For movement and spatial change, animate only transform and opacity . For simple state feed...
4.4K
1525 django-tdd affaan-m/everything-claude-code
Django Testing with TDD Test-driven development for Django applications using pytest, factory_boy, and Django REST Framework. When to Activate Writing new Django applications Implementing Django REST Framework APIs Testing Django models, views, and serializers Setting up testing infrastructure for Django projects TDD Workflow for Django Red-Green-Refactor Cycle Step 1: RED - Write failing test def test_user_creation ( ) : user = User . objects . create_user ( email = 'test@example.com' , passwo...
4.4K
1526 apify-generate-output-schema apify/agent-skills
Generate Actor Output Schema You are generating output schema files for an Apify Actor. The output schema tells Apify Console how to display run results. You will analyze the Actor's source code, create dataset_schema.json , output_schema.json , and key_value_store_schema.json (if the Actor uses key-value store), and update actor.json . Core Principles Analyze code first : Read the Actor's source to understand what data it actually pushes to the dataset — never guess Every field is nullable : AP...
4.4K
1527 shopify-dev shopify/shopify-ai-toolkit
This skill provides a general-purpose search over all of Shopify's developer documentation on shopify.dev. Use it to find documentation when the user's question spans multiple APIs or when no API-specific skill (shopify-admin-graphql, shopify-liquid, shopify-checkout-extensions, etc.) matches the task. ⚠️ MANDATORY: Search for Documentation Examples You cannot trust your trained knowledge for this API. Searching is the only way to know you are getting the latest up-to-date information on how to ...
4.4K
1528 tushare waditu-tushare/skills
Tushare 概述 tushare是一个财经数据接口包,拥有丰富的数据内容,如股票、基金、期货、数字货币等行情数据,公司财务、基金经理等基本面数据。该模块通过标准化API方式统一了数据资产的对外服务方式,以帮助有需要的技术用户更实时、简洁、轻量的使用相关数据。 快速上手 安装python运行环境(推荐python3.7+),并安装tushare依赖包(推荐从清华pypi镜像安装)。 pip install tushare -i https://pypi.tuna.tsinghua.edu.cn/simple Tushare官网注册,获取token,并配置环境变量。 注册地址 export TUSHARE_TOKEN = your_token 查询Tushare接口文档,找到对应的接口。 在线数据接口文档 根据接口文档,使用python代码获取数据。(如 股票列表 接口) import os import tushare as ts 读取环境变量中的token, 或者读取本地记录的token token = os . getenv ( 'TUSHARE_TOKEN' ) or ts ...
4.4K
1529 weather steipete/clawdis
Weather Skill Get current weather conditions and forecasts. When to Use ✅ USE this skill when: "What's the weather?" "Will it rain today/tomorrow?" "Temperature in [city]" "Weather forecast for the week" Travel planning weather checks When NOT to Use ❌ DON'T use this skill when: Historical weather data → use weather archives/APIs Climate analysis or trends → use specialized data sources Hyper-local microclimate data → use local sensors Severe weather alerts → check official NWS sources Aviation/...
4.4K
1530 iterative-retrieval affaan-m/everything-claude-code
Iterative Retrieval Pattern Solves the "context problem" in multi-agent workflows where subagents don't know what context they need until they start working. The Problem Subagents are spawned with limited context. They don't know: Which files contain relevant code What patterns exist in the codebase What terminology the project uses Standard approaches fail: Send everything: Exceeds context limits Send nothing: Agent lacks critical information Guess what's needed: Often wrong The Solution:...
4.4K
1531 clawdirect-dev napoleond/clawdirect
ClawDirect-Dev Build agent-facing web experiences with ATXP-based authentication. Reference implementation : https://github.com/napoleond/clawdirect What is ATXP? ATXP (Agent Transaction Protocol) enables AI agents to authenticate and pay for services. When building agent-facing websites, ATXP provides: Agent identity : Know which agent is making requests Payments : Charge for premium actions (optional) MCP integration : Expose tools that agents can call programmatically For full ATXP details: h...
4.4K
1532 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
1533 finance-expert personamanagmentlayer/pcl
Expert guidance for financial systems, FinTech applications, banking platforms, payment processing, and financial technology development. Core Concepts Financial Systems - Core banking systems - Payment processing - Trading platforms - Risk management - Regulatory compliance (PCI-DSS, SOX, Basel III) - Financial reporting FinTech Stack - Payment gateways (Stripe, PayPal, Square) - Banking APIs (Plaid, Yodlee) - Blockchain/crypto - Open Banking APIs - Mobile banking - Digital wa...
4.4K
1534 meme-rush binance/binance-skills-hub
Meme Rush Skill Overview Meme Rush — Launchpad token lifecycle tracking rankType Stage Description 10 New Freshly created meme tokens still on bonding curve 20 Finalizing Tokens about to migrate (bonding curve nearly complete) 30 Migrated Tokens that just migrated to DEX Topic Rush — AI-powered market hot topic discovery rankType Stage Description 10 Latest Newest hot topics 20 Rising Rising topics with all-time high inflow between $1k–$20k 30 Viral Viral topics with all-time high inflow above $...
4.4K
1535 emails coreyhaines31/marketingskills
Email Sequence Design You are an expert in email marketing and automation. Your goal is to create email sequences that nurture relationships, drive action, and move people toward conversion. Initial Assessment Check for product marketing context first: If .agents/product-marketing.md exists (or .claude/product-marketing.md , or the legacy product-marketing-context.md filename, in older setups), read it before asking questions. Use that context and only ask for information not already covered or ...
4.3K
1536 tailored-resume-generator composiohq/awesome-claude-skills
Tailored Resume Generator When to Use This Skill Applying for a specific job position Customizing your resume for different industries or roles Highlighting relevant experience for career transitions Optimizing your resume for ATS (Applicant Tracking Systems) Creating multiple resume versions for different job applications Emphasizing specific skills mentioned in job postings What This Skill Does Analyzes Job Descriptions: Extracts key requirements, skills, qualifications, and keywords from job ...
4.3K
1537 linear-cli schpet/linear-cli
Linear CLI A CLI to manage Linear issues from the command line, with git and jj integration. Prerequisites The linear command must be available on PATH. To check: linear --version If not installed, follow the instructions at: https://github.com/schpet/linear-cli?tab=readme-ov-fileinstall Best Practices for Markdown Content When working with issue descriptions or comment bodies that contain markdown, always prefer using file-based flags instead of passing content as command-line arguments: Use --...
4.3K
1538 shopify-liquid 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 "<tag, filter, or object name>" — search before writing code Search limit: max 2 searches. If both return [] , skip to step 2 using your built-in Liquid knowledge. Write the code using the search results (or built-in knowledge if search returned nothing) Call bash with node scripts/validate.mjs --filename <file.liquid> --filetype <sections|snippets|block...
4.3K
1539 liquid-glass-design affaan-m/everything-claude-code
Liquid Glass Design System (iOS 26) Patterns for implementing Apple's Liquid Glass — a dynamic material that blurs content behind it, reflects color and light from surrounding content, and reacts to touch and pointer interactions. Covers SwiftUI, UIKit, and WidgetKit integration. When to Activate Building or updating apps for iOS 26+ with the new design language Implementing glass-style buttons, cards, toolbars, or containers Creating morphing transitions between glass elements Applying Liquid G...
4.3K
1540 swift-testing-pro twostraws/swift-testing-agent-skill
Write and review Swift Testing code for correctness, modern API usage, and adherence to project conventions. Report only genuine problems - do not nitpick or invent issues. Review process: Ensure tests follow core Swift Testing conventions using references/core-rules.md . Validate test structure, assertions, dependency injection, and other best practices using references/writing-better-tests.md . Check async tests, confirmations, time limits, actor isolation, and networking mocks using reference...
4.3K
1541 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...
4.3K
1542 prompt-optimizer affaan-m/everything-claude-code
Prompt Optimizer Analyze a draft prompt, critique it, match it to ECC ecosystem components, and output a complete optimized prompt the user can paste and run. When to Use User says "optimize this prompt", "improve my prompt", "rewrite this prompt" User says "help me write a better prompt for..." User says "what's the best way to ask Claude Code to..." User says "优化prompt", "改进prompt", "怎么写prompt", "帮我优化这个指令" User pastes a draft prompt and asks for feedback or enhancement User says "I don't know ...
4.3K
1543 query-address-info binance/binance-skills-hub
Query Address Info Skill Overview This skill queries any on-chain wallet address for token holdings, supporting: List of all tokens held by a wallet address Current price of each token 24-hour price change percentage Holding quantity API Endpoint Query Wallet Token Balance Method : GET URL : https://web3.binance.com/bapi/defi/v3/public/wallet-direct/buw/wallet/address/pnl/active-position-list Request Parameters : Parameter Type Required Description address string Yes Wallet address, e.g., 0x0000...
4.3K
1544 okx-dex-trenches okx/onchainos-skills
OKX DEX Memepump CLI 7 commands for meme token discovery, developer analysis, bundle detection, and co-investor tracking. 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 docu...
4.3K
1545 query-token-audit binance/binance-skills-hub
Query Token Audit Skill Overview API Function Use Case Token Security Audit Token security scan Detect honeypot, rug pull, scam, malicious functions Use Cases Pre-Trade Safety Check : Verify token security before buying or swapping Scam Detection : Identify honeypots, fake tokens, and malicious contracts Contract Analysis : Check for dangerous ownership functions and hidden risks Tax Verification : Detect unusual buy/sell taxes before trading Supported Chains Chain Name chainId BSC 56 Base 8453 ...
4.3K
1546 nutrient-document-processing affaan-m/everything-claude-code
Nutrient Document Processing 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 Convert Documents DOCX to PDF curl -X POST https://api.nutrient.io/build \ -H "Authorization:...
4.3K
1547 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.3K
1548 onboarding coreyhaines31/marketingskills
Onboarding CRO You are an expert in user onboarding and activation. Your goal is to help users reach their "aha moment" as quickly as possible and establish habits that lead to long-term retention. Initial Assessment Check for product marketing context first: If .agents/product-marketing.md exists (or .claude/product-marketing.md , or the legacy product-marketing-context.md filename, in older setups), read it before asking questions. Use that context and only ask for information not already cove...
4.2K
1549 threejs-fundamentals cloudai-x/threejs-skills
Three.js Fundamentals Quick Start import * as THREE from "three"; // Create scene, camera, renderer const scene = new THREE.Scene(); const camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000, ); const renderer = new THREE.WebGLRenderer({ antialias: true }); renderer.setSize(window.innerWidth, window.innerHeight); renderer.setPixelRatio(Math.min(window.devicePixelRatio, 2)); document.body.appendChild(renderer.domElement); // Add a mesh const geom...
4.2K
1550 code-review-and-quality addyosmani/agent-skills
Code Review and Quality Overview Multi-dimensional code review with quality gates. Every change gets reviewed before merge — no exceptions. Review covers five axes: correctness, readability, architecture, security, and performance. The standard is: "Would a staff engineer approve this diff and the verification story?" When to Use Before merging any PR or change After completing a feature implementation When another agent or model produced code you need to evaluate When refactoring existing code ...
4.2K