Metadata-Version: 2.4
Name: promptosaurus
Version: 0.3.0
Summary: Build AI coding assistant configs from a shared prompt library
Project-URL: Homepage, https://github.com/johna/promptosaurus
Project-URL: Repository, https://github.com/johna/promptosaurus
Project-URL: Issues, https://github.com/johna/promptosaurus/issues
Author: john@snoodleboot.io
License: MIT
Keywords: ai,cli,coding-assistant,configuration,prompts
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Requires-Dist: click>=8.1
Requires-Dist: prompt-toolkit>=3.0.0
Requires-Dist: pydantic>=2.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: ruamel-yaml>=0.18
Requires-Dist: sweet-tea>=0.1.0
Description-Content-Type: text/markdown

# Promptosaurus

A shared library of AI coding assistant prompt files. Edit once in `prompts/`, build for any tool with a single command.

Kilo Code is the primary target. Cline, Cursor, and GitHub Copilot are derived from the same source.

## Install

Install via pip:

```bash
pip install promptosaurus
```

Or with uv:

```bash
uv add promptosaurus
```

This installs the `promptosaurus` CLI command.

## Quick Start

### 1. Initialize your project

Run from inside your project directory:

```bash
cd my-project
promptosaurus init
```

This interactive command will:
1. Ask about your repository type (single-language or multi-language-monorepo)
2. For multi-language-monorepo: configure folders with standard presets or custom paths
3. Configure your language, runtime, package manager, and testing framework
4. Select which AI assistants to configure (kilo, cline, cursor, copilot — multiple allowed)
5. Generate all selected configurations automatically

### 2. List available modes

```bash
promptosaurus list
```

Shows all modes and their registered prompt files.

### 3. Validate configuration

```bash
promptosaurus validate
```

Check for missing files and unregistered orphans.

## Multi-Language Monorepo

Promptosaurus supports monorepo projects with multiple language-specific folders.

### Standard Presets

When you select `multi-language-monorepo` during `promptosaurus init`, you can choose from standard folder types:

| Type | Subtypes | Default Language |
|------|----------|-------------------|
| `backend` | api, library, worker, cli | Python |
| `frontend` | ui, library, e2e | TypeScript |

Example workflow:

```bash
$ promptosaurus init

# Select "multi-language-monorepo" when asked about repository type

# Add folders:
# 1. backend (preset) -> api -> backend/api -> Python
# 2. frontend (preset) -> ui -> frontend -> TypeScript
# 3. Add another? No
```

### Custom Folders

For custom folder structures, select "custom" and provide:
- Folder path (supports hierarchical paths like `services/auth/api`)
- Programming language

### Generated Config

For a monorepo, the `.promptosaurus.yaml` will have:

```yaml
version: "1.0"
repository:
  type: "multi-language-monorepo"
spec:
  - folder: "backend/api"
    type: "backend"
    subtype: "api"
    language: "python"
    runtime: "3.12"
    package_manager: "poetry"
  - folder: "frontend"
    type: "frontend"
    subtype: "ui"
    language: "typescript"
    runtime: "5.4"
    package_manager: "npm"
```

## Commands

| Command | Description |
|---------|-------------|
| `promptosaurus init` | Interactively initialize prompt configuration for your project |
| `promptosaurus list` | List all registered modes and their prompt files |
| `promptosaurus switch` | Switch to a different AI assistant tool |
| `promptosaurus update` | Update configuration options interactively |
| `promptosaurus validate` | Check that all registered prompt files exist and no files are missing |

## Workflow

### Adding prompts to your project

1. Run `promptosaurus init` to generate configurations
2. Edit files in the generated directories (e.g., `.kilo/rules/`)
3. Run `promptosaurus init` again to regenerate

### Updating prompts

Edit the source prompts, then re-run:

```bash
promptosaurus init
```

## Mode Reference

| Mode | Key | Purpose |
|------|-----|---------|
| Architect | `architect` | Scaffold projects, task breakdowns, data models |
| Test | `test` | Coverage-first test writing |
| Refactor | `refactor` | Structural changes, behavior preserved |
| Document | `document` | Docstrings, READMEs, changelogs |
| Explain | `explain` | Code walkthroughs for onboarding |
| Migration | `migration` | Dependency upgrades, framework ports |
| Code | `code` | Feature implementation, boilerplate |
| Review | `review` | Code, performance, accessibility review |
| Debug | `debug` | Root cause, log analysis, rubber duck |
| Ask | `ask` | Q&A, decision logs |
| Security | `security` | Security review (code and infra) |
| Compliance | `compliance` | SOC 2, ISO 27001, GDPR, HIPAA, PCI-DSS |
| Orchestrator | `orchestrator` | CI/CD, DevOps, PR descriptions |

## Tool Output

| Tool | Output Directory/Files |
|------|----------------------|
| Kilo Code | `.kilo/rules/` (always-on) + `.kilo/rules-{mode}/` (per-mode) + `.kilocodemodes` + `.kiloignore` |
| Cline | `.clinerules` (all rules concatenated) |
| Cursor | `.cursor/rules/{mode}/*.mdc` + `.cursorrules` (legacy) |
| GitHub Copilot | `.github/copilot-instructions.md` + `.github/instructions/{mode}.instructions.md` |

## Development

To contribute or develop locally:

```bash
# Clone the repository
git clone https://github.com/snoodleboot-io/promptosaurus.git
cd promptosaurus

# Install in development mode
pip install -e .

# Or with uv
uv pip install -e .
```
