From 6fa1e3832098ae7a4b89ce12231b5048cdae76e6 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 12:41:41 +0000 Subject: [PATCH] Add shellgen core modules: main, config, history --- app/shellgen/__init__.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 app/shellgen/__init__.py diff --git a/app/shellgen/__init__.py b/app/shellgen/__init__.py new file mode 100644 index 0000000..5f36e59 --- /dev/null +++ b/app/shellgen/__init__.py @@ -0,0 +1,12 @@ +"""ShellGen - Shell Command Generator CLI + +A CLI tool that converts natural language descriptions into shell commands +using local LLMs (Ollama, Llama.cpp). +""" + +__version__ = "0.1.0" +__author__ = "ShellGen Contributors" + +from .main import main + +__all__ = ["main", "__version__"]