""" AI Shell - AI-powered shell command generator using DeepSeek V3 A command-line tool that generates shell commands from natural language descriptions. """ __version__ = "0.2.0" __author__ = "AI Shell Team" __email__ = "ai-shell@example.com" __description__ = "AI-powered shell command generator using DeepSeek V3" from .main import main __all__ = ["main"]