
Trigger types
Creating a trigger
- Open Agent Framework → Triggers.
- Click Add Trigger.
- Choose:
- Save.
Connector triggers
When you pick Connector as the type, you also pick which event from which connector you want to listen for. Currently supported:
The agent/workflow receives the full event payload as input, so it can read the PR number, the comment body, etc.
Agent-scheduled triggers
Triggers can also be created by an agent at runtime, via the Schedule Task tool (Provider Tools). This lets an agent set itself a reminder (“check in with the user tomorrow”) or kick off recurring runs (“every Monday at 9am, summarize last week’s tickets”) without leaving the conversation.Common patterns
- Daily standup — Cron at 09:00 weekdays → agent that reads Jira and posts a summary to Slack.
- PR triage — GitHub “PR opened” → workflow that runs an AI code-review agent and posts the review.
- Calendar follow-up — Schedule Once 24h after a meeting → agent that drafts a follow-up email referencing the meeting transcript.
- Self-rescheduling agent — agent uses the Schedule Task tool to set its own next run based on conversation outcome.