From 8206085f8febf54c31b0405d8c2106c86e406387 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 24 Feb 2026 12:56:11 +0800 Subject: [PATCH] docs: add container restart step after upstream sync --- AGENTS.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index a121923ba..4b510686f 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -18,6 +18,11 @@ Run these commands regularly to sync latest upstream changes into your fork bran 2. `git checkout main` 3. `git rebase upstream/main` 4. `source ~/.zshrc && proxy_on && git push origin main` +5. Restart currently running `picoclaw` containers: + - `docker ps -q --filter label=com.docker.compose.project=picoclaw | xargs -r docker restart` +6. Verify current runtime status: + - `docker ps --filter label=com.docker.compose.project=picoclaw` + - `curl -sS http://127.0.0.1:18790/health` If your workflow prefers merge over rebase, use: - `git merge upstream/main`