# hestia-cli-docs Provides pre-generated Hestia CLI documentation, as well as tools to generate it from annotation comments and keep it in a good shape. ## Documentation **Ready-to-use documentation for Hestia CLI commands is available [online](https://hestiacp.com/docs/reference/cli.html)**. If you are here to browse it, you don't need any of the below. ## Install Supports Node.js 14 or higher. ``` git clone https://github.com/hestiacp/hestia-cli-docs cd hestia-cli-docs npm i ``` ## Use ### Generate command annotations Auto-format comments in Hestia commands, label ones that are unique to Hestia, merge examples and categories from Hestia older documentation. This may be destructive for a branch that has been already edited: ``` npm run format-cmds -- --legacy path/to/local/hestiacp/bin https://github.com/hestiacp/hestiacp branch-that-contains-unformatted-comments ``` ### Update command annotations Auto-format comments in Hestia command: ``` npm run format-cmds -- path/to/local/hestiacp/bin https://github.com/hestiacp/hestiacp branch-that-contains-formatted-comments ``` ### Check command annotations Check comments in Hestia commands for potential problems and output hestia-cmds.json cache that can be used by other commands or externally processed: ``` npm run check-cmds -- --output https://github.com/hestiacp/hestiacp branch-that-contains-unformatted-comments ``` ### Generate CLI documentation Generate one-page documentation for Hestia CLI commands, use hestia-cmds.json cache if available ``` npm run generate-docs -- https://github.com/hestiacp/hestiacp branch-that-contains-formatted-comments ``` ## Format The toolset detects inconsistencies in command annotation and keeps the format strict. Options closely follow the format that is used in script body. This allows to simply and reliably parse annotations and use them to automatically generate the documentation: - The annotation goes immediately after shebang - No unnecessary duplicate, leading and trailing whitespaces unless specified, all lines start with `#` and a space, no space in empty line - A comment after the description shouldn't be a part of the annotation - PHP scripts follow the same format but have mandatory `