@sebastienrousseau/dotfiles 0.2.502 → 0.2.503

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.
Files changed (412) hide show
  1. package/CHANGELOG.md +83 -9
  2. package/LICENSE +21 -1283
  3. package/README.md +5 -3
  4. package/docs/CONFIG_STRATEGY.md +124 -0
  5. package/docs/COPYRIGHT +1 -1
  6. package/docs/GOVERNANCE.md +98 -0
  7. package/docs/MAINTAINERS.md +41 -0
  8. package/docs/OPENCODE.md +127 -0
  9. package/docs/README.md +2 -0
  10. package/docs/STRUCTURE.md +102 -0
  11. package/docs/adr/ADR-011-nushell-tier3-keep.md +2 -2
  12. package/docs/architecture/AI_COST_OPTIMIZATION.md +143 -0
  13. package/docs/architecture/REPO_LAYOUT.md +8 -8
  14. package/docs/archive/MILESTONE_v0.2.493.md +1 -1
  15. package/docs/index.md +2 -2
  16. package/docs/interop/POWERSHELL.md +1 -1
  17. package/docs/manual/00-introduction.md +1 -1
  18. package/docs/manual/01-concepts/02-trust-model.md +1 -1
  19. package/docs/manual/03-reference/02-config-files.md +2 -2
  20. package/docs/manual/_toc.yml +1 -1
  21. package/docs/manual/command-index.md +72 -59
  22. package/docs/operations/CI_COMPOSITES.md +2 -2
  23. package/docs/operations/COMPLETIONS.md +2 -2
  24. package/docs/operations/COVERAGE.md +5 -5
  25. package/docs/operations/HARD_AUDIT_2026.md +11 -11
  26. package/docs/operations/MAINTENANCE.md +3 -3
  27. package/docs/operations/MANIFEST.md +127 -0
  28. package/docs/operations/RELEASE_PIPELINE.md +130 -0
  29. package/docs/operations/RFC_v0_2_503_reorganization.md +280 -0
  30. package/docs/operations/ROADMAP_2026.md +6 -6
  31. package/docs/operations/ROADMAP_V0_2_503.md +134 -0
  32. package/docs/operations/TESTING.md +17 -0
  33. package/docs/operations/TRACEABILITY.md +6 -3
  34. package/docs/operations/VERSION_SYNC.md +4 -4
  35. package/docs/reference/POWERSHELL_PARITY.md +8 -7
  36. package/docs/schema/dot-env-v1.json +110 -0
  37. package/docs/security/CI_EGRESS_ALLOWLIST.md +1 -1
  38. package/docs/security/CI_PINNING.md +17 -9
  39. package/docs/security/DEPS_DEV_EXCEPTIONS.md +2 -2
  40. package/docs/security/FUZZING.md +114 -0
  41. package/docs/security/INSTALL_VERIFICATION.md +2 -2
  42. package/docs/security/POLICY_RELEASES.md +2 -2
  43. package/docs/security/SCORECARD.md +58 -3
  44. package/docs/security/SHELL_EXEMPTIONS.md +4 -4
  45. package/docs/security/VERIFY_RELEASE.md +201 -0
  46. package/install.sh +27 -5
  47. package/package.json +1 -1
  48. package/scripts/README.md +123 -0
  49. package/scripts/ci/check-copyright-headers.sh +4 -93
  50. package/scripts/ci/check-shell-preamble.sh +4 -103
  51. package/scripts/ci/guard-gitleaks-checkout.sh +4 -54
  52. package/scripts/diagnostics/a2a-conformance.sh +4 -4
  53. package/scripts/diagnostics/alias-governance.sh +1 -1
  54. package/scripts/diagnostics/aliases-cheatsheet.sh +2 -2
  55. package/scripts/diagnostics/benchmark.sh +4 -4
  56. package/scripts/diagnostics/conflicts.sh +2 -2
  57. package/scripts/diagnostics/doctor-unified.sh +2 -2
  58. package/scripts/diagnostics/doctor.sh +10 -10
  59. package/scripts/diagnostics/drift-dashboard.sh +2 -2
  60. package/scripts/diagnostics/health.sh +4 -4
  61. package/scripts/diagnostics/history-analysis.sh +2 -2
  62. package/scripts/diagnostics/mcp-doctor.sh +10 -7
  63. package/scripts/diagnostics/perf.sh +4 -4
  64. package/scripts/diagnostics/scorecard.sh +4 -4
  65. package/scripts/diagnostics/security-score.sh +2 -2
  66. package/scripts/diagnostics/smoke-test.sh +2 -2
  67. package/scripts/diagnostics/snapshot.sh +2 -2
  68. package/scripts/diagnostics/verify.sh +4 -4
  69. package/scripts/diagnostics/version-locks.sh +2 -2
  70. package/scripts/diagnostics/workstation-attestation.sh +14 -14
  71. package/scripts/dot/commands/agent.sh +8 -0
  72. package/scripts/dot/commands/agents.sh +14 -4
  73. package/scripts/dot/commands/ai.sh +144 -25
  74. package/scripts/dot/commands/appearance.sh +2 -2
  75. package/scripts/dot/commands/core.sh +2 -2
  76. package/scripts/dot/commands/diagnostics.sh +5 -5
  77. package/scripts/dot/commands/env-emit.sh +202 -0
  78. package/scripts/dot/commands/fleet.sh +12 -11
  79. package/scripts/dot/commands/init.sh +4 -4
  80. package/scripts/dot/commands/lint.sh +9 -4
  81. package/scripts/dot/commands/manual.sh +3 -3
  82. package/scripts/dot/commands/meta.sh +12 -6
  83. package/scripts/dot/commands/patterns.sh +2 -2
  84. package/scripts/dot/commands/registry.sh +4 -4
  85. package/scripts/dot/commands/restore.sh +4 -4
  86. package/scripts/dot/commands/secrets.sh +4 -3
  87. package/scripts/dot/commands/security.sh +2 -2
  88. package/scripts/dot/commands/tools.sh +13 -3
  89. package/scripts/dot/powershell/Dot.psm1 +199 -0
  90. package/scripts/fonts/install-nerd-fonts.sh +2 -2
  91. package/scripts/git-hooks/pre-commit-audit.sh +2 -2
  92. package/scripts/git-hooks/pre-push +13 -0
  93. package/scripts/ops/ai-setup.sh +1 -1
  94. package/scripts/ops/bundle.sh +2 -2
  95. package/scripts/ops/chaos.sh +2 -2
  96. package/scripts/ops/chezmoi-apply.sh +4 -4
  97. package/scripts/ops/heal.sh +4 -4
  98. package/scripts/ops/post-apply-repair.sh +2 -2
  99. package/scripts/ops/prewarm.sh +2 -2
  100. package/scripts/ops/release.sh +4 -4
  101. package/scripts/ops/rollback.sh +4 -4
  102. package/scripts/ops/setup.sh +2 -2
  103. package/scripts/qa/check-version-consistency.sh +123 -0
  104. package/scripts/qa/coverage-baseline.sh +1 -1
  105. package/scripts/qa/docs-coverage.sh +2 -2
  106. package/scripts/qa/powershell-contract.ps1 +1 -1
  107. package/scripts/qa/scorecard-snapshot.sh +127 -0
  108. package/scripts/security/backup.sh +2 -2
  109. package/scripts/security/dns-doh.sh +4 -4
  110. package/scripts/security/encryption-check.sh +4 -4
  111. package/scripts/security/enforce-policies.sh +2 -2
  112. package/scripts/security/firewall.sh +4 -4
  113. package/scripts/security/lock-screen.sh +4 -4
  114. package/scripts/security/manage-secrets.sh +2 -2
  115. package/scripts/security/ssh-cert.sh +2 -2
  116. package/scripts/security/telemetry-kill.sh +4 -4
  117. package/scripts/security/usb-safety.sh +4 -4
  118. package/scripts/theme/extract-heic-frames.sh +114 -0
  119. package/scripts/theme/rebuild-themes.sh +8 -1
  120. package/scripts/theme/switch.sh +13 -6
  121. package/scripts/theme/wallpaper-sync.sh +297 -93
  122. package/scripts/tuning/linux.sh +2 -2
  123. package/scripts/tuning/macos.sh +2 -2
  124. package/scripts/version-sync.sh +55 -7
  125. package/dot_config/.module-manifest.json +0 -69
  126. package/dot_config/ai/identity.md +0 -23
  127. package/dot_config/ai/patterns/architect.md +0 -16
  128. package/dot_config/ai/patterns/hardener.md +0 -15
  129. package/dot_config/ai/patterns/refactor.md +0 -15
  130. package/dot_config/aider/aider.conf.yml +0 -32
  131. package/dot_config/alacritty/alacritty.toml.tmpl +0 -55
  132. package/dot_config/ansible/ansible.cfg +0 -11
  133. package/dot_config/atuin/config.toml.tmpl +0 -47
  134. package/dot_config/bat/config +0 -23
  135. package/dot_config/brave-flags.conf.tmpl +0 -7
  136. package/dot_config/btop/btop.conf +0 -16
  137. package/dot_config/btop/themes/tokyonight.theme +0 -34
  138. package/dot_config/bun/bunfig.toml.tmpl +0 -33
  139. package/dot_config/claude/mcp_servers.json +0 -20
  140. package/dot_config/containers/containers.conf +0 -14
  141. package/dot_config/curl/dot_curlrc +0 -18
  142. package/dot_config/dlv/config.yml +0 -39
  143. package/dot_config/docker/config.json +0 -15
  144. package/dot_config/dotfiles/agent-card.json +0 -29
  145. package/dot_config/dotfiles/agent-profiles.json +0 -92
  146. package/dot_config/dotfiles/boot/README.md +0 -13
  147. package/dot_config/dotfiles/grub/README.md +0 -13
  148. package/dot_config/dotfiles/lock/README.md +0 -13
  149. package/dot_config/dotfiles/mcp-lock.json +0 -33
  150. package/dot_config/dotfiles/mcp-policy.json +0 -52
  151. package/dot_config/dotfiles/mcp-registry.json +0 -47
  152. package/dot_config/dotfiles/model-registry.json +0 -20
  153. package/dot_config/dotfiles/policy-bundles.json +0 -38
  154. package/dot_config/dotfiles/prompt-registry.json +0 -16
  155. package/dot_config/dotfiles/versions.env +0 -18
  156. package/dot_config/duf/duf.conf +0 -6
  157. package/dot_config/duti/defaults.duti +0 -5
  158. package/dot_config/emoji/emoji.txt +0 -34
  159. package/dot_config/environment.d/50-ssh-agent.conf +0 -2
  160. package/dot_config/environment.d/90-wayland.conf +0 -19
  161. package/dot_config/fastfetch/config.jsonc +0 -28
  162. package/dot_config/firefox/user.js.tmpl +0 -58
  163. package/dot_config/fish/completions/dot-theme-sync.fish.tmpl +0 -9
  164. package/dot_config/fish/completions/dot.fish.tmpl +0 -115
  165. package/dot_config/fish/conf.d/000-perf-cache.fish +0 -56
  166. package/dot_config/fish/conf.d/aliases.fish.tmpl +0 -77
  167. package/dot_config/fish/conf.d/direnv.fish +0 -4
  168. package/dot_config/fish/conf.d/env.fish.tmpl +0 -48
  169. package/dot_config/fish/conf.d/functions.fish.tmpl +0 -22
  170. package/dot_config/fish/conf.d/init.fish.tmpl +0 -172
  171. package/dot_config/fish/conf.d/mise-activate.fish +0 -5
  172. package/dot_config/fish/config.fish.tmpl +0 -44
  173. package/dot_config/fish/fish_plugins +0 -1
  174. package/dot_config/fish/functions/_.fish +0 -3
  175. package/dot_config/fish/functions/_cached_eval.fish +0 -131
  176. package/dot_config/fish/functions/_cached_eval_clear.fish +0 -17
  177. package/dot_config/fish/functions/als.fish +0 -46
  178. package/dot_config/fish/functions/bg-upgrade.fish +0 -7
  179. package/dot_config/fish/functions/c.fish +0 -3
  180. package/dot_config/fish/functions/cat.fish +0 -9
  181. package/dot_config/fish/functions/d.fish +0 -7
  182. package/dot_config/fish/functions/dot.fish +0 -34
  183. package/dot_config/fish/functions/h.fish +0 -3
  184. package/dot_config/fish/functions/l.fish +0 -7
  185. package/dot_config/fish/functions/la.fish +0 -7
  186. package/dot_config/fish/functions/ll.fish +0 -7
  187. package/dot_config/fish/functions/log_error.fish +0 -13
  188. package/dot_config/fish/functions/log_info.fish +0 -13
  189. package/dot_config/fish/functions/lr.fish +0 -7
  190. package/dot_config/fish/functions/lra.fish +0 -7
  191. package/dot_config/fish/functions/ls.fish +0 -7
  192. package/dot_config/fish/functions/lt.fish +0 -7
  193. package/dot_config/fish/functions/lta.fish +0 -7
  194. package/dot_config/fish/functions/notify-run.fish +0 -11
  195. package/dot_config/fish/functions/q.fish +0 -3
  196. package/dot_config/fish/functions/silent-run.fish +0 -7
  197. package/dot_config/fish/functions/yy.fish +0 -8
  198. package/dot_config/flatpak/flatpak.list +0 -4
  199. package/dot_config/fontconfig/fonts.conf.tmpl +0 -57
  200. package/dot_config/foot/foot.ini.tmpl +0 -33
  201. package/dot_config/fuzzel/fuzzel.ini.tmpl +0 -18
  202. package/dot_config/fzf/fzf.zsh +0 -48
  203. package/dot_config/gem/gemrc +0 -9
  204. package/dot_config/gh/config.yml +0 -12
  205. package/dot_config/ghostty/config.tmpl +0 -165
  206. package/dot_config/git/allowed_signers.tmpl +0 -18
  207. package/dot_config/git/attributes +0 -12
  208. package/dot_config/git/commit-template +0 -10
  209. package/dot_config/git/hooks/executable_commit-msg +0 -146
  210. package/dot_config/git/ignore +0 -27
  211. package/dot_config/gnupg/gpg-agent.conf +0 -11
  212. package/dot_config/go/golangci.yml +0 -118
  213. package/dot_config/go/gopls.json +0 -30
  214. package/dot_config/goose/config.yaml +0 -29
  215. package/dot_config/gtk-3.0/gtk.css.tmpl +0 -184
  216. package/dot_config/gtk-3.0/settings.ini.tmpl +0 -27
  217. package/dot_config/gtk-4.0/gtk.css.tmpl +0 -252
  218. package/dot_config/gtk-4.0/settings.ini.tmpl +0 -18
  219. package/dot_config/htop/htoprc +0 -20
  220. package/dot_config/inputrc +0 -2
  221. package/dot_config/ipython/profile_default/ipython_config.py +0 -19
  222. package/dot_config/just/justfile +0 -122
  223. package/dot_config/k9s/config.yaml +0 -65
  224. package/dot_config/k9s/skins/catppuccin-mocha.yaml +0 -116
  225. package/dot_config/kanshi/config.tmpl +0 -22
  226. package/dot_config/karabiner/karabiner.json +0 -14
  227. package/dot_config/kitty/kitty.conf.tmpl +0 -53
  228. package/dot_config/lazydocker/config.yml +0 -186
  229. package/dot_config/lazygit/config.yml +0 -35
  230. package/dot_config/mako/config +0 -47
  231. package/dot_config/mas/masapps.txt +0 -5
  232. package/dot_config/micro/settings.json +0 -3
  233. package/dot_config/mimeapps.list +0 -77
  234. package/dot_config/minikube/config.json +0 -13
  235. package/dot_config/mise/config.toml +0 -99
  236. package/dot_config/mongosh/mongoshrc.js +0 -68
  237. package/dot_config/mpv/input.conf +0 -47
  238. package/dot_config/mpv/mpv.conf +0 -47
  239. package/dot_config/mycli/myclirc +0 -67
  240. package/dot_config/nano/nanorc +0 -28
  241. package/dot_config/ncdu/config +0 -12
  242. package/dot_config/niri/config.kdl.tmpl +0 -327
  243. package/dot_config/nushell/aliases.nu +0 -18
  244. package/dot_config/nushell/cached_eval.nu +0 -80
  245. package/dot_config/nushell/completions.nu.tmpl +0 -52
  246. package/dot_config/nushell/config.nu.tmpl +0 -86
  247. package/dot_config/nushell/env.nu.tmpl +0 -102
  248. package/dot_config/nushell/functions.nu.tmpl +0 -17
  249. package/dot_config/nvim/init.lua +0 -18
  250. package/dot_config/nvim/lazy-lock.json +0 -58
  251. package/dot_config/nvim/lua/config/autocmds.lua +0 -107
  252. package/dot_config/nvim/lua/config/keymaps.lua +0 -92
  253. package/dot_config/nvim/lua/config/lazy.lua +0 -44
  254. package/dot_config/nvim/lua/config/options.lua +0 -49
  255. package/dot_config/nvim/lua/plugins/ai.lua +0 -75
  256. package/dot_config/nvim/lua/plugins/coding.lua +0 -216
  257. package/dot_config/nvim/lua/plugins/completion.lua +0 -60
  258. package/dot_config/nvim/lua/plugins/dap.lua +0 -412
  259. package/dot_config/nvim/lua/plugins/editor.lua +0 -55
  260. package/dot_config/nvim/lua/plugins/git.lua +0 -10
  261. package/dot_config/nvim/lua/plugins/lsp.lua +0 -156
  262. package/dot_config/nvim/lua/plugins/markdown.lua +0 -18
  263. package/dot_config/nvim/lua/plugins/rust.lua +0 -34
  264. package/dot_config/nvim/lua/plugins/sessions.lua +0 -33
  265. package/dot_config/nvim/lua/plugins/ui.lua +0 -509
  266. package/dot_config/paru/paru.conf +0 -10
  267. package/dot_config/pip/pip.conf.tmpl +0 -32
  268. package/dot_config/powershell/Microsoft.PowerShell_profile.ps1.tmpl +0 -81
  269. package/dot_config/pueue/pueue.yml +0 -34
  270. package/dot_config/pypoetry/config.toml +0 -6
  271. package/dot_config/pyrightconfig.json +0 -5
  272. package/dot_config/raycast/README.md +0 -13
  273. package/dot_config/redis/redisclirc +0 -41
  274. package/dot_config/ripgrep/ripgreprc +0 -21
  275. package/dot_config/shell/00-core-paths.sh.tmpl +0 -141
  276. package/dot_config/shell/05-core-safety.sh +0 -48
  277. package/dot_config/shell/10-secrets.sh +0 -41
  278. package/dot_config/shell/40-fzf-defaults.sh.tmpl +0 -17
  279. package/dot_config/shell/40-ls-colors.sh +0 -49
  280. package/dot_config/shell/50-logic-functions-core.sh.tmpl +0 -11
  281. package/dot_config/shell/50-logic-functions.sh.tmpl +0 -11
  282. package/dot_config/shell/51-logic-functions-extra.sh.tmpl +0 -65
  283. package/dot_config/shell/90-ux-aliases.sh.tmpl +0 -121
  284. package/dot_config/shell/91-ux-aliases-lazy.sh.tmpl +0 -55
  285. package/dot_config/shell/Brewfile +0 -207
  286. package/dot_config/shell/Brewfile.cask +0 -92
  287. package/dot_config/shell/Brewfile.cli +0 -127
  288. package/dot_config/shell/README.md +0 -284
  289. package/dot_config/shell/als_data.txt.tmpl +0 -65
  290. package/dot_config/shell/custom/auto_ls.zsh +0 -20
  291. package/dot_config/shell/custom/context_suggest.zsh +0 -68
  292. package/dot_config/shell/custom/error_analysis.zsh +0 -45
  293. package/dot_config/sops/dot_sops.yaml +0 -23
  294. package/dot_config/starship.toml.tmpl +0 -202
  295. package/dot_config/swaylock/config +0 -43
  296. package/dot_config/systemd/user/dotfiles-maintenance.service +0 -8
  297. package/dot_config/systemd/user/dotfiles-maintenance.timer +0 -11
  298. package/dot_config/systemd/user/pueued.service +0 -12
  299. package/dot_config/systemd/user/ssh-agent.service +0 -12
  300. package/dot_config/task/Taskfile.yml +0 -86
  301. package/dot_config/tflint/tflint.hcl +0 -9
  302. package/dot_config/tmux/tmux.conf.tmpl +0 -223
  303. package/dot_config/topgrade.toml.tmpl +0 -54
  304. package/dot_config/user-dirs.dirs +0 -10
  305. package/dot_config/vscode/extensions.txt +0 -11
  306. package/dot_config/vscode/settings.json.tmpl +0 -82
  307. package/dot_config/waybar/config.jsonc.tmpl +0 -90
  308. package/dot_config/waybar/style.css.tmpl +0 -211
  309. package/dot_config/wezterm/wezterm.lua.tmpl +0 -64
  310. package/dot_config/wget/wgetrc +0 -12
  311. package/dot_config/xdg-desktop-portal/niri-portals.conf +0 -5
  312. package/dot_config/yarn/yarnrc.yml +0 -36
  313. package/dot_config/yazi/keymap.toml +0 -67
  314. package/dot_config/yazi/theme.toml +0 -102
  315. package/dot_config/yazi/yazi.toml +0 -40
  316. package/dot_config/zathura/zathurarc +0 -52
  317. package/dot_config/zellij/config.kdl.tmpl +0 -79
  318. package/dot_config/zsh/dot_zprofile +0 -7
  319. package/dot_config/zsh/dot_zshenv +0 -5
  320. package/dot_config/zsh/dot_zshrc.tmpl +0 -688
  321. package/dot_config/zsh/rc.d/00-alias-shims.zsh +0 -99
  322. package/dot_config/zsh/rc.d/05-ssh-agent.zsh +0 -18
  323. package/dot_config/zsh/rc.d/10-env.zsh.tmpl +0 -28
  324. package/dot_config/zsh/rc.d/20-zinit.zsh +0 -65
  325. package/dot_config/zsh/rc.d/30-options.zsh.tmpl +0 -214
  326. package/dot_config/zsh/rc.d/40-bell.zsh +0 -20
  327. package/dot_config/zsh/rc.d/50-login-fortune.zsh +0 -9
  328. package/dot_config/zsh/rc.d/99-alias-wrapper.zsh +0 -32
  329. package/dot_local/bin/executable_ai-update +0 -195
  330. package/dot_local/bin/executable_ai_core +0 -152
  331. package/dot_local/bin/executable_antigravity +0 -11
  332. package/dot_local/bin/executable_b64 +0 -84
  333. package/dot_local/bin/executable_bm +0 -79
  334. package/dot_local/bin/executable_cb +0 -39
  335. package/dot_local/bin/executable_dot +0 -636
  336. package/dot_local/bin/executable_dot-ai +0 -36
  337. package/dot_local/bin/executable_dot-bootstrap +0 -76
  338. package/dot_local/bin/executable_dot-launch-or-focus +0 -52
  339. package/dot_local/bin/executable_dot-load-benchmark +0 -31
  340. package/dot_local/bin/executable_dot-load-benchmark-pty +0 -77
  341. package/dot_local/bin/executable_dot-theme-sync +0 -952
  342. package/dot_local/bin/executable_dot_completion +0 -57
  343. package/dot_local/bin/executable_dtags +0 -28
  344. package/dot_local/bin/executable_epoch +0 -67
  345. package/dot_local/bin/executable_extract +0 -41
  346. package/dot_local/bin/executable_gbd +0 -52
  347. package/dot_local/bin/executable_gd +0 -42
  348. package/dot_local/bin/executable_git-ai-commit +0 -175
  349. package/dot_local/bin/executable_git-ai-diff +0 -169
  350. package/dot_local/bin/executable_gl +0 -101
  351. package/dot_local/bin/executable_hash +0 -161
  352. package/dot_local/bin/executable_hashsum +0 -160
  353. package/dot_local/bin/executable_hex +0 -115
  354. package/dot_local/bin/executable_jsonv +0 -78
  355. package/dot_local/bin/executable_jwt +0 -94
  356. package/dot_local/bin/executable_kill-port +0 -75
  357. package/dot_local/bin/executable_lorem +0 -118
  358. package/dot_local/bin/executable_mkscript +0 -35
  359. package/dot_local/bin/executable_monitor +0 -56
  360. package/dot_local/bin/executable_myip +0 -51
  361. package/dot_local/bin/executable_notify +0 -24
  362. package/dot_local/bin/executable_open +0 -38
  363. package/dot_local/bin/executable_pw +0 -27
  364. package/dot_local/bin/executable_rec-start +0 -46
  365. package/dot_local/bin/executable_rec-stop +0 -35
  366. package/dot_local/bin/executable_regex +0 -132
  367. package/dot_local/bin/executable_start-niri +0 -8
  368. package/dot_local/bin/executable_tmux-sessionizer +0 -314
  369. package/dot_local/bin/executable_tour +0 -177
  370. package/dot_local/bin/executable_up +0 -23
  371. package/dot_local/bin/executable_update +0 -142
  372. package/dot_local/bin/executable_uuid +0 -87
  373. package/dot_local/bin/executable_win +0 -32
  374. package/dot_local/bin/executable_yamlv +0 -57
  375. package/dot_local/share/bash-completion/completions/dot +0 -72
  376. package/dot_local/share/icons/hicolor/128x128/apps/rousseau.png +0 -0
  377. package/dot_local/share/icons/hicolor/16x16/apps/rousseau.png +0 -0
  378. package/dot_local/share/icons/hicolor/24x24/apps/rousseau.png +0 -0
  379. package/dot_local/share/icons/hicolor/256x256/apps/rousseau.png +0 -0
  380. package/dot_local/share/icons/hicolor/32x32/apps/rousseau.png +0 -0
  381. package/dot_local/share/icons/hicolor/48x48/apps/rousseau.png +0 -0
  382. package/dot_local/share/icons/hicolor/512x512/apps/rousseau.png +0 -0
  383. package/dot_local/share/icons/hicolor/64x64/apps/rousseau.png +0 -0
  384. package/dot_local/share/icons/hicolor/96x96/apps/rousseau.png +0 -0
  385. package/dot_local/share/icons/hicolor/scalable/apps/rousseau.png +0 -0
  386. package/dot_local/share/man/man1/dot.1 +0 -149
  387. package/dot_local/share/mise/plugins/kiro-cli/bin/executable_download +0 -64
  388. package/dot_local/share/mise/plugins/kiro-cli/bin/executable_install +0 -18
  389. package/dot_local/share/mise/plugins/kiro-cli/bin/executable_list-all +0 -13
  390. package/dot_local/share/wayland-sessions/niri.desktop.tmpl +0 -6
  391. package/dot_local/share/zsh/completions/.keep +0 -0
  392. package/dot_local/share/zsh/completions/_dot +0 -287
  393. package/scripts/ci/check-dangerous-chmod.sh +0 -19
  394. package/scripts/ci/check-deps-dev.sh +0 -236
  395. package/scripts/ci/check-insecure-tls.sh +0 -61
  396. package/scripts/ci/check-regression-traceability.sh +0 -67
  397. package/scripts/ci/dot-cli-startup-bench.sh +0 -126
  398. package/scripts/ci/install-chezmoi-verified.sh +0 -67
  399. package/scripts/ci/lint-reusable-pins.sh +0 -78
  400. package/scripts/ci/run-coverage.sh +0 -451
  401. package/scripts/ci/validate-chezmoidata.sh +0 -25
  402. package/scripts/ci/validate-ci-config.sh +0 -224
  403. package/scripts/ci/windows-smoke-test.ps1 +0 -136
  404. package/scripts/docs/build-manual.sh +0 -883
  405. package/scripts/docs/check-manual.sh +0 -213
  406. package/scripts/dot/lib/bento.sh +0 -50
  407. package/scripts/dot/lib/log.sh +0 -200
  408. package/scripts/dot/lib/platform.sh +0 -112
  409. package/scripts/dot/lib/ui.sh +0 -650
  410. package/scripts/dot/lib/utils.sh +0 -377
  411. package/scripts/maintenance/check-updates.sh +0 -131
  412. package/scripts/release/package-policy-bundles.sh +0 -125
@@ -1,69 +0,0 @@
1
- {
2
- "$schema": "Module manifest for dot_config/ — logical grouping of flat directories",
3
- "groups": {
4
- "shell": {
5
- "description": "Shell environments and startup",
6
- "modules": ["shell", "zsh", "fish", "nushell"]
7
- },
8
- "terminal": {
9
- "description": "Terminal emulators",
10
- "modules": ["alacritty", "ghostty", "kitty", "wezterm"]
11
- },
12
- "editor": {
13
- "description": "Text editors and IDEs",
14
- "modules": ["nvim", "vscode", "micro", "nano"]
15
- },
16
- "git": {
17
- "description": "Version control",
18
- "modules": ["git", "lazygit", "gh"]
19
- },
20
- "container": {
21
- "description": "Containers and orchestration",
22
- "modules": ["docker", "containers", "lazydocker", "k9s", "minikube"]
23
- },
24
- "ai": {
25
- "description": "AI tools and assistants",
26
- "modules": ["ai", "aider", "claude", "goose"]
27
- },
28
- "languages": {
29
- "description": "Language toolchains",
30
- "modules": ["go", "pip", "pypoetry", "gem", "bun", "yarn", "dlv"]
31
- },
32
- "system": {
33
- "description": "System monitoring and management",
34
- "modules": ["btop", "htop", "fastfetch", "topgrade", "systemd", "ncdu", "duf"]
35
- },
36
- "security": {
37
- "description": "Security and secrets",
38
- "modules": ["gnupg", "sops"]
39
- },
40
- "network": {
41
- "description": "Network and HTTP tools",
42
- "modules": ["curl", "wget"]
43
- },
44
- "data": {
45
- "description": "Databases and data tools",
46
- "modules": ["redis", "mongosh", "mycli", "ipython"]
47
- },
48
- "tools": {
49
- "description": "CLI utilities",
50
- "modules": ["bat", "fzf", "yazi", "just", "mise", "task", "tmux", "pueue", "atuin", "emoji"]
51
- },
52
- "desktop": {
53
- "description": "Desktop environment and appearance",
54
- "modules": ["gtk-3.0", "gtk-4.0", "fontconfig", "flatpak", "zellij"]
55
- },
56
- "macos": {
57
- "description": "macOS-specific modules",
58
- "modules": ["karabiner", "mas", "duti", "raycast"]
59
- },
60
- "infra": {
61
- "description": "Infrastructure and cloud",
62
- "modules": ["ansible", "tflint"]
63
- },
64
- "dotfiles": {
65
- "description": "Dotfiles internal config",
66
- "modules": ["dotfiles"]
67
- }
68
- }
69
- }
@@ -1,23 +0,0 @@
1
- # AI Identity & Preferences
2
-
3
- ## Profile
4
-
5
- - **User**:
6
- - **Role**: Senior Software Engineer / Architect
7
- - **Expertise**: Rust, TypeScript, Go, DevOps (Nix, Kubernetes), Shell Scripting.
8
-
9
- ## Coding Style
10
-
11
- - **Principles**: Clean code, SOLID, DRY, KISS.
12
- - **Preferences**:
13
- - Prefer TypeScript over JavaScript.
14
- - Prefer functional programming patterns where appropriate.
15
- - Use Vitest or Jest for testing.
16
- - Use Prettier and ESLint for formatting/linting.
17
- - **Documentation**: Use JSDoc/TSDoc for code and GitHub-flavored Markdown for docs.
18
-
19
- ## Workspace Context
20
-
21
- - **Environment**: Linux (CachyOS/Arch), macOS.
22
- - **Shells**: Zsh (primary), Fish, Nushell, Bash.
23
- - **Dotfiles**: Managed by Chezmoi, optimized for performance and security.
@@ -1,16 +0,0 @@
1
- # Identity: Dotfiles Architect
2
-
3
- You are an expert Shell Infrastructure Architect specializing in the 2026 developer stack.
4
-
5
- ## Core Directives
6
-
7
- - **Subtlety**: Propose changes that integrate seamlessly without adding unnecessary complexity.
8
- - **Performance**: Prioritize shell startup speed and binary efficiency (e.g., _cached_eval).
9
- - **Architecture**: Adhere to the modular "rc.d" structure and XDG Base Directory standards.
10
- - **Tools**: Leverage Mise for runtimes, Nix for declarative environments, and Chezmoi for state management.
11
-
12
- ## Environment Context
13
-
14
- - OS: Arch/CachyOS (optimized for x86-64-v4) or macOS.
15
- - Shells: Zsh (primary), Fish, Nushell, Bash.
16
- - Security: Age/SOPS for secrets, GPG signing enforced.
@@ -1,15 +0,0 @@
1
- # Identity: Shell Security Hardener
2
-
3
- You are a security engineer specializing in high-compliance Fintech environments and Post-Quantum Cryptography (PQC).
4
-
5
- ## Core Directives
6
-
7
- - **Zero Trust**: Assume all external scripts are compromised until verified.
8
- - **Encryption**: Enforce Age/SOPS for all sensitive data.
9
- - **Compliance**: Adhere to 2026 security baselines (GPG signing, SSH certificate authorities).
10
- - **Privacy**: Disable all non-essential telemetry at the OS and application level.
11
-
12
- ## Verification Logic
13
-
14
- - Every proposal must include a "Verification" step (e.g., dot verify --security).
15
- - Prioritize hardware enclave (TPM/Secure Enclave) integrations.
@@ -1,15 +0,0 @@
1
- # Identity: POSIX & Shell Optimizer
2
-
3
- You are an expert in shell script optimization and POSIX compliance.
4
-
5
- ## Core Directives
6
-
7
- - **Portability**: Ensure scripts work across Zsh, Bash, and Dash unless specifically optimized for a feature shell (like Fish/Nushell).
8
- - **Indempotency**: Scripts must be safe to run multiple times without side effects.
9
- - **Linting**: Adhere to ShellCheck best practices and strict error handling (set -euo pipefail).
10
- - **Latency**: Minimize subshell calls and external binary forks.
11
-
12
- ## Optimization Strategy
13
-
14
- - Use built-in shell features over external commands where possible.
15
- - Implement caching mechanisms for heavy computations.
@@ -1,32 +0,0 @@
1
- # Aider configuration
2
- # https://aider.chat/docs/config/options.html
3
-
4
- # Model settings
5
- model: claude-opus-4-6
6
- edit-format: diff
7
-
8
- # Git settings
9
- auto-commits: true
10
- dirty-commits: false
11
- attribute-author: true
12
- attribute-commit-message: true
13
-
14
- # UI settings
15
- dark-mode: true
16
- pretty: true
17
- stream: true
18
-
19
- # Code settings
20
- auto-lint: true
21
- lint-cmd: "npm run lint"
22
- auto-test: false
23
-
24
- # File handling
25
- gitignore: true
26
- aiderignore: true
27
-
28
- # History
29
- restore-chat-history: true
30
-
31
- # Voice (if enabled)
32
- # voice-language: en
@@ -1,55 +0,0 @@
1
- {{- $fontFamily := default "JetBrainsMono Nerd Font" .terminal_font_family -}}
2
- {{- $fontSize := default 12 .terminal_font_size -}}
3
- {{- $t := index .themes (default "big-sur-dark" .theme) -}}
4
- {{- if not $t -}}{{- $t = index .themes "big-sur-dark" -}}{{- end }}
5
- {{- $tt := $t -}}
6
- {{- $themeName := default "big-sur-dark" .theme -}}
7
- {{- if hasSuffix "-light" $themeName -}}
8
- {{- $darkTheme := index .themes (printf "%s-dark" (trimSuffix "-light" $themeName)) -}}
9
- {{- if $darkTheme -}}{{- $tt = $darkTheme -}}{{- end -}}
10
- {{- end }}
11
- [window]
12
- padding = { x = 16, y = 12 }
13
- opacity = {{ if eq .chezmoi.os "darwin" }}0.92{{ else }}0.96{{ end }}
14
- option_as_alt = {{ if eq .chezmoi.os "darwin" }}"Both"{{ else }}"None"{{ end }}
15
-
16
- [font]
17
- size = {{ $fontSize }}
18
- normal = { family = "{{ $fontFamily }}" }
19
- {{- if eq .chezmoi.os "darwin" }}
20
- offset = { x = 0, y = 1 }
21
- {{- else }}
22
- offset = { x = 0, y = 0 }
23
- {{- end }}
24
-
25
- [colors.primary]
26
- background = "{{ $tt.term.bg }}"
27
- foreground = "{{ $tt.term.fg }}"
28
-
29
- [colors.cursor]
30
- cursor = "{{ $tt.term.cursor }}"
31
- text = "{{ $tt.term.cursor_text }}"
32
-
33
- [colors.selection]
34
- background = "{{ $tt.term.sel_bg }}"
35
- text = "{{ $tt.term.sel_fg }}"
36
-
37
- [colors.normal]
38
- black = "{{ $tt.term.c0 }}"
39
- red = "{{ $tt.term.c1 }}"
40
- green = "{{ $tt.term.c2 }}"
41
- yellow = "{{ $tt.term.c3 }}"
42
- blue = "{{ $tt.term.c4 }}"
43
- magenta = "{{ $tt.term.c5 }}"
44
- cyan = "{{ $tt.term.c6 }}"
45
- white = "{{ $tt.term.c7 }}"
46
-
47
- [colors.bright]
48
- black = "{{ $tt.term.c8 }}"
49
- red = "{{ $tt.term.c9 }}"
50
- green = "{{ $tt.term.c10 }}"
51
- yellow = "{{ $tt.term.c11 }}"
52
- blue = "{{ $tt.term.c12 }}"
53
- magenta = "{{ $tt.term.c13 }}"
54
- cyan = "{{ $tt.term.c14 }}"
55
- white = "{{ $tt.term.c15 }}"
@@ -1,11 +0,0 @@
1
- [defaults]
2
- inventory = ./inventory
3
- retry_files_enabled = False
4
- host_key_checking = False
5
- stdout_callback = yaml
6
- nocows = 1
7
-
8
- [privilege_escalation]
9
- become = True
10
- become_method = sudo
11
- become_ask_pass = False
@@ -1,47 +0,0 @@
1
- # Atuin Configuration (~/.config/atuin/config.toml)
2
- # https://atuin.sh/docs/config
3
- #
4
- # This file is templated by chezmoi. The `history_filter` block is sourced
5
- # from `.chezmoidata/secrets-patterns.toml` (see #872) so the same audited
6
- # defaults ship to every machine, with per-host extension via
7
- # `~/.config/chezmoi/chezmoi.toml` → `[data.atuin.history_filter] extra = [...]`.
8
-
9
- # Core
10
- update_check = false
11
- db_path = "~/.local/share/atuin/history.db"
12
- key_path = "~/.local/share/atuin/key"
13
- session_path = "~/.local/share/atuin/session"
14
-
15
- # Sync
16
- auto_sync = true
17
- sync_frequency = "10m"
18
- sync_address = "https://api.atuin.sh"
19
-
20
- # UI
21
- style = "compact"
22
- inline_height = 20
23
- show_preview = true
24
- enter_accept = true
25
-
26
- # Search
27
- search_mode = "fuzzy"
28
- filter_mode = "global"
29
- workspaces = true
30
-
31
- # Privacy: skip commands that may contain secrets.
32
- # Defaults come from .chezmoidata/secrets-patterns.toml; the `extra` slot
33
- # in chezmoi.toml allows per-host extension without editing this template.
34
- history_filter = [
35
- {{- range .atuin.history_filter.defaults }}
36
- {{ . | quote }},
37
- {{- end }}
38
- {{- with .atuin.history_filter.extra }}
39
- {{- range . }}
40
- {{ . | quote }},
41
- {{- end }}
42
- {{- end }}
43
- ]
44
-
45
- # Skip ephemeral directories
46
- secrets_filter = true
47
- network_timeout = 30
@@ -1,23 +0,0 @@
1
- # Bat configuration (dotfiles)
2
- # See: https://github.com/sharkdp/bat
3
-
4
- # Theme
5
- --theme="TwoDark"
6
-
7
- # Style
8
- --style="numbers,changes,header,grid"
9
-
10
- # Paging
11
- --paging=auto
12
- --pager="less -FR"
13
-
14
- # Formatting
15
- --tabs=2
16
- --italic-text=always
17
-
18
- # Syntax mappings
19
- --map-syntax "*.conf:INI"
20
- --map-syntax ".gitignore:Git Ignore"
21
- --map-syntax "*.tmpl:Go HTML Template"
22
- --map-syntax "*.kdl:KDL"
23
- --map-syntax ".envrc:Bash"
@@ -1,7 +0,0 @@
1
- {{- if eq .chezmoi.os "linux" -}}
2
- --enable-gpu-rasterization
3
- --enable-zero-copy
4
- --enable-features=VaapiVideoDecodeLinuxGL,VaapiVideoEncoder,CanvasOopRasterization
5
- --disable-features=UseChromeOSDirectVideoDecoder
6
- --max-old-space-size=4096
7
- {{- end -}}
@@ -1,16 +0,0 @@
1
- # btop configuration
2
- # Theme files live in ~/.config/btop/themes/
3
- color_theme = "tokyonight"
4
-
5
- # Basic UI preferences
6
- update_ms = 2000
7
- proc_sorting = "cpu lazy"
8
- proc_gradient = true
9
- net_auto = true
10
-
11
- # Hide top-level header when on small screens
12
- show_cpu_freq = true
13
- show_gpu_info = false
14
-
15
- # Enable mouse support
16
- mouse = true
@@ -1,34 +0,0 @@
1
- # Tokyonight (Night) theme for btop
2
- # Based on Tokyo Night palette
3
-
4
- # Main background
5
- bg = "#1a1b26"
6
- # Main text
7
- fg = "#c0caf5"
8
-
9
- # Titles and boxes
10
- title = "#7aa2f7"
11
- hi_fg = "#bb9af7"
12
-
13
- # Graphs
14
- selected_bg = "#24283b"
15
- selected_fg = "#c0caf5"
16
-
17
- # CPU
18
- cpu_box = "#7aa2f7"
19
- mem_box = "#9ece6a"
20
- net_box = "#7dcfff"
21
- proc_box = "#e0af68"
22
-
23
- # Graph colors
24
- cpu_graph = "#7aa2f7"
25
- mem_graph = "#9ece6a"
26
- net_graph = "#7dcfff"
27
- proc_graph = "#e0af68"
28
-
29
- # Status
30
- available = "#9ece6a"
31
- used = "#e0af68"
32
- free = "#7dcfff"
33
- warning = "#e0af68"
34
- critical = "#f7768e"
@@ -1,33 +0,0 @@
1
- # Bun configuration
2
- # Managed by chezmoi - edit source at ~/.dotfiles/dot_config/bun/bunfig.toml.tmpl
3
- # Documentation: https://bun.sh/docs/runtime/bunfig
4
-
5
- [install]
6
- # Use a shared global cache
7
- globalBinDir = "{{ .chezmoi.homeDir }}/.bun/bin"
8
-
9
- # Prefer offline mode when possible
10
- prefer = "offline"
11
-
12
- # Auto-install peer dependencies
13
- peer = true
14
-
15
- # Registry (default)
16
- registry = "https://registry.npmjs.org/"
17
-
18
- # Scoped registries (uncomment and configure as needed)
19
- # [install.scopes]
20
- # "@mycompany" = { token = "$NPM_TOKEN", url = "https://npm.mycompany.com/" }
21
-
22
- [run]
23
- # Silence the bun install/update messages during bun run
24
- silent = false
25
-
26
- [test]
27
- # Test configuration
28
- coverage = false
29
- coverageDir = "coverage"
30
-
31
- [telemetry]
32
- # Disable telemetry
33
- enabled = false
@@ -1,20 +0,0 @@
1
- {
2
- "$schema": "https://raw.githubusercontent.com/anthropics/claude-code/main/schemas/mcp-servers.json",
3
- "mcpServers": {
4
- "git": {
5
- "command": "npx",
6
- "args": ["-y", "mcp-server-git@2026.3.0"],
7
- "env": {}
8
- },
9
- "memory": {
10
- "command": "npx",
11
- "args": ["-y", "@modelcontextprotocol/server-memory@2026.3.0"],
12
- "env": {}
13
- },
14
- "sqlite": {
15
- "command": "npx",
16
- "args": ["-y", "mcp-server-sqlite@2026.3.0"],
17
- "env": {}
18
- }
19
- }
20
- }
@@ -1,14 +0,0 @@
1
- # Podman/containers defaults
2
- [containers]
3
- netns = ""
4
- ipcns = ""
5
- utsns = ""
6
-
7
- [engine]
8
- # Use systemd cgroup driver when available
9
- cgroup_manager = "systemd"
10
- # Reduce noisy output
11
- events_logger = "journald"
12
-
13
- [network]
14
- # Default subnet and gateway can be overridden per user
@@ -1,18 +0,0 @@
1
- # cURL Configuration
2
- -w "\n"
3
- --anyauth
4
- --continue-at -
5
- --connect-timeout 60
6
- --compressed
7
- --ipv4
8
- --location
9
- --progress-bar
10
- --remote-time
11
- --referer ";auto"
12
- --show-error
13
- --ssl-reqd
14
- --trace-time
15
- --user-agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/105.0.1343.53"
16
- -H "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8"
17
- -H "Upgrade-Insecure-Requests: 1"
18
- -H "Accept-Language: en-US,en;q=0.8"
@@ -1,39 +0,0 @@
1
- # Delve debugger configuration
2
- # https://github.com/go-delve/delve/blob/master/Documentation/cli/README.md
3
-
4
- # Aliases for common commands
5
- aliases:
6
- # Navigation
7
- ll: "list"
8
- bt: "stack"
9
- # Breakpoints
10
- bp: "breakpoints"
11
- # Variables
12
- lv: "locals"
13
- av: "args"
14
- # Execution
15
- c: "continue"
16
- n: "next"
17
- s: "step"
18
- so: "stepout"
19
- # Info
20
- gs: "goroutines"
21
- gt: "goroutine"
22
-
23
- # Source list settings
24
- source-list-line-color: 34
25
- source-list-arrow-color: 33
26
- source-list-keyword-color: 31
27
-
28
- # Substitute source paths (useful for remote debugging)
29
- # substitute-path:
30
- # - {from: "/build/path", to: "/local/path"}
31
-
32
- # Max string length to display
33
- max-string-len: 256
34
-
35
- # Max array values to display
36
- max-array-values: 128
37
-
38
- # Show goroutine current location
39
- show-location-expr: true
@@ -1,15 +0,0 @@
1
- {
2
- "auths": {},
3
- "credsStore": "",
4
- "credHelpers": {},
5
- "detachKeys": "ctrl-@",
6
- "experimental": "disabled",
7
- "plugins": {},
8
- "proxies": {
9
- "default": {
10
- "httpProxy": "",
11
- "httpsProxy": "",
12
- "noProxy": ""
13
- }
14
- }
15
- }
@@ -1,29 +0,0 @@
1
- {
2
- "specVersion": "0.3",
3
- "name": "dotfiles-agent",
4
- "version": "0.2.501",
5
- "description": "Trusted workstation agent surface for local shell automation.",
6
- "defaultProfile": "ask",
7
- "protocols": ["mcp", "a2a"],
8
- "platforms": ["macOS", "Linux", "WSL", "PowerShell"],
9
- "entrypoints": {
10
- "cli": "dot",
11
- "mode": "dot mode",
12
- "attestation": "dot attest --json",
13
- "mcp": "dot mcp --strict --json",
14
- "conformance": "dot agent conformance --strict --json",
15
- "checkpoint": "dot agent checkpoint list",
16
- "a2aCard": "dot agent a2a-card --json"
17
- },
18
- "profiles": ["ask", "plan", "apply", "audit"],
19
- "security": {
20
- "signedCommits": true,
21
- "mcpRegistry": true,
22
- "sessionLogging": true,
23
- "workstationAttestation": true,
24
- "replayableCheckpoints": true,
25
- "fleetAttestationExport": true,
26
- "policyBundleReleases": true,
27
- "cardSigning": "ssh-ed25519"
28
- }
29
- }
@@ -1,92 +0,0 @@
1
- {
2
- "schemaVersion": "2026.03",
3
- "defaultProfile": "ask",
4
- "rbac": {
5
- "roles": {
6
- "viewer": {
7
- "description": "Read-only access to configuration and status.",
8
- "allowedProfiles": ["ask"],
9
- "permissions": ["read", "status", "audit"]
10
- },
11
- "developer": {
12
- "description": "Standard development workflow with bounded writes.",
13
- "inherits": "viewer",
14
- "allowedProfiles": ["ask", "plan", "apply"],
15
- "permissions": ["read", "write", "status", "audit", "execute"]
16
- },
17
- "admin": {
18
- "description": "Full access including fleet management and profile switching.",
19
- "inherits": "developer",
20
- "allowedProfiles": ["ask", "plan", "apply", "audit"],
21
- "permissions": ["read", "write", "status", "audit", "execute", "fleet", "configure"]
22
- }
23
- },
24
- "defaultRole": "developer",
25
- "enforcement": "advisory"
26
- },
27
- "delegation": {
28
- "enabled": false,
29
- "maxDepth": 2,
30
- "allowedDelegates": {
31
- "security-reviewer": {
32
- "profile": "audit",
33
- "permissions": ["read", "audit"],
34
- "maxSteps": 4,
35
- "timeout": 120
36
- },
37
- "test-runner": {
38
- "profile": "apply",
39
- "permissions": ["read", "execute"],
40
- "maxSteps": 6,
41
- "timeout": 300
42
- },
43
- "lint-checker": {
44
- "profile": "ask",
45
- "permissions": ["read"],
46
- "maxSteps": 2,
47
- "timeout": 60
48
- }
49
- },
50
- "securityPolicy": {
51
- "requireParentApproval": true,
52
- "logAllDelegations": true,
53
- "maxConcurrentDelegates": 3
54
- }
55
- },
56
- "profiles": {
57
- "ask": {
58
- "description": "Read-only guidance with no unattended changes.",
59
- "approval": "manual",
60
- "filesystem": "read-only",
61
- "network": "off",
62
- "mcpProfile": "strict-local",
63
- "maxSteps": 1
64
- },
65
- "plan": {
66
- "description": "Structured planning with local inspection and no writes.",
67
- "approval": "manual",
68
- "filesystem": "read-only",
69
- "network": "limited",
70
- "mcpProfile": "strict-local",
71
- "maxSteps": 3
72
- },
73
- "apply": {
74
- "description": "Bounded implementation with explicit approval and local policy guards.",
75
- "approval": "on-request",
76
- "filesystem": "workspace-write",
77
- "network": "limited",
78
- "mcpProfile": "strict-local",
79
- "maxSteps": 6,
80
- "canDelegate": true
81
- },
82
- "audit": {
83
- "description": "Deep verification, scoring, and compliance analysis.",
84
- "approval": "manual",
85
- "filesystem": "read-only",
86
- "network": "limited",
87
- "mcpProfile": "enterprise-remote",
88
- "maxSteps": 8,
89
- "canDelegate": true
90
- }
91
- }
92
- }
@@ -1,13 +0,0 @@
1
- Place your Linux boot logo image here.
2
-
3
- Default path used by the script:
4
-
5
- - ~/.config/dotfiles/boot/logo.png
6
-
7
- Run:
8
-
9
- - sudo ~/.dotfiles/scripts/theme/install-boot-logo.sh --apply
10
-
11
- ---
12
-
13
- Made with ❤️ by [Sebastien Rousseau](https://sebastienrousseau.com)
@@ -1,13 +0,0 @@
1
- Place your GRUB theme files here.
2
-
3
- Default path used by the script:
4
-
5
- - ~/.config/dotfiles/grub/theme
6
-
7
- Run:
8
-
9
- - sudo ~/.dotfiles/scripts/theme/install-grub-theme.sh --apply
10
-
11
- ---
12
-
13
- Made with ❤️ by [Sebastien Rousseau](https://sebastienrousseau.com)