Metadata-Version: 2.4
Name: scai-tool
Version: 1.0.0
Summary: A developer tool that turns AI-generated directory tree text into actual files and folders.
Home-page: https://github.com/kaus-04/scai
Author: kaus-04
Author-email: kaus77135@gmail.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-python
Dynamic: summary

# scai

**scai (Scaffold AI)** is a developer tool that instantly turns AI-generated directory tree text into actual files and folders.

Stop manually creating folders. Just copy the tree from ChatGPT, Claude, DeepSeek, or other LLMs, paste it into scai, and build your project structure instantly.

## Installation

Install using pip:

```bash
pip install scai-tool
```

## Usage

### 1. GUI Mode (Recommended)

Launch the visual interface:

```bash
scai
```

Steps:

- Paste your directory tree structure into the left input box
- Click **Preview** to verify the generated paths
- Click **Generate** to create the files and folders

### 2. CLI Mode

You can also use scai directly from the command line.

Pipe input into scai:

```bash
cat tree.txt | scai
```

Read from a file:

```bash
scai tree.txt
```

## Supported Format

scai supports standard ASCII and Unicode tree structures commonly generated by LLMs:

```text
MyProject/
├── src/
│   ├── main.py
│   └── utils.py
├── tests/
└── README.md
```
