From 20630b8744b16481c2e66f043755a27c6d208804 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 21 Dec 2025 13:59:41 +0100 Subject: [PATCH] chore: bump Peekaboo + menu cleanup --- AGENTS.md | 1 + Peekaboo | 2 +- .../main/assets/CanvasScaffold/scaffold.html | 162 ------------------ .../Sources/Clawdis/MenuContentView.swift | 3 - 4 files changed, 2 insertions(+), 166 deletions(-) delete mode 100644 apps/android/app/src/main/assets/CanvasScaffold/scaffold.html diff --git a/AGENTS.md b/AGENTS.md index e60b37ec3..b26a8bbff 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -41,6 +41,7 @@ - Also read the shared guardrails at `~/Projects/oracle/AGENTS.md` and `~/Projects/agent-scripts/AGENTS.MD` before making changes; align with any cross-repo rules noted there. - SwiftUI state management (iOS/macOS): prefer the `Observation` framework (`@Observable`, `@Bindable`) over `ObservableObject`/`@StateObject`; don’t introduce new `ObservableObject` unless required for compatibility, and migrate existing usages when touching related code. - **Restart apps:** “restart iOS/Android apps” means rebuild (recompile/install) and relaunch, not just kill/launch. +- Notary key file lives at `~/Library/CloudStorage/Dropbox/Backup/AppStore/AuthKey_NJF3NFGTS3.p8` (Sparkle keys live under `~/Library/CloudStorage/Dropbox/Backup/Sparkle`). - **Multi-agent safety:** do **not** create/apply/drop `git stash` entries unless Peter explicitly asks (this includes `git pull --rebase --autostash`). Assume other agents may be working; keep unrelated WIP untouched and avoid cross-cutting state changes. - **Multi-agent safety:** when Peter says "push", you may `git pull --rebase` to integrate latest changes (never discard other agents' work). When Peter says "commit", scope to your changes only. When Peter says "commit all", commit everything in grouped chunks. - **Multi-agent safety:** do **not** create/remove/modify `git worktree` checkouts (or edit `.worktrees/*`) unless Peter explicitly asks. diff --git a/Peekaboo b/Peekaboo index be03d6e3d..a768ee229 160000 --- a/Peekaboo +++ b/Peekaboo @@ -1 +1 @@ -Subproject commit be03d6e3df28f372dded2374ff62d27598f6762c +Subproject commit a768ee2298e1de28e16a8604845b481ae93b6ad4 diff --git a/apps/android/app/src/main/assets/CanvasScaffold/scaffold.html b/apps/android/app/src/main/assets/CanvasScaffold/scaffold.html deleted file mode 100644 index 90ad3f246..000000000 --- a/apps/android/app/src/main/assets/CanvasScaffold/scaffold.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - Canvas - - - - -
-
-
Ready
-
Waiting for agent
-
-
- - - diff --git a/apps/macos/Sources/Clawdis/MenuContentView.swift b/apps/macos/Sources/Clawdis/MenuContentView.swift index ede8f6e15..ef10d181d 100644 --- a/apps/macos/Sources/Clawdis/MenuContentView.swift +++ b/apps/macos/Sources/Clawdis/MenuContentView.swift @@ -42,9 +42,6 @@ struct MenuContent: View { self.voiceWakeMicMenu } Divider() - Text("Start") - .font(.caption) - .foregroundStyle(.secondary) Button("Open Chat") { Task { @MainActor in let sessionKey = await WebChatManager.shared.preferredSessionKey()