# Smart Terminal 🚀 v2.0.2
AI-powered terminal assistant that converts natural language to shell commands. Works seamlessly on Windows, macOS, and Linux with enhanced features and capabilities.
## 🆕 **v2.0.2 - Windows Compatibility Fix**
- **Fixed**: Windows shell detection now properly identifies Command Prompt vs PowerShell
- **Added**: Automatic fallback when shell commands fail (PowerShell → CMD)
- **Added**: Manual shell override with `--shell cmd` or `--shell powershell`
- **Fixed**: No more "'New-Item' is not recognized" errors in Command Prompt
## ✨ Enhanced Features
### **Core Features**
- **Natural Language Processing**: Just type what you want to do in plain English
- **Cross-Platform**: Works on Windows, macOS, and Linux
- **Smart Learning**: Learns from your command history to provide better suggestions
- **Safe Execution**: Prevents dangerous commands from running
- **Interactive Mode**: Chat with your terminal naturally
- **AI-Powered Suggestions**: Get intelligent command recommendations
### **🆕 New in v2.0**
- **Git Integration**: Full git workflow support with natural language
- **System Monitoring**: Check processes, memory, disk usage, and more
- **Network Operations**: Ping, download, and network diagnostics
- **Text Processing**: Advanced text manipulation and search
- **Command Bookmarks**: Save and reuse frequently used commands
- **Command History**: Track and replay previous commands
- **Workflow Suggestions**: Get next-step recommendations
- **Enhanced Safety**: Multiple safety levels and confirmations
- **Plugin System**: Extensible architecture for custom commands
- **Smart Completions**: Context-aware command completions
## 🚀 Quick Start
### Installation
```bash
# Install from PyPI (recommended)
pip install smart-terminal-ai
# Or install from source
git clone https://github.com/yourusername/smart-terminal.git
cd smart-terminal
pip install -e .
```
### Usage
```bash
# Interactive mode
smart-terminal
# Direct command
smart-terminal "make a folder called my_project"
# Short alias
st "create a backup of my documents"
```
## 📖 Command Examples
### **File Operations**
| What you type | What it executes |
|---------------|------------------|
| "make a folder called random" | `mkdir random` |
| "delete the old backup folder" | `rm -rf backup/` |
| "show all hidden files" | `ls -la` |
| "copy file.txt to documents" | `cp file.txt documents/` |
| "compress my project folder" | `tar -czf project.tar.gz project/` |
### **Git Operations**
| What you type | What it executes |
|---------------|------------------|
| "git init new repository" | `git init` |
| "add all files to git" | `git add .` |
| "commit with message fix bug" | `git commit -m 'fix bug'` |
| "push to main branch" | `git push origin main` |
| "clone repository from url" | `git clone <url>` |
### **System Operations**
| What you type | What it executes |
|---------------|------------------|
| "show running processes" | `ps aux` (Unix) / `Get-Process` (Windows) |
| "check disk usage" | `df -h` (Unix) / `Get-WmiObject Win32_LogicalDisk` (Windows) |
| "show memory usage" | `free -h` (Unix) / `Get-WmiObject Win32_ComputerSystem` (Windows) |
| "system uptime" | `uptime` (Unix) / `Get-Uptime` (Windows) |
### **Network Operations**
| What you type | What it executes |
|---------------|------------------|
| "ping google.com" | `ping -c 4 google.com` |
| "download file from url" | `curl -o file url` |
| "show network ports" | `netstat -tuln` |
| "show ip address" | `ifconfig` / `ipconfig` |
### **Text Processing**
| What you type | What it executes |
|---------------|------------------|
| "edit file.txt" | `nano file.txt` / `notepad file.txt` |
| "search for pattern in files" | `grep -r pattern .` |
| "count lines in file.txt" | `wc -l file.txt` |
| "show first 10 lines of file" | `head -n 10 file` |
## 🖥️ Platform Support
- **Windows**: PowerShell commands with native Windows tools
- **macOS**: Unix commands with native macOS tools
- **Linux**: Unix commands with native Linux tools
### 🪟 **Windows Compatibility**
Smart Terminal automatically detects whether you're using **PowerShell** or **Command Prompt (cmd.exe)** and provides the correct commands for each shell.
#### **Automatic Shell Detection**
- **PowerShell**: Uses `New-Item`, `Remove-Item`, `Get-ChildItem` commands
- **Command Prompt**: Uses `mkdir`, `rmdir`, `dir` commands
#### **Manual Shell Override**
If you need to force a specific shell type:
```cmd
# Force Command Prompt mode
st --shell cmd "make a folder vi"
# Force PowerShell mode
st --shell powershell "make a folder vi"
```
#### **Common Windows Issues**
- **Error: 'New-Item' not recognized**: You're in Command Prompt, use `st --shell cmd`
- **Error: 'mkdir' not recognized**: You're in PowerShell, use `st --shell powershell`
**📖 See [WINDOWS_COMPATIBILITY.md](WINDOWS_COMPATIBILITY.md) for detailed Windows usage guide.**
## 🧠 AI Features
### **Smart Learning**
- Remembers your command patterns and preferences
- Suggests commands based on usage history
- Learns from successful executions
- Adapts to your workflow over time
### **Context-Aware Suggestions**
- **Git Operations**: Complete git workflows and best practices
- **Python Development**: Virtual environments, package management
- **Node.js Workflows**: npm commands and project management
- **Docker Operations**: Container management and deployment
- **System Administration**: Process management, monitoring
- **Network Operations**: Connectivity testing, file downloads
### **Workflow Intelligence**
- Suggests logical next steps after commands
- Provides complete workflow guidance
- Learns common command sequences
- Offers alternatives for failed commands
### **Enhanced Safety Features**
- **Multiple Safety Levels**: Low, Medium, High protection
- **Dangerous Command Detection**: Prevents system damage
- **Confirmation Prompts**: For destructive operations
- **Sandbox Mode**: Test commands without execution
- **Backup Suggestions**: Automatic backup recommendations
## 📦 Requirements
- Python 3.8+
- Rich terminal support
- Git (optional, for git features)
- Internet connection (for AI features and downloads)
## 🔧 Advanced Configuration
Smart Terminal creates a configuration file at `~/.smart_terminal/config.json` with extensive customization options:
### **General Settings**
```json
{
"general": {
"confirm_dangerous_commands": true,
"show_suggestions": true,
"max_suggestions": 5,
"suggest_bookmarks": true,
"command_timeout": 30
}
}
```
### **AI Settings**
```json
{
"ai": {
"enable_learning": true,
"suggestion_threshold": 0.5,
"max_history_size": 1000,
"enable_context_suggestions": true
}
}
```
### **Safety Settings**
```json
{
"safety": {
"check_dangerous_patterns": true,
"require_confirmation_for_deletion": true,
"sandbox_mode": false,
"backup_before_delete": false
}
}
```
## 🚀 Advanced Usage
### **Interactive Mode Commands**
```bash
st
# Then type naturally:
# "help" - Show comprehensive help
# "stats" - View detailed usage statistics
# "config" - Show current configuration
# "history" - View command history
# "bookmark <name> <command>" - Save command
# "clear" - Clear screen
# "version" - Show version information
# "install" - Install shell integration
```
### **Bookmarks and Aliases**
```bash
# Save frequently used commands
bookmark deploy "git add . && git commit -m 'Deploy' && git push"
bookmark backup "tar -czf backup-$(date +%Y%m%d).tar.gz ."
# Use bookmarks
st deploy
st backup
```
### **Command History**
```bash
# View recent commands
history
# Repeat commands from history
!5 # Repeat 5th command from history
```
### **Shell Integration**
Install shell integration to use `st` command directly:
```bash
# In interactive mode, type:
install
# Or manually add to your shell profile
# For zsh/bash: ~/.zshrc or ~/.bashrc
# For PowerShell: PowerShell profile
```
## 🛠️ Development
### **Setup Development Environment**
```bash
git clone https://github.com/yourusername/smart-terminal.git
cd smart-terminal
pip install -e ".[dev]"
```
### **Run Tests**
```bash
pytest
pytest src/smart_terminal/tests/test_enhanced_features.py
```
### **Code Formatting**
```bash
black src/
flake8 src/
```
### **Plugin Development**
Create custom plugins by extending the command mapper and builder:
```python
# Example plugin structure
class CustomPlugin:
def __init__(self):
self.commands = {
"custom_action": self.handle_custom_command
}
def handle_custom_command(self, intent):
return "custom command result"
```
## 📊 Enhanced Statistics
Track your usage with comprehensive analytics:
- **Total Commands Executed**: All-time command count
- **Success Rate**: Percentage of successful executions
- **Most Used Patterns**: Your favorite command types
- **Platform Usage**: Cross-platform usage statistics
- **Session History**: Current session command tracking
- **Learning Progress**: AI improvement metrics
- **Bookmark Usage**: Most used saved commands
## 🎯 Use Cases
### **Developers**
- Git workflow automation
- Project setup and management
- Code deployment processes
- Development environment setup
### **System Administrators**
- System monitoring and diagnostics
- Process management
- Network troubleshooting
- Automated maintenance tasks
### **Data Scientists**
- File processing and manipulation
- Environment management
- Data pipeline operations
- Analysis workflow automation
### **DevOps Engineers**
- Container management
- Deployment automation
- Infrastructure monitoring
- CI/CD pipeline management
## 🤝 Contributing
Contributions are welcome! Please read our [Contributing Guide](CONTRIBUTING.md).
### **Development Roadmap**
- [x] Enhanced NLP with context awareness
- [x] Git integration and workflows
- [x] System monitoring capabilities
- [x] Network operations support
- [x] Command bookmarking system
- [ ] Plugin marketplace
- [ ] Web interface for configuration
- [ ] Team collaboration features
- [ ] Integration with popular IDEs
- [ ] Voice command support
- [ ] Machine learning model improvements
## 📄 License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## 🙏 Acknowledgments
- Built with [Rich](https://rich.readthedocs.io/) for beautiful terminal output
- Powered by [Click](https://click.palletsprojects.com/) for CLI framework
- Enhanced with [GitPython](https://gitpython.readthedocs.io/) for git integration
- System monitoring via [psutil](https://psutil.readthedocs.io/)
- Inspired by modern AI-powered developer tools
## 📞 Support
- **Issues**: [GitHub Issues](https://github.com/yourusername/smart-terminal/issues)
- **Discussions**: [GitHub Discussions](https://github.com/yourusername/smart-terminal/discussions)
- **Documentation**: [Project Wiki](https://github.com/yourusername/smart-terminal/wiki)
## ⭐ Star History
[](https://star-history.com/#yourusername/smart-terminal&Date)
---
**Smart Terminal v2.0 - Making terminal interactions intelligent, intuitive, and powerful.** 🚀
**Made with ❤️ for developers who want to work smarter, not harder.**
Raw data
{
"_id": null,
"home_page": "https://github.com/yourusername/smart-terminal",
"name": "smart-terminal-ai",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "terminal, ai, nlp, productivity, developer-tools",
"author": "Your Name",
"author_email": "Your Name <your.email@example.com>",
"download_url": "https://files.pythonhosted.org/packages/ff/9d/f92bf8fdb3dad9eb47ac3170be6c71d11cdbd9beb6f61faef1bc1b2411e7/smart_terminal_ai-2.0.2.tar.gz",
"platform": null,
"description": "# Smart Terminal \ud83d\ude80 v2.0.2\n\nAI-powered terminal assistant that converts natural language to shell commands. Works seamlessly on Windows, macOS, and Linux with enhanced features and capabilities.\n\n## \ud83c\udd95 **v2.0.2 - Windows Compatibility Fix**\n- **Fixed**: Windows shell detection now properly identifies Command Prompt vs PowerShell\n- **Added**: Automatic fallback when shell commands fail (PowerShell \u2192 CMD)\n- **Added**: Manual shell override with `--shell cmd` or `--shell powershell`\n- **Fixed**: No more \"'New-Item' is not recognized\" errors in Command Prompt\n\n## \u2728 Enhanced Features\n\n### **Core Features**\n- **Natural Language Processing**: Just type what you want to do in plain English\n- **Cross-Platform**: Works on Windows, macOS, and Linux\n- **Smart Learning**: Learns from your command history to provide better suggestions\n- **Safe Execution**: Prevents dangerous commands from running\n- **Interactive Mode**: Chat with your terminal naturally\n- **AI-Powered Suggestions**: Get intelligent command recommendations\n\n### **\ud83c\udd95 New in v2.0**\n- **Git Integration**: Full git workflow support with natural language\n- **System Monitoring**: Check processes, memory, disk usage, and more\n- **Network Operations**: Ping, download, and network diagnostics\n- **Text Processing**: Advanced text manipulation and search\n- **Command Bookmarks**: Save and reuse frequently used commands\n- **Command History**: Track and replay previous commands\n- **Workflow Suggestions**: Get next-step recommendations\n- **Enhanced Safety**: Multiple safety levels and confirmations\n- **Plugin System**: Extensible architecture for custom commands\n- **Smart Completions**: Context-aware command completions\n\n## \ud83d\ude80 Quick Start\n\n### Installation\n\n```bash\n# Install from PyPI (recommended)\npip install smart-terminal-ai\n\n# Or install from source\ngit clone https://github.com/yourusername/smart-terminal.git\ncd smart-terminal\npip install -e .\n```\n\n### Usage\n\n```bash\n# Interactive mode\nsmart-terminal\n\n# Direct command\nsmart-terminal \"make a folder called my_project\"\n\n# Short alias\nst \"create a backup of my documents\"\n```\n\n## \ud83d\udcd6 Command Examples\n\n### **File Operations**\n| What you type | What it executes |\n|---------------|------------------|\n| \"make a folder called random\" | `mkdir random` |\n| \"delete the old backup folder\" | `rm -rf backup/` |\n| \"show all hidden files\" | `ls -la` |\n| \"copy file.txt to documents\" | `cp file.txt documents/` |\n| \"compress my project folder\" | `tar -czf project.tar.gz project/` |\n\n### **Git Operations**\n| What you type | What it executes |\n|---------------|------------------|\n| \"git init new repository\" | `git init` |\n| \"add all files to git\" | `git add .` |\n| \"commit with message fix bug\" | `git commit -m 'fix bug'` |\n| \"push to main branch\" | `git push origin main` |\n| \"clone repository from url\" | `git clone <url>` |\n\n### **System Operations**\n| What you type | What it executes |\n|---------------|------------------|\n| \"show running processes\" | `ps aux` (Unix) / `Get-Process` (Windows) |\n| \"check disk usage\" | `df -h` (Unix) / `Get-WmiObject Win32_LogicalDisk` (Windows) |\n| \"show memory usage\" | `free -h` (Unix) / `Get-WmiObject Win32_ComputerSystem` (Windows) |\n| \"system uptime\" | `uptime` (Unix) / `Get-Uptime` (Windows) |\n\n### **Network Operations**\n| What you type | What it executes |\n|---------------|------------------|\n| \"ping google.com\" | `ping -c 4 google.com` |\n| \"download file from url\" | `curl -o file url` |\n| \"show network ports\" | `netstat -tuln` |\n| \"show ip address\" | `ifconfig` / `ipconfig` |\n\n### **Text Processing**\n| What you type | What it executes |\n|---------------|------------------|\n| \"edit file.txt\" | `nano file.txt` / `notepad file.txt` |\n| \"search for pattern in files\" | `grep -r pattern .` |\n| \"count lines in file.txt\" | `wc -l file.txt` |\n| \"show first 10 lines of file\" | `head -n 10 file` |\n\n## \ud83d\udda5\ufe0f Platform Support\n\n- **Windows**: PowerShell commands with native Windows tools\n- **macOS**: Unix commands with native macOS tools \n- **Linux**: Unix commands with native Linux tools\n\n### \ud83e\ude9f **Windows Compatibility**\n\nSmart Terminal automatically detects whether you're using **PowerShell** or **Command Prompt (cmd.exe)** and provides the correct commands for each shell.\n\n#### **Automatic Shell Detection**\n- **PowerShell**: Uses `New-Item`, `Remove-Item`, `Get-ChildItem` commands\n- **Command Prompt**: Uses `mkdir`, `rmdir`, `dir` commands\n\n#### **Manual Shell Override**\nIf you need to force a specific shell type:\n```cmd\n# Force Command Prompt mode\nst --shell cmd \"make a folder vi\"\n\n# Force PowerShell mode \nst --shell powershell \"make a folder vi\"\n```\n\n#### **Common Windows Issues**\n- **Error: 'New-Item' not recognized**: You're in Command Prompt, use `st --shell cmd`\n- **Error: 'mkdir' not recognized**: You're in PowerShell, use `st --shell powershell`\n\n**\ud83d\udcd6 See [WINDOWS_COMPATIBILITY.md](WINDOWS_COMPATIBILITY.md) for detailed Windows usage guide.**\n\n## \ud83e\udde0 AI Features\n\n### **Smart Learning**\n- Remembers your command patterns and preferences\n- Suggests commands based on usage history\n- Learns from successful executions\n- Adapts to your workflow over time\n\n### **Context-Aware Suggestions**\n- **Git Operations**: Complete git workflows and best practices\n- **Python Development**: Virtual environments, package management\n- **Node.js Workflows**: npm commands and project management\n- **Docker Operations**: Container management and deployment\n- **System Administration**: Process management, monitoring\n- **Network Operations**: Connectivity testing, file downloads\n\n### **Workflow Intelligence**\n- Suggests logical next steps after commands\n- Provides complete workflow guidance\n- Learns common command sequences\n- Offers alternatives for failed commands\n\n### **Enhanced Safety Features**\n- **Multiple Safety Levels**: Low, Medium, High protection\n- **Dangerous Command Detection**: Prevents system damage\n- **Confirmation Prompts**: For destructive operations\n- **Sandbox Mode**: Test commands without execution\n- **Backup Suggestions**: Automatic backup recommendations\n\n## \ud83d\udce6 Requirements\n\n- Python 3.8+\n- Rich terminal support\n- Git (optional, for git features)\n- Internet connection (for AI features and downloads)\n\n## \ud83d\udd27 Advanced Configuration\n\nSmart Terminal creates a configuration file at `~/.smart_terminal/config.json` with extensive customization options:\n\n### **General Settings**\n```json\n{\n \"general\": {\n \"confirm_dangerous_commands\": true,\n \"show_suggestions\": true,\n \"max_suggestions\": 5,\n \"suggest_bookmarks\": true,\n \"command_timeout\": 30\n }\n}\n```\n\n### **AI Settings**\n```json\n{\n \"ai\": {\n \"enable_learning\": true,\n \"suggestion_threshold\": 0.5,\n \"max_history_size\": 1000,\n \"enable_context_suggestions\": true\n }\n}\n```\n\n### **Safety Settings**\n```json\n{\n \"safety\": {\n \"check_dangerous_patterns\": true,\n \"require_confirmation_for_deletion\": true,\n \"sandbox_mode\": false,\n \"backup_before_delete\": false\n }\n}\n```\n\n## \ud83d\ude80 Advanced Usage\n\n### **Interactive Mode Commands**\n```bash\nst\n# Then type naturally:\n# \"help\" - Show comprehensive help\n# \"stats\" - View detailed usage statistics\n# \"config\" - Show current configuration\n# \"history\" - View command history\n# \"bookmark <name> <command>\" - Save command\n# \"clear\" - Clear screen\n# \"version\" - Show version information\n# \"install\" - Install shell integration\n```\n\n### **Bookmarks and Aliases**\n```bash\n# Save frequently used commands\nbookmark deploy \"git add . && git commit -m 'Deploy' && git push\"\nbookmark backup \"tar -czf backup-$(date +%Y%m%d).tar.gz .\"\n\n# Use bookmarks\nst deploy\nst backup\n```\n\n### **Command History**\n```bash\n# View recent commands\nhistory\n\n# Repeat commands from history\n!5 # Repeat 5th command from history\n```\n\n### **Shell Integration**\nInstall shell integration to use `st` command directly:\n\n```bash\n# In interactive mode, type:\ninstall\n\n# Or manually add to your shell profile\n# For zsh/bash: ~/.zshrc or ~/.bashrc\n# For PowerShell: PowerShell profile\n```\n\n## \ud83d\udee0\ufe0f Development\n\n### **Setup Development Environment**\n```bash\ngit clone https://github.com/yourusername/smart-terminal.git\ncd smart-terminal\npip install -e \".[dev]\"\n```\n\n### **Run Tests**\n```bash\npytest\npytest src/smart_terminal/tests/test_enhanced_features.py\n```\n\n### **Code Formatting**\n```bash\nblack src/\nflake8 src/\n```\n\n### **Plugin Development**\nCreate custom plugins by extending the command mapper and builder:\n\n```python\n# Example plugin structure\nclass CustomPlugin:\n def __init__(self):\n self.commands = {\n \"custom_action\": self.handle_custom_command\n }\n \n def handle_custom_command(self, intent):\n return \"custom command result\"\n```\n\n## \ud83d\udcca Enhanced Statistics\n\nTrack your usage with comprehensive analytics:\n- **Total Commands Executed**: All-time command count\n- **Success Rate**: Percentage of successful executions\n- **Most Used Patterns**: Your favorite command types\n- **Platform Usage**: Cross-platform usage statistics\n- **Session History**: Current session command tracking\n- **Learning Progress**: AI improvement metrics\n- **Bookmark Usage**: Most used saved commands\n\n## \ud83c\udfaf Use Cases\n\n### **Developers**\n- Git workflow automation\n- Project setup and management\n- Code deployment processes\n- Development environment setup\n\n### **System Administrators**\n- System monitoring and diagnostics\n- Process management\n- Network troubleshooting\n- Automated maintenance tasks\n\n### **Data Scientists**\n- File processing and manipulation\n- Environment management\n- Data pipeline operations\n- Analysis workflow automation\n\n### **DevOps Engineers**\n- Container management\n- Deployment automation\n- Infrastructure monitoring\n- CI/CD pipeline management\n\n## \ud83e\udd1d Contributing\n\nContributions are welcome! Please read our [Contributing Guide](CONTRIBUTING.md).\n\n### **Development Roadmap**\n- [x] Enhanced NLP with context awareness\n- [x] Git integration and workflows\n- [x] System monitoring capabilities\n- [x] Network operations support\n- [x] Command bookmarking system\n- [ ] Plugin marketplace\n- [ ] Web interface for configuration\n- [ ] Team collaboration features\n- [ ] Integration with popular IDEs\n- [ ] Voice command support\n- [ ] Machine learning model improvements\n\n## \ud83d\udcc4 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## \ud83d\ude4f Acknowledgments\n\n- Built with [Rich](https://rich.readthedocs.io/) for beautiful terminal output\n- Powered by [Click](https://click.palletsprojects.com/) for CLI framework\n- Enhanced with [GitPython](https://gitpython.readthedocs.io/) for git integration\n- System monitoring via [psutil](https://psutil.readthedocs.io/)\n- Inspired by modern AI-powered developer tools\n\n## \ud83d\udcde Support\n\n- **Issues**: [GitHub Issues](https://github.com/yourusername/smart-terminal/issues)\n- **Discussions**: [GitHub Discussions](https://github.com/yourusername/smart-terminal/discussions)\n- **Documentation**: [Project Wiki](https://github.com/yourusername/smart-terminal/wiki)\n\n## \u2b50 Star History\n\n[](https://star-history.com/#yourusername/smart-terminal&Date)\n\n---\n\n**Smart Terminal v2.0 - Making terminal interactions intelligent, intuitive, and powerful.** \ud83d\ude80\n\n**Made with \u2764\ufe0f for developers who want to work smarter, not harder.**\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "AI-powered terminal assistant with natural language processing, git integration, system monitoring, and enhanced features",
"version": "2.0.2",
"project_urls": {
"Documentation": "https://github.com/yourusername/smart-terminal#readme",
"Homepage": "https://github.com/yourusername/smart-terminal",
"Issues": "https://github.com/yourusername/smart-terminal/issues",
"Repository": "https://github.com/yourusername/smart-terminal"
},
"split_keywords": [
"terminal",
" ai",
" nlp",
" productivity",
" developer-tools"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "5863236e7393fc21896d1187837515f865f3153ceb8cc7c248e8b0b17fb6df85",
"md5": "61eb2ecc817f80e1cc4f8fd22db3f302",
"sha256": "1e46cf1eef013fa6a70eeda985a0487dd39903daa1fba90aa5a03fda1ab8bc7e"
},
"downloads": -1,
"filename": "smart_terminal_ai-2.0.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "61eb2ecc817f80e1cc4f8fd22db3f302",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 36323,
"upload_time": "2025-08-21T13:18:57",
"upload_time_iso_8601": "2025-08-21T13:18:57.171184Z",
"url": "https://files.pythonhosted.org/packages/58/63/236e7393fc21896d1187837515f865f3153ceb8cc7c248e8b0b17fb6df85/smart_terminal_ai-2.0.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff9df92bf8fdb3dad9eb47ac3170be6c71d11cdbd9beb6f61faef1bc1b2411e7",
"md5": "bf931260e9b13e8ab60a01406cbfa434",
"sha256": "3d90ccbad3842b652343ff0c19d3a0332aeccf36ef70891e3f1c9802986340b3"
},
"downloads": -1,
"filename": "smart_terminal_ai-2.0.2.tar.gz",
"has_sig": false,
"md5_digest": "bf931260e9b13e8ab60a01406cbfa434",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 36870,
"upload_time": "2025-08-21T13:18:58",
"upload_time_iso_8601": "2025-08-21T13:18:58.012106Z",
"url": "https://files.pythonhosted.org/packages/ff/9d/f92bf8fdb3dad9eb47ac3170be6c71d11cdbd9beb6f61faef1bc1b2411e7/smart_terminal_ai-2.0.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-21 13:18:58",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "yourusername",
"github_project": "smart-terminal",
"github_not_found": true,
"lcname": "smart-terminal-ai"
}