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

Function newTaskProfileCommand

internal/cli/task.go:657–669  ·  view source on GitHub ↗
(deps commandDeps)

Source from the content-addressed store, hash-verified

655}
656
657func newTaskProfileCommand(deps commandDeps) *cobra.Command {
658 cmd := &cobra.Command{
659 Use: taskProfileKey,
660 Short: "Manage task execution profiles",
661 RunE: func(cmd *cobra.Command, _ []string) error {
662 return cmd.Help()
663 },
664 }
665 cmd.AddCommand(newTaskProfileInspectCommand(deps))
666 cmd.AddCommand(newTaskProfileUpdateCommand(deps))
667 cmd.AddCommand(newTaskProfileDeleteCommand(deps))
668 return cmd
669}
670
671func newTaskProfileInspectCommand(deps commandDeps) *cobra.Command {
672 return &cobra.Command{

Callers 1

newTaskCommandFunction · 0.85

Calls 3

Tested by

no test coverage detected