From 6a8473d7896fc4d14563e03b2e9a77b99eb28f4d Mon Sep 17 00:00:00 2001 From: Jake Shore Date: Wed, 21 Jan 2026 03:39:31 -0500 Subject: [PATCH] Add daily git backup habit to AGENTS.md --- AGENTS.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index 6ebb897..35e1466 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -27,6 +27,14 @@ git commit -m "Add agent workspace" - On session start, read today + yesterday if present. - Capture durable facts, preferences, and decisions; avoid secrets. +## Daily habit: Git backup +This workspace is a git repo. At end of each day/session: +```bash +cd ~/.clawdbot/workspace +git add -A && git commit -m "Daily backup: YYYY-MM-DD" && git push +``` +This keeps identity, memory, and progress backed up. Consider making it private on GitHub. + ## Customize - Add your preferred style, rules, and "memory" here.