mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-05 16:03:47 +00:00
* use skills * add prompts * update system prompts * generate skills on init * add prompts in cli * better for raw apps * nit * test pipeline draft * better * yaml for triggers and schedules * cleaning * better * add descriptions to ai agent fileds * adjust * better openapi * better * nit * feat: add typed provider and memory schemas for ai agent in openapi Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * feat: improve zod validation errors with dynamic schema extraction Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * regen * fix * cleaning * refactor: deduplicate skill descriptions in generate_skills_ts_export Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * cleaning --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: Ruben Fiszel <ruben@windmill.dev>
23 lines
446 B
Markdown
23 lines
446 B
Markdown
# Windmill Triggers
|
|
|
|
Triggers allow external events to invoke your scripts and flows.
|
|
|
|
## File Naming
|
|
|
|
Trigger configuration files use the pattern: `{path}.{trigger_type}_trigger.yaml`
|
|
|
|
Examples:
|
|
- `u/user/webhook.http_trigger.yaml`
|
|
- `f/data/kafka_consumer.kafka_trigger.yaml`
|
|
- `f/sync/postgres_cdc.postgres_trigger.yaml`
|
|
|
|
## CLI Commands
|
|
|
|
```bash
|
|
# Push trigger configuration
|
|
wmill sync push
|
|
|
|
# Pull triggers from Windmill
|
|
wmill sync pull
|
|
```
|