CLI: Update hypeman SDK to 5fc15d8 and add vz hypervisor support#37
Merged
sjmiller609 merged 5 commits intomainfrom Feb 12, 2026
Merged
CLI: Update hypeman SDK to 5fc15d8 and add vz hypervisor support#37sjmiller609 merged 5 commits intomainfrom
sjmiller609 merged 5 commits intomainfrom
Conversation
Update hypeman-go SDK and add CLI coverage for missing SDK methods: New commands: - `hypeman image list` for client.Images.List() - `hypeman image get` for client.Images.Get() - `hypeman image delete` for client.Images.Delete() - `hypeman volume create` for client.Volumes.New() - `hypeman volume list` for client.Volumes.List() - `hypeman volume get` for client.Volumes.Get() - `hypeman volume delete` for client.Volumes.Delete() - `hypeman volume attach` for client.Instances.Volumes.Attach() - `hypeman volume detach` for client.Instances.Volumes.Detach() - `hypeman ingress get` for client.Ingresses.Get() - `hypeman build list` for client.Builds.List() - `hypeman build get` for client.Builds.Get() - `hypeman build cancel` for client.Builds.Cancel() New flags: - `--skip-guest-agent` on `hypeman run` for InstanceNewParams.SkipGuestAgent - `--skip-kernel-headers` on `hypeman run` for InstanceNewParams.SkipKernelHeaders Co-authored-by: Cursor <cursoragent@cursor.com>
- Updated hypeman-go to b99ed488ace35cbd4f84d1bec1f180adf3b7367f - Added --volume/-v flag on `hypeman run` for InstanceNewParams.Volumes - Added --base-image-digest, --cache-scope, --global-cache-key, --is-admin-build, --secrets flags on `hypeman build` for BuildNewParams Co-authored-by: Cursor <cursoragent@cursor.com>
- Updated hypeman-go to v0.9.8 (5fc15d8048158e22e2a14cf3deb093d331224f7d) - Added "vz" (Virtualization.framework) hypervisor option to `hypeman run --hypervisor` - Added explicit "vz" case to formatHypervisor in `hypeman ps` output Co-authored-by: Cursor <cursoragent@cursor.com>
sjmiller609
approved these changes
Feb 12, 2026
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.
This PR updates the Hypeman Go SDK to 5fc15d8048158e22e2a14cf3deb093d331224f7d and adds CLI commands/flags for new SDK methods.
SDK Update
Coverage Analysis
This PR was generated by performing a full enumeration of SDK methods and CLI commands.
New Flags
--hypervisor vzonhypeman runforInstanceNewParamsHypervisor.Vz(Virtualization.framework support)vzdisplay inhypeman pshypervisor columnTriggered by: kernel/hypeman-go@5fc15d8
Reviewer: @stainless-app[bot]
Note
Medium Risk
Adds new user-input parsing (
--volume) and wires new build-time parameters (including secrets) into API calls, which could cause behavioral changes or misconfiguration if incorrectly formatted.Overview
Updates the dependency on
github.com/kernel/hypeman-gotov0.9.8.Extends
hypeman buildwith new flags that pass through to the SDK (--base-image-digest,--cache-scope,--global-cache-key,--is-admin-build,--secrets) to support reproducible builds, cache scoping, and secret injection.Extends
hypeman runto accept--volume/-vspecs (with parsing forroandoverlay=SIZE) and addsvzas a supported hypervisor option, including display support inhypeman ps.Written by Cursor Bugbot for commit f566b30. This will update automatically on new commits. Configure here.