From 83913008116227a838e9ff5bac8c682331537b84 Mon Sep 17 00:00:00 2001 From: Zeus Date: Sun, 22 Feb 2026 11:37:44 +0000 Subject: [PATCH] docs: add HEARTBEAT.md integration section to README Explains how AI agents should add Argus to their heartbeat for periodic community awareness checks. --- README.md | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 18c31e4..136a8f7 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,9 @@ Named after **Argus Panoptes**, the all-seeing giant of Greek mythology. # Initialize database argus init -# Set up GitHub token -export GH_TOKEN=your_github_token +# Set up authentication (choose one) +gh auth login # GitHub +export ARGUS_BACKEND=tea # Forgejo (needs tea token with read:notification) # Pull notifications argus notif pull @@ -31,9 +32,28 @@ argus notif pull argus status # Start dashboard -systemctl start argus +systemctl enable --now argus ``` +## Agent Integration + +For AI agents using OpenClaw, add this to your `HEARTBEAT.md` for periodic community awareness: + +```markdown +### Argus Community Awareness (Daily) +1. **Check status**: `argus status` +2. **Pull notifications**: `argus notif pull` +3. **Review pending**: `argus notif list --pending --limit 5` +4. **Triage**: For each pending notification: + - If actionable: `argus notif act ""` + - If not relevant: `argus notif dismiss ""` +5. **Audit stale**: `argus notif audit --stale-hours 48` +6. **Log activity**: Record significant actions with `argus activity log` +7. **Check escalations**: `argus escalate list --status open` +``` + +The install script outputs this block — just copy it to your HEARTBEAT.md. + ## Commands ### Core