The Gitea notification poller section describes the old flag-file + heartbeat approach. The production system now uses a dispatcher pattern:
Poller is the dispatcher itself (Python)
Polls every 15s, fetches notification details, triages actionable vs informational
Marks notifications as read immediately
Spawns one isolated agent session per actionable notification via openclaw cron add --session isolated
Each agent gets full context (API token, issue URL, instructions) baked into the message
Response time ~15-30s instead of ~30 min
Update Option B and the example script to reflect this.
The Gitea notification poller section describes the old flag-file + heartbeat approach. The production system now uses a dispatcher pattern:
- Poller is the dispatcher itself (Python)
- Polls every 15s, fetches notification details, triages actionable vs informational
- Marks notifications as read immediately
- Spawns one isolated agent session per actionable notification via `openclaw cron add --session isolated`
- Each agent gets full context (API token, issue URL, instructions) baked into the message
- Response time ~15-30s instead of ~30 min
Update Option B and the example script to reflect this.
clawbot
self-assigned this 2026-02-28 15:27:35 +01:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
The Gitea notification poller section describes the old flag-file + heartbeat approach. The production system now uses a dispatcher pattern:
openclaw cron add --session isolatedUpdate Option B and the example script to reflect this.