fix: add missing help descriptions on some cmds

This commit is contained in:
2026-03-24 18:27:55 +00:00
parent ecd11767cd
commit 8a573681be
5 changed files with 40 additions and 8 deletions
+3 -2
View File
@@ -12,8 +12,9 @@ import (
func newRecordCommand() *cobra.Command {
return &cobra.Command{
Use: "record <path>",
Args: cobra.ExactArgs(1),
Use: "record <path>",
Short: "Record a new CLI scenario",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
path := filepath.Clean(args[0])
createdPath, err := mire.Record(path)