Metadata-Version: 2.4
Name: pfy
Version: 0.1.0
Summary: Add your description here
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: dotenv>=0.9.9
Requires-Dist: langchain>=1.1.0
Requires-Dist: langchain-google-genai>=3.2.0
Requires-Dist: litellm>=1.80.5
Requires-Dist: pyfiglet>=1.0.4
Requires-Dist: pyperclip>=1.11.0
Requires-Dist: rich>=14.2.0
Requires-Dist: textual>=6.7.1
Requires-Dist: typer>=0.20.0
Dynamic: license-file

﻿
#  Promptify

![Promptify Banner](https://capsule-render.vercel.app/api?type=waving&color=0:00BFFF,100:00008B&height=300&section=header&text=Promptify&fontSize=90&fontColor=ffffff)

> **Transform vague ideas into professional engineering specifications using AI agents.**

[![Python 3.12](https://img.shields.io/badge/python-3.12-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Code Style: Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

---

##  Introduction

**Promptify** is an advanced AI-powered CLI tool designed to bridge the gap between abstract user intent and concrete technical requirements. It employs a multi-agent architecture (Triage, Critic, Expert, and Prompt Smith) to iteratively refine, critique, and enhance your prompts, delivering production-ready specifications for software projects.

No more back-and-forth. Just **Promptify** and build.

##  Features

*   ** Multi-Agent Architecture**: 
    *   **Triage Agent**: Understands intent and routes to the right expert.
    *   **Critic Agent**: Identifies gaps, ambiguities, and missing context.
    *   **Expert Agent**: Provides domain-specific architectural advice.
    *   **Prompt Smith**: Synthesizes everything into a perfect final prompt.
*   ** Dynamic Model Support**: Switch seamlessly between **Cerebras** (fast/free), **OpenAI** (GPT-4), **Anthropic** (Claude 3.5), or **Local LLMs**.
*   ** Interactive CLI & TUI**: Beautiful terminal user interface built with `Textual` and `Rich`.
*   ** Flexible Configuration**: Easy YAML-based configuration with environment variable support (`.env`).

##  Installation

1.  **Clone the repository**
    ```bash
    git clone https://github.com/yourusername/promptify.git
    cd promptify
    ```

2.  **Install dependencies**
    ```bash
    pip install .
    # Or manually
    pip install -r requirements.txt
    ```

3.  **Set up Environment**
    Create a `.env` file in the root directory:
    ```bash
    # For default (Cerebras)
    CEREBRAS_API_KEY=your_key_here
    
    # Optional
    OPENAI_API_KEY=sk-...
    ANTHROPIC_API_KEY=sk-...
    GOOGLE_GENAI_API_KEY=...
    ```

## Usage

### Quick Start
Run the interactive mode:
```bash
python cli.py refine "Build a flappy bird game in python"
```

### Command Line
Refine a prompt directly and save to file:
```bash
python cli.py refine "Create a CRM system for real estate" --output specs.md --format rich
```

### Configuration
Manage your LLM provider settings easily:

```bash
# View current config
python cli.py config --show

# Switch to OpenAI GPT-4
python cli.py config --provider openai --model gpt-4

# Switch to free Cerebras tier
python cli.py config --provider cerebras --model cerebras/llama3.1-8b
```

## Architecture

```mermaid
graph TD
    User[User Input] --> T[Triage Agent]
    T --> C[Critic Agent]
    C --> E[Expert Agent]
    E --> S[Prompt Smith]
    S --> Final[Refined Artifact]
    
    subgraph Core
        Provider[Model Provider]
        Config[Configuration]
    end
    
    T -.-> Provider
    C -.-> Provider
    E -.-> Provider
    S -.-> Provider
```

## Contributing

Contributions are welcome! Please examine the `agent/` directory for core logic and `core/providerSelection/` for model integration.

1.  Fork the Project
2.  Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3.  Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4.  Push to the Branch (`git push origin feature/AmazingFeature`)
5.  Open a Pull Request

## License

Distributed under the MIT License. See `LICENSE` for more information.

---
*Built with ❤️ by the Promptify Team*
