chore(cli): fix url for cli after refactor#140
Merged
Adamkadaban merged 1 commit intomainfrom Jul 25, 2025
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR updates import paths throughout the CLI codebase to reflect a repository restructure where the CLI has been moved from a standalone repository to a subdirectory within the main OpenLabs repository.
- Updates Go module path from
github.com/OpenLabsHQ/CLItogithub.com/OpenLabsHQ/OpenLabs/cli - Updates all internal import statements to use the new module path
- Updates documentation and build configuration to reference the new repository location
Reviewed Changes
Copilot reviewed 30 out of 30 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| cli/go.mod | Updates module declaration to new path |
| cli/main.go | Updates import path for cmd package |
| cli/internal/progress/jobs.go | Updates import path for client package |
| cli/internal/client/client.go | Updates import paths for config and logger packages |
| cli/internal/client/auth.go | Updates import path for logger package |
| cli/cmd/root.go | Updates multiple import paths for command and internal packages |
| cli/cmd/ranges/*.go | Updates import paths for internal packages across range commands |
| cli/cmd/config/*.go | Updates import paths for internal packages across config commands |
| cli/cmd/blueprints/*.go | Updates import paths for internal packages across blueprint commands |
| cli/cmd/auth/*.go | Updates import paths for internal packages across auth commands |
| cli/README.md | Updates GitHub releases URL to new repository |
| cli/Makefile | Updates LDFLAGS to reference new module path for version variables |
Comments suppressed due to low confidence (1)
cli/go.mod:3
- Go version 1.24 does not exist. The latest stable Go version as of my knowledge cutoff is 1.22. Please verify and update to a valid Go version.
go 1.24
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.
Checklist
Description
Fix CLI path in golang files since we've moved the url