nighthawk 0.1.0

AI terminal autocomplete — zero config, zero login, zero telemetry
Documentation
{
  "name": "git-cliff",
  "description": "A highly customizable changelog generator ⛰️",
  "options": [
    {
      "names": [
        "--verbose",
        "-v"
      ],
      "description": "Increases the logging verbosity"
    },
    {
      "names": [
        "--init",
        "-i"
      ],
      "description": "Writes the default configuration file to cliff.toml"
    },
    {
      "names": [
        "--latest",
        "-l"
      ],
      "description": "Processes the commits starting from the latest tag"
    },
    {
      "names": [
        "--current"
      ],
      "description": "Processes the commits that belong to the current tag"
    },
    {
      "names": [
        "--unreleased",
        "-u"
      ],
      "description": "Processes the commits that do not belong to a tag"
    },
    {
      "names": [
        "--date-order"
      ],
      "description": "Sorts the tags chronologically"
    },
    {
      "names": [
        "--context"
      ],
      "description": "Prints changelog context as JSON"
    },
    {
      "names": [
        "--help",
        "-h"
      ],
      "description": "Prints help information"
    },
    {
      "names": [
        "--version",
        "-V"
      ],
      "description": "Prints version information"
    },
    {
      "names": [
        "--config",
        "-c"
      ],
      "description": "Sets the configuration file",
      "takes_arg": true,
      "arg": {
        "name": "path",
        "template": "filepaths"
      }
    },
    {
      "names": [
        "--workdir",
        "-w"
      ],
      "description": "Sets the working directory",
      "takes_arg": true,
      "arg": {
        "name": "path",
        "template": "folders"
      }
    },
    {
      "names": [
        "--repository",
        "-r"
      ],
      "description": "Sets the git repository",
      "takes_arg": true,
      "arg": {
        "name": "path",
        "template": "folders"
      }
    },
    {
      "names": [
        "--include-path"
      ],
      "description": "Sets the path to include related commits",
      "takes_arg": true,
      "arg": {
        "name": "pattern",
        "is_variadic": true
      }
    },
    {
      "names": [
        "--exclude-path"
      ],
      "description": "Sets the path to exclude related commits",
      "takes_arg": true,
      "arg": {
        "name": "pattern",
        "is_variadic": true
      }
    },
    {
      "names": [
        "--with-commit"
      ],
      "description": "Sets custom commit messages to include in the changelog",
      "takes_arg": true,
      "arg": {
        "name": "msg",
        "is_variadic": true
      }
    },
    {
      "names": [
        "--prepend",
        "-p"
      ],
      "description": "Prepends entries to the given changelog file",
      "takes_arg": true,
      "arg": {
        "name": "path",
        "template": "filepaths"
      }
    },
    {
      "names": [
        "--output",
        "-o"
      ],
      "description": "Writes output to the given file",
      "takes_arg": true,
      "arg": {
        "name": "path",
        "template": "filepaths"
      }
    },
    {
      "names": [
        "--tag",
        "-t"
      ],
      "description": "Sets the tag for the latest version",
      "takes_arg": true,
      "arg": {
        "name": "tag"
      }
    },
    {
      "names": [
        "--body",
        "-b"
      ],
      "description": "Sets the template for the changelog body",
      "takes_arg": true,
      "arg": {
        "name": "template"
      }
    },
    {
      "names": [
        "--strip",
        "-s"
      ],
      "description": "Strips the given parts from the changelog",
      "takes_arg": true,
      "arg": {
        "name": "part",
        "suggestions": [
          "header",
          "footer",
          "all"
        ]
      }
    },
    {
      "names": [
        "--sort"
      ],
      "description": "Sets sorting of the commits inside sections",
      "takes_arg": true,
      "arg": {
        "name": "sort",
        "suggestions": [
          "oldest",
          "newest"
        ]
      }
    }
  ],
  "args": [
    {
      "name": "range",
      "description": "Sets the commit range to process"
    }
  ]
}