feat: add vers repo command for managing repositories and repo tags#173
Merged
AlephNotation merged 4 commits intomainfrom Apr 6, 2026
Merged
feat: add vers repo command for managing repositories and repo tags#173AlephNotation merged 4 commits intomainfrom
vers repo command for managing repositories and repo tags#173AlephNotation merged 4 commits intomainfrom
Conversation
Adds 'vers repo' with subcommands: - repo create/list/get/delete - manage repositories - repo visibility - set public/private - repo fork - fork a public repository - repo tag create/list/get/update/delete - manage tags within repos Uses Client.Execute directly since the SDK doesn't have repo endpoints yet. All DTOs are defined locally until SDK support lands. Tested against production API - all endpoints working.
Replace hand-rolled DTOs and Client.Execute calls with the generated SDK types (RepositoryService, vers.RepositoryInfo, vers.RepoTagInfo, etc). Net -55 lines — handlers are simpler and type-safe now.
Tests the full CRUD lifecycle: create repo → list → get → create VM → commit → create tag → list tags → get tag → update tag → delete tag → delete repo Cleans up all resources (repo + VM) via t.Cleanup regardless of test outcome. Uses unique repo names to avoid collisions.
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
Adds the
vers repocommand with full CRUD for repositories and their tags.Commands
Implementation
Client.Executedirectly since the Go SDK (vers-sdk-go) doesn't have repository endpoints yet. DTOs are defined locally in the CLI until SDK support lands.vers tagstructure).Testing
Smoke tested all endpoints against production:
repo create/list/get/delete✅repo tag create/list/get✅--format jsonand-qoutput modes ✅