Autonomous Dev Bots

Recipes for long-running, event-driven agent processes that serve the development lifecycle. These are daemons — they run continuously in the background, watch for events (webhooks, polls), and respond autonomously until they need a human decision.

Common traits:

  • Event-triggered (webhook, cron, or poll)
  • Multi-phase with sequential gating (pass/fail between phases)
  • Tool-using (CLI tools, APIs, linters)
  • Structured output (PR reviews, reports, comments)
  • Human escalation point (runs autonomously but knows when to stop and ask)
  • Runs on daemon infrastructure (OpenClaw, launchd, systemd, CI)
  • Distinct bot personas (GitHub Apps)

Recipes

Recipe Status Summary
PR Review Pipeline wip Three-phase automated review of cookbook contributions
version
1.0.0
tags
automation, agents, ci, review
author
Mike Fullerton
modified
2026-03-28

Change History

Version Date Author Summary
1.0.0 2026-03-28 Mike Fullerton Initial creation