@sebastienrousseau/dotfiles 0.2.500 → 0.2.502
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.
- package/CHANGELOG.md +154 -0
- package/README.md +113 -45
- package/docs/.vitepress/reports/localization-readability-audit.md +4 -0
- package/docs/AI.md +8 -2
- package/docs/CNAME +1 -0
- package/docs/COPYRIGHT +1 -1
- package/docs/NAMING_CONVENTIONS.md +7 -0
- package/docs/README.md +4 -0
- package/docs/_config.yml +59 -0
- package/docs/adr/ADR-001-ci-cd-pipeline.md +17 -0
- package/docs/adr/ADR-002-shell-performance.md +9 -0
- package/docs/adr/ADR-003-security-first.md +18 -0
- package/docs/adr/ADR-004-cli-architecture.md +14 -0
- package/docs/adr/ADR-005-chezmoi-choice.md +10 -0
- package/docs/adr/ADR-006-shell-selection.md +9 -0
- package/docs/adr/ADR-007-multi-shell-parity.md +10 -1
- package/docs/adr/ADR-008-alias-system-architecture.md +10 -0
- package/docs/adr/ADR-009-wallpaper-driven-theming.md +131 -0
- package/docs/adr/ADR-010-starship-transient-prompt.md +144 -0
- package/docs/adr/ADR-011-nushell-tier3-keep.md +144 -0
- package/docs/adr/README.md +7 -0
- package/docs/architecture/ARCHITECTURE.md +4 -0
- package/docs/architecture/INTEROP.md +8 -0
- package/docs/architecture/REPO_LAYOUT.md +5 -1
- package/docs/architecture/WALKTHROUGH.md +4 -0
- package/docs/architecture/fleet-deployment.md +4 -0
- package/docs/archive/EUXIS_2026_REVIEW.md +11 -3
- package/docs/archive/LEGACY_ROADMAP.md +45 -27
- package/docs/archive/MILESTONE_v0.2.493.md +4 -0
- package/docs/archive/PLAN.md +46 -8
- package/docs/archive/REPO_AUDIT.md +8 -0
- package/docs/guides/INSTALL.md +4 -0
- package/docs/guides/NEOVIM_IDE_GUIDE.md +9 -0
- package/docs/guides/THEMING.md +8 -0
- package/docs/guides/TROUBLESHOOTING.md +28 -0
- package/docs/guides/WSL2_NIX_TROUBLESHOOTING.md +70 -1
- package/docs/index.md +6 -2
- package/docs/interop/A2A.md +7 -0
- package/docs/interop/POWERSHELL.md +102 -0
- package/docs/manual/00-introduction.md +5 -1
- package/docs/manual/01-concepts/01-architecture.md +4 -0
- package/docs/manual/01-concepts/02-trust-model.md +6 -2
- package/docs/manual/01-concepts/03-theme-engine.md +4 -0
- package/docs/manual/01-concepts/04-fleet.md +7 -1
- package/docs/manual/01-concepts/05-self-healing.md +8 -1
- package/docs/manual/02-tutorials/01-first-install.md +5 -0
- package/docs/manual/02-tutorials/02-add-wallpaper.md +5 -0
- package/docs/manual/02-tutorials/03-create-profile.md +6 -0
- package/docs/manual/02-tutorials/04-encrypt-secret.md +6 -0
- package/docs/manual/02-tutorials/05-deploy-fleet.md +5 -1
- package/docs/manual/03-reference/01-dot-cli.md +67 -45
- package/docs/manual/03-reference/02-config-files.md +8 -2
- package/docs/manual/03-reference/03-environment.md +4 -0
- package/docs/manual/03-reference/04-templates.md +7 -1
- package/docs/manual/03-reference/05-feature-flags.md +72 -3
- package/docs/manual/04-cookbook/01-recipes.md +4 -0
- package/docs/manual/04-cookbook/02-troubleshooting.md +32 -0
- package/docs/manual/04-cookbook/03-faq.md +8 -0
- package/docs/manual/05-appendices/A-platform-matrix.md +4 -0
- package/docs/manual/05-appendices/B-security-checklist.md +6 -0
- package/docs/manual/05-appendices/C-glossary.md +4 -0
- package/docs/manual/05-appendices/D-bibliography.md +5 -1
- package/docs/manual/05-appendices/E-license.md +4 -0
- package/docs/manual/_toc.yml +1 -1
- package/docs/manual/command-index.md +16 -8
- package/docs/manual/concept-index.md +4 -0
- package/docs/manual/index.md +66 -0
- package/docs/operations/ATTESTATION.md +5 -0
- package/docs/operations/CI_CADENCE.md +107 -0
- package/docs/operations/CI_COMPOSITES.md +156 -0
- package/docs/operations/COMPLETIONS.md +123 -0
- package/docs/operations/COVERAGE.md +182 -0
- package/docs/operations/DRIFT.md +107 -0
- package/docs/operations/HARD_AUDIT_2026.md +631 -0
- package/docs/operations/MAINTENANCE.md +5 -1
- package/docs/operations/MIGRATION.md +14 -6
- package/docs/operations/OPERATIONS.md +24 -0
- package/docs/operations/PERFORMANCE.md +133 -0
- package/docs/operations/REGISTRY.md +89 -0
- package/docs/operations/RELIABILITY.md +6 -0
- package/docs/operations/ROADMAP.md +36 -18
- package/docs/operations/ROADMAP_2026.md +665 -0
- package/docs/operations/TESTING.md +4 -0
- package/docs/operations/TRACEABILITY.md +7 -0
- package/docs/operations/TRUSTED_AGENT_WORKSTATION.md +4 -0
- package/docs/operations/VERSION_SYNC.md +54 -5
- package/docs/reference/ALIASES.md +7 -0
- package/docs/reference/ALIASES_CHEATSHEET.md +5 -1
- package/docs/reference/ALIASES_DEPRECATIONS.md +5 -1
- package/docs/reference/FEATURES.md +4 -0
- package/docs/reference/FONTS.md +4 -0
- package/docs/reference/POWERSHELL_PARITY.md +80 -0
- package/docs/reference/PROFILES.md +4 -0
- package/docs/reference/SCREENSHOTS.md +4 -0
- package/docs/reference/SCRIPTS.md +4 -0
- package/docs/reference/SUPPORT_MATRIX.md +10 -4
- package/docs/reference/THEMES.md +4 -0
- package/docs/reference/TOOLS.md +4 -0
- package/docs/reference/UTILS.md +16 -12
- package/docs/registry.json +6 -0
- package/docs/security/AI_ACT_COMPLIANCE.md +4 -0
- package/docs/security/AUDIT_BYPASS.md +103 -0
- package/docs/security/AUTOMATION_SECRETS.md +4 -0
- package/docs/security/CI_EGRESS_ALLOWLIST.md +127 -0
- package/docs/security/CI_PINNING.md +113 -0
- package/docs/security/COMMIT_SIGNING.md +138 -0
- package/docs/security/COMPLIANCE.md +5 -0
- package/docs/security/DEPS_DEV_EXCEPTIONS.md +86 -0
- package/docs/security/DISCLOSURE.md +130 -0
- package/docs/security/ENCRYPTION.md +5 -0
- package/docs/security/FMEA.md +4 -0
- package/docs/security/HISTORY_FILTERING.md +132 -0
- package/docs/security/INCIDENT_RESPONSE.md +4 -0
- package/docs/security/INSTALL_VERIFICATION.md +122 -0
- package/docs/security/KEYS.md +4 -0
- package/docs/security/KEY_ROTATION.md +85 -1
- package/docs/security/MCP_POLICY.md +9 -0
- package/docs/security/POLICY_RELEASES.md +4 -0
- package/docs/security/README.md +4 -0
- package/docs/security/SCORECARD.md +140 -0
- package/docs/security/SECRETS.md +12 -0
- package/docs/security/SECURITY.md +4 -0
- package/docs/security/SECURITY_CHECKLIST.md +11 -0
- package/docs/security/SHELL_EXEMPTIONS.md +145 -0
- package/docs/security/SOUP_REGISTER.md +4 -0
- package/docs/security/THREAT_MODEL.md +10 -0
- package/docs/security/VERIFICATION_VALIDATION.md +5 -1
- package/docs/security/security-pubkey.asc +15 -0
- package/docs/themes/README.md +4 -0
- package/docs/themes/VISUAL_INTEGRITY_REPORT.md +4 -0
- package/dot_config/ai/identity.md +3 -0
- package/dot_config/ai/patterns/architect.md +2 -0
- package/dot_config/ai/patterns/hardener.md +2 -0
- package/dot_config/ai/patterns/refactor.md +2 -0
- package/dot_config/alacritty/alacritty.toml.tmpl +3 -3
- package/dot_config/atuin/config.toml.tmpl +47 -0
- package/dot_config/dotfiles/agent-card.json +1 -1
- package/dot_config/dotfiles/boot/README.md +2 -0
- package/dot_config/dotfiles/grub/README.md +2 -0
- package/dot_config/dotfiles/lock/README.md +2 -0
- package/dot_config/fish/conf.d/direnv.fish +4 -0
- package/dot_config/fish/conf.d/init.fish.tmpl +21 -0
- package/dot_config/fish/conf.d/mise-activate.fish +5 -0
- package/dot_config/fish/functions/_cached_eval.fish +84 -11
- package/dot_config/fish/functions/_cached_eval_clear.fish +17 -0
- package/dot_config/foot/foot.ini.tmpl +3 -3
- package/dot_config/fuzzel/fuzzel.ini.tmpl +2 -2
- package/dot_config/ghostty/config.tmpl +3 -3
- package/dot_config/git/hooks/executable_commit-msg +146 -0
- package/dot_config/goose/config.yaml +2 -2
- package/dot_config/gtk-3.0/gtk.css.tmpl +2 -2
- package/dot_config/gtk-3.0/settings.ini.tmpl +2 -2
- package/dot_config/gtk-4.0/gtk.css.tmpl +2 -2
- package/dot_config/gtk-4.0/settings.ini.tmpl +2 -2
- package/dot_config/kitty/kitty.conf.tmpl +3 -3
- package/dot_config/mise/config.toml +1 -1
- package/dot_config/niri/config.kdl.tmpl +2 -2
- package/dot_config/nushell/cached_eval.nu +80 -0
- package/dot_config/nushell/env.nu.tmpl +21 -13
- package/dot_config/shell/00-core-paths.sh.tmpl +9 -1
- package/dot_config/shell/05-core-safety.sh +1 -0
- package/dot_config/shell/10-secrets.sh +1 -0
- package/dot_config/shell/40-fzf-defaults.sh.tmpl +1 -0
- package/dot_config/shell/40-ls-colors.sh +1 -0
- package/dot_config/shell/50-logic-functions-core.sh.tmpl +1 -0
- package/dot_config/shell/50-logic-functions.sh.tmpl +1 -0
- package/dot_config/shell/51-logic-functions-extra.sh.tmpl +1 -0
- package/dot_config/shell/90-ux-aliases.sh.tmpl +1 -0
- package/dot_config/shell/91-ux-aliases-lazy.sh.tmpl +1 -0
- package/dot_config/shell/README.md +25 -8
- package/dot_config/starship.toml.tmpl +2 -2
- package/dot_config/tmux/tmux.conf.tmpl +3 -3
- package/dot_config/user-dirs.dirs +1 -0
- package/dot_config/vscode/settings.json.tmpl +2 -2
- package/dot_config/waybar/config.jsonc.tmpl +2 -2
- package/dot_config/waybar/style.css.tmpl +2 -2
- package/dot_config/wezterm/wezterm.lua.tmpl +3 -3
- package/dot_config/zsh/dot_zshrc.tmpl +207 -17
- package/dot_config/zsh/rc.d/00-alias-shims.zsh +28 -6
- package/dot_config/zsh/rc.d/30-options.zsh.tmpl +27 -7
- package/dot_local/bin/executable_bm +2 -0
- package/dot_local/bin/executable_dot +56 -9
- package/dot_local/bin/executable_dot-bootstrap +0 -1
- package/dot_local/bin/executable_dot-load-benchmark +1 -1
- package/dot_local/bin/executable_dot-theme-sync +8 -8
- package/dot_local/bin/executable_notify +2 -0
- package/dot_local/bin/executable_open +2 -0
- package/dot_local/bin/executable_tour +4 -2
- package/dot_local/bin/executable_up +3 -1
- package/dot_local/share/man/man1/dot.1 +1 -1
- package/dot_local/share/zsh/completions/_dot +4 -0
- package/install.sh +53 -38
- package/package.json +1 -1
- package/scripts/ci/check-dangerous-chmod.sh +19 -0
- package/scripts/ci/check-deps-dev.sh +236 -0
- package/scripts/ci/check-insecure-tls.sh +61 -0
- package/scripts/ci/check-regression-traceability.sh +67 -0
- package/scripts/ci/check-shell-preamble.sh +106 -0
- package/scripts/ci/dot-cli-startup-bench.sh +126 -0
- package/scripts/ci/install-chezmoi-verified.sh +4 -1
- package/scripts/ci/lint-reusable-pins.sh +78 -0
- package/scripts/ci/run-coverage.sh +451 -0
- package/scripts/ci/validate-chezmoidata.sh +25 -0
- package/scripts/ci/windows-smoke-test.ps1 +136 -0
- package/scripts/diagnostics/doctor.sh +203 -5
- package/scripts/diagnostics/drift-dashboard.sh +177 -13
- package/scripts/diagnostics/health.sh +21 -4
- package/scripts/diagnostics/perf.sh +304 -77
- package/scripts/diagnostics/workstation-attestation.sh +6 -1
- package/scripts/dot/commands/agent.sh +33 -27
- package/scripts/dot/commands/agents.sh +325 -0
- package/scripts/dot/commands/ai.sh +75 -10
- package/scripts/dot/commands/aliases.sh +10 -8
- package/scripts/dot/commands/core.sh +10 -4
- package/scripts/dot/commands/fleet.sh +278 -3
- package/scripts/dot/commands/init.sh +184 -0
- package/scripts/dot/commands/meta.sh +7 -4
- package/scripts/dot/commands/registry.sh +263 -0
- package/scripts/dot/commands/tools.sh +49 -1
- package/scripts/dot/lib/bento.sh +2 -1
- package/scripts/dot/lib/log.sh +6 -0
- package/scripts/dot/lib/platform.sh +22 -8
- package/scripts/dot/lib/ui.sh +145 -2
- package/scripts/dot/lib/utils.sh +6 -1
- package/scripts/git-hooks/pre-commit-audit.sh +1 -1
- package/scripts/git-hooks/pre-push +66 -3
- package/scripts/lib/secrets_provider.sh +32 -6
- package/scripts/ops/heal-chezmoi.sh +41 -6
- package/scripts/ops/rollback.sh +14 -0
- package/scripts/qa/powershell-contract.ps1 +95 -0
- package/scripts/security/check-disclosure-key-expiry.sh +110 -0
- package/scripts/security/lock-configs.sh +11 -2
- package/scripts/theme/merge-wallpaper.sh +4 -0
- package/scripts/theme/switch.sh +20 -10
- package/scripts/version-sync.sh +3 -0
- package/dot_config/atuin/config.toml +0 -40
- package/dot_local/bin/__pycache__/executable_dot-load-benchmark-ptycpython-312.pyc +0 -0
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
render_with_liquid: false
|
|
3
|
+
---
|
|
4
|
+
|
|
1
5
|
# Cookbook: Frequently Asked Questions
|
|
2
6
|
|
|
3
7
|
## General
|
|
@@ -36,6 +40,7 @@ CIELAB distances approximate human perception. A Δ in RGB might look identical
|
|
|
36
40
|
### Why not pre-built themes like Catppuccin or Rosé Pine?
|
|
37
41
|
|
|
38
42
|
Two reasons:
|
|
43
|
+
|
|
39
44
|
1. **Maintenance** — 100+ themes × 20+ applications = thousands of template variables to keep in sync. Generation from wallpapers eliminates that.
|
|
40
45
|
2. **User agency** — users bring their own wallpapers. The theme adapts to them, not the other way around.
|
|
41
46
|
|
|
@@ -52,6 +57,7 @@ You don't directly — the accent hue is extracted from the wallpaper. But `_com
|
|
|
52
57
|
### Can I use my own theme without a wallpaper?
|
|
53
58
|
|
|
54
59
|
Not directly — the engine expects a source image. You could:
|
|
60
|
+
|
|
55
61
|
1. Pick a wallpaper whose palette you want
|
|
56
62
|
2. Let the engine generate the theme
|
|
57
63
|
3. Lock the generated `.toml` entry by copying to a non-regenerated path
|
|
@@ -116,6 +122,7 @@ DOTFILES_DEBUG=1 zsh -i -c exit 2>&1 | grep -E '\[debug [0-9]+ms\]'
|
|
|
116
122
|
```
|
|
117
123
|
|
|
118
124
|
Common culprits:
|
|
125
|
+
|
|
119
126
|
- nvm loading Node on every shell (use lazy loading)
|
|
120
127
|
- `mise activate` with aggressive hook-env (set `activate_aggressive = false`)
|
|
121
128
|
- Plugin manager scanning for updates
|
|
@@ -153,6 +160,7 @@ To maximize adoption and contribution. MIT is compatible with commercial use; co
|
|
|
153
160
|
### Why no GUI configurator?
|
|
154
161
|
|
|
155
162
|
Text + Git is the optimal interface for a workstation baseline:
|
|
163
|
+
|
|
156
164
|
- Versioned (Git history)
|
|
157
165
|
- Reproducible (same input → same output)
|
|
158
166
|
- Auditable (diff-able)
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
render_with_liquid: false
|
|
3
|
+
---
|
|
4
|
+
|
|
1
5
|
# Appendix B: Security Checklist
|
|
2
6
|
|
|
3
7
|
Run this checklist after a fresh install and quarterly afterwards.
|
|
@@ -40,10 +44,12 @@ Run this checklist after a fresh install and quarterly afterwards.
|
|
|
40
44
|
If a secret leak is detected:
|
|
41
45
|
|
|
42
46
|
1. **Contain** — remove from history, force-push
|
|
47
|
+
|
|
43
48
|
```sh
|
|
44
49
|
git filter-repo --path <file> --invert-paths
|
|
45
50
|
git push --force
|
|
46
51
|
```
|
|
52
|
+
|
|
47
53
|
2. **Rotate** — change the leaked secret upstream (Stripe key, SSH key, etc.)
|
|
48
54
|
3. **Audit** — check who/what had access
|
|
49
55
|
4. **Notify** — inform affected parties if required
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
render_with_liquid: false
|
|
3
|
+
---
|
|
4
|
+
|
|
1
5
|
# Appendix D: Bibliography
|
|
2
6
|
|
|
3
7
|
Cited works and recommended reading.
|
|
@@ -51,4 +55,4 @@ Cited works and recommended reading.
|
|
|
51
55
|
|
|
52
56
|
## Author
|
|
53
57
|
|
|
54
|
-
- **Rousseau, S.** *Dotfiles v0.2.
|
|
58
|
+
- **Rousseau, S.** *Dotfiles v0.2.501.* <https://github.com/sebastienrousseau/dotfiles>
|
package/docs/manual/_toc.yml
CHANGED
|
@@ -1,32 +1,40 @@
|
|
|
1
|
+
---
|
|
2
|
+
render_with_liquid: false
|
|
3
|
+
---
|
|
4
|
+
|
|
1
5
|
# Command Index
|
|
2
6
|
|
|
3
7
|
Alphabetical list of `dot` subcommands referenced in the manual.
|
|
4
8
|
|
|
5
9
|
- `dot agent`
|
|
10
|
+
- `dot agents check`
|
|
11
|
+
- `dot agents list`
|
|
12
|
+
- `dot agents render`
|
|
13
|
+
- `dot agents`
|
|
6
14
|
- `dot ai`
|
|
7
15
|
- `dot apply --dry-run`
|
|
8
16
|
- `dot apply`
|
|
9
17
|
- `dot attest`
|
|
10
|
-
- `dot benchmark --detailed`
|
|
11
|
-
- `dot benchmark`
|
|
12
18
|
- `dot bundle`
|
|
13
19
|
- `dot cache-refresh`
|
|
14
20
|
- `dot cd`
|
|
15
21
|
- `dot chaos`
|
|
16
|
-
- `dot clean-cache`
|
|
17
22
|
- `dot commit`
|
|
18
23
|
- `dot diff`
|
|
19
24
|
- `dot doctor --json`
|
|
20
25
|
- `dot doctor`
|
|
21
|
-
- `dot drift`
|
|
22
26
|
- `dot edit`
|
|
23
27
|
- `dot env`
|
|
28
|
+
- `dot fleet apply --dry-run`
|
|
29
|
+
- `dot fleet apply`
|
|
24
30
|
- `dot fleet attest`
|
|
25
31
|
- `dot fleet diff`
|
|
26
32
|
- `dot fleet sync`
|
|
27
33
|
- `dot fleet`
|
|
28
34
|
- `dot heal`
|
|
29
35
|
- `dot help`
|
|
36
|
+
- `dot init --dry-run`
|
|
37
|
+
- `dot init`
|
|
30
38
|
- `dot learn`
|
|
31
39
|
- `dot lint`
|
|
32
40
|
- `dot load-bench`
|
|
@@ -38,8 +46,11 @@ Alphabetical list of `dot` subcommands referenced in the manual.
|
|
|
38
46
|
- `dot mode`
|
|
39
47
|
- `dot packages`
|
|
40
48
|
- `dot perf`
|
|
41
|
-
- `dot prewarm`
|
|
42
49
|
- `dot profile`
|
|
50
|
+
- `dot registry info`
|
|
51
|
+
- `dot registry list`
|
|
52
|
+
- `dot registry search`
|
|
53
|
+
- `dot registry`
|
|
43
54
|
- `dot rollback`
|
|
44
55
|
- `dot score`
|
|
45
56
|
- `dot secrets rotate`
|
|
@@ -51,8 +62,5 @@ Alphabetical list of `dot` subcommands referenced in the manual.
|
|
|
51
62
|
- `dot theme toggle`
|
|
52
63
|
- `dot theme`
|
|
53
64
|
- `dot tune`
|
|
54
|
-
- `dot update`
|
|
55
65
|
- `dot upgrade`
|
|
56
|
-
- `dot verify --security`
|
|
57
|
-
- `dot verify`
|
|
58
66
|
- `dot version`
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "The .dotfiles Manual"
|
|
3
|
+
description: "A trusted agent workstation baseline for macOS, Linux, and WSL."
|
|
4
|
+
render_with_liquid: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# The .dotfiles Manual
|
|
8
|
+
|
|
9
|
+
A trusted agent workstation baseline for macOS, Linux, and WSL. Chezmoi handles templating and platform differences; the `dot` CLI coordinates lifecycle operations on top.
|
|
10
|
+
|
|
11
|
+
This manual is generated from the Markdown sources in [`docs/manual/`](https://github.com/sebastienrousseau/dotfiles/tree/master/docs/manual) and published in nine formats per release. The HTML edition you are reading is the canonical online version.
|
|
12
|
+
|
|
13
|
+
## Read it your way
|
|
14
|
+
|
|
15
|
+
- **Web (multi-page)** — browse the chapters below
|
|
16
|
+
- **Single-page HTML, PDF, EPUB, ASCII text** — attached to every [GitHub Release](https://github.com/sebastienrousseau/dotfiles/releases/latest)
|
|
17
|
+
- **CLI** — `dot manual` opens the manual locally; `dot manual pdf` downloads the PDF; `dot manual text` pipes the ASCII edition to your pager
|
|
18
|
+
|
|
19
|
+
## Contents
|
|
20
|
+
|
|
21
|
+
### [Introduction](00-introduction.md)
|
|
22
|
+
|
|
23
|
+
The audience, scope, conventions, and where the manual is published.
|
|
24
|
+
|
|
25
|
+
### Concepts
|
|
26
|
+
|
|
27
|
+
- [Architecture](01-concepts/01-architecture.md) — repository layout, chezmoi templating, the `dot` dispatcher
|
|
28
|
+
- [Trust model](01-concepts/02-trust-model.md) — signing, attestation, SBOM, policy gates
|
|
29
|
+
- [Theme engine](01-concepts/03-theme-engine.md) — wallpaper-driven theming across apps
|
|
30
|
+
- [Fleet](01-concepts/04-fleet.md) — multi-workstation coordination and drift detection
|
|
31
|
+
- [Self-healing](01-concepts/05-self-healing.md) — automatic remediation and rollback
|
|
32
|
+
|
|
33
|
+
### Tutorials
|
|
34
|
+
|
|
35
|
+
- [First install](02-tutorials/01-first-install.md)
|
|
36
|
+
- [Add a wallpaper-driven theme](02-tutorials/02-add-wallpaper.md)
|
|
37
|
+
- [Create an agent profile](02-tutorials/03-create-profile.md)
|
|
38
|
+
- [Encrypt a secret](02-tutorials/04-encrypt-secret.md)
|
|
39
|
+
- [Deploy to a fleet](02-tutorials/05-deploy-fleet.md)
|
|
40
|
+
|
|
41
|
+
### Reference
|
|
42
|
+
|
|
43
|
+
- [`dot` CLI](03-reference/01-dot-cli.md) — every subcommand
|
|
44
|
+
- [Config files](03-reference/02-config-files.md) — every `~/.config/dotfiles/*` path
|
|
45
|
+
- [Environment](03-reference/03-environment.md) — every variable read by the framework
|
|
46
|
+
- [Templates](03-reference/04-templates.md) — every `{{ .var }}` reference
|
|
47
|
+
- [Feature flags](03-reference/05-feature-flags.md)
|
|
48
|
+
|
|
49
|
+
### Cookbook
|
|
50
|
+
|
|
51
|
+
- [Recipes](04-cookbook/01-recipes.md)
|
|
52
|
+
- [Troubleshooting](04-cookbook/02-troubleshooting.md)
|
|
53
|
+
- [FAQ](04-cookbook/03-faq.md)
|
|
54
|
+
|
|
55
|
+
### Appendices
|
|
56
|
+
|
|
57
|
+
- [A — Platform matrix](05-appendices/A-platform-matrix.md)
|
|
58
|
+
- [B — Security checklist](05-appendices/B-security-checklist.md)
|
|
59
|
+
- [C — Glossary](05-appendices/C-glossary.md)
|
|
60
|
+
- [D — Bibliography](05-appendices/D-bibliography.md)
|
|
61
|
+
- [E — License](05-appendices/E-license.md)
|
|
62
|
+
|
|
63
|
+
### Indexes
|
|
64
|
+
|
|
65
|
+
- [Concept index](concept-index.md)
|
|
66
|
+
- [Command index](command-index.md)
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
---
|
|
2
|
+
render_with_liquid: false
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# CI Cadence
|
|
6
|
+
|
|
7
|
+
This page tabulates every GitHub Actions workflow in `.github/workflows/`
|
|
8
|
+
with its trigger cadence and the rationale for that cadence. Maintained
|
|
9
|
+
under [issue #861](https://github.com/sebastienrousseau/dotfiles/issues/861).
|
|
10
|
+
|
|
11
|
+
## Cadence rules
|
|
12
|
+
|
|
13
|
+
We use four cadence buckets:
|
|
14
|
+
|
|
15
|
+
| Bucket | When | Used for |
|
|
16
|
+
|---|---|---|
|
|
17
|
+
| **Event** | `push`, `pull_request`, `merge_group` | Code-change gates — must run on every PR. |
|
|
18
|
+
| **Weekly** | `schedule:` Monday or Sunday | Drift detection, beta-tool watch, extended platform matrices. |
|
|
19
|
+
| **Monthly** | (none currently) | Long-running audits, historical scans. |
|
|
20
|
+
| **Manual** | `workflow_dispatch` only | Releases, ad-hoc tooling. |
|
|
21
|
+
|
|
22
|
+
**Anti-rule:** no workflow runs on `cron: '* * * *'` (daily) unless its
|
|
23
|
+
output is consumed daily by something downstream. Nothing today meets
|
|
24
|
+
that bar; see "Why no daily jobs" below.
|
|
25
|
+
|
|
26
|
+
## Workflow cadence table
|
|
27
|
+
|
|
28
|
+
| Workflow | Triggers | Schedule (UTC) | Why this cadence |
|
|
29
|
+
|---|---|---|---|
|
|
30
|
+
| `ci.yml` | event + schedule | Mon 06:00 (weekly) | Lint / test on every PR; weekly schedule catches drift from external dependencies (apt mirrors, Homebrew bottles) even when no code lands. |
|
|
31
|
+
| `ci-enforced.yml` | event | — | Strict gates fire on every PR; no scheduled run (covered by ci.yml weekly). |
|
|
32
|
+
| `codeql.yml` | event + schedule | Mon 06:00 (weekly) | Source-code SAST. Weekly schedule catches new CodeQL rule packs. |
|
|
33
|
+
| `compliance-guard.yml` | event | — | Policy enforcement on every PR; no need to schedule. |
|
|
34
|
+
| `cross-platform-test.yml` | event + schedule | Sun 07:00 (weekly) | Validates BSD vs GNU tool divergence on every PR; weekly catches GitHub-hosted-runner image updates. |
|
|
35
|
+
| `devcontainer-prebuild.yml` | event + schedule | Mon 03:00 (weekly) | Pre-build the devcontainer image weekly so first `Open in Codespaces` is fast. |
|
|
36
|
+
| `manual-publish.yml` | manual only | — | Release-trigger flow; never scheduled. |
|
|
37
|
+
| `nightly.yml` | schedule + manual | **Sun 02:00 (weekly)** | Was daily; flipped to weekly under [#861](https://github.com/sebastienrousseau/dotfiles/issues/861). Jobs (beta-tool detection, extended OS matrix on macos-15-intel/macos-14, dependency-report) don't need daily cadence. |
|
|
38
|
+
| `npm-publish.yml` | release tag | — | Trigger: `push` of a version tag. |
|
|
39
|
+
| `policy-bundle-release.yml` | manual + release | — | Manual / release-trigger only. |
|
|
40
|
+
| `pr-signature.yml` | pull_request | — | Verifies PR description has the branding signature. |
|
|
41
|
+
| `reliability-gate.yml` | event | — | Reliability audit on every PR; no scheduled cadence. |
|
|
42
|
+
| `reusable-*.yml` (×7) | callable | — | Called by other workflows; not directly triggered. |
|
|
43
|
+
| `sbom-diff.yml` | pull_request | — | Generates SBOM diff per PR. |
|
|
44
|
+
| `security-enhanced.yml` | event + schedule | **Sun 02:00 (weekly)** | Was daily; reduced to weekly in earlier hardening. Per-PR runs cover the active-change case. |
|
|
45
|
+
| `security-release.yml` | release tag | — | SLSA provenance on release; never scheduled. |
|
|
46
|
+
| `sync-versions.yml` | manual | — | Version-bump tooling. |
|
|
47
|
+
| `update-deps.yml` | schedule | Mon 08:00 (weekly) | Dependabot is the primary path; this is a belt-and-suspenders weekly sweep. |
|
|
48
|
+
|
|
49
|
+
## Why no daily jobs
|
|
50
|
+
|
|
51
|
+
We reviewed every workflow with maintainer Sebastien Rousseau on
|
|
52
|
+
2026-05-12 and concluded:
|
|
53
|
+
|
|
54
|
+
1. **No external signal needs daily polling.** Dependency updates flow
|
|
55
|
+
through Dependabot (push-driven, not poll-driven). Beta-tool
|
|
56
|
+
detection in `nightly.yml` checks for major Chezmoi / ShellCheck
|
|
57
|
+
updates — these ship every few months, not days. CVE scans run on
|
|
58
|
+
every PR (`sbom-diff.yml`) plus a weekly aggregate
|
|
59
|
+
(`security-enhanced.yml`).
|
|
60
|
+
|
|
61
|
+
2. **No downstream consumer reads daily artifacts.** No external
|
|
62
|
+
dashboard, no published feed, no alert ingester depends on a daily
|
|
63
|
+
nightly artifact. The artifacts are inspected ad-hoc.
|
|
64
|
+
|
|
65
|
+
3. **Daily cadence was vestigial.** `nightly.yml` had cron `0 2 * * *`
|
|
66
|
+
from an earlier era when the workflow ran the full test matrix; the
|
|
67
|
+
matrix has since moved into `ci-enforced.yml` (event-driven), but
|
|
68
|
+
the cron was never updated. Confirmed via `git log` of the file.
|
|
69
|
+
|
|
70
|
+
If any of these conditions changes (e.g., we add a publishing pipeline
|
|
71
|
+
that needs daily artifacts), the appropriate path is a new `daily-checks.yml`
|
|
72
|
+
workflow with explicit cadence rationale documented here — *not* flipping
|
|
73
|
+
an existing weekly back to daily.
|
|
74
|
+
|
|
75
|
+
## Cost impact of the daily → weekly flip
|
|
76
|
+
|
|
77
|
+
Before (daily nightly):
|
|
78
|
+
|
|
79
|
+
- 7 runs/week × ~40 min total CI minutes per run = **~280 min/week**
|
|
80
|
+
- ~14,560 minutes/year (~243 hours of CI compute)
|
|
81
|
+
|
|
82
|
+
After (weekly nightly):
|
|
83
|
+
|
|
84
|
+
- 1 run/week × ~40 min = **~40 min/week**
|
|
85
|
+
- ~2,080 minutes/year (~35 hours)
|
|
86
|
+
|
|
87
|
+
**Net saving: ~208 hours of CI compute per year (~85% reduction)** on
|
|
88
|
+
the nightly workflow alone. GitHub-hosted minutes are billed per
|
|
89
|
+
runner-minute; saving aligns with the project's "zero-debt, no waste"
|
|
90
|
+
mandate.
|
|
91
|
+
|
|
92
|
+
## Reviewing this page
|
|
93
|
+
|
|
94
|
+
When adding a new workflow:
|
|
95
|
+
|
|
96
|
+
1. Pick a bucket from the rules at the top of this page.
|
|
97
|
+
2. Add the row to the table — include the **why**, not just the cron
|
|
98
|
+
expression. Future maintainers should be able to decide whether a
|
|
99
|
+
cadence is still load-bearing.
|
|
100
|
+
3. If proposing a daily cadence, justify why a weekly version doesn't
|
|
101
|
+
meet the need in the workflow's PR description.
|
|
102
|
+
|
|
103
|
+
## References
|
|
104
|
+
|
|
105
|
+
- [`nightly.yml`](../../.github/workflows/nightly.yml) — the workflow whose cadence flip triggered this page.
|
|
106
|
+
- [`security-enhanced.yml`](../../.github/workflows/security-enhanced.yml) — earlier daily→weekly reduction.
|
|
107
|
+
- Issue [#861](https://github.com/sebastienrousseau/dotfiles/issues/861).
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
---
|
|
2
|
+
render_with_liquid: false
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# CI Composite Actions
|
|
6
|
+
|
|
7
|
+
This page documents the repo-local composite actions under
|
|
8
|
+
`.github/actions/`. These exist so the most-repeated CI setup blocks
|
|
9
|
+
have one canonical implementation, one cache key shape, and one place
|
|
10
|
+
to bump pins. Managed under
|
|
11
|
+
[#879](https://github.com/sebastienrousseau/dotfiles/issues/879).
|
|
12
|
+
|
|
13
|
+
## Available actions
|
|
14
|
+
|
|
15
|
+
### `setup-chezmoi`
|
|
16
|
+
|
|
17
|
+
Path: `.github/actions/setup-chezmoi/action.yml`
|
|
18
|
+
|
|
19
|
+
Installs the pinned `chezmoi` binary (using the SHA256-verified
|
|
20
|
+
installer at `scripts/ci/install-chezmoi-verified.sh` when the repo is
|
|
21
|
+
checked out, falling back to `get.chezmoi.io` otherwise), caches the
|
|
22
|
+
result, and appends the bin-dir to `$GITHUB_PATH`.
|
|
23
|
+
|
|
24
|
+
```yaml
|
|
25
|
+
- name: Setup Chezmoi
|
|
26
|
+
uses: ./.github/actions/setup-chezmoi
|
|
27
|
+
# `version` defaults to env.CHEZMOI_VERSION. Override explicitly when
|
|
28
|
+
# the calling workflow has no env block (e.g. drift-detection):
|
|
29
|
+
with:
|
|
30
|
+
version: '2.70.3'
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Inputs:
|
|
34
|
+
|
|
35
|
+
| Name | Default | Purpose |
|
|
36
|
+
|---|---|---|
|
|
37
|
+
| `version` | `env.CHEZMOI_VERSION` | Pinned release tag (no leading `v`). |
|
|
38
|
+
| `cache` | `true` | When `false`, skip `actions/cache`. |
|
|
39
|
+
| `cache-key-prefix` | `chezmoi` | Override if a workflow wants a private cache scope. |
|
|
40
|
+
| `bin-dir` | `~/.local/bin` | Install location. |
|
|
41
|
+
|
|
42
|
+
Outputs:
|
|
43
|
+
|
|
44
|
+
| Name | Purpose |
|
|
45
|
+
|---|---|
|
|
46
|
+
| `version` | The version that ended up installed. |
|
|
47
|
+
| `path` | Absolute path to the chezmoi binary. |
|
|
48
|
+
|
|
49
|
+
Cache key shape: `<prefix>-<runner.os>-<runner.arch>-<version>`.
|
|
50
|
+
`runner.arch` is included explicitly so the Apple-Silicon (arm64) and
|
|
51
|
+
Intel (x64) macOS runners don't share a cache entry — that previously
|
|
52
|
+
caused subtle binary-mismatch failures.
|
|
53
|
+
|
|
54
|
+
### `setup-mise`
|
|
55
|
+
|
|
56
|
+
Path: `.github/actions/setup-mise/action.yml`
|
|
57
|
+
|
|
58
|
+
Installs `mise` (jdx/mise) and optionally runs `mise install` against
|
|
59
|
+
`mise.toml` to materialise the managed toolchain. Caches both the
|
|
60
|
+
mise binary and `~/.local/share/mise` (the tool install root, keyed
|
|
61
|
+
by lockfile hash).
|
|
62
|
+
|
|
63
|
+
```yaml
|
|
64
|
+
- name: Setup mise
|
|
65
|
+
uses: ./.github/actions/setup-mise
|
|
66
|
+
with:
|
|
67
|
+
install-tools: 'true'
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
Inputs:
|
|
71
|
+
|
|
72
|
+
| Name | Default | Purpose |
|
|
73
|
+
|---|---|---|
|
|
74
|
+
| `version` | `latest` | mise version to install. Specify a pinned version to enable bin caching. |
|
|
75
|
+
| `cache` | `true` | Cache the mise binary + tool root. |
|
|
76
|
+
| `cache-key-prefix` | `mise` | Override the cache scope. |
|
|
77
|
+
| `install-tools` | `false` | When `true`, run `mise install` after setup. |
|
|
78
|
+
| `bin-dir` | `~/.local/bin` | Install location for the mise binary. |
|
|
79
|
+
|
|
80
|
+
Outputs: `version` (installed mise version) and `path` (absolute path
|
|
81
|
+
to the mise binary).
|
|
82
|
+
|
|
83
|
+
## Why composite actions (vs reusable workflows)
|
|
84
|
+
|
|
85
|
+
The repo already uses reusable workflows for big-grain CI steps
|
|
86
|
+
(`reusable-shell-lint.yml`, `reusable-test-suite.yml`, etc.). Composite
|
|
87
|
+
actions cover a different need:
|
|
88
|
+
|
|
89
|
+
- **Reusable workflows** wrap a whole job — same triggers, same runner,
|
|
90
|
+
same job name. Useful for "lint shell" or "run the test suite".
|
|
91
|
+
- **Composite actions** wrap a step sequence. Cheap to drop into any
|
|
92
|
+
job without restructuring the job graph.
|
|
93
|
+
|
|
94
|
+
Setup steps (install + cache + path) are the textbook composite-action
|
|
95
|
+
case: they're short, every caller wants the same behaviour, and
|
|
96
|
+
inlining them everywhere creates exactly the duplication this issue
|
|
97
|
+
called out.
|
|
98
|
+
|
|
99
|
+
## Current adopters
|
|
100
|
+
|
|
101
|
+
`setup-chezmoi` is wired into:
|
|
102
|
+
|
|
103
|
+
| Workflow | Job(s) |
|
|
104
|
+
|---|---|
|
|
105
|
+
| `ci-enforced.yml` | `test-matrix` |
|
|
106
|
+
| `ci.yml` | `test-linux`, `test-macos`, `quality-idempotency`, `performance` |
|
|
107
|
+
| `nightly.yml` | `extended-os-matrix`, `nightly-perf-bench` |
|
|
108
|
+
| `drift-detection.yml` | `drift-scan` |
|
|
109
|
+
|
|
110
|
+
Total: 8 call sites converted. The net workflow LOC delta is
|
|
111
|
+
~−34 lines (52 deletions, 18 additions); ongoing additions to either
|
|
112
|
+
workflow set will widen the gap.
|
|
113
|
+
|
|
114
|
+
`setup-mise` ships ready for use but has zero current callers because
|
|
115
|
+
no workflow currently installs mise (the maintainer relies on it
|
|
116
|
+
locally only). When a future workflow needs `cargo`, `bun`, `go`, or
|
|
117
|
+
`rust` toolchains via the canonical version manager, this composite
|
|
118
|
+
is the canonical entry point.
|
|
119
|
+
|
|
120
|
+
## Pinning policy
|
|
121
|
+
|
|
122
|
+
Both composite actions internally pin every external action they use
|
|
123
|
+
to a 40-char commit SHA (e.g.
|
|
124
|
+
`actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5`).
|
|
125
|
+
Dependabot picks these up via the standard `github-actions` ecosystem
|
|
126
|
+
configuration in `.github/dependabot.yml`.
|
|
127
|
+
|
|
128
|
+
## Bumping a pin
|
|
129
|
+
|
|
130
|
+
To upgrade `chezmoi` for every CI job at once:
|
|
131
|
+
|
|
132
|
+
```bash
|
|
133
|
+
# Find the new release:
|
|
134
|
+
gh api repos/twpayne/chezmoi/releases/latest --jq '.tag_name'
|
|
135
|
+
|
|
136
|
+
# Update the three workflow-level env declarations:
|
|
137
|
+
for f in .github/workflows/{ci.yml,ci-enforced.yml,nightly.yml}; do
|
|
138
|
+
sed -i.bak 's/CHEZMOI_VERSION: "[^"]*"/CHEZMOI_VERSION: "X.Y.Z"/' "$f"
|
|
139
|
+
rm "$f.bak"
|
|
140
|
+
done
|
|
141
|
+
|
|
142
|
+
# Drift-detection has its own pin (no env block):
|
|
143
|
+
sed -i.bak "s/version: '[^']*'/version: 'X.Y.Z'/" .github/workflows/drift-detection.yml
|
|
144
|
+
rm .github/workflows/drift-detection.yml.bak
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
Or rely on `update-deps.yml`, which already automates the env-block
|
|
148
|
+
bump on a weekly schedule.
|
|
149
|
+
|
|
150
|
+
## References
|
|
151
|
+
|
|
152
|
+
- `.github/actions/setup-chezmoi/action.yml`
|
|
153
|
+
- `.github/actions/setup-mise/action.yml`
|
|
154
|
+
- `scripts/ci/install-chezmoi-verified.sh` — the SHA-pinned installer
|
|
155
|
+
the chezmoi composite prefers when available.
|
|
156
|
+
- Issue [#879](https://github.com/sebastienrousseau/dotfiles/issues/879).
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
---
|
|
2
|
+
render_with_liquid: false
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Zsh Completion Cache Lifecycle
|
|
6
|
+
|
|
7
|
+
This page documents how zsh completion compilation works in this repo
|
|
8
|
+
and how to force a rebuild. Managed under
|
|
9
|
+
[#864](https://github.com/sebastienrousseau/dotfiles/issues/864).
|
|
10
|
+
|
|
11
|
+
## The Pieces
|
|
12
|
+
|
|
13
|
+
Three caches cooperate to keep `compinit` fast without compromising
|
|
14
|
+
correctness:
|
|
15
|
+
|
|
16
|
+
1. **The compinit dump** —
|
|
17
|
+
`$XDG_CACHE_HOME/zsh/zcompdump-$ZSH_VERSION`. Built by
|
|
18
|
+
`compinit -d <path>` from the fpath corpus. Encodes which file
|
|
19
|
+
provides each completion function. Per-zsh-version so an OS upgrade
|
|
20
|
+
doesn't silently serve a stale binary index.
|
|
21
|
+
|
|
22
|
+
2. **The compinit dump bytecode** — `<dump>.zwc`. Built by
|
|
23
|
+
`zcompile` in the background after the dump is rebuilt. Zsh prefers
|
|
24
|
+
the `.zwc` form on subsequent shells, skipping re-parse.
|
|
25
|
+
|
|
26
|
+
3. **fpath bytecode siblings** — `_<tool>.zwc` next to each
|
|
27
|
+
`_<tool>` source file under `~/.local/share/zsh/completions/`.
|
|
28
|
+
Built once per chezmoi apply by
|
|
29
|
+
`run_onchange_after_zcompile-completions.sh.tmpl` (so this happens
|
|
30
|
+
*outside* the critical shell-start path). Zsh prefers the `.zwc`
|
|
31
|
+
when autoloading the corresponding completion function.
|
|
32
|
+
|
|
33
|
+
## Flow on Shell Start
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
zsh starts
|
|
37
|
+
→ sources rc.d (no compinit yet)
|
|
38
|
+
→ registers a `preexec` (or `precmd`) hook
|
|
39
|
+
→ returns to prompt
|
|
40
|
+
user presses Tab (or `precmd` fires)
|
|
41
|
+
→ `compinit -d $XDG_CACHE_HOME/zsh/zcompdump-$ZSH_VERSION`
|
|
42
|
+
or `compinit -C -d <dump>` if the dump is < 24 hours old
|
|
43
|
+
→ background `zcompile` of the dump
|
|
44
|
+
→ first tab-completion uses the precompiled `.zwc` for each tool
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Flow on Chezmoi Apply
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
chezmoi apply
|
|
51
|
+
→ if completion sources changed, run_onchange fires
|
|
52
|
+
run_onchange_after_zcompile-completions.sh.tmpl
|
|
53
|
+
→ walks ~/.local/share/zsh/completions/
|
|
54
|
+
→ for each _<tool> file whose .zwc is missing or stale:
|
|
55
|
+
zsh -c "zcompile <file>"
|
|
56
|
+
→ reports compiled=N skipped=M
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## Configuration Surface
|
|
60
|
+
|
|
61
|
+
| Variable | Default | Purpose |
|
|
62
|
+
|---|---|---|
|
|
63
|
+
| `DOTFILES_ENABLE_COMPINIT` | 1 on `laptop`/`desktop` profiles, 0 elsewhere | Whether to load the completion subsystem at all. Non-laptop profiles skip the runtime cost but still benefit from precompiled `.zwc` files if present. |
|
|
64
|
+
| `DOTFILES_DEFER_COMPINIT` | 1 | When 1, compinit runs on first `preexec`. When 0, runs on `precmd`. |
|
|
65
|
+
| `DOTFILES_FAST` | 0 | When 1, the entire completion path is skipped. |
|
|
66
|
+
| `DOTFILES_ULTRA_FAST` | 0 | Same as `DOTFILES_FAST` but more aggressive. |
|
|
67
|
+
| `DOTFILES_SKIP_ZCOMPILE` | 0 | When 1, the run_onchange hook does not precompile fpath files. Used in CI / minimal images where bytecode isn't needed. |
|
|
68
|
+
| `XDG_CACHE_HOME` | `$HOME/.cache` | Standard XDG override; the dump path is `$XDG_CACHE_HOME/zsh/zcompdump-$ZSH_VERSION`. |
|
|
69
|
+
|
|
70
|
+
## Force Rebuild
|
|
71
|
+
|
|
72
|
+
When completions go stale (e.g., after a tool upgrade):
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
# Invalidate the compinit dump — next shell rebuilds it.
|
|
76
|
+
rm -f "${XDG_CACHE_HOME:-$HOME/.cache}/zsh/zcompdump-${ZSH_VERSION}"
|
|
77
|
+
rm -f "${XDG_CACHE_HOME:-$HOME/.cache}/zsh/zcompdump-${ZSH_VERSION}.zwc"
|
|
78
|
+
|
|
79
|
+
# Force regeneration of fpath bytecode siblings:
|
|
80
|
+
find ~/.local/share/zsh/completions -name '*.zwc' -delete
|
|
81
|
+
chezmoi apply ~ # re-runs the run_onchange hook
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Or, equivalently, `dot heal` (which calls both in sequence).
|
|
85
|
+
|
|
86
|
+
## Measured Cost
|
|
87
|
+
|
|
88
|
+
The current dotfiles ship with `compinit` deferred to first-prompt,
|
|
89
|
+
which means shell *startup* time is already nearly minimal — zsh
|
|
90
|
+
doesn't parse the fpath corpus until tab-completion is invoked. The
|
|
91
|
+
precompiled `.zwc` files cut down the *first tab-completion* latency
|
|
92
|
+
per tool, not shell-start latency. On a 2026 M-series macOS host the
|
|
93
|
+
P50 for `time zsh -i -c exit` measured at 39 ms before this change
|
|
94
|
+
and 39 ms after — the change pays off when the user starts typing,
|
|
95
|
+
not before.
|
|
96
|
+
|
|
97
|
+
This makes the lifecycle policy still worth shipping:
|
|
98
|
+
|
|
99
|
+
- Cleaner cache layout (XDG-cache, version-keyed).
|
|
100
|
+
- Bytecode siblings auto-picked on non-laptop profiles (which skip
|
|
101
|
+
compinit entirely) so completion is still fast even without the
|
|
102
|
+
full subsystem.
|
|
103
|
+
- A documented force-rebuild path.
|
|
104
|
+
|
|
105
|
+
## Skip Rules
|
|
106
|
+
|
|
107
|
+
The run_onchange hook skips itself when:
|
|
108
|
+
|
|
109
|
+
- `DOTFILES_SKIP_ZCOMPILE=1` (CI / minimal images).
|
|
110
|
+
- `zsh` is not on PATH (servers without an interactive shell).
|
|
111
|
+
- `~/.local/share/zsh/completions/` doesn't exist.
|
|
112
|
+
|
|
113
|
+
System fpath directories (Homebrew, `/usr/local/share/zsh`) are
|
|
114
|
+
intentionally NOT precompiled — the package manager already manages
|
|
115
|
+
their lifecycle.
|
|
116
|
+
|
|
117
|
+
## References
|
|
118
|
+
|
|
119
|
+
- [`dot_config/zsh/rc.d/30-options.zsh.tmpl`](../../dot_config/zsh/rc.d/30-options.zsh.tmpl) — the deferred-compinit logic.
|
|
120
|
+
- [`run_onchange_after_zcompile-completions.sh.tmpl`](../../run_onchange_after_zcompile-completions.sh.tmpl) — the apply-time precompile hook.
|
|
121
|
+
- [`zsh` completion docs](https://zsh.sourceforge.io/Doc/Release/Completion-System.html).
|
|
122
|
+
- ADR-002 (Shell Performance Optimization).
|
|
123
|
+
- Issue [#864](https://github.com/sebastienrousseau/dotfiles/issues/864).
|