What problem does it solve? Configuring Windmill triggers requires knowing the exact YAML schema for each trigger type, and mistakes in required fields or naming conventions cause silent deployment failures. This Skill provides the complete schemas and payload contracts so trigger configuration files are correct on the first attempt. ## Core Features & Use Cases - Full trigger schemas: Provides validated YAML schemas for HTTP, WebSocket, Kafka, NATS, Postgres CDC, MQTT, AMQP, SQS, and email triggers, including required fields, enums, and retry configuration. - Email trigger payload handling: Documents the parsed_email/raw_email payload structure, S3-backed attachment access via the wmill SDK, and +key=value extra arguments. - Safe deployment guidance: Distinguishes destructive wmill sync push from safe wmill sync pull operations so remote state is never mutated unintentionally. - Use Case: A developer needs a Kafka consumer that invokes a flow whenever messages arrive on specific topics. The Skill supplies the exact *.kafka_trigger.yaml file with kafka_resource_path, group_id, topics, filters, and retry policy. ## Quick Start Create a Windmill HTTP trigger YAML file that routes POST requests on api/orders to my order-processing script with API key authentication.