@@ -18,7 +18,7 @@ $ npm install -g codify
1818$ codify COMMAND
1919running command...
2020$ codify (--version)
21- codify/0.0.2 darwin-arm64 node-v20.15.0
21+ codify/0.0.4 darwin-arm64 node-v20.15.0
2222$ codify --help [COMMAND]
2323USAGE
2424 $ codify COMMAND
2828# Commands
2929<!-- commands -->
3030* [ ` codify apply ` ] ( #codify-apply )
31+ * [ ` codify autocomplete [SHELL] ` ] ( #codify-autocomplete-shell )
3132* [ ` codify help [COMMAND] ` ] ( #codify-help-command )
3233* [ ` codify plan ` ] ( #codify-plan )
3334* [ ` codify plugins ` ] ( #codify-plugins )
4142* [ ` codify plugins unlink [PLUGIN] ` ] ( #codify-plugins-unlink-plugin )
4243* [ ` codify plugins update ` ] ( #codify-plugins-update )
4344* [ ` codify uninstall ` ] ( #codify-uninstall )
45+ * [ ` codify update [CHANNEL] ` ] ( #codify-update-channel )
4446
4547## ` codify apply `
4648
@@ -68,6 +70,37 @@ EXAMPLES
6870 $ codify apply
6971```
7072
73+ ## ` codify autocomplete [SHELL] `
74+
75+ Display autocomplete installation instructions.
76+
77+ ```
78+ USAGE
79+ $ codify autocomplete [SHELL] [-r]
80+
81+ ARGUMENTS
82+ SHELL (zsh|bash|powershell) Shell type
83+
84+ FLAGS
85+ -r, --refresh-cache Refresh cache (ignores displaying instructions)
86+
87+ DESCRIPTION
88+ Display autocomplete installation instructions.
89+
90+ EXAMPLES
91+ $ codify autocomplete
92+
93+ $ codify autocomplete bash
94+
95+ $ codify autocomplete zsh
96+
97+ $ codify autocomplete powershell
98+
99+ $ codify autocomplete --refresh-cache
100+ ```
101+
102+ _ See code: [ @oclif/plugin-autocomplete ] ( https://github.com/oclif/plugin-autocomplete/blob/v3.2.4/src/commands/autocomplete/index.ts ) _
103+
71104## ` codify help [COMMAND] `
72105
73106Display help for codify.
@@ -426,4 +459,41 @@ DESCRIPTION
426459EXAMPLES
427460 $ codify uninstall
428461```
462+
463+ ## ` codify update [CHANNEL] `
464+
465+ update the codify CLI
466+
467+ ```
468+ USAGE
469+ $ codify update [CHANNEL] [--force | | [-a | -v <value> | -i]]
470+
471+ FLAGS
472+ -a, --available See available versions.
473+ -i, --interactive Interactively select version to install. This is ignored if a channel is provided.
474+ -v, --version=<value> Install a specific version.
475+ --force Force a re-download of the requested version.
476+
477+ DESCRIPTION
478+ update the codify CLI
479+
480+ EXAMPLES
481+ Update to the stable channel:
482+
483+ $ codify update stable
484+
485+ Update to a specific version:
486+
487+ $ codify update --version 1.0.0
488+
489+ Interactively select version:
490+
491+ $ codify update --interactive
492+
493+ See available versions:
494+
495+ $ codify update --available
496+ ```
497+
498+ _ See code: [ @oclif/plugin-update ] ( https://github.com/oclif/plugin-update/blob/v4.5.9/src/commands/update.ts ) _
429499<!-- commandsstop -->
0 commit comments