Metadata-Version: 2.4
Name: zoke-cli
Version: 0.1.0
Summary: Convert natural language to shell commands using OpenAI
Author-email: Your Name <you@example.com>
License: MIT
Project-URL: Homepage, https://github.com/Zoron-AI/zoke-cli
Project-URL: Repository, https://github.com/Zoron-AI/zoke-cli
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: openai>=1.0.0
Dynamic: requires-python

# zoke

Convert natural language to shell commands using OpenAI.

## Installation

```bash
pip install git+https://github.com/Zoron-AI/zoke-cli.git
```

## Setup

Configure your OpenAI API key:

```bash
zoke configure --openai-key=YOUR_OPENAI_API_KEY
```

## Usage

```bash
zoke "list all files in current directory"
zoke "find python files modified in the last week"
zoke "show disk usage sorted by size"
```

The tool will display the generated command and ask for confirmation before executing.

### Auto-approve

Use the `-y` flag to skip confirmation and execute immediately:

```bash
zoke -y "show current date"
```
