gitextract_8u893jm8/ ├── .coveragerc ├── .git-blame-ignore-revs ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ ├── codex-review.yml │ ├── lint.yml │ ├── publish.yml │ └── typecheck.yml ├── .gitignore ├── AUTHORS.rst ├── CONTRIBUTING.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── SPONSORS.rst ├── changelog.md ├── doc/ │ ├── key_bindings.rst │ └── llm.md ├── mycli/ │ ├── AUTHORS │ ├── SPONSORS │ ├── TIPS │ ├── __init__.py │ ├── clibuffer.py │ ├── clistyle.py │ ├── clitoolbar.py │ ├── compat.py │ ├── completion_refresher.py │ ├── config.py │ ├── constants.py │ ├── key_bindings.py │ ├── lexer.py │ ├── magic.py │ ├── main.py │ ├── myclirc │ ├── packages/ │ │ ├── __init__.py │ │ ├── checkup.py │ │ ├── completion_engine.py │ │ ├── filepaths.py │ │ ├── hybrid_redirection.py │ │ ├── paramiko_stub/ │ │ │ └── __init__.py │ │ ├── parseutils.py │ │ ├── prompt_utils.py │ │ ├── shortcuts.py │ │ ├── special/ │ │ │ ├── __init__.py │ │ │ ├── dbcommands.py │ │ │ ├── delimitercommand.py │ │ │ ├── favoritequeries.py │ │ │ ├── iocommands.py │ │ │ ├── llm.py │ │ │ ├── main.py │ │ │ └── utils.py │ │ ├── sqlresult.py │ │ ├── string_utils.py │ │ ├── tabular_output/ │ │ │ ├── __init__.py │ │ │ └── sql_format.py │ │ └── toolkit/ │ │ ├── __init__.py │ │ ├── fzf.py │ │ ├── history.py │ │ └── utils.py │ ├── sqlcompleter.py │ └── sqlexecute.py ├── pyproject.toml ├── pytest.ini ├── test/ │ ├── __init__.py │ ├── conftest.py │ ├── features/ │ │ ├── __init__.py │ │ ├── auto_vertical.feature │ │ ├── basic_commands.feature │ │ ├── connection.feature │ │ ├── crud_database.feature │ │ ├── crud_table.feature │ │ ├── db_utils.py │ │ ├── environment.py │ │ ├── fixture_data/ │ │ │ ├── help.txt │ │ │ └── help_commands.txt │ │ ├── fixture_utils.py │ │ ├── iocommands.feature │ │ ├── named_queries.feature │ │ ├── specials.feature │ │ ├── steps/ │ │ │ ├── __init__.py │ │ │ ├── auto_vertical.py │ │ │ ├── basic_commands.py │ │ │ ├── connection.py │ │ │ ├── crud_database.py │ │ │ ├── crud_table.py │ │ │ ├── iocommands.py │ │ │ ├── named_queries.py │ │ │ ├── specials.py │ │ │ ├── utils.py │ │ │ └── wrappers.py │ │ └── wrappager.py │ ├── myclirc │ ├── mylogin.cnf │ ├── test.txt │ ├── test_clistyle.py │ ├── test_clitoolbar.py │ ├── test_completion_engine.py │ ├── test_completion_refresher.py │ ├── test_config.py │ ├── test_dbspecial.py │ ├── test_llm_special.py │ ├── test_main.py │ ├── test_naive_completion.py │ ├── test_parseutils.py │ ├── test_plan.wiki │ ├── test_prompt_utils.py │ ├── test_smart_completion_public_schema_only.py │ ├── test_special_iocommands.py │ ├── test_sqlexecute.py │ ├── test_tabular_output.py │ └── utils.py └── tox.ini