From fec4e0c5bc11a0b1af2fad0c5bcee192441825cc Mon Sep 17 00:00:00 2001 From: Shining <250120269+chronoai-shining@users.noreply.github.com> Date: Mon, 15 Jun 2026 16:57:49 +0800 Subject: [PATCH] chore: engage /auto kill-switch via .auto/STOP on develop-auto MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The maintainer asked to halt the autonomous /sa-implement run. The local daemon was stopped immediately; this lands the durable kill-switch FALLBACK so every future /auto run aborts at preflight until the file is removed. bin/auto-kill.sh reads .auto/STOP on develop-auto remotely via the Contents API, so the root .gitignore entry is irrelevant — the file is force-added here to put it in the branch tree. Part of #1119 --- .auto/STOP | 3 +++ .changeset/engage-auto-killswitch.md | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 .auto/STOP create mode 100644 .changeset/engage-auto-killswitch.md diff --git a/.auto/STOP b/.auto/STOP new file mode 100644 index 00000000..47b48f14 --- /dev/null +++ b/.auto/STOP @@ -0,0 +1,3 @@ +/auto kill-switch engaged via .auto/STOP fallback. +Engaged by chronoai-shining on 2026-06-15 (UTC) at the maintainer's request. +Delete this file on develop-auto to allow /auto runs to resume (remove before any develop-auto->develop promotion). diff --git a/.changeset/engage-auto-killswitch.md b/.changeset/engage-auto-killswitch.md new file mode 100644 index 00000000..fa16abde --- /dev/null +++ b/.changeset/engage-auto-killswitch.md @@ -0,0 +1,4 @@ +--- +--- + +Ops: engage the /auto kill-switch by landing .auto/STOP on develop-auto. No package change. (#1119)