## Summary - Extract PHP/Laravel commands to `core/php` repo (42 files, standalone module) - Extract CI/release + SDK commands to `core/ci` repo (10 files) - Remove `internal/variants/` build tag system entirely - Move all 30 remaining command packages from `internal/cmd/` to top-level `cmd/` - Rewrite `main.go` with direct imports — no more variant selection - PHP and CI are now optional via commented import lines in main.go Co-authored-by: Claude <developers@lethean.io> Reviewed-on: #2 Co-authored-by: Charon <charon@lthn.ai> Co-committed-by: Charon <charon@lthn.ai>
43 lines
957 B
Go
43 lines
957 B
Go
// Package vm provides LinuxKit VM management commands.
|
|
package vm
|
|
|
|
import (
|
|
"forge.lthn.ai/core/go/pkg/cli"
|
|
"forge.lthn.ai/core/go/pkg/i18n"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
cli.RegisterCommands(AddVMCommands)
|
|
}
|
|
|
|
// Style aliases from shared
|
|
var (
|
|
repoNameStyle = cli.RepoStyle
|
|
successStyle = cli.SuccessStyle
|
|
errorStyle = cli.ErrorStyle
|
|
dimStyle = cli.DimStyle
|
|
)
|
|
|
|
// VM-specific styles
|
|
var (
|
|
varStyle = cli.NewStyle().Foreground(cli.ColourAmber500)
|
|
defaultStyle = cli.NewStyle().Foreground(cli.ColourGray500).Italic()
|
|
)
|
|
|
|
// AddVMCommands adds container-related commands under 'vm' to the CLI.
|
|
func AddVMCommands(root *cobra.Command) {
|
|
vmCmd := &cobra.Command{
|
|
Use: "vm",
|
|
Short: i18n.T("cmd.vm.short"),
|
|
Long: i18n.T("cmd.vm.long"),
|
|
}
|
|
|
|
root.AddCommand(vmCmd)
|
|
addVMRunCommand(vmCmd)
|
|
addVMPsCommand(vmCmd)
|
|
addVMStopCommand(vmCmd)
|
|
addVMLogsCommand(vmCmd)
|
|
addVMExecCommand(vmCmd)
|
|
addVMTemplatesCommand(vmCmd)
|
|
}
|