{"id":"cd3cba22dff26443","repo":"docker/cli","slug":"unknown-help-topic-v","errorCode":null,"errorMessage":"unknown help topic: %v","messagePattern":"unknown help topic: (.+?)","errorType":"exception","errorClass":null,"httpStatus":null,"severity":"error","filePath":"cli/cobra.go","lineNumber":177,"sourceCode":"\n\treturn cmd, flags.Args(), nil\n}\n\n// Initialize finalises global option parsing and initializes the docker client.\nfunc (tcmd *TopLevelCommand) Initialize(ops ...command.CLIOption) error {\n\ttcmd.opts.SetDefaultOptions(tcmd.flags)\n\treturn tcmd.dockerCli.Initialize(tcmd.opts, ops...)\n}\n\nvar helpCommand = &cobra.Command{\n\tUse:               \"help [command]\",\n\tShort:             \"Help about the command\",\n\tPersistentPreRun:  func(cmd *cobra.Command, args []string) {},\n\tPersistentPostRun: func(cmd *cobra.Command, args []string) {},\n\tRunE: func(c *cobra.Command, args []string) error {\n\t\tcmd, args, e := c.Root().Find(args)\n\t\tif cmd == nil || e != nil || len(args) > 0 {\n\t\t\treturn fmt.Errorf(\"unknown help topic: %v\", strings.Join(args, \" \"))\n\t\t}\n\t\thelpFunc := cmd.HelpFunc()\n\t\thelpFunc(cmd, args)\n\t\treturn nil\n\t},\n}\n\nfunc isExperimental(cmd *cobra.Command) bool {\n\tif _, ok := cmd.Annotations[\"experimentalCLI\"]; ok {\n\t\treturn true\n\t}\n\tvar experimental bool\n\tcmd.VisitParents(func(cmd *cobra.Command) {\n\t\tif _, ok := cmd.Annotations[\"experimentalCLI\"]; ok {\n\t\t\texperimental = true\n\t\t}\n\t})\n\treturn experimental","sourceCodeStart":159,"sourceCodeEnd":195,"githubUrl":"https://github.com/docker/cli/blob/e9452d6e785f6e365712b9d71bd7517591773c86/cli/cobra.go#L159-L195","documentation":"Error \"unknown help topic: %v\" thrown in docker/cli.","triggerScenarios":"Thrown at cli/cobra.go:177 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"analyzedSha":"e9452d6e785f6e365712b9d71bd7517591773c86","analyzedAt":"2026-08-01T07:09:22.474Z","schemaVersion":2}