sf snapshot: uncommitted changes after 59m inactivity

This commit is contained in:
Mikael Hugo 2026-05-09 23:16:14 +02:00
parent 705f9e2ba1
commit 6f174cabc1
4 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -33,7 +33,7 @@ export default function steerableAutonomousExtension(api) {
api.registerShortcut("shift+tab", {
description:
"Cycle mode (Ask ↔ Build) or open steerable panel during autonomous",
handler: async (event, ctx) => {
handler: async (ctx) => {
if (isAutonomousActive) {
// During autonomous execution: toggle steering panel
if (panel) {
@ -78,7 +78,7 @@ export default function steerableAutonomousExtension(api) {
api.registerShortcut("ctrl+y", {
description: "Toggle YOLO mode (build + autonomous + deep + unrestricted; bypass git prompts)",
handler: async (event, ctx) => {
handler: async (ctx) => {
const session = getAutoSession();
// Toggle full-autonomy preset in AutoSession (handles mode slam + restore)
const wasAsk = session.getMode().workMode !== "build";