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

Function newTaskReviewCommand

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

Source from the content-addressed store, hash-verified

967}
968
969func newTaskReviewCommand(deps commandDeps) *cobra.Command {
970 cmd := &cobra.Command{
971 Use: taskReviewKey,
972 Short: "Manage task-run reviews",
973 RunE: func(cmd *cobra.Command, _ []string) error {
974 return cmd.Help()
975 },
976 }
977 cmd.AddCommand(newTaskReviewRequestCommand(deps))
978 cmd.AddCommand(newTaskReviewListCommand(deps))
979 cmd.AddCommand(newTaskReviewShowCommand(deps))
980 cmd.AddCommand(newTaskReviewSubmitCommand(deps))
981 return cmd
982}
983
984func newTaskReviewRequestCommand(deps commandDeps) *cobra.Command {
985 var (

Callers 1

newTaskCommandFunction · 0.85

Calls 4

newTaskReviewListCommandFunction · 0.85
newTaskReviewShowCommandFunction · 0.85

Tested by

no test coverage detected