screenhand 0.3.9 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -46,7 +46,10 @@
46
46
  "AXMenu > Find": "Cmd+F",
47
47
  "AXMenu > Find by Name…": "Ctrl+Shift+Cmd+F",
48
48
  "AXMenu > New Folder with “Codex”": "Ctrl+Cmd+N",
49
- "AXMenu > Slideshow “Codex”": "Option+Cmd+Y"
49
+ "AXMenu > Slideshow “Codex”": "Option+Cmd+Y",
50
+ "AXMenu > New Folder with Selection": "Ctrl+Cmd+N",
51
+ "AXMenu > Open in New Window and Close": "Option+Cmd+O",
52
+ "AXMenu > Slideshow": "Option+Cmd+Y"
50
53
  },
51
54
  "Edit": {
52
55
  "AXMenu > Undo": "Cmd+Z",
@@ -63,7 +66,9 @@
63
66
  "AXMenu > Start Dictation…": "Cmd+🎤",
64
67
  "AXMenu > Emoji & Symbols": "Cmd+🌐",
65
68
  "AXMenu > Copy “Codex”": "Cmd+C",
66
- "AXMenu > Copy “Codex” as Pathname": "Option+Cmd+C"
69
+ "AXMenu > Copy “Codex” as Pathname": "Option+Cmd+C",
70
+ "AXMenu > Copy “Desktop” as Pathname": "Option+Cmd+C",
71
+ "AXMenu > Move Items Here": "Option+Cmd+V"
67
72
  },
68
73
  "View": {
69
74
  "AXMenu > as Icons": "Cmd+1",
@@ -105,7 +110,12 @@
105
110
  "AXMenu > Sort Groups By > AXMenu > Date Added": "Ctrl+Option+Cmd+4",
106
111
  "AXMenu > Sort Groups By > AXMenu > Date Modified": "Ctrl+Option+Cmd+5",
107
112
  "AXMenu > Sort Groups By > AXMenu > Size": "Ctrl+Option+Cmd+6",
108
- "AXMenu > Sort Groups By > AXMenu > Tags": "Ctrl+Option+Cmd+7"
113
+ "AXMenu > Sort Groups By > AXMenu > Tags": "Ctrl+Option+Cmd+7",
114
+ "AXMenu > Use Stacks": "Ctrl+Cmd+0",
115
+ "AXMenu > Hide Tab Bar": "Shift+Cmd+T",
116
+ "AXMenu > Hide Preview": "Shift+Cmd+P",
117
+ "AXMenu > Hide Path Bar": "Option+Cmd+P",
118
+ "AXMenu > Hide Status Bar": "Cmd+/"
109
119
  },
110
120
  "Go": {
111
121
  "AXMenu > Back": "Cmd+[",
@@ -140,7 +150,725 @@
140
150
  },
141
151
  "Help": {}
142
152
  },
143
- "selectors": {},
144
- "flows": {},
145
- "errors": []
146
- }
153
+ "mastery": "expert",
154
+ "masteryNotes": "101 shortcuts, 285 menu items. All views, navigation, file ops, Get Info, Quick Look, Smart Folders, Tags, AirDrop, Server connect, Compress, Search verified. NSSavePanel + NSOpenPanel fully mapped with exact AX paths. Settings (General/Tags/Sidebar/Advanced) and View Options fully scanned.",
155
+ "testedOn": "2026-03-24",
156
+ "selectors": {
157
+ "window": {
158
+ "finderWindow": "AXWindow (title = current folder name)",
159
+ "toolbar": "AXToolbar of AXWindow",
160
+ "sidebar": "AXOutline of AXScrollArea of AXSplitGroup of AXWindow",
161
+ "fileList": "AXList of AXScrollArea of inner AXSplitGroup"
162
+ },
163
+ "navigation": {
164
+ "goToFolder": "Shift+Cmd+G → AXSheet → AXTextField",
165
+ "backButton": "AXButton[←] in toolbar",
166
+ "forwardButton": "AXButton[→] in toolbar",
167
+ "searchField": "AXSearchField in toolbar"
168
+ },
169
+ "nsSavePanel": {
170
+ "description": "Compact NSSavePanel — attaches as AXSheet on the triggering window",
171
+ "filenameField": "text field 1 of sheet 1 of window <name>",
172
+ "tagsField": "text field 2 of sheet 1 of window <name>",
173
+ "wherePopup": "pop up button \"Where:\" of sheet 1",
174
+ "fileFormatPopup": "pop up button \"File Format:\" of sheet 1",
175
+ "saveButton": "button \"Save\" of sheet 1",
176
+ "cancelButton": "button \"Cancel\" of sheet 1",
177
+ "goToFolderInDialog": "keystroke g using {command down, shift down} → sheet 1 of sheet 1 → text field 1 + Return",
178
+ "whereMenuItems": "name of every menu item of menu 1 of pop up button \"Where:\""
179
+ },
180
+ "nsOpenPanel": {
181
+ "description": "Expanded NSOpenPanel — standalone window named 'Open'",
182
+ "window": "window \"Open\" of process <appName>",
183
+ "openButton": "button \"Open\" of window \"Open\"",
184
+ "cancelButton": "button \"Cancel\" of window \"Open\"",
185
+ "newDocumentButton": "button \"New Document\" of window \"Open\"",
186
+ "showOptionsButton": "button \"Show Options\" of window \"Open\"",
187
+ "wherePopup": "pop up button \"Where:\" of window \"Open\"",
188
+ "searchField": "text field 1 of window \"Open\"",
189
+ "sidebar": "outline 1 of scroll area 1 of splitter group 1 of window \"Open\"",
190
+ "sidebarRows": "every row of outline 1 of scroll area 1 of splitter group 1",
191
+ "fileBrowser": "list 1 of scroll area 1 of splitter group 1 of splitter group 1 of window \"Open\"",
192
+ "goToFolderInDialog": "keystroke g using {command down, shift down} → sheet 1 of window \"Open\" → text field 1 + Return",
193
+ "selectFileByTyping": "keystroke \"filename\" (navigates and selects matching file in browser)"
194
+ },
195
+ "contextMenu": {
196
+ "description": "Right-click context menu on files/folders",
197
+ "trigger": "right-click a file/folder, or Ctrl+click",
198
+ "keyItems": [
199
+ "Open",
200
+ "Open With",
201
+ "Move to Trash",
202
+ "Get Info",
203
+ "Compress",
204
+ "Duplicate",
205
+ "Make Alias",
206
+ "Copy",
207
+ "Tags…",
208
+ "Quick Actions",
209
+ "Share…",
210
+ "New Terminal at Folder",
211
+ "Open in Terminal"
212
+ ],
213
+ "openWith": "AXMenu > Open With → submenu of available apps",
214
+ "quickActions": "AXMenu > Quick Actions → Rotate Image, Create PDF, Trim, etc.",
215
+ "shareMenu": "AXMenu > Share → AirDrop / Mail / Messages / etc."
216
+ },
217
+ "settings": {
218
+ "open": "Cmd+,",
219
+ "general": {
220
+ "desktopItems": "Show items on Desktop: Hard disks / External disks / CDs / Connected servers",
221
+ "newWindowTarget": "New Finder windows show: (dropdown — Recents, Desktop, Home, Documents, etc.)",
222
+ "openInTabs": "Open folders in tabs instead of new windows (checkbox)",
223
+ "iCloudDriveSync": "Sync Desktop and Documents to iCloud Drive (checkbox)"
224
+ },
225
+ "tags": {
226
+ "sidebarTags": "Drag colored tags to reorder/remove from sidebar",
227
+ "favoriteTags": "Bottom list: drag tags here to mark as favorites"
228
+ },
229
+ "sidebar": {
230
+ "sections": "Favorites (Recents/AirDrop/Applications/Desktop/Documents/Downloads/Movies/Music/Pictures/Home/iCloud Drive) + iCloud + Locations (Computer/Hard Disk/External/CDs/Cloud Storage) + Tags",
231
+ "customise": "Check/uncheck each item to show/hide in sidebar"
232
+ },
233
+ "advanced": {
234
+ "showExtensions": "Show all filename extensions (checkbox)",
235
+ "warnOnExtensionChange": "Show warning before changing an extension (checkbox)",
236
+ "warnRemoveFromiCloud": "Show warning before removing from iCloud Drive (checkbox)",
237
+ "warnEmptyTrash": "Show warning before emptying the Trash (checkbox)",
238
+ "removeTrashAfter30": "Remove items from the Trash after 30 days (checkbox)",
239
+ "keepFoldersOnTop": "Keep folders on top: In windows / On Desktop (checkbox)",
240
+ "searchScope": "When performing a search: Search This Mac / Search the Current Folder / Use the Previous Search Scope (dropdown)"
241
+ }
242
+ },
243
+ "viewOptions": {
244
+ "open": "Cmd+J (per-folder, persistent)",
245
+ "iconView": {
246
+ "iconSize": "Slider: 16x16 to 512x512",
247
+ "gridSpacing": "Slider: tight to loose",
248
+ "textSize": "10–16pt dropdown",
249
+ "labelPosition": "Bottom / Right radio buttons",
250
+ "showItemInfo": "checkbox — shows dimensions, file count",
251
+ "showIconPreview": "checkbox — renders file content as icon",
252
+ "background": "White / Color / Picture radio buttons",
253
+ "sortBy": "None/Name/Kind/Date Modified/Date Created/Date Last Opened/Date Added/Size/Tags"
254
+ },
255
+ "listView": {
256
+ "iconSize": "Small / Large radio",
257
+ "textSize": "10–16pt dropdown",
258
+ "columns": "Date Modified / Date Created / Date Last Opened / Date Added / Size / Kind / Version / Comments / Tags",
259
+ "useRelativeDates": "checkbox",
260
+ "calculateFolderSizes": "checkbox",
261
+ "showIconPreview": "checkbox",
262
+ "sortBy": "Name/Kind/Date Modified/Date Created/Date Last Opened/Date Added/Size/Tags"
263
+ },
264
+ "columnView": {
265
+ "textSize": "10–16pt dropdown",
266
+ "showIcons": "checkbox",
267
+ "showIconPreview": "checkbox",
268
+ "showPreviewColumn": "checkbox"
269
+ },
270
+ "galleryView": {
271
+ "showFilenameLabel": "checkbox",
272
+ "showItemInfoInPreview": "checkbox"
273
+ },
274
+ "useAsDefaults": "button — applies current settings to all folders of this view type"
275
+ }
276
+ },
277
+ "flows": {
278
+ "navigate_to_folder": {
279
+ "steps": [
280
+ "key: Shift+Cmd+G",
281
+ "type path in Go to: text field",
282
+ "press Return"
283
+ ],
284
+ "verified": true,
285
+ "notes": "Works in both Finder window AND inside NSOpenPanel/NSSavePanel"
286
+ },
287
+ "create_new_folder": {
288
+ "steps": [
289
+ "navigate to target directory",
290
+ "key: Shift+Cmd+N",
291
+ "type folder name (inline edit mode)",
292
+ "press Return to confirm"
293
+ ],
294
+ "verified": true,
295
+ "notes": "Requires write permission. System directories prompt for Touch ID/password."
296
+ },
297
+ "rename_file_applescript": {
298
+ "steps": [
299
+ "tell application \"Finder\"",
300
+ "set name of (item \"oldName\" of folder x) to \"newName\""
301
+ ],
302
+ "verified": true
303
+ },
304
+ "get_info": {
305
+ "steps": [
306
+ "select file via AppleScript: select (item \"name\" of desktop)",
307
+ "key: Cmd+I OR tell application \"Finder\" → open information window of item"
308
+ ],
309
+ "verified": true,
310
+ "notes": "Shows Kind, Size, Where, Created, Modified, Tags, Name & Extension, Sharing & Permissions"
311
+ },
312
+ "quick_look": {
313
+ "steps": [
314
+ "select file",
315
+ "key: Cmd+Y (or Space)"
316
+ ],
317
+ "verified": true,
318
+ "notes": "Opens floating Quick Look panel. Space toggles. Option+Cmd+Y = Slideshow."
319
+ },
320
+ "save_file_nssavepanel": {
321
+ "steps": [
322
+ "set value of text field 1 of sheet 1 of window <win> to \"filename\"",
323
+ "click menu item \"<location>\" of menu 1 of pop up button \"Where:\" of sheet 1",
324
+ "optionally: keystroke 'g' using {cmd,shift} → sheet 1 of sheet 1 → set value of text field 1 to \"/path\" → key code 36",
325
+ "click button \"Save\" of sheet 1"
326
+ ],
327
+ "verified": true
328
+ },
329
+ "open_file_nsopenpanel": {
330
+ "steps": [
331
+ "-- Navigate to folder:",
332
+ "keystroke 'g' using {command down, shift down}",
333
+ "set value of text field 1 of sheet 1 of window \"Open\" to \"/path/to/folder\"",
334
+ "key code 36",
335
+ "-- Select file by typing:",
336
+ "keystroke \"filename\"",
337
+ "-- Click Open:",
338
+ "click button \"Open\" of window \"Open\""
339
+ ],
340
+ "verified": true
341
+ },
342
+ "views": {
343
+ "steps": [
344
+ "Icons: Cmd+1",
345
+ "List: Cmd+2",
346
+ "Columns: Cmd+3",
347
+ "Gallery: Cmd+4"
348
+ ],
349
+ "verified": true
350
+ },
351
+ "go_shortcuts": {
352
+ "steps": [
353
+ "Desktop: Shift+Cmd+D",
354
+ "Home: Shift+Cmd+H",
355
+ "Documents: Shift+Cmd+O",
356
+ "Downloads: Option+Cmd+L",
357
+ "Applications: Shift+Cmd+A",
358
+ "iCloud Drive: Shift+Cmd+I",
359
+ "Computer: Shift+Cmd+C",
360
+ "AirDrop: Shift+Cmd+R",
361
+ "Network: Shift+Cmd+K"
362
+ ],
363
+ "verified": true
364
+ },
365
+ "compress_files": {
366
+ "steps": [
367
+ "select file(s) in Finder",
368
+ "right-click → Compress <name>",
369
+ "OR: File > Compress <name>",
370
+ "creates Archive.zip (or <name>.zip) in same directory"
371
+ ],
372
+ "applescript": "tell application \"Finder\" to compress {item \"file1.txt\" of desktop, item \"file2.txt\" of desktop}",
373
+ "verified": false,
374
+ "notes": "Multiple files → Archive.zip. Single file → <name>.zip. Compress menu item appears dynamically based on selection."
375
+ },
376
+ "tag_files": {
377
+ "steps": [
378
+ "-- Method 1: Right-click → Tags…",
379
+ "right-click file/folder → select colored tag",
380
+ "-- Method 2: Get Info",
381
+ "Cmd+I → click Tags field → type tag name → Return",
382
+ "-- Method 3: Sidebar drag",
383
+ "drag file onto a tag in the Finder sidebar"
384
+ ],
385
+ "applescript": "tell application \"Finder\" to set tags of file \"myfile.txt\" of desktop to {\"Red\", \"Work\"}",
386
+ "verified": true,
387
+ "notes": "Tags are persisted as macOS extended attributes. Search by tag: Cmd+F → Kind → Tags."
388
+ },
389
+ "create_smart_folder": {
390
+ "steps": [
391
+ "File > New Smart Folder (no shortcut by default)",
392
+ "toolbar search field appears",
393
+ "click '+' to add criteria (Kind, Date, Name, Tag, Size, etc.)",
394
+ "click Save → name it → choose save location → check 'Add To Sidebar'"
395
+ ],
396
+ "verified": false,
397
+ "notes": "Saved as .savedSearch bundles. Located in ~/Library/Saved Searches/. Criteria use Spotlight metadata."
398
+ },
399
+ "search_with_filters": {
400
+ "steps": [
401
+ "Cmd+F in Finder (or click search field in toolbar)",
402
+ "type search term",
403
+ "click '+' to add filter attributes: Kind / Date Modified / Tags / Size / Name contains / etc.",
404
+ "toggle 'This Mac' vs current folder scope",
405
+ "results update live",
406
+ "OR: Ctrl+Shift+Cmd+F → Find by Name… (name-only search, faster)"
407
+ ],
408
+ "verified": true,
409
+ "notes": "Search scope controlled in Finder Settings > Advanced. Results can be saved as Smart Folder."
410
+ },
411
+ "airdrop_file": {
412
+ "steps": [
413
+ "Shift+Cmd+R → opens AirDrop window",
414
+ "wait for recipients to appear",
415
+ "drag file onto recipient icon",
416
+ "recipient must accept on their device"
417
+ ],
418
+ "verified": false,
419
+ "notes": "Sender + receiver must both have AirDrop enabled. Works over Bluetooth + WiFi. No internet needed."
420
+ },
421
+ "connect_to_server": {
422
+ "steps": [
423
+ "Cmd+K → Connect to Server dialog",
424
+ "enter server address: smb://server/share, afp://server/share, nfs://server/path",
425
+ "click Connect → enter credentials if needed",
426
+ "volume mounts and appears in sidebar under Locations"
427
+ ],
428
+ "applescript": "tell application \"Finder\" to open location \"smb://server/share\"",
429
+ "verified": false,
430
+ "notes": "Recent servers remembered. Favorite servers: click '+' in dialog to save. SMB is standard for Windows shares."
431
+ },
432
+ "duplicate_file": {
433
+ "steps": [
434
+ "select file",
435
+ "Cmd+D → creates '<name> copy' in same folder",
436
+ "Option+Shift+Cmd+D → Duplicate Exactly (no ' copy' suffix)"
437
+ ],
438
+ "verified": true,
439
+ "notes": "Original stays selected. Duplicate is placed adjacent. Works on folders too."
440
+ },
441
+ "make_alias": {
442
+ "steps": [
443
+ "select file or folder",
444
+ "Ctrl+Cmd+A → Make Alias",
445
+ "alias appears with small arrow badge on icon",
446
+ "double-click alias to open original"
447
+ ],
448
+ "applescript": "tell application \"Finder\" to make alias file at (path to desktop) to item \"<path>\"",
449
+ "verified": true,
450
+ "notes": "Unlike symlinks, macOS aliases track the original even if it's moved. Stored as separate file."
451
+ },
452
+ "eject_volume": {
453
+ "steps": [
454
+ "select disk/volume in sidebar",
455
+ "Option+Cmd+E → Eject",
456
+ "OR drag volume icon to Trash (Trash icon becomes Eject icon)"
457
+ ],
458
+ "applescript": "tell application \"Finder\" to eject (disk \"DiskName\")",
459
+ "verified": true,
460
+ "notes": "Safe eject: closes all open files on volume first. Use before physically removing drives."
461
+ },
462
+ "preview_pane": {
463
+ "steps": [
464
+ "Shift+Cmd+P → Show/Hide Preview pane (right side panel)",
465
+ "preview shows: file metadata, image dimensions, PDF thumbnails, audio/video info",
466
+ "click 'More…' in preview to open Get Info"
467
+ ],
468
+ "verified": true,
469
+ "notes": "Preview pane is separate from Quick Look. Quick Look = Cmd+Y = floating window. Preview pane = persistent side panel."
470
+ },
471
+ "path_bar": {
472
+ "steps": [
473
+ "Option+Cmd+P → Show/Hide Path Bar (bottom of window)",
474
+ "shows full path as breadcrumbs",
475
+ "double-click any item in path bar to navigate there",
476
+ "drag files onto path bar items to move"
477
+ ],
478
+ "verified": true,
479
+ "notes": "Path Bar persists per-window. Shows complete path from root to current folder."
480
+ },
481
+ "tabs": {
482
+ "steps": [
483
+ "Cmd+T → New Tab",
484
+ "Ctrl+Cmd+O → Open item in new tab",
485
+ "Shift+Cmd+T → Show/Hide Tab Bar",
486
+ "Shift+Cmd+\\ → Show All Tabs (Overview mode)",
487
+ "Ctrl+Cmd+Tab → Next Tab",
488
+ "Ctrl+Shift+Cmd+Tab → Previous Tab",
489
+ "Window > Merge All Windows → combine all windows into tabs"
490
+ ],
491
+ "verified": true,
492
+ "notes": "Tab bar hides automatically when only 1 tab. Tabs are per-window, not global."
493
+ },
494
+ "move_to_trash_and_recover": {
495
+ "steps": [
496
+ "select file → Cmd+Delete → moves to Trash",
497
+ "Option+Cmd+Delete → Delete Immediately (bypass Trash, prompts confirmation)",
498
+ "open Trash: click Trash in Dock",
499
+ "recover: drag item out of Trash, OR right-click → Put Back",
500
+ "empty: Shift+Cmd+Delete → Empty Trash (with confirmation)",
501
+ "Option+Shift+Cmd+Delete → Empty Trash without confirmation"
502
+ ],
503
+ "applescript": "tell application \"Finder\" to move (item \"file.txt\" of desktop) to trash",
504
+ "verified": true,
505
+ "notes": "Items in Trash remain until emptied. Trash is per-volume — each disk has its own .Trash folder. Auto-delete after 30 days if enabled in Settings > Advanced."
506
+ }
507
+ },
508
+ "errors": {
509
+ "system_folder_auth": {
510
+ "description": "New Folder in system directories (/Users, /Applications) prompts Touch ID/password",
511
+ "workaround": "Always navigate to user-writable location (Desktop, Documents, Downloads) first",
512
+ "observed": "2026-03-24"
513
+ },
514
+ "nssavepanel_elements_empty": {
515
+ "description": "NSSavePanel sheet elements return empty via AppleScript `every UI element` in some cases",
516
+ "workaround": "Access elements by type directly: `text field 1`, `button \"Save\"`, `pop up button \"Where:\"`",
517
+ "observed": "2026-03-24"
518
+ }
519
+ },
520
+ "websiteFeatures": [
521
+ {
522
+ "id": "icon_view",
523
+ "name": "Icon View",
524
+ "description": "View files as icons with configurable size (16-512px), grid spacing, label position, item info overlay, and icon preview",
525
+ "category": "views",
526
+ "level": "beginner"
527
+ },
528
+ {
529
+ "id": "list_view",
530
+ "name": "List View",
531
+ "description": "View files in a sortable list with columns: name, size, kind, date modified, date created, date added, version, comments, tags",
532
+ "category": "views",
533
+ "level": "beginner"
534
+ },
535
+ {
536
+ "id": "column_view",
537
+ "name": "Column View",
538
+ "description": "Navigate folder hierarchy in columns; preview column shows file content on right",
539
+ "category": "views",
540
+ "level": "beginner"
541
+ },
542
+ {
543
+ "id": "gallery_view",
544
+ "name": "Gallery View",
545
+ "description": "Large visual preview of selected file with filmstrip navigation; ideal for photos and media",
546
+ "category": "views",
547
+ "level": "beginner"
548
+ },
549
+ {
550
+ "id": "use_groups",
551
+ "name": "Use Groups / Use Stacks",
552
+ "description": "Group files by Kind, Date, Size, Tags in any view. Stacks mode on Desktop groups files into piles (Ctrl+Cmd+0)",
553
+ "category": "views",
554
+ "level": "pro"
555
+ },
556
+ {
557
+ "id": "sort_by",
558
+ "name": "Sort By",
559
+ "description": "Sort by: None, Name, Kind, Date Last Opened, Date Added, Date Modified, Size, Tags (Ctrl+Option+Cmd+0-7)",
560
+ "category": "views",
561
+ "level": "beginner"
562
+ },
563
+ {
564
+ "id": "view_options",
565
+ "name": "View Options (Cmd+J)",
566
+ "description": "Per-folder display settings: icon size, grid spacing, text size, label position, item info, icon preview, background, group by, sort by. 'Use as Defaults' applies globally.",
567
+ "category": "views",
568
+ "level": "pro"
569
+ },
570
+ {
571
+ "id": "preview_pane",
572
+ "name": "Preview Pane (Shift+Cmd+P)",
573
+ "description": "Persistent right-side panel showing file metadata, image dimensions, PDF pages, audio/video info — no need to open file",
574
+ "category": "views",
575
+ "level": "pro"
576
+ },
577
+ {
578
+ "id": "sidebar",
579
+ "name": "Sidebar",
580
+ "description": "Left panel with Favorites, Recents, AirDrop, iCloud Drive, connected devices, network shares, tags. Customizable via Settings > Sidebar. Toggle: Ctrl+Cmd+S",
581
+ "category": "navigation",
582
+ "level": "beginner"
583
+ },
584
+ {
585
+ "id": "toolbar",
586
+ "name": "Toolbar",
587
+ "description": "Back/Forward, view switcher, search field, customizable buttons. Option+Cmd+T to hide. Right-click to customize.",
588
+ "category": "navigation",
589
+ "level": "beginner"
590
+ },
591
+ {
592
+ "id": "path_bar",
593
+ "name": "Path Bar (Option+Cmd+P)",
594
+ "description": "Breadcrumb bar at window bottom. Double-click crumb to navigate; drag files onto crumbs to move. Shows full path from root.",
595
+ "category": "navigation",
596
+ "level": "pro"
597
+ },
598
+ {
599
+ "id": "status_bar",
600
+ "name": "Status Bar (Cmd+/)",
601
+ "description": "Shows item count and available disk space at bottom of window",
602
+ "category": "navigation",
603
+ "level": "beginner"
604
+ },
605
+ {
606
+ "id": "go_shortcuts",
607
+ "name": "Go Location Shortcuts",
608
+ "description": "Desktop (Shift+Cmd+D), Home (Shift+Cmd+H), Documents (Shift+Cmd+O), Downloads (Option+Cmd+L), Applications (Shift+Cmd+A), iCloud (Shift+Cmd+I), Computer (Shift+Cmd+C), AirDrop (Shift+Cmd+R), Network (Shift+Cmd+K)",
609
+ "category": "navigation",
610
+ "level": "beginner"
611
+ },
612
+ {
613
+ "id": "go_to_folder",
614
+ "name": "Go to Folder (Shift+Cmd+G)",
615
+ "description": "Type any absolute path to navigate directly. Works in Finder AND inside NSOpenPanel/NSSavePanel dialogs. Supports Tab completion.",
616
+ "category": "navigation",
617
+ "level": "pro"
618
+ },
619
+ {
620
+ "id": "back_forward",
621
+ "name": "Back / Forward / Enclosing Folder",
622
+ "description": "Cmd+[ (back), Cmd+] (forward), Option+Cmd+Up (enclosing folder / parent directory)",
623
+ "category": "navigation",
624
+ "level": "beginner"
625
+ },
626
+ {
627
+ "id": "tabs",
628
+ "name": "Tabs",
629
+ "description": "Cmd+T new tab, Shift+Cmd+\\ all tabs overview, Ctrl+Cmd+Tab cycle, Window > Merge All Windows. Tab bar hides when only 1 tab (Shift+Cmd+T toggle)",
630
+ "category": "navigation",
631
+ "level": "pro"
632
+ },
633
+ {
634
+ "id": "recents",
635
+ "name": "Recents",
636
+ "description": "Shift+Cmd+F opens Recents (recently opened files across all apps). Appears in sidebar. Not the same as Recent Folders in the Go menu.",
637
+ "category": "navigation",
638
+ "level": "beginner"
639
+ },
640
+ {
641
+ "id": "new_folder",
642
+ "name": "New Folder (Shift+Cmd+N)",
643
+ "description": "Create folder at current location with inline rename. Ctrl+Cmd+N = New Folder with Selection (wraps selected items into new folder).",
644
+ "category": "file_operations",
645
+ "level": "beginner"
646
+ },
647
+ {
648
+ "id": "open_with",
649
+ "name": "Open With",
650
+ "description": "Open file with specific app: right-click > Open With. Option+right-click for full list. 'Always Open With' changes default app. Or use File > Open With.",
651
+ "category": "file_operations",
652
+ "level": "beginner"
653
+ },
654
+ {
655
+ "id": "duplicate",
656
+ "name": "Duplicate (Cmd+D)",
657
+ "description": "Creates copy in same folder with ' copy' appended. Option+Shift+Cmd+D = Duplicate Exactly (no suffix).",
658
+ "category": "file_operations",
659
+ "level": "beginner"
660
+ },
661
+ {
662
+ "id": "make_alias",
663
+ "name": "Make Alias (Ctrl+Cmd+A)",
664
+ "description": "Creates tracked shortcut that follows original even if moved — unlike symlinks. Arrow badge on icon. AppleScript: make alias file at desktop to item.",
665
+ "category": "file_operations",
666
+ "level": "pro"
667
+ },
668
+ {
669
+ "id": "compress",
670
+ "name": "Compress / ZIP Archive",
671
+ "description": "Right-click > Compress. Single file -> <name>.zip. Multiple -> Archive.zip. Same folder as originals. AppleScript: Finder's compress command.",
672
+ "category": "file_operations",
673
+ "level": "beginner"
674
+ },
675
+ {
676
+ "id": "move_to_trash",
677
+ "name": "Move to Trash / Delete",
678
+ "description": "Cmd+Delete = Trash. Option+Cmd+Delete = Delete Immediately (bypasses Trash). Shift+Cmd+Delete = Empty Trash. Recover via right-click > Put Back.",
679
+ "category": "file_operations",
680
+ "level": "beginner"
681
+ },
682
+ {
683
+ "id": "copy_paste_move",
684
+ "name": "Copy, Paste, Move (Cut)",
685
+ "description": "Cmd+C copy, Cmd+V paste (copies). Option+Cmd+V = Move Item Here (cut-paste equivalent). Note: Cmd+X does NOT cut files in Finder.",
686
+ "category": "file_operations",
687
+ "level": "pro"
688
+ },
689
+ {
690
+ "id": "rename",
691
+ "name": "Rename File/Folder",
692
+ "description": "Select item, press Return for inline rename. Batch rename: select multiple > right-click > Rename (Replace Text / Add Text / Format with counter/date).",
693
+ "category": "file_operations",
694
+ "level": "beginner"
695
+ },
696
+ {
697
+ "id": "copy_pathname",
698
+ "name": "Copy as Pathname (Option+Cmd+C)",
699
+ "description": "Copies full POSIX path to clipboard (e.g. /Users/khushi/Documents/file.txt). Essential for scripting.",
700
+ "category": "file_operations",
701
+ "level": "pro"
702
+ },
703
+ {
704
+ "id": "eject",
705
+ "name": "Eject Volume (Option+Cmd+E)",
706
+ "description": "Safely unmounts selected disk/volume. Also: drag to Trash (icon changes to Eject). AppleScript: tell Finder to eject disk.",
707
+ "category": "file_operations",
708
+ "level": "pro"
709
+ },
710
+ {
711
+ "id": "get_info",
712
+ "name": "Get Info (Cmd+I)",
713
+ "description": "File metadata: Kind, Size, Where, Created, Modified, Tags, Name & Extension, Open With, Comments, Sharing & Permissions. Option+Cmd+I = Inspector (live update). Ctrl+Cmd+I = Summary for multiple.",
714
+ "category": "file_info",
715
+ "level": "beginner"
716
+ },
717
+ {
718
+ "id": "quick_look",
719
+ "name": "Quick Look (Cmd+Y / Space)",
720
+ "description": "Floating preview panel without opening file. Supports images, PDFs, text, audio, video, Office docs, code. Option+Cmd+Y = Slideshow for multiple selected.",
721
+ "category": "file_info",
722
+ "level": "beginner"
723
+ },
724
+ {
725
+ "id": "show_original",
726
+ "name": "Show Original (Cmd+R)",
727
+ "description": "When an alias/symlink is selected, navigates to and reveals the original file.",
728
+ "category": "file_info",
729
+ "level": "pro"
730
+ },
731
+ {
732
+ "id": "search",
733
+ "name": "Search (Cmd+F)",
734
+ "description": "Spotlight-powered: type to search, add filters (+): Kind, Date Modified, Date Created, Tags, Size, Name Contains, File Extension. Ctrl+Shift+Cmd+F = Find by Name only (faster). Toggle scope: This Mac vs current folder.",
735
+ "category": "search",
736
+ "level": "beginner"
737
+ },
738
+ {
739
+ "id": "smart_folders",
740
+ "name": "Smart Folders",
741
+ "description": "File > New Smart Folder. Criteria-based auto-updating virtual folder (any Spotlight attribute). Save as .savedSearch. Add to sidebar. Stored in ~/Library/Saved Searches/.",
742
+ "category": "search",
743
+ "level": "pro"
744
+ },
745
+ {
746
+ "id": "tags",
747
+ "name": "Tags (Color Labels)",
748
+ "description": "Apply: right-click > Tags, drag to sidebar tag, or Cmd+I > Tags field. Multiple per file. Search by tag: Cmd+F > Tags. AppleScript: set tags of file to {\"Red\",\"Work\"}. Manage in Settings > Tags.",
749
+ "category": "organization",
750
+ "level": "pro"
751
+ },
752
+ {
753
+ "id": "customize_icon",
754
+ "name": "Customize Folder/File Icon",
755
+ "description": "Cmd+I > click top-left icon > Cmd+V paste custom image. Emoji, screenshots, custom artwork work. Remove: click pasted icon > Delete.",
756
+ "category": "organization",
757
+ "level": "pro"
758
+ },
759
+ {
760
+ "id": "add_to_sidebar",
761
+ "name": "Add to Sidebar / Dock",
762
+ "description": "Ctrl+Cmd+T = Add to Sidebar Favorites. Ctrl+Shift+Cmd+T = Add to Dock. Drag items directly to sidebar.",
763
+ "category": "organization",
764
+ "level": "beginner"
765
+ },
766
+ {
767
+ "id": "airdrop",
768
+ "name": "AirDrop (Shift+Cmd+R)",
769
+ "description": "Wireless file transfer to nearby Mac/iPhone/iPad over Bluetooth+WiFi. No internet. Drag files onto recipient. Recipient must accept.",
770
+ "category": "sharing",
771
+ "level": "beginner"
772
+ },
773
+ {
774
+ "id": "share_menu",
775
+ "name": "Share Menu",
776
+ "description": "Right-click > Share: AirDrop, Mail, Messages, Notes, Reminders, Add to Photos, etc. Or File > Share menu.",
777
+ "category": "sharing",
778
+ "level": "beginner"
779
+ },
780
+ {
781
+ "id": "connect_to_server",
782
+ "name": "Connect to Server (Cmd+K)",
783
+ "description": "Mount network volumes: SMB (smb://server/share), AFP (afp://), NFS (nfs://), WebDAV (http://). Mounts in sidebar > Locations. AppleScript: open location. Favorite servers saved in dialog.",
784
+ "category": "network",
785
+ "level": "expert"
786
+ },
787
+ {
788
+ "id": "ios_device_sync",
789
+ "name": "iOS/iPadOS Device Sync",
790
+ "description": "USB-connect iPhone/iPad/iPod -> appears in Finder sidebar. Sync music, photos, videos, podcasts, files. Backup/restore. Replaces iTunes.",
791
+ "category": "network",
792
+ "level": "expert"
793
+ },
794
+ {
795
+ "id": "icloud_drive",
796
+ "name": "iCloud Drive",
797
+ "description": "~/Library/Mobile Documents synced to iCloud. Offline toggle per file (right-click > Keep Downloaded / Remove Download). Sync Desktop+Docs in Settings > General.",
798
+ "category": "network",
799
+ "level": "pro"
800
+ },
801
+ {
802
+ "id": "quick_actions",
803
+ "name": "Quick Actions",
804
+ "description": "Right-click > Quick Actions: context-sensitive operations like Rotate Image, Create PDF, Trim Video, Markup. Customize in System Settings > Extensions > Finder.",
805
+ "category": "advanced",
806
+ "level": "expert"
807
+ },
808
+ {
809
+ "id": "new_terminal_at_folder",
810
+ "name": "New Terminal at Folder",
811
+ "description": "Right-click folder or background > New Terminal at Folder. Opens Terminal.app at that path. Enable in System Settings > Privacy & Security > Extensions > Finder.",
812
+ "category": "advanced",
813
+ "level": "pro"
814
+ },
815
+ {
816
+ "id": "burn_disc",
817
+ "name": "Burn to Disc",
818
+ "description": "File > New Burn Folder (when optical drive present). Drag items in, click Burn. Or insert blank disc and it appears in sidebar.",
819
+ "category": "advanced",
820
+ "level": "expert"
821
+ },
822
+ {
823
+ "id": "finder_settings",
824
+ "name": "Finder Settings (Cmd+,)",
825
+ "description": "4 tabs: General (desktop items, new window target, tabs, iCloud sync), Tags (sidebar tags), Sidebar (toggle all sidebar items), Advanced (extensions, warnings, trash behavior, folder sorting, search scope).",
826
+ "category": "advanced",
827
+ "level": "pro"
828
+ },
829
+ {
830
+ "id": "nssavepanel_automation",
831
+ "name": "NSSavePanel Dialog Automation",
832
+ "description": "Compact sheet on triggering window. text field 1 = filename, text field 2 = tags, pop up button 'Where:', pop up button 'File Format:', button 'Save'/'Cancel'. Navigate via Cmd+Shift+G inside dialog.",
833
+ "category": "dialogs",
834
+ "level": "expert"
835
+ },
836
+ {
837
+ "id": "nsopenpanel_automation",
838
+ "name": "NSOpenPanel Dialog Automation",
839
+ "description": "Standalone window 'Open'. Sidebar: outline 1 of scroll area 1 of splitter group 1. Files: list 1 of scroll area 1 of splitter group 1 of splitter group 1. Navigate Cmd+Shift+G, type filename to select, click Open.",
840
+ "category": "dialogs",
841
+ "level": "expert"
842
+ }
843
+ ],
844
+ "valueAddFeatures": [
845
+ {
846
+ "id": "bulk_create",
847
+ "name": "Bulk Create",
848
+ "description": "Create multiple Finder items from a list or template",
849
+ "category": "bulk",
850
+ "level": "pro"
851
+ },
852
+ {
853
+ "id": "auto_organize",
854
+ "name": "Auto-Organize",
855
+ "description": "Sort and organize Finder items by content, date, or type",
856
+ "category": "organization",
857
+ "level": "expert"
858
+ },
859
+ {
860
+ "id": "summarize_all",
861
+ "name": "Summarize",
862
+ "description": "Read and summarize all Finder content",
863
+ "category": "intelligence",
864
+ "level": "expert"
865
+ },
866
+ {
867
+ "id": "change_monitor",
868
+ "name": "Change Monitor",
869
+ "description": "Monitor Finder for changes and notify",
870
+ "category": "monitoring",
871
+ "level": "grandmaster"
872
+ }
873
+ ]
874
+ }