Metadata-Version: 2.4
Name: devterminal-cli
Version: 1.0.0
Summary: Intelligent cross-platform terminal with auto-completion and command validation
Author: Code-Dev
License: MIT License
        
        Copyright (c) 2026 Code-Dev
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: prompt_toolkit
Requires-Dist: rich
Requires-Dist: colorama
Requires-Dist: pygments
Dynamic: license-file

# 🚀 DevTerminal

[![PyPI version](https://img.shields.io/pypi/v/devterminal-cli.svg)](https://pypi.org/project/devterminal-cli/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

**DevTerminal** is an intelligent, developer-centric terminal wrapper designed to bridge the gap between Windows and Unix-like environments. Built for programmers who switch contexts frequently, it eliminates "muscle memory" errors by adapting commands in real-time.

## ✨ Key Features

- **Smart Command Adaptation:** Automatically maps Linux commands (`ls`, `cat`, `clear`, `pwd`) to Windows equivalents (`dir`, `type`, `cls`, `cd`) with optional confirmation for destructive actions.
- **Git Integration:** Real-time Git branch status directly in your prompt.
- **Live Syntax Highlighting:** Interactive coloring of commands, flags, and strings as you type.
- **Path Validation:** Fuzzy-matching suggestions for mistyped file paths or directories.
- **Persistent History:** Searchable command history saved across sessions.
- **Native Feel:** Uses standard system shells under the hood to ensure compatibility with your existing environment.

## 📥 Installation

Install DevTerminal directly from PyPI using pip:

```bash
pip install devterminal
```

## 🚀 Quick Start

Once installed, simply launch the shell by typing:

```bash
devterminal
```

## Keyboard Shortcuts

- TAB: Trigger the intelligent auto-completion engine.

- Right Arrow (→): Accept an inline suggestion (fish-style).

- Up/Down Arrows (↑/↓): Navigate through command history.

- Ctrl+C: Cancel current input.

## 🛠 Project Structure

```bash
devcli/
├── core/         # Shell logic, executor, and history management
├── completion/   # Custom auto-complete and suggestion engines
└── os_layer/     # Cross-platform adapters and detectors
```

## 📄 License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
