SPB Git

spb/zyquo-agent Public MIT

The autonomous agent that actually operates your Mac — plans, runs real commands, verifies its own work.

Swift 94.7% Shell 4.1% Python 0.7% Makefile 0.5%
1.0 KB · 40 lines swift
Raw Blame History
1//2//  ShortcutsSettingsTab.swift3//  Zyquo Agent4//5//  Author: Simon-Pierre Boucher6//  Mail: contact@spboucher.ai7//8//  Settings › Shortcuts — the read-only shortcut reference for the full9//  Phase 6 command set.10//1112import SwiftUI1314struct ShortcutsSettingsTab: View {15    private static let shortcuts: [(String, String)] = [16        ("New task", "⌘N"),17        ("Command palette (templates · tasks · actions)", "⌘K"),18        ("Run task", "⌘↩"),19        ("Stop run", "⌘."),20        ("Search tasks", "⌘F"),21        ("Open audit log", "⌘⇧A"),22        ("Quick Task panel", "⌥Space"),23        ("Export transcript (Markdown)", "⌘⇧E"),24        ("Settings", "⌘,"),25    ]2627    var body: some View {28        Form {29            ForEach(Self.shortcuts, id: \.0) { name, keys in30                LabeledContent(name) {31                    Text(keys)32                        .font(ZyquoFont.code(size: 12))33                        .foregroundStyle(ZyquoColor.textSecondary)34                }35            }36        }37        .formStyle(.grouped)38    }39}40