> ## Documentation Index
> Fetch the complete documentation index at: https://docs.guild.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# guild trigger

> Create and manage triggers that run agents automatically.

Automate agent execution. See [Triggers](/platform/triggers) for a full guide, or [Event triggers](/platform/event-triggers), [Schedule triggers](/platform/schedule-triggers), and [API triggers](/platform/api-triggers) for type-specific details.

```bash theme={null}
guild trigger list                           # List triggers in the default workspace
guild trigger get <trigger-id>               # Get trigger details
guild trigger sessions <trigger-id>          # List sessions spawned by a trigger

# Create a webhook trigger
guild trigger create --type webhook --integration slack --event app_mention --agent <identifier>

# Create a time trigger
guild trigger create --type time --frequency DAILY --time 09:00 --agent <identifier>

guild trigger update <trigger-id> --time 10:00
guild trigger activate <trigger-id>
guild trigger deactivate <trigger-id>
```
