feat(capture): gate global hotkey on dictation readiness checklist

Stops the "stuck pill" failure where pressing the chord with missing
STT/LLM models triggers a recording that has nowhere to land. The
hotkey now stays disarmed until every gate (models downloaded, Input
Monitoring + Accessibility granted) is green; the empty-state checklist
in CapturesTab surfaces each unmet gate with a one-click action and
auto-arms the chord once everything turns green.

Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
This commit is contained in:
James Pine
2026-04-23 03:09:44 -07:00
co-authored by Claude Opus 4.7
parent 868a40fb7e
commit 85a3e1363f
10 changed files with 480 additions and 14 deletions
@@ -21,6 +21,7 @@ import {
} from 'lucide-react';
import { useEffect, useMemo, useRef, useState } from 'react';
import { CapturePill } from '@/components/CapturePill/CapturePill';
import { DictationReadinessChecklist } from '@/components/CapturesTab/DictationReadinessChecklist';
import { Badge } from '@/components/ui/badge';
import { Button } from '@/components/ui/button';
import {
@@ -44,6 +45,7 @@ import type {
import type { LanguageCode } from '@/lib/constants/languages';
import { BOTTOM_SAFE_AREA_PADDING } from '@/lib/constants/ui';
import { useCaptureRecordingSession } from '@/lib/hooks/useCaptureRecordingSession';
import { useDictationReadiness } from '@/lib/hooks/useDictationReadiness';
import { useCaptureSettings } from '@/lib/hooks/useSettings';
import { cn } from '@/lib/utils/cn';
import { displayLabelForKey, modifierSideHint } from '@/lib/utils/keyCodes';
@@ -188,6 +190,7 @@ export function CapturesTab() {
const hotkeyEnabled = captureSettings?.hotkey_enabled ?? false;
const pushToTalkKeys = captureSettings?.chord_push_to_talk_keys ?? [];
const toggleToTalkKeys = captureSettings?.chord_toggle_to_talk_keys ?? [];
const readiness = useDictationReadiness();
const session = useCaptureRecordingSession({
onCaptureCreated: (capture) => setSelectedId(capture.id),
@@ -776,6 +779,8 @@ export function CapturesTab() {
<Captions className="h-10 w-10 mx-auto opacity-40" />
<p className="text-sm">Pick a capture to see the transcript.</p>
</div>
) : hotkeyEnabled && !readiness.allReady ? (
<DictationReadinessChecklist readiness={readiness} />
) : hotkeyEnabled && (pushToTalkKeys.length || toggleToTalkKeys.length) ? (
<div className="max-w-sm mx-auto text-center space-y-5">
<div className="space-y-2">
@@ -0,0 +1,223 @@
import { useMutation, useQueryClient } from '@tanstack/react-query';
import {
Accessibility,
CheckCircle2,
Circle,
Cpu,
Download,
ExternalLink,
Keyboard,
Loader2,
} from 'lucide-react';
import { useState } from 'react';
import { Button } from '@/components/ui/button';
import { useToast } from '@/components/ui/use-toast';
import { apiClient } from '@/lib/api/client';
import type { DictationReadiness, ReadinessGate } from '@/lib/hooks/useDictationReadiness';
import { cn } from '@/lib/utils/cn';
interface RowProps {
icon: React.ReactNode;
title: string;
description: string;
ready: boolean;
action?: React.ReactNode;
}
function ChecklistRow({ icon, title, description, ready, action }: RowProps) {
return (
<div
className={cn(
'flex items-start gap-3 rounded-lg border p-3.5 transition-colors',
ready ? 'border-emerald-500/20 bg-emerald-500/5' : 'border-border bg-muted/20',
)}
>
<div className="mt-0.5 shrink-0">
{ready ? (
<CheckCircle2 className="h-5 w-5 text-emerald-500" />
) : (
<Circle className="h-5 w-5 text-muted-foreground/50" />
)}
</div>
<div className="flex-1 min-w-0 space-y-1">
<div className="flex items-center gap-2">
<span className="text-muted-foreground">{icon}</span>
<p className="text-sm font-medium text-foreground">{title}</p>
</div>
<p className="text-xs text-muted-foreground leading-relaxed">{description}</p>
{!ready && action ? <div className="pt-1.5">{action}</div> : null}
</div>
</div>
);
}
/**
* Renders one row per dictation-readiness gate. Each unmet gate gets an
* inline action — Download for missing models, Open Settings for missing
* TCC permissions — so the user can resolve everything without leaving
* Captures.
*
* The chord stays disarmed until every row is green; this is what stops the
* "stuck pill" failure mode of pressing the chord with a missing model.
*/
export function DictationReadinessChecklist({ readiness }: { readiness: DictationReadiness }) {
const queryClient = useQueryClient();
const { toast } = useToast();
const [downloading, setDownloading] = useState<Set<ReadinessGate>>(new Set());
const downloadMutation = useMutation({
mutationFn: async ({ modelName }: { gate: ReadinessGate; modelName: string }) =>
apiClient.triggerModelDownload(modelName),
onSuccess: (_data, vars) => {
// Bump model status + readiness so the checklist row flips green as
// soon as the cache is populated. Keep the gate in `downloading` until
// readiness reports `ready: true` to avoid a flash of "Download" on
// post-completion polls.
queryClient.invalidateQueries({ queryKey: ['modelStatus'] });
queryClient.invalidateQueries({ queryKey: ['capture-readiness'] });
toast({
title: 'Download started',
description: `${vars.gate === 'stt' ? readiness.stt?.display_name : readiness.llm?.display_name} is downloading. The shortcut will arm itself when it finishes.`,
});
},
onError: (err: Error, vars) => {
setDownloading((prev) => {
const next = new Set(prev);
next.delete(vars.gate);
return next;
});
toast({
title: 'Download failed',
description: err.message,
variant: 'destructive',
});
},
});
const startDownload = (gate: ReadinessGate, modelName: string) => {
setDownloading((prev) => new Set(prev).add(gate));
downloadMutation.mutate({ gate, modelName });
};
// Once readiness flips ready=true for a gate, drop it from `downloading`
// so subsequent reopens show the green check, not "Downloading…".
const isDownloading = (gate: ReadinessGate, ready: boolean) => !ready && downloading.has(gate);
const sttSize =
readiness.stt?.size_mb != null ? `${(readiness.stt.size_mb / 1000).toFixed(1)} GB` : null;
const llmSize =
readiness.llm?.size_mb != null ? `${(readiness.llm.size_mb / 1000).toFixed(1)} GB` : null;
return (
<div className="w-full max-w-md mx-auto space-y-2.5">
<div className="text-center mb-5 space-y-1">
<h2 className="text-base font-semibold text-foreground">
A few things before you can dictate
</h2>
<p className="text-xs text-muted-foreground">
The shortcut stays off until everything below is ready.
</p>
</div>
{readiness.stt && (
<ChecklistRow
icon={<Cpu className="h-3.5 w-3.5" />}
title={`${readiness.stt.display_name} (speech-to-text)`}
description={
readiness.stt.ready
? 'Model downloaded.'
: `Needed to transcribe your audio${sttSize ? ` · ${sttSize}` : ''}.`
}
ready={readiness.stt.ready}
action={
<Button
size="sm"
onClick={() => startDownload('stt', readiness.stt!.model_name)}
disabled={isDownloading('stt', readiness.stt.ready)}
className="gap-1.5"
>
{isDownloading('stt', readiness.stt.ready) ? (
<>
<Loader2 className="h-3.5 w-3.5 animate-spin" />
Downloading
</>
) : (
<>
<Download className="h-3.5 w-3.5" />
Download
</>
)}
</Button>
}
/>
)}
{readiness.llm && (
<ChecklistRow
icon={<Cpu className="h-3.5 w-3.5" />}
title={`${readiness.llm.display_name} (refinement)`}
description={
readiness.llm.ready
? 'Model downloaded.'
: `Cleans up the raw transcript before paste${llmSize ? ` · ${llmSize}` : ''}.`
}
ready={readiness.llm.ready}
action={
<Button
size="sm"
onClick={() => startDownload('llm', readiness.llm!.model_name)}
disabled={isDownloading('llm', readiness.llm.ready)}
className="gap-1.5"
>
{isDownloading('llm', readiness.llm.ready) ? (
<>
<Loader2 className="h-3.5 w-3.5 animate-spin" />
Downloading
</>
) : (
<>
<Download className="h-3.5 w-3.5" />
Download
</>
)}
</Button>
}
/>
)}
<ChecklistRow
icon={<Keyboard className="h-3.5 w-3.5" />}
title="Input Monitoring permission"
description={
readiness.inputMonitoring
? 'macOS allows Voicebox to detect your global shortcut.'
: 'macOS needs to allow Voicebox to detect the global shortcut.'
}
ready={readiness.inputMonitoring}
action={
<Button size="sm" onClick={readiness.openInputMonitoringSettings} className="gap-1.5">
<ExternalLink className="h-3.5 w-3.5" />
Open Settings
</Button>
}
/>
<ChecklistRow
icon={<Accessibility className="h-3.5 w-3.5" />}
title="Accessibility permission"
description={
readiness.accessibility
? 'Voicebox can paste transcriptions into other apps.'
: 'Required so transcriptions can paste into the focused app.'
}
ready={readiness.accessibility}
action={
<Button size="sm" onClick={readiness.openAccessibilitySettings} className="gap-1.5">
<ExternalLink className="h-3.5 w-3.5" />
Open Settings
</Button>
}
/>
</div>
);
}
+29 -1
View File
@@ -21,6 +21,8 @@ import {
SelectValue,
} from '@/components/ui/select';
import { Toggle } from '@/components/ui/toggle';
import { useToast } from '@/components/ui/use-toast';
import { useDictationReadiness } from '@/lib/hooks/useDictationReadiness';
import { useCaptureSettings } from '@/lib/hooks/useSettings';
import { useProfiles } from '@/lib/hooks/useProfiles';
import { cn } from '@/lib/utils/cn';
@@ -132,6 +134,8 @@ function HotkeyPillPreview({ enabled }: { enabled: boolean }) {
export function CapturesPage() {
const { settings, update } = useCaptureSettings();
const { data: profiles } = useProfiles();
const { toast } = useToast();
const readiness = useDictationReadiness();
const sttModel = settings?.stt_model ?? 'turbo';
const language = settings?.language ?? 'auto';
const autoRefine = settings?.auto_refine ?? true;
@@ -172,7 +176,31 @@ export function CapturesPage() {
<Toggle
id="hotkeyEnabled"
checked={hotkeyEnabled}
onCheckedChange={(v) => update({ hotkey_enabled: v })}
onCheckedChange={(v) => {
update({ hotkey_enabled: v });
// Surface model-readiness blocks at the toggle. The
// InputMonitoringNotice below already covers TCC, but
// missing models would otherwise be invisible from this
// page — the user toggles on, presses the chord, and
// nothing happens because useChordSync gates on readiness.
if (!v) return;
const missingModels = readiness.missing.filter(
(g) => g === 'stt' || g === 'llm',
);
if (missingModels.length === 0) return;
const names = [
missingModels.includes('stt') ? readiness.stt?.display_name : null,
missingModels.includes('llm') ? readiness.llm?.display_name : null,
]
.filter(Boolean)
.join(' and ');
toast({
title: 'Shortcut on, but not yet armed',
description: `${names} still need${
missingModels.length === 1 ? 's' : ''
} to download. Open the Captures tab to start.`,
});
}}
/>
}
/>