feat(tools): add --all flag for bulk install/plan with auth hints#22
Merged
Conversation
Support installing all supported tools at once via `bin/dotfiles tools install --all`, mirroring the existing `packages --all` pattern. Add post-install authentication hints for tools that require login (gws, slack-cli, rtk) — shown both per-tool and as a summary after --all. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
alohays
added a commit
that referenced
this pull request
Mar 19, 2026
…nd contributing Feature --yolo install and tools install --all from PRs #22-#23 were undocumented. This adds them prominently: - README Quick Start: new "Full Setup: One Command" section for --yolo - README What You Get: add yolo mode row, fix test count 66 -> 78 - README Agent Tools: document tools install/plan --all, auth hints - docs/visual.md: restructure full setup section to lead with --yolo - CONTRIBUTING.md: add tools.sh/packages.sh/banner.sh to architecture tree, add Environment Variables subsection for DOTFILES_* coordination - Fix packages.sh --all help text bug (said default,agents, actually installs default,agents,visual) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
7 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
--allflag tobin/dotfiles tools installandtools planfor bulk operation across all 10 supported tools--allDetails
New commands:
Auth hints:
New functions in
tools.sh:_dotfiles_tool_auth_hint()— maps tool names to auth commands (extensible via case arms)_dotfiles_show_auth_hint()— displays auth hint after individual tool installdotfiles_install_all_tools()— iterates all tools with ok/fail counters + auth summarydotfiles_plan_all_tools()— prints indented plans for all toolsTest plan
bin/dotfiles tools plan --alloutputs all 10 toolsDOTFILES_DRY_RUN=1 bin/dotfiles tools install --alldry-run with "dry-run complete" header + auth summarybin/dotfiles tools install --all sometoolerrors with mutual exclusivity messageDOTFILES_DRY_RUN=1 bin/dotfiles tools install googleworkspace-cli)python3 -m pytest tests/test_standard_first.py -v— 14 passed (2 new)bash -n scripts/sh/tools.sh— syntax OK🤖 Generated with Claude Code