AgenticKode can automatically create task runs when issues are created or updated in your issue tracker. Configure inbound webhooks to connect your repositories and project management tools.
The task description is extracted from the issue title and body. Issue labels can route the run to a specific flow prompt (e.g. implement); otherwise the default implement flow runs.
Your AgenticKode instance exposes webhook endpoints at:
https://your-agentickode-host/api/webhooks/{provider}
Where {provider} is one of: github, gitlab, gitea, plane.
https://your-host/api/webhooks/githubapplication/json| Event | Trigger |
|---|---|
issues.opened | New issue creates a run |
issues.labeled | Adding a label can trigger a run if it matches a flow-prompt trigger |
The GITHUB_TOKEN needs repo scope to create branches and pull requests in response to webhook-triggered runs.
https://your-host/api/webhooks/gitlab| Event | Trigger |
|---|---|
| Issue opened | New issue creates a run |
| Issue updated with label | Label match triggers a run |
The GITLAB_TOKEN needs api scope for full repository access.
https://your-host/api/webhooks/giteaPOSTapplication/json| Event | Trigger |
|---|---|
| Issue opened | New issue creates a run |
| Issue label changed | Label match triggers a run |
The GITEA_TOKEN needs repository read/write access.
https://your-host/api/webhooks/plane| Event | Trigger |
|---|---|
| Issue created | New issue creates a run |
| Issue updated | Label changes can trigger runs |
When a webhook event arrives, AgenticKode:
implement, pr_review)If no flow prompt matches, the default implement flow prompt runs.
A flow prompt's triggers decide which events route to it. For example, an
implement flow prompt that runs Claude when an issue is labelled bug:
issue_event, action labeled, label filter bugPR-review is wired separately — opening or labelling a PR with ai-review
dispatches the pr_review flow prompt.
After a run completes, AgenticKode updates the source issue:
This is handled by the task_source_updater service during the finalization phase.