cli/cmd/core/pkgcmd/cmd_pkg.go
Virgil fcadba08b1
Some checks are pending
Security Scan / security (push) Waiting to run
feat(pkg): support install refs in shorthand
Co-Authored-By: Virgil <virgil@lethean.io>
2026-04-02 03:47:53 +00:00

36 lines
912 B
Go

// Package pkgcmd provides package management commands for core-* repos.
package pkgcmd
import (
"forge.lthn.ai/core/cli/pkg/cli"
"forge.lthn.ai/core/go-i18n"
"github.com/spf13/cobra"
)
// Style and utility aliases
var (
repoNameStyle = cli.RepoStyle
successStyle = cli.SuccessStyle
errorStyle = cli.ErrorStyle
dimStyle = cli.DimStyle
ghAuthenticated = cli.GhAuthenticated
gitClone = cli.GitClone
gitCloneRef = clonePackageAtRef
)
// AddPkgCommands adds the 'pkg' command and subcommands for package management.
func AddPkgCommands(root *cobra.Command) {
pkgCmd := &cobra.Command{
Use: "pkg",
Short: i18n.T("cmd.pkg.short"),
Long: i18n.T("cmd.pkg.long"),
}
root.AddCommand(pkgCmd)
addPkgSearchCommand(pkgCmd)
addPkgInstallCommand(pkgCmd)
addPkgListCommand(pkgCmd)
addPkgUpdateCommand(pkgCmd)
addPkgOutdatedCommand(pkgCmd)
addPkgRemoveCommand(pkgCmd)
}