Refactor AGENTS.md: condense event-driven daemon section

Move detailed event-driven daemon documentation to docs/DAEMON.md.
Keep only brief mention in AGENTS.md with reference to full docs.
Reduces duplication and improves documentation organization.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-11-23 21:58:34 -08:00
parent 62b5f5357f
commit a930fa35ac
+11 -1
View File
@@ -226,7 +226,17 @@ bd daemons killall --json # Restart all daemons
**After upgrading bd**: Run `bd daemons killall` to restart all daemons with new version.
**For complete daemon management**, see [docs/DAEMON.md](docs/DAEMON.md).
### Event-Driven Daemon Mode (Experimental)
**NEW in v0.16+**: Event-driven mode replaces 5-second polling with instant reactivity (<500ms latency, 60% less CPU).
**Enable globally:**
```bash
export BEADS_DAEMON_MODE=events
bd daemons killall # Restart daemons to apply
```
**For configuration, troubleshooting, and complete daemon management**, see [docs/DAEMON.md](docs/DAEMON.md).
### Web Interface (Monitor)