-
-
Notifications
You must be signed in to change notification settings - Fork 143
Support Atmos Toolchain for 3rd Party Tools #1686
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 54 commits
Commits
Show all changes
56 commits
Select commit
Hold shift + click to select a range
013127c
feat: Support Atmos Toolchain for 3rd Party Tools (#1686)
osterman c3c3853
fix: Add mutex protection for global GitHub API client
osterman ff616ab
fix: Remove --github-token from global flags and fix test failures
osterman 1a321cc
fix: Remove trailing whitespace from help text after lipgloss rendering
osterman cfe384e
fix: Address code quality and linting issues in toolchain subsystem
osterman 773c7b5
fix: Add comma to multi-line comment for godot compliance
osterman e88d27f
docs: Fix PRD status inconsistency in multi-registry-support.md
osterman eee86a0
fix: Use ANSI-aware trimming for help text trailing whitespace
osterman 4a72d34
fix: Add -buildvcs=false to test runner and regenerate snapshots
osterman cc909ec
fix: Use dynamic stdout/stderr references in I/O layer for test capture
osterman d964962
test: Improve test coverage for toolchain packages
osterman d0cfadd
fix: Add linter fixes and additional test coverage
osterman 0f6469e
fix: Test quality improvements and help output regression fixes
osterman 874b991
fix: Use cross-platform path in TestIsToolInstalled
osterman 1625f51
fix: Add cleanup for toolchain config and viper state in test
osterman 948558e
fix: Improve test quality in installer_test.go
osterman 0a0f6fa
chore: Regenerate help command snapshots
osterman 9be3236
feat: Add ref field for pinning toolchain registry to specific git refs
osterman e565d29
feat: Add --use-version flag and version switching with re-exec mecha…
osterman 37083bf
fix: Strip --use-version flag before re-exec to older versions
osterman 4217013
feat: Simplify atmos version list --installed table with active indic…
osterman edcd2c0
feat: Add current version indicator to atmos version list --installed
osterman e44291a
feat: Replace INSTALLED column with dot indicators in toolchain list
osterman eb18ac3
refactor: Split large toolchain files to fix file-length-limit lint i…
osterman 63d65d2
fix: Reduce cognitive and cyclomatic complexity in toolchain code
osterman b24b7d3
[autofix.ci] apply automated fixes
autofix-ci[bot] cb3b461
fix: Reduce cognitive complexity in TestCleanToolsAndCaches
osterman 243307c
fix: Address CodeRabbit review comments
osterman 8ef75ed
fix: Resolve test failures and update documentation
osterman 910369b
chore: Remove .claude/plans from version control
osterman d30a6da
test: Regenerate golden snapshots for --use-version flag
osterman f69a4f2
fix: Use errUtils.OsExit instead of os.Exit for Go 1.25+ test compati…
osterman 1e1c32f
chore: Remove outdated toolchain development artifacts
osterman 06c5fcd
fix: Correct golden snapshot whitespace for validate component test
osterman b0790c3
docs(roadmap): Mark toolchain management as shipped
osterman 9d0c135
test: Regenerate golden snapshots for --help command changes
osterman c19d881
Merge branch 'main' into tools-experiment
osterman 5a706d4
Merge branch 'main' into tools-experiment
osterman a8e2bdf
Merge branch 'main' into tools-experiment
osterman d6b82ae
Merge branch 'main' into tools-experiment
aknysh 1f8c645
add tests
aknysh 834e8e7
update docs
aknysh 4ae2a00
update docs
aknysh 35d9d94
add tests
aknysh 9ba2889
Merge branch 'main' into osterman/list-affected-command
aknysh e0b3923
address comments
aknysh 6bafe3d
address comments, update Atmos JSON schemas
aknysh f778a2c
update docs
aknysh 61de449
fix issues, address comments, update docs, add tests
aknysh 56a46ca
fix issues, address comments, update docs, add tests
aknysh 53fa465
fix: prevent Bubble Tea spinner hang in non-TTY environments
aknysh 456b0c2
fix: address CodeRabbit review comments
aknysh 30de6a0
fix tests
aknysh d24ce5f
fix tests, address comments
aknysh 90b465e
fix tests
aknysh e0621e3
fix MacOS CI tests
aknysh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| - Add a tool with version | ||
| ``` | ||
| $ atmos toolchain add <tool-name> <version> | ||
| ``` | ||
|
|
||
| - Use a custom tool versions file | ||
| ``` | ||
| $ atmos toolchain add --file <path/to/.tool-versions> <tool-name> <version> | ||
| ``` | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| - Get the aliases configured | ||
| ``` | ||
| $ atmos toolchain aliases | ||
| ``` |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| - Delete everything from toolchain | ||
|
|
||
| ``` | ||
| $ atmos toolchain clean | ||
| ``` |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.