MCPcopy Create free account
hub / github.com/compozy/agh / newBundleCommand

Function newBundleCommand

internal/cli/bundle.go:44–58  ·  view source on GitHub ↗
(deps commandDeps)

Source from the content-addressed store, hash-verified

42}
43
44func newBundleCommand(deps commandDeps) *cobra.Command {
45 cmd := &cobra.Command{
46 Use: bundleBundleKey,
47 Short: "Manage extension bundle presets",
48 }
49 cmd.AddCommand(newBundleCatalogCommand(deps))
50 cmd.AddCommand(newBundlePreviewCommand(deps))
51 cmd.AddCommand(newBundleActivateCommand(deps))
52 cmd.AddCommand(newBundleListCommand(deps))
53 cmd.AddCommand(newBundleGetCommand(deps))
54 cmd.AddCommand(newBundleUpdateCommand(deps))
55 cmd.AddCommand(newBundleDeactivateCommand(deps))
56 cmd.AddCommand(newBundleNetworkSettingsCommand(deps))
57 return cmd
58}
59
60func newBundleCatalogCommand(deps commandDeps) *cobra.Command {
61 return &cobra.Command{

Callers 1

newRootCommandFunction · 0.85

Calls 8

newBundleCatalogCommandFunction · 0.85
newBundlePreviewCommandFunction · 0.85
newBundleActivateCommandFunction · 0.85
newBundleListCommandFunction · 0.85
newBundleGetCommandFunction · 0.85
newBundleUpdateCommandFunction · 0.85

Tested by

no test coverage detected