feat(keyboard): add custom skills plus events and navigate Shortcuts

Ship user-defined Shortcut skills, companion Events/Navigate recipes, shared skill/style card chrome, and bump the build to 69.
This commit is contained in:
Rocky
2026-08-13 23:01:43 +08:00
parent 148ff807f2
commit 0a60006d2d
50 changed files with 11612 additions and 251 deletions
@@ -123,7 +123,8 @@ public struct AIQuestionService: Sendable {
public static func configured(
store: any ConfigurationStore,
conversations: AIConversationStore
conversations: AIConversationStore,
thinkingEnabled: Bool = true
) throws -> AIQuestionService {
// Same provider + baseURL + model resolution as dictation polish so the
// Settings LLM card is the single source of truth for both modes.
@@ -151,7 +152,8 @@ public struct AIQuestionService: Sendable {
baseURL: endpoint.baseURL,
apiKey: apiKey,
model: endpoint.model,
allowWebSearch: true
allowWebSearch: true,
thinkingEnabled: thinkingEnabled
),
conversations: conversations,
responseLength: store.aiResponseLength