Split all cmd/* packages for maintainability, following the pattern established in cmd/php. Each package now has: - Main file with styles (using cmd/shared) and Add*Commands function - Separate files for logical command groupings Packages refactored: - cmd/dev: 13 files (was 2779 lines in one file) - cmd/build: 5 files (was 913 lines) - cmd/setup: 6 files (was 961 lines) - cmd/go: 5 files (was 655 lines) - cmd/pkg: 5 files (was 634 lines) - cmd/vm: 4 files (was 717 lines) - cmd/ai: 5 files (was 800 lines) - cmd/docs: 5 files (was 379 lines) - cmd/doctor: 5 files (was 301 lines) - cmd/test: 3 files (was 429 lines) - cmd/ci: 5 files (was 272 lines) All packages now import shared styles from cmd/shared instead of redefining them locally. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
44 lines
1.3 KiB
Go
44 lines
1.3 KiB
Go
// Package vm provides LinuxKit VM management commands.
|
|
package vm
|
|
|
|
import (
|
|
"github.com/charmbracelet/lipgloss"
|
|
"github.com/host-uk/core/cmd/shared"
|
|
"github.com/leaanthony/clir"
|
|
)
|
|
|
|
// Style aliases from shared
|
|
var (
|
|
repoNameStyle = shared.RepoNameStyle
|
|
successStyle = shared.SuccessStyle
|
|
errorStyle = shared.ErrorStyle
|
|
dimStyle = shared.DimStyle
|
|
)
|
|
|
|
// VM-specific styles
|
|
var (
|
|
varStyle = lipgloss.NewStyle().Foreground(lipgloss.Color("#f59e0b"))
|
|
defaultStyle = lipgloss.NewStyle().Foreground(lipgloss.Color("#6b7280")).Italic(true)
|
|
)
|
|
|
|
// AddVMCommands adds container-related commands under 'vm' to the CLI.
|
|
func AddVMCommands(parent *clir.Cli) {
|
|
vmCmd := parent.NewSubCommand("vm", "LinuxKit VM management")
|
|
vmCmd.LongDescription("Manage LinuxKit virtual machines.\n\n" +
|
|
"LinuxKit VMs are lightweight, immutable VMs built from YAML templates.\n" +
|
|
"They run using qemu or hyperkit depending on your system.\n\n" +
|
|
"Commands:\n" +
|
|
" run Run a VM from image or template\n" +
|
|
" ps List running VMs\n" +
|
|
" stop Stop a running VM\n" +
|
|
" logs View VM logs\n" +
|
|
" exec Execute command in VM\n" +
|
|
" templates Manage LinuxKit templates")
|
|
|
|
addVMRunCommand(vmCmd)
|
|
addVMPsCommand(vmCmd)
|
|
addVMStopCommand(vmCmd)
|
|
addVMLogsCommand(vmCmd)
|
|
addVMExecCommand(vmCmd)
|
|
addVMTemplatesCommand(vmCmd)
|
|
}
|