Initial commit: AI Shell v0.1.0

- AI-powered shell command generator using DeepSeek V3
- Support for natural language to shell command conversion
- Secure configuration management with .env files
- Package structure with uv tool installation support
- Chinese and English language support
- Configuration validation and error handling
This commit is contained in:
2025-07-12 22:06:15 +08:00
commit 644071850a
21 changed files with 3252 additions and 0 deletions

14
ai_shell/__init__.py Normal file
View File

@ -0,0 +1,14 @@
"""
AI Shell - AI-powered shell command generator using DeepSeek V3
A command-line tool that generates shell commands from natural language descriptions.
"""
__version__ = "0.1.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"]