Add comprehensive package-level documentation to all CLI command packages: - cmd/core.go, core_ci.go, core_dev.go: Main CLI entry points - cmd/shared: Lipgloss styles and utility functions - cmd/ai: AI agent task management and Claude integration - cmd/dev: Multi-repo git workflows and GitHub integration - cmd/build, cmd/ci: Build and release automation - cmd/sdk: OpenAPI validation and compatibility - cmd/go: Go development tools with enhanced output - cmd/php: Laravel development, build, and deployment - cmd/docs: Documentation sync across repos - cmd/doctor: Environment validation - cmd/test: Test runner with coverage - cmd/pkg: GitHub package management - cmd/setup: Workspace initialisation - cmd/vm: LinuxKit VM management Each docblock now describes: - Package purpose and commands - Key features and configuration - Package naming notes where relevant (gocmd, testcmd) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
20 lines
652 B
Go
20 lines
652 B
Go
// Package vm provides LinuxKit virtual machine management commands.
|
|
//
|
|
// Commands:
|
|
// - run: Run a VM from image (.iso, .qcow2, .vmdk, .raw) or template
|
|
// - ps: List running VMs
|
|
// - stop: Stop a running VM
|
|
// - logs: View VM logs
|
|
// - exec: Execute command in VM via SSH
|
|
// - templates: Manage LinuxKit templates (list, build)
|
|
//
|
|
// Uses qemu or hyperkit depending on system availability.
|
|
// Templates are built from YAML definitions and can include variables.
|
|
package vm
|
|
|
|
import "github.com/leaanthony/clir"
|
|
|
|
// AddCommands registers the 'vm' command and all subcommands.
|
|
func AddCommands(app *clir.Cli) {
|
|
AddContainerCommands(app)
|
|
}
|