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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,925
总 Skills
177.2M
总安装量
2,758
贡献者
# Skill 仓库 描述 安装量
21151 cron-scheduler aidotnet/moyucode
Cron Scheduler Tool Description Parse, validate, and explain cron expressions. Calculate next run times and generate cron syntax. Trigger /cron command User needs cron expression help User wants to schedule tasks Usage Explain cron expression python scripts/cron_scheduler.py "0 9 * * 1-5" Get next N run times python scripts/cron_scheduler.py "*/15 * * * *" --next 5 Generate cron from description python scripts/cron_scheduler.py --generate "every day at 9am" Validate expression python scripts...
56
21152 frontend-dev-guidelines bbeierle12/skill-mcp-claude
Frontend Development Guidelines (React · TypeScript · Suspense-First · Production-Grade) You are a senior frontend engineer operating under strict architectural and performance standards. Your goal is to build scalable, predictable, and maintainable React applications using: Suspense-first data fetching Feature-based code organization Strict TypeScript discipline Performance-safe defaults This skill defines how frontend code must be written , not merely how it can be written. 1. Frontend Feasibi...
56
21153 debug-with-file catlog22/claude-code-workflow
Codex Debug-With-File Prompt Overview Enhanced evidence-based debugging with documented exploration process . Records understanding evolution, consolidates insights, and uses analysis to correct misunderstandings. Core workflow : Explore → Document → Log → Analyze → Correct Understanding → Fix → Verify Key enhancements over /prompts:debug : understanding.md : Timeline of exploration and learning Analysis-assisted correction : Validates and corrects hypotheses Consolidation : Simplifies proven-wr...
56
21154 docker-git-bash-guide josiahsiegel/claude-plugin-marketplace
Docker on Windows Git Bash / MINGW - Path Conversion Guide This skill provides comprehensive guidance on handling Docker commands in Git Bash (MINGW) on Windows, with specific focus on volume mount path conversion issues and solutions. The Path Conversion Problem When running Docker commands in Git Bash (MINGW) or MSYS2 on Windows, automatic path conversion can cause serious issues with volume mounts and other Docker commands. What Triggers Automatic Conversion MSYS/MINGW shells automatical...
56
21155 codeup abcfed/claude-marketplace
No SKILL.md available for this skill. View on GitHub
56
21156 umbraco-skill-validator umbraco/umbraco-cms-backoffice-skills
Skill Content Validator Validates all SKILL.md files in the repository for broken links, missing references, and invalid paths. What This Skill Does Runs deterministic validation script - Fast, consistent checking of all links Generates structured report - JSON output with all issues found Spawns fixer subagent - AI-powered fix suggestions for issues Presents fix plan - Diff-style changes for approval Executes approved fixes - Only applies changes user approves Validation Checks Check Type Descr...
56
21157 schema-creator oimiragieo/agent-studio
Schema Creator Skill WARNING: DO NOT WRITE DIRECTLY TO .claude/schemas/ Schema files are protected by unified-creator-guard.cjs (Gate 4 in CLAUDE.md). Direct writes bypass post-creation steps (catalog updates, consumer assignment, integration verification). Always use the schema-creator skill workflow for creating schemas. Direct writes create "invisible artifacts" that no validator or agent can discover. Creates JSON Schema validation files for the Claude Code Enterprise Framework. Schemas enfo...
56
21158 brightdata danielmiessler/personal_ai_infrastructure
Customization Before executing, check for user customizations at: ~/.claude/skills/CORE/USER/SKILLCUSTOMIZATIONS/BrightData/ If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults. Voice Notification When executing a workflow, do BOTH: Send voice notification : curl -s -X POST http://localhost:8888/notify \ -H "Content-Type: application/json" \ -d '{"messa...
56
21159 python-logging-strategist jorgealves/agent_skills
Python Logging Strategist Purpose and Intent Design structured logging systems with context propagation. Use to ensure Python applications are observable and logs are machine-readable. When to Use Project Setup : When initializing a new Python project. Continuous Integration : As part of automated build and test pipelines. Legacy Refactoring : When updating older Python codebases to modern standards. When NOT to Use Non-Python Projects : This tool is specialized for the Python ecosystem. Error C...
56
21160 ccxt-php ccxt/ccxt
CCXT for PHP A comprehensive guide to using CCXT in PHP projects for cryptocurrency exchange integration. Installation Via Composer (REST and WebSocket) composer require ccxt/ccxt Required PHP Extensions cURL mbstring (UTF-8) PCRE iconv gmp (for some exchanges) Optional for Async/WebSocket ReactPHP (installed automatically with ccxt) Quick Start REST API - Synchronous <?php date_default_timezone_set ( 'UTC' ) ; // Required! require_once 'vendor/autoload.php' ; $exchange = new \ ccxt \ binance ( ...
56
21161 specalign 0xbigboss/claude-code
Spec Alignment Principles (Always Active) These apply whenever a spec file and its corresponding implementation are both in context: Spec and Code Must Agree A spec describes intended behavior; code implements it. When they disagree, one is wrong. Never silently tolerate drift - surface it immediately when noticed. The user decides which is the source of truth for each discrepancy. Do not assume. Drift Categories Type drift : spec defines fields/types that don't match the implementation Behavior...
56
21162 brand voice coach eddiebe147/claude-settings
Brand Voice Coach Define, document, and maintain a consistent brand voice that makes your content instantly recognizable. This skill helps you articulate what your brand sounds like, train teams to write on-brand, and ensure consistency across every touchpoint. A strong brand voice builds trust, differentiates from competitors, and creates emotional connection. This skill provides frameworks for defining voice attributes, creating practical guidelines, and evaluating content against brand standa...
56
21163 data-pipeline-engineer erichowens/some_claude_skills
Data Pipeline Engineer Expert data engineer specializing in ETL/ELT pipelines, streaming architectures, data warehousing, and modern data stack implementation. Quick Start Identify sources - data formats, volumes, freshness requirements Choose architecture - Medallion (Bronze/Silver/Gold), Lambda, or Kappa Design layers - staging → intermediate → marts (dbt pattern) Add quality gates - Great Expectations or dbt tests at each layer Orchestrate - Airflow DAGs with sensors and retries Monitor - l...
56
21164 pricing-strategist ncklrs/startup-os-skills
Pricing Strategist Purpose Build a comprehensive, justified pricing strategy — tier structures, price points, positioning, and revenue optimization — tailored to the business through context and conversation. Execution Logic Check $ARGUMENTS first to determine execution mode: If $ARGUMENTS is empty or not provided: Respond with: "pricing-strategist loaded, ready to build your pricing strategy" Then wait for the user to provide context in the next message. If $ARGUMENTS contains content: Proceed ...
56
21165 plan-generator oimiragieo/agent-studio
Plan Generator Skill Step 1: Analyze Requirements Parse user requirements: Extract explicit requirements Identify implicit requirements Determine planning scope Assess complexity Step 2: Coordinate Specialists Request planning input from relevant agents: Analyst : Business requirements and market context PM : Product requirements and user stories Architect : Technical architecture and design Database Architect : Data requirements UX Expert : Interface requirements Step 3: Generate Plan Structure...
56
21166 huggingface-accelerate orchestra-research/ai-research-skills
HuggingFace Accelerate - Unified Distributed Training Quick start Accelerate simplifies distributed training to 4 lines of code. Installation: pip install accelerate Convert PyTorch script (4 lines): import torch + from accelerate import Accelerator + accelerator = Accelerator() model = torch.nn.Transformer() optimizer = torch.optim.Adam(model.parameters()) dataloader = torch.utils.data.DataLoader(dataset) + model, optimizer, dataloader = accelerator.prepare(model, optimizer, data...
56
21167 quality-audit-workflow rysweet/amplihack
Orchestrates a systematic, parallel quality audit of any codebase with automated remediation through PR generation and PM-prioritized recommendations. When I Activate I automatically load when you mention: - "quality audit" or "code audit" - "codebase review" or "full code review" - "refactoring opportunities" or "technical debt audit" - "module quality check" or "architecture review" - "parallel analysis" with multiple agents What I Do Execute a 7-phase workflow that: - Familiarizes...
56
21168 playwright-test open-metadata/openmetadata
Playwright Test Generator - OpenMetadata Generate production-ready, zero-flakiness Playwright tests following OpenMetadata conventions. Usage /playwright-test Feature: <feature name> Category: <Features|Pages|Flow|VersionPages> Entity: <Table|Dashboard|Pipeline|Topic|Database|User|Team|Glossary|Other> Domain: <Governance|Discovery|Platform|Observability|Integration> Scenarios: - <scenario 1 description> - <scenario 2 description> - <scenario 3 description> Roles: <admin|dataConsumer|dataSteward|...
56
21169 react-animation notedit/happy-skills
When to use Use this skill when creating Remotion video compositions that need aesthetically refined visual effects. Components are curated for motion graphics excellence, categorized by visual style. Installation npx shadcn@latest add https://reactbits.dev/r/ < Component > -TS-CSS 🎨 Aesthetic Categories Components organized by visual style. Avoid mixing more than 2 styles in one video. 1. Elegant & Soft (优雅柔和) Smooth, cinematic, refined. Best for luxury brands, emotional storytelling. Text Comp...
56
21170 frontend-style-guide lightdash/lightdash
Lightdash Frontend Style Guide Apply these rules when working on any frontend component in packages/frontend/ . Mantine 8 Migration CRITICAL : We are migrating from Mantine 6 to 8. Always upgrade v6 components when you encounter them. Component Checklist When creating/updating components: Use @mantine-8/core imports No style or styles or sx props Check Mantine docs/types for available component props Use inline-style component props for styling when available (and follow <=3 props rule) Use CSS ...
56
21171 hyperforce-2025 josiahsiegel/claude-plugin-marketplace
🚨 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 create new documentation files unless ...
56
21172 llm-artifacts-detection existential-birds/beagle
LLM Artifacts Detection Detect and flag common patterns introduced by LLM coding agents that reduce code quality. Detection Categories Category Reference Key Issues Tests references/tests-criteria.md DRY violations, library testing, mock boundaries Dead Code references/dead-code-criteria.md Unused code, TODO/FIXME, backwards compat cruft Abstraction references/abstraction-criteria.md Over-abstraction, copy-paste drift, over-configuration Style references/style-criteria.md Obvious comments, def...
56
21173 controller-signers cartridge-gg/docs
Controller Signers & Authentication Controller supports multiple authentication methods (signers) for flexibility and security. Supported Signer Types Type Description Best For webauthn Passkey (biometric/hardware key) Primary auth, most secure google Google OAuth Easy onboarding discord Discord OAuth Gaming communities twitter Twitter/X OAuth Social integration argent Argent wallet (Starknet) Starknet native users braavos Braavos wallet (Starknet) Starknet native users metamask MetaMask (deskto...
56
21174 mailsac vm0-ai/vm0-skills
Mailsac Use the Mailsac API via direct curl calls to manage disposable email addresses for testing and QA automation. Official docs: https://docs.mailsac.com/ When to Use Use this skill when you need to: Receive test emails in disposable inboxes Validate email addresses (check format and disposable status) Automate email verification flows in E2E tests Configure webhooks for real-time email notifications Manage private email addresses for testing Prerequisites Sign up at https://mailsac.com...
56
21175 copywriting kimny1143/claude-code-template
Copywriting You are an expert conversion copywriter. Your goal is to write marketing copy that is clear, compelling, and drives action. Before Writing 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 asking questions. Use that context and only ask for information not already covered or specific to this task. Gather this context (ask if not provided): 1. Page Purpose What type of pag...
56
21176 script writer eddiebe147/claude-settings
Script Writer Transform ideas into engaging audio-visual scripts that captivate audiences and deliver your message effectively. This skill helps you write scripts for YouTube videos, podcasts, presentations, webinars, ads, and any spoken content that needs to sound natural and engaging. Whether you're creating educational content, entertainment, marketing videos, or thought leadership, this skill ensures your scripts are well-paced, conversational, and optimized for the spoken word. It balances ...
56
21177 blip-2-vision-language orchestra-research/ai-research-skills
BLIP-2: Vision-Language Pre-training Comprehensive guide to using Salesforce's BLIP-2 for vision-language tasks with frozen image encoders and large language models. When to use BLIP-2 Use BLIP-2 when: Need high-quality image captioning with natural descriptions Building visual question answering (VQA) systems Require zero-shot image-text understanding without task-specific training Want to leverage LLM reasoning for visual tasks Building multimodal conversational AI Need image-text retrieva...
56
21178 chrome-extension-wxt tenequm/claude-plugins
Chrome Extension Development with WXT Build modern, cross-browser extensions using WXT - the next-generation framework that supports Chrome, Firefox, Edge, Safari, and all Chromium browsers with a single codebase. When to Use This Skill Use this skill when: Creating a new Chrome/browser extension Setting up WXT development environment Building extension features (popup, content scripts, background scripts) Implementing cross-browser compatibility Working with Manifest V3 (mandatory standard as o...
56
21179 x-recruiter iofficeai/aionui
本技能用于快速在 X 发布招聘信息,包含文案规则、封面/详情图提示与自动化发布脚本。 核心工作流 1. 信息收集 向用户确认: - 岗位名称 - 核心职责 & 要求 - 投递邮箱/链接 2. 生成视觉素材 使用 `scripts/generate_images.js` 生成图片。 - 操作: ``` node scripts/generate_images.js ``` - 产出:`cover.png`, `jd_details.png` 3. 生成文案 生成符合 X 调性的文案,控制在 280 字符内。 - 规则:参考 `assets/rules.md`。 - 要求:简洁、清晰、带核心职责与投递方式。 4. 自动化发布 使用 `scripts/publish_x.py` 启动浏览器进行发布。 前置要求: - 安装 Playwright: `pip install playwright` - 安装浏览器驱动: `playwright install chromium` 执行命令: ``` python3 scripts/publis...
56
21180 user-stories-setup andrelandgraf/fullstackrecipes
User Stories Setup To set up User Stories Setup, refer to the fullstackrecipes MCP server resource: Resource URI: recipe://fullstackrecipes.com/user-stories-setup If the MCP server is not configured, fetch the recipe directly: curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/user-stories-setup
56
21181 python-config-manager jorgealves/agent_skills
Python Configuration Manager Purpose and Intent Generate and validate environment-based configuration for Python apps using Pydantic or Dynaconf. Use to ensure secure and valid runtime settings. When to Use Project Setup : When initializing a new Python project. Continuous Integration : As part of automated build and test pipelines. Legacy Refactoring : When updating older Python codebases to modern standards. When NOT to Use Non-Python Projects : This tool is specialized for the Python ecosyste...
56
21182 trellis-meta mindfold-ai/trellis
Trellis Meta-Skill Version Compatibility Item Value Trellis CLI Version 0.3.0 Skill Last Updated 2026-02-28 Min Claude Code Version 1.0.0+ ⚠️ Version Mismatch Warning : If your Trellis CLI version differs from above, some features may not work as documented. Run trellis --version to check. Platform Compatibility Feature Support Matrix Feature Claude Code iFlow Cursor OpenCode Codex Kilo Kiro Gemini CLI Antigravity Core Systems Workspace system ✅ Full ✅ Full ✅ Full ✅ Full ✅ Full ✅ Full ✅ Full ✅ F...
56
21183 sharex feature specifications sharex/xerahs
Uploader Plugin System Specification Architecture Overview Multi-Instance Provider Catalog: Renamed IUploaderPlugin → IUploaderProvider with multi-category support Separated provider (type) from instance (configured occurrence) ProviderCatalog : Static registry for provider types InstanceManager : Singleton for instance lifecycle, persistence, default selection Models: UploaderInstance , InstanceConfiguration with JSON serialization UI: ProviderCatalogViewModel , CategoryViewModel , UploaderInst...
56
21184 git-commit-specification tencentblueking/bk-ci
Git 提交规范 Quick Reference 格式:标记: 提交描述 issue编号 示例:feat: 添加流水线模板功能 1234 分支:feature/xxx | bugfix/xxx | hotfix/xxx 标记类型 标记 说明 示例 feat 新功能 feat: 添加流水线模板支持 1234 fix Bug 修复 fix: 修复构建日志丢失 5678 refactor 重构 refactor: 优化查询性能 perf 性能优化 perf: 减少数据库查询 test 测试 test: 添加单元测试 docs 文档 docs: 更新 API 文档 chore 构建/工具 chore: 更新 Gradle 配置 del 破坏性删除 del: 移除废弃 API(需特别批准) When to Use 提交代码 创建分支 准备 PR 编写 commit message 提交格式 标准格式 feat: 添加流水线模板功能 1234 带范围 feat(process): 添加流水线模板功能 1234 分支命名 feature/pipeline-template-support ...
56
21185 deep-researcher zenobi-us/dotfiles
Deep Researcher Overview Deep research IS systematic information verification with evidence trails. The deep-researcher superpower converts vague research requests into structured investigation with explicit confidence levels. Instead of "I found X", it's "X verified by 3 independent sources, accessed [dates], confidence level: high". Core principle: Research without verification is just collection. Verification without evidence is faith. When to Use Use deep researcher when you need: Verified f...
56
21186 fumadocs-component-docs theorcdev/8bitcn-ui
Component Documentation Pattern Create comprehensive documentation for 8-bit components following the standard structure. Component Preview Structure Wrap component examples in ComponentPreview with realistic data: <ComponentPreview title="8-bit ComponentName component" name="component-name"> <div className="md:min-w-[300px] min-w-[200px] flex flex-col gap-8"> <div> <p className="text-sm text-muted-foreground mb-2"> Description of first variant </p> <Component...
56
21187 audiocraft-audio-generation orchestra-research/ai-research-skills
AudioCraft: Audio Generation Comprehensive guide to using Meta's AudioCraft for text-to-music and text-to-audio generation with MusicGen, AudioGen, and EnCodec. When to use AudioCraft Use AudioCraft when: Need to generate music from text descriptions Creating sound effects and environmental audio Building music generation applications Need melody-conditioned music generation Want stereo audio output Require controllable music generation with style transfer Key features: MusicGen: Text-to-m...
56
21188 pipeline-health-analyzer onewave-ai/claude-skills
Pipeline Health Analyzer AI-powered pipeline analysis to identify risks, predict outcomes, and accelerate deals. Instructions You are an expert sales operations analyst specializing in pipeline health and forecast accuracy. Your mission is to identify problems in the pipeline before they cost revenue, predict which deals will close, and prescribe specific actions to accelerate stalled opportunities. Core Capabilities Pipeline Analysis: Stage velocity analysis (time in each stage) Stalled d...
56
21189 axiom-asc-mcp charleswiltgen/axiom
App Store Connect MCP Integration Core principle : When asc-mcp is configured, you can manage the entire App Store Connect workflow without leaving Claude Code — submit builds, distribute to TestFlight, respond to reviews, and monitor metrics programmatically. Setup Install brew install mint mint install zelentsov-dev/asc-mcp@1.4.0 Create API Key Open App Store Connect → Users and Access → Integrations → API Generate key with Admin or App Manager role Download the .p8 file (one-time download — s...
56
21190 vitest-testing laurigates/claude-plugins
Vitest Best Practices Quick Reference import { describe, it, expect, beforeEach, vi } from 'vitest' describe('feature name', () => { beforeEach(() => { vi.clearAllMocks() }) it('should do something specific', () => { expect(actual).toBe(expected) }) it.todo('planned test') it.skip('temporarily disabled') it.only('run only this during dev') }) Common Assertions // Equality expect(value).toBe(42) // Strict (===) expect(obj).toEqual({ a: 1 }) ...
56
21191 impl-standards terrylica/cc-skills
Apply these standards during implementation to ensure consistent, maintainable code. When to Use This Skill - During `/itp:go` Phase 1 - When writing new production code - User mentions "error handling", "constants", "magic numbers", "progress logging" - Before release to verify code quality Quick Reference | Errors | Raise + propagate; no fallback/default/retry/silent | Constants | Abstract magic numbers into semantic, version-agnostic dynamic constants | Dependencies | Prefer O...
56
21192 quality-metrics proffesor-for-testing/agentic-qe
<default_to_action> When measuring quality or building dashboards: - MEASURE outcomes (bug escape rate, MTTD) not activities (test count) - FOCUS on DORA metrics: Deployment frequency, Lead time, MTTD, MTTR, Change failure rate - AVOID vanity metrics: 100% coverage means nothing if tests don't catch bugs - SET thresholds that drive behavior (quality gates block bad code) - TREND over time: Direction matters more than absolute numbers Quick Metric Selection: - Speed: Deployment frequency, ...
56
21193 technical-svg-diagrams somtougeh/dotfiles
<quick_start> Identify diagram type needed (architecture, flow, or component) Read references/svg-patterns.md for templates and color palette Generate SVG using the established patterns Save to target directory with descriptive filename Export to PNG (via agent-browser ) or WebP (via cairosvg ) as needed </quick_start> <design_system> Color Palette Purpose Color Hex Background Light gray fafafa Grid lines Subtle gray e5e5e5 Primary text Dark gray 333 Secondary text Medium gray 666 Muted text Lig...
56
21194 setup-stellar-contracts openzeppelin/openzeppelin-skills
Stellar Setup Soroban/Stellar Development Setup Install the Rust toolchain (v1.84.0+) and the Soroban WASM target: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh rustup target add wasm32v1-none Install the Stellar CLI: curl -fsSL https://github.com/stellar/stellar-cli/raw/main/install.sh | sh Create a new Soroban project: stellar contract init my_project This creates a Cargo workspace with contracts in contracts/*/ . OpenZeppelin Dependencies Look up the current version from the ...
56
21195 insight-extraction oimiragieo/agent-studio
Insight Extraction Skill Overview Analyze completed coding sessions and extract structured learnings for the memory system. Insights help future sessions avoid mistakes, follow established patterns, and understand the codebase faster. Core principle: Extract ACTIONABLE knowledge, not logs. Every insight should help a future session do something better. When to Use Always: After completing a coding task After fixing bugs After discovering new patterns After failed attempts (especially valuable) E...
56
21196 spring-cloud teachingai/full-stack-skills
Spring Cloud 是一套完整的微服务解决方案,提供了服务注册与发现、配置管理、网关、负载均衡、熔断器等组件。 核心组件 1. 服务注册与发现(Eureka) Eureka Server: ``` @SpringBootApplication @EnableEurekaServer public class EurekaServerApplication { public static void main(String[] args) { SpringApplication.run(EurekaServerApplication.class, args); } } ``` application.yml: ``` server: port: 8761 eureka: instance: hostname: localhost client: register-with-eureka: false fetch-registry: false service-url: defa...
56
21197 brainstorm-with-file catlog22/claude-code-workflow
Codex Brainstorm-With-File Workflow Quick Start Interactive brainstorming workflow with documented thought evolution . Expands initial ideas through questioning, parallel subagent analysis , and iterative refinement. Core workflow : Seed Idea → Expand → Parallel Subagent Explore → Synthesize → Refine → Crystallize Key features : brainstorm.md : Complete thought evolution timeline Parallel multi-perspective : Creative + Pragmatic + Systematic (concurrent subagents) Idea expansion : Progressive qu...
56
21198 financial-document-processor letta-ai/skills
Financial Document Processor Overview This skill provides guidance for extracting structured data from financial documents (invoices, receipts, statements, etc.) using OCR and PDF text extraction. It emphasizes data safety practices that prevent catastrophic failures from destructive operations. Critical Data Safety Principles NEVER perform destructive operations on source data without verification or backup. Before any file processing: Create a backup of all source files before processing Work ...
56
21199 expense-report-generator dkyazzentwatwa/chatgpt-skills
Expense Report Generator Create professional expense reports from receipt data with automatic categorization and totals. Features Multiple Input Formats: CSV, JSON, or manual entry Auto-Categorization: Classify expenses by type Receipt Tracking: Link receipts to expenses Approval Workflow: Status tracking and approver info Policy Compliance: Flag out-of-policy expenses PDF Export: Professional formatted reports Reimbursement Calculation: Track paid/unpaid amounts Quick Start from expense_repor...
56
21200 n8n-trigger-testing-strategies proffesor-for-testing/agentic-qe
n8n Trigger Testing Strategies <default_to_action> When testing n8n triggers: IDENTIFY trigger type (webhook, schedule, polling, event) TEST with various valid payloads VERIFY authentication and authorization CHECK error handling for invalid inputs MEASURE response time and reliability Quick Trigger Checklist: Trigger activates workflow correctly Payload parsed and validated Authentication enforced (if configured) Error responses are informative Response time is acceptable Critical Success ...
56