# AICLIMenu

GUI Menu and Named Pipe service for AI CLI tools. Provides JSON-based IPC to invoke AI assistants programmatically.

## Quick Start (Windows)

```powershell
git clone https://github.com/ai-servicers/AICLIMenu.git
cd AICLIMenu\windows
.\Menu.bat
```

## Features

- **GUI Menu**: Launch scripts with point-and-click interface
- **Named Pipe Service**: JSON requests via Windows Named Pipes
- **Process Files**: Batch process files with custom AI prompts
- **Context Isolation**: Fresh process per request (no hallucinations)

## Project Structure

```
AICLIMenu/
├── README.md
├── CLAUDE.md
└── windows/
    ├── Menu.ps1              # GUI menu
    ├── Menu.bat              # Menu launcher
    ├── CodexService.ps1      # Named Pipe service
    ├── CodexClient.ps1       # Client for requests
    ├── Process-Files.ps1     # Batch file processor
    └── README.md             # Full documentation
```

## Documentation

See `windows/README.md` for full documentation including:
- Service setup and usage
- Process-Files with custom prompts
- JSON protocol reference
- Troubleshooting

## License

MIT
