diff --git a/Note/NoteAppShortcuts.swift b/Note/NoteAppShortcuts.swift new file mode 100644 index 0000000..4cf7a55 --- /dev/null +++ b/Note/NoteAppShortcuts.swift @@ -0,0 +1,20 @@ +// +// NoteAppShortcuts.swift +// Note +// +// Created by Kimi Code CLI on 2026/7/15. +// + +import AppIntents + +struct NoteAppShortcuts: AppShortcutsProvider { + + static var appShortcuts: [AppShortcut] { + AppShortcut( + intent: SaveClipIntent(), + phrases: ["保存剪贴板到 ${applicationName}"], + shortTitle: "保存剪贴板", + systemImageName: "doc.text" + ) + } +}