stout 0.2.1

A fast, Rust-based Homebrew-compatible package manager
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
# Command Reference

Complete reference for all Stout commands.

---

## Package Management

### install

Install one or more packages.

```bash
stout install <package>...
```

**Options:**

| Option | Description |
|--------|-------------|
| `--HEAD` | Install from git HEAD (implies --build-from-source) |
| `--build-from-source` | Compile from source instead of using bottles |
| `--force` | Install even if already installed |
| `--ignore-dependencies` | Skip dependency installation |
| `--cask` | Treat all packages as casks |
| `--formula` | Treat all packages as formulas |
| `--no-verify` | Skip checksum verification (casks) |
| `--appdir=<dir>` | Custom application directory (casks) |
| `--dry-run` | Preview what would be installed |
| `--keep-bottles` | Keep downloaded bottles after installation |
| `-j, --jobs=<n>` | Number of parallel jobs for source builds |
| `--cc=<compiler>` | Use specified C compiler |
| `--cxx=<compiler>` | Use specified C++ compiler |

**Examples:**

```bash
# Install a package
stout install jq

# Install multiple packages
stout install jq yq gron

# Install a specific version
stout install python@3.11

# Build from source
stout install --build-from-source neovim

# Install from git HEAD (bleeding edge)
stout install --HEAD neovim
```

---

### uninstall

Remove installed packages.

```bash
stout uninstall <package>...
```

**Options:**

| Option | Description |
|--------|-------------|
| `--force` | Delete all installed versions |
| `--ignore-dependencies` | Don't fail if dependents exist |
| `--cask` | Treat as cask (application) |
| `--formula` | Treat as formula |
| `--zap` | Remove all files including preferences (casks only) |

**Examples:**

```bash
stout uninstall jq
stout uninstall --force python
```

---

### reinstall

Reinstall a package.

```bash
stout reinstall <package>...
```

**Options:**

| Option | Description |
|--------|-------------|
| `--HEAD` | Reinstall from git HEAD |
| `--build-from-source` | Compile from source |
| `--keep-bottles` | Keep downloaded bottles after installation |

**Examples:**

```bash
# Reinstall a package
stout reinstall jq

# Reinstall as HEAD build
stout reinstall --HEAD neovim

# Reinstall from source
stout reinstall --build-from-source neovim
```

---

### upgrade

Upgrade installed packages.

```bash
stout upgrade [package]...
```

Without arguments, upgrades all outdated packages.

**Options:**

| Option | Description |
|--------|-------------|
| `--dry-run` | Show what would be upgraded |
| `--fetch-HEAD` | Fetch upstream repository for HEAD installs |
| `--greedy` | Upgrade casks with auto-updates |
| `--cask` | Upgrade casks only |
| `--formula` | Upgrade formulas only |

**Examples:**

```bash
# Upgrade specific package
stout upgrade python

# Upgrade all packages
stout upgrade

# Preview upgrades
stout upgrade --dry-run

# Check HEAD packages for updates
stout upgrade --fetch-HEAD
```

---

### update

Update the formula index.

```bash
stout update
```

Downloads the latest package index from the stout-index repository.

**Options:**

| Option | Description |
|--------|-------------|
| `--force` | Force update even if recently updated |

---

### sync

Synchronize stout state with Homebrew Cellar and Caskroom.

```bash
stout sync
```

Detects drift between stout's tracked packages and what's actually installed in Homebrew's Cellar/Caskroom, then applies changes to bring state into sync.

**Options:**

| Option | Description |
|--------|-------------|
| `-n, --dry-run` | Show what would change without modifying state |
| `-y, --yes` | Apply all changes without prompting |
| `-v, --verbose` | Show detailed output |

**Examples:**

```bash
# Check for drift
stout sync --dry-run

# Sync without prompting
stout sync --yes
```

---

### import

Import existing Homebrew packages into stout's tracking.

```bash
stout import [package]...
```

Scans the Homebrew Cellar and imports packages into stout's state. Also relocates Homebrew placeholders to work with stout's prefix.

**Options:**

| Option | Description |
|--------|-------------|
| `-n, --dry-run` | Show what would be imported without modifying state |
| `--overwrite` | Re-import packages already tracked by stout |
| `-v, --verbose` | Show detailed output for each package |

**Examples:**

```bash
# Import all untracked packages from Cellar
stout import

# Import specific packages
stout import jq wget curl

# Re-import already tracked packages
stout import --overwrite jq
```

---

### outdated

List packages with available updates.

```bash
stout outdated
```

**Options:**

| Option | Description |
|--------|-------------|
| `--fetch-HEAD` | Check HEAD packages for updates |
| `--json` | Output as JSON |
| `--quiet` | Only show package names |
| `--cask` | Check casks only |
| `--formula` | Check formulas only |

**Examples:**

```bash
# List outdated packages
stout outdated

# Check HEAD packages for updates
stout outdated --fetch-HEAD

# JSON output
stout outdated --json
```

---

### autoremove

Remove packages installed as dependencies that are no longer needed.

```bash
stout autoremove
```

**Options:**

| Option | Description |
|--------|-------------|
| `--dry-run` | Preview what would be removed |

---

## Discovery & Information

### search

Search for packages.

```bash
stout search <query>
```

Uses FTS5 full-text search for fast results.

**Options:**

| Option | Description |
|--------|-------------|
| `--desc` | Search in descriptions |
| `--cask` | Search casks only |
| `--formula` | Search formulas only |
| `--json` | Output as JSON |

**Examples:**

```bash
stout search json
stout search --desc "image processing"
stout search --cask browser
```

---

### info

Show package information.

```bash
stout info <package>
```

**Options:**

| Option | Description |
|--------|-------------|
| `--json` | Output as JSON |
| `--installed` | Only show installed packages |
| `--cask` | Show cask info |
| `--formula` | Show formula info |

**Examples:**

```bash
stout info jq
stout info --json python@3.11
```

---

### list

List installed packages.

```bash
stout list
```

**Options:**

| Option | Description |
|--------|-------------|
| `--versions` | Show installed versions |
| `--pinned` | Only show pinned packages |
| `--cask` | List installed casks |
| `--formula` | List installed formulas |
| `--json` | Output as JSON |
| `-1` | One package per line |
| `--source <src>` | Filter by source: stout, brew, unknown |
| `--requested` | Show only explicitly installed packages |
| `--deps` | Show only packages installed as dependencies |

**Examples:**

```bash
# List all packages
stout list

# Show packages installed by Homebrew (not stout)
stout list --source brew

# Show only explicitly installed packages
stout list --requested
```

---

### deps

Show package dependencies.

```bash
stout deps <package>
```

**Options:**

| Option | Description |
|--------|-------------|
| `--tree` | Show as dependency tree |
| `--graph` | Output DOT graph format |
| `--installed` | Only show installed dependencies |
| `--all` | Show all dependencies recursively |
| `--json` | Output as JSON |

**Examples:**

```bash
stout deps python@3.11
stout deps --tree ffmpeg
stout deps --graph imagemagick > deps.dot
```

---

### uses

Show packages that depend on a package (reverse dependencies).

```bash
stout uses <package>
```

**Options:**

| Option | Description |
|--------|-------------|
| `--recursive` | Show indirect dependents |
| `--installed` | Only show installed dependents |

---

### why

Explain why a package is installed.

```bash
stout why <package>
```

Shows the dependency chain that led to installation.

---

### home

Open package homepage in browser.

```bash
stout home <package>
```

---

## Package Control

### pin

Prevent a package from being upgraded.

```bash
stout pin <package>...
```

---

### unpin

Allow a pinned package to be upgraded.

```bash
stout unpin <package>...
```

---

### link

Create symlinks for a package.

```bash
stout link <package>
```

**Options:**

| Option | Description |
|--------|-------------|
| `--overwrite` | Overwrite existing symlinks |
| `--force` | Allow linking keg-only packages |
| `--dry-run` | Preview what would be linked |

---

### unlink

Remove symlinks for a package.

```bash
stout unlink <package>
```

The package remains installed but is not in PATH.

---

### switch

Switch between installed versions.

```bash
stout switch <package> <version>
```

**Example:**

```bash
stout switch python 3.11
```

---

### rollback

Rollback to a previous version.

```bash
stout rollback <package>
```

Reverts to the previously installed version.

---

## System & Maintenance

### cleanup

Remove old versions and cached downloads.

```bash
stout cleanup
```

**Options:**

| Option | Description |
|--------|-------------|
| `--dry-run` | Preview what would be removed |
| `--prune=<days>` | Remove downloads older than days |
| `-s` | Scrub the cache |

---

### doctor

Check system for potential problems.

```bash
stout doctor
```

Runs diagnostics and reports issues:
- stout data directory
- Configuration file
- Formula index
- Homebrew prefix and Cellar
- Installed packages state
- Homebrew drift (packages in Cellar/Caskroom not tracked by stout)
- Unrelocated Homebrew placeholders
- Code signatures on all Mach-O binaries (macOS)

**Options:**

| Option | Description |
|--------|-------------|
| `--fix` | Automatically fix issues (sync, relocate, re-sign, reinstall corrupted packages) |

**Examples:**

```bash
# Check system health
stout doctor

# Check and auto-fix issues
stout doctor --fix
```

---

### config

Show or modify configuration.

```bash
stout config
```

Displays current configuration settings.

---

### services

Manage background services.

```bash
stout services <command> [service]
```

**Subcommands:**

| Command | Description |
|---------|-------------|
| `list` | List all services |
| `start <service>` | Start a service |
| `stop <service>` | Stop a service |
| `restart <service>` | Restart a service |
| `run <service>` | Run in foreground |
| `info <service>` | Show service information |
| `cleanup` | Remove unused service files |

---

### tap

Manage third-party repositories.

```bash
stout tap [user/repo]
```

**Subcommands:**

| Command | Description |
|---------|-------------|
| `stout tap` | List tapped repositories |
| `stout tap <user/repo>` | Add a tap |
| `stout tap remove <user/repo>` | Remove a tap |

---

### history

Show version history for a package.

```bash
stout history <package>
```

---

### completions

Generate shell completions.

```bash
stout completions <shell>
```

**Shells:** `bash`, `zsh`, `fish`

---

## Cask Commands

> **Deprecated**: `stout cask <command>` is deprecated. Use `stout <command> --cask` instead.
> The commands below still work but will print a deprecation warning.

Casks are macOS applications and Linux apps.

### cask install

```bash
stout cask install <cask>...
```

Use instead: `stout install --cask <cask>...`

### cask uninstall

```bash
stout cask uninstall <cask>...
```

Use instead: `stout uninstall --cask <cask>...`

**Options:**

| Option | Description |
|--------|-------------|
| `--zap` | Remove all associated files |

### cask search

```bash
stout cask search <query>
```

Use instead: `stout search --cask <query>`

### cask info

```bash
stout cask info <cask>
```

Use instead: `stout info --cask <cask>`

### cask list

```bash
stout cask list
```

Use instead: `stout list --cask`

### cask outdated

```bash
stout cask outdated
```

Use instead: `stout outdated --cask`

### cask upgrade

```bash
stout cask upgrade [cask]...
```

Use instead: `stout upgrade --cask [cask]...`

---

## Bundle & Snapshot

### bundle

Work with Brewfiles.

```bash
stout bundle <command>
```

**Subcommands:**

| Command | Description |
|---------|-------------|
| `install` | Install from Brewfile |
| `dump` | Create Brewfile from installed packages |
| `check` | Check if Brewfile is satisfied |
| `list` | List packages from Brewfile |
| `cleanup` | Remove packages not in Brewfile |

**Examples:**

```bash
# Install from Brewfile
stout bundle install

# Create Brewfile
stout bundle dump > Brewfile

# Check status
stout bundle check
```

---

### snapshot

Save and restore system state.

```bash
stout snapshot <command>
```

**Subcommands:**

| Command | Description |
|---------|-------------|
| `create <name>` | Create a snapshot |
| `list` | List snapshots |
| `show <name>` | Show snapshot details |
| `restore <name>` | Restore a snapshot |
| `delete <name>` | Delete a snapshot |
| `export <name> <file>` | Export snapshot to file |
| `import <file>` | Import snapshot from file |

---

### lock

Manage lockfiles for reproducible environments.

```bash
stout lock <command>
```

**Subcommands:**

| Command | Description |
|---------|-------------|
| `generate` | Generate lockfile from installed packages |
| `install` | Install packages from lockfile |
| `show` | Display lockfile contents |

**Examples:**

```bash
# Generate lockfile
stout lock generate

# Install from lockfile
stout lock install

# View lockfile
stout lock show
```

Creates `stout.lock` with exact versions for reproducible environments.

---

## Security & Audit

### audit

Scan for known vulnerabilities.

```bash
stout audit [package]...
```

Without arguments, scans all installed packages.

**Options:**

| Option | Description |
|--------|-------------|
| `--severity=<level>` | Minimum severity (low, medium, high, critical) |
| `--json` | Output as JSON |

---

## Offline & Mirroring

### mirror

Manage offline mirrors.

```bash
stout mirror <command>
```

**Subcommands:**

| Command | Description |
|---------|-------------|
| `create <path> <package>...` | Create a mirror with packages |
| `serve <path>` | Serve mirror via HTTP |
| `info <path>` | Show mirror information |
| `verify <path>` | Verify mirror integrity |

**Examples:**

```bash
# Create mirror with essential tools
stout mirror create ./mirror jq curl wget git

# Serve on local network
stout mirror serve ./mirror --port 9000

# Use mirror
stout --mirror=http://localhost:9000 install jq
```

---

## Multi-Prefix

### prefix

Manage isolated environments.

```bash
stout prefix <command>
```

**Subcommands:**

| Command | Description |
|---------|-------------|
| `create <path>` | Create new prefix |
| `list` | List prefixes |
| `info <path>` | Show prefix information |
| `default <path>` | Set default prefix |
| `remove <path>` | Remove a prefix |

**Examples:**

```bash
# Create project-specific environment
stout prefix create ~/project/.stout

# Install packages to prefix
stout --prefix=~/project/.stout install node@20

# Set as default
stout prefix default ~/project/.stout
```

---

## Developer Commands

### bottle

Create and manage binary packages.

```bash
stout bottle <command> [package]
```

**Subcommands:**

| Command | Description |
|---------|-------------|
| `create <package>` | Create bottle from installed package |
| `info <bottle>` | Show bottle information |
| `verify <bottle>` | Verify bottle integrity |

---

### create

Create a formula from a URL.

```bash
stout create <url>
```

Generates a formula template from a source archive.

---

### test

Run package tests.

```bash
stout test <package>
```

Runs the test block defined in the formula.

---

### analytics

Manage usage analytics.

```bash
stout analytics <command>
```

**Subcommands:**

| Command | Description |
|---------|-------------|
| `status` | Show analytics status |
| `on` | Enable analytics |
| `off` | Disable analytics |
| `what` | Show what data is collected |

---

## Global Options

These options work with most commands:

| Option | Description |
|--------|-------------|
| `--prefix=<path>` | Use custom prefix |
| `--mirror=<url>` | Use custom mirror |
| `--verbose` | Show detailed output |
| `--quiet` | Suppress output |
| `--json` | Output as JSON (where supported) |
| `--help` | Show help for command |
| `--version` | Show version |