---------------------------------------------------------------------- This is the API documentation for the gdtest_cli_nested library. ---------------------------------------------------------------------- ## Classes Core classes Engine(workers: int = 4) A task execution engine. Parameters ---------- workers Number of worker threads. ## Functions Public functions run_task(name: str, dry_run: bool = False) -> str Run a task by name. Parameters ---------- name The task name. dry_run If True, simulate without executing. Returns ------- str Task result message. ---------------------------------------------------------------------- This is the CLI documentation for the package. ---------------------------------------------------------------------- ## CLI: gdtest-nested ``` Usage: gdtest-nested [OPTIONS] COMMAND [ARGS]... gdtest-cli-nested: A nested command-line tool. Options: --version Show the version and exit. --help Show this message and exit. Commands: config Manage configuration. task Manage tasks. ``` ### gdtest-nested task ``` Usage: gdtest-nested task [OPTIONS] COMMAND [ARGS]... Manage tasks. Options: --help Show this message and exit. Commands: list List all available tasks. run Run a specific task. ``` ### gdtest-nested task run ``` Usage: gdtest-nested task run [OPTIONS] NAME Run a specific task. Options: --dry-run Simulate without executing. --help Show this message and exit. ``` ### gdtest-nested task list ``` Usage: gdtest-nested task list [OPTIONS] List all available tasks. Options: --help Show this message and exit. ``` ### gdtest-nested config ``` Usage: gdtest-nested config [OPTIONS] COMMAND [ARGS]... Manage configuration. Options: --help Show this message and exit. Commands: get Get a configuration value. set Set a configuration value. ``` ### gdtest-nested config get ``` Usage: gdtest-nested config get [OPTIONS] KEY Get a configuration value. Options: --help Show this message and exit. ``` ### gdtest-nested config set ``` Usage: gdtest-nested config set [OPTIONS] KEY VALUE Set a configuration value. Options: --help Show this message and exit. ```