import { Hook } from "@oclif/core"; /** * oclif init hook (registered in package.json under oclif.hooks.init). * Runs on every CLI invocation after loading the manifest, before command execution. * * Converts camelCase arg names to snake_case on config.commands metadata * (e.g., keyName → key_name) so oclif renders UPPER_SNAKE_CASE in USAGE and * ARGUMENTS sections. This covers missing-arg error output and doc generation * (`pnpm generate-doc`), both of which use the base Help class and bypass our * CustomHelp. CustomHelp.formatCommand() applies the same idempotent transform * for the --help path. */ declare const hook: Hook<"init">; export default hook;