Metadata-Version: 2.4
Name: prompt-unifier
Version: 2.5.0
Summary: CLI tool for managing AI prompt templates with YAML frontmatter
License: MIT
License-File: LICENSE
Keywords: cli,ai,prompts,yaml,templates,llm
Author: Waewoo
Author-email: waewoo@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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 :: Text Processing :: Markup
Requires-Dist: gitpython (>=3.1.45,<4.0.0)
Requires-Dist: litellm (>=1.80.11,<2.0.0)
Requires-Dist: pydantic (>=2.12.4,<3.0.0)
Requires-Dist: python-dotenv (>=1.2.1,<2.0.0)
Requires-Dist: pyyaml (>=6.0.3,<7.0.0)
Requires-Dist: rich (>=14.2.0,<15.0.0)
Requires-Dist: typer (>=0.20.0,<0.21.0)
Project-URL: Bug Tracker, https://gitlab.com/waewoo/prompt-unifier/-/issues
Project-URL: Changelog, https://waewoo.gitlab.io/prompt-unifier/changelog/
Project-URL: Contributing, https://waewoo.gitlab.io/prompt-unifier/contributing/
Project-URL: Documentation, https://waewoo.gitlab.io/prompt-unifier/getting-started/
Project-URL: Homepage, https://waewoo.gitlab.io/prompt-unifier
Project-URL: Repository, https://gitlab.com/waewoo/prompt-unifier
Project-URL: ReleaseNotes, https://gitlab.com/waewoo/prompt-unifier/-/releases
Description-Content-Type: text/markdown

# Prompt Unifier

[![PyPI Version](https://img.shields.io/pypi/v/prompt-unifier.svg)](https://pypi.org/project/prompt-unifier/)
[![Python Version](https://img.shields.io/pypi/pyversions/prompt-unifier.svg)](https://pypi.org/project/prompt-unifier/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Code Coverage](https://img.shields.io/badge/coverage-95%25-brightgreen)](./htmlcov)
[![pipeline status](https://img.shields.io/gitlab/pipeline-status/waewoo%2Fprompt-unifier?branch=main)](https://gitlab.com/waewoo/prompt-unifier/-/pipelines)

A Python CLI tool for managing AI prompt templates and coding rules with YAML frontmatter, enabling
version control, validation, and deployment workflows.

______________________________________________________________________

## What is Prompt Unifier?

Managing AI prompts across a team can be chaotic, with templates scattered across local files,
wikis, and chat threads. This leads to a lack of version control, standardization, and a single
source of truth.

**Prompt Unifier** solves this by providing a centralized, Git-based workflow to **sync**,
**validate**, and **deploy** prompt and rule files to your favorite AI coding assistants.

## Features

- ✅ **Git-Based Versioning**: Sync prompts from one or multiple Git repositories.
- ✅ **Centralized Management**: Use a single source of truth for all your prompts and rules.
- ✅ **Validation**: Catch errors in your prompt files before deploying them.
- ✅ **SCAFF Method Validation**: Analyze prompt quality using the SCAFF methodology (Specific,
  Contextual, Actionable, Formatted, Focused) with scoring and actionable suggestions.
- ✅ **Functional Testing**: Test prompt outputs with YAML-based test scenarios and assertions.
- ✅ **Easy Deployment**: A single command to deploy prompts to supported handlers (like
  **Continue**).
- ✅ **Structured Organization**: Recursively discovers files, preserving your subdirectory
  structure.
- ✅ **Multi-Repository Support**: Combine company-wide prompts with team-specific ones seamlessly.
- ✅ **Centralized Logging**: Global verbose mode (`-v`, `-vv`) and file logging (`--log-file`) for
  debugging.

## Table of Contents

- [Current Handler Support](#current-handler-support)
- [How it Works: The Workflow](#how-it-works-the-workflow)
- [Installation](#installation)
- [Quick Start](#quick-start)
- [Configuration](#configuration)
- [Example Repository](#example-repository)
- [Core Concepts](#core-concepts)
- [Commands](#commands)
- [Development Setup](#development-setup)
- [Contributing](#contributing)
- [License](#license)

## Current Handler Support

**Prompt Unifier** currently supports the following AI assistants as handlers:

- **Continue** - Full support with YAML frontmatter preservation
- **Kilo Code** - Full support with pure Markdown deployment (no YAML frontmatter)

We plan to integrate with more AI tools and platforms in the future to provide a wider range of
deployment options.

## How it Works: The Workflow

Prompt Unifier streamlines the management and deployment of your AI prompts and rules through a
clear, three-stage workflow:

```text
┌───────────────────────────┐         ┌───────────────────────┐         ┌────────────────────────────┐
│   Remote Git Repositories │         │   Local Storage       │         │   AI Tool Configuration    │
│  (e.g., GitHub, GitLab)   ├─────────► (~/.prompt-unifier/storage) ├───► (e.g., ~/.continue/prompts)│
│    - Global Prompts       │  (Sync) │    - Merged Prompts   │(Deploy) │    - Prompts & Rules       │
│    - Team Rules           │         │    - Merged Rules     │         │      for Active Use        │
└───────────────────────────┘         └───────────────────────┘         └────────────────────────────┘
         ▲                                     ▲
         │                                     │
         └─────────────────────────────────────┘
                 (Version Control & Source of Truth)
```

1. **Sync from Remote Repositories**: You define one or more Git repositories containing your
   structured prompts and rules. **Prompt Unifier** fetches these, resolving conflicts with a
   "last-wins" strategy, and stores them in a centralized local directory. This ensures all your
   content is version-controlled and readily available.
1. **Local Storage**: All synced prompts and rules reside in a dedicated local storage area (e.g.,
   `~/.prompt-unifier/storage`). This acts as your single source of truth, where content is
   validated and prepared for deployment.
1. **Deploy to AI Tool Configuration**: With a simple command, the tool copies the relevant prompts
   and rules from your local storage to the specific configuration directories of your AI assistant
   (e.g., `~/.continue/prompts` for the **Continue** handler). This makes your standardized and
   validated content immediately available for use within your AI development environment.

## Installation

You can install `prompt-unifier` directly from PyPI using `pip`:

```bash
pip install prompt-unifier
```

**Prerequisites:**

- Python 3.11+
- Git 2.x+
- Poetry (for development)

## Quick Start

Get started in 60 seconds:

```bash
# 1. Initialize prompt-unifier in your project
# This creates a .prompt-unifier/config.yaml file.
prompt-unifier init

# 2. Sync prompts from a Git repository
# This clones the repo into a centralized local storage.
prompt-unifier sync --repo https://gitlab.com/waewoo/prompt-unifier-data.git

# 3. Deploy prompts to your AI assistant (e.g., Continue)
# This copies the prompts to the .continue/ folder in your project.
prompt-unifier deploy

# 4. Check the status of your synced repositories
prompt-unifier status
```

## Configuration

The `prompt-unifier init` command creates a `.prompt-unifier/config.yaml` file. You can configure
the behavior of the tool by editing this file.

### Top-Level Parameters

| Parameter             | Description                                                                                                                               | Default                           |
| :-------------------- | :---------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------- |
| `repos`               | A list of repository configurations defining where to sync prompts from. See [Repository Configuration](#repository-configuration) below. | `null`                            |
| `storage_path`        | The local directory where synced prompts and rules are merged and stored.                                                                 | `~/.prompt-unifier/storage`       |
| `deploy_tags`         | A list of tags (strings) to filter content during deployment. If set, only content matching these tags will be deployed.                  | `null` (deploy all)               |
| `target_handlers`     | A list of specific handlers to deploy to by default (e.g., `['continue', 'kilocode']`).                                                   | `null` (deploy to all registered) |
| `handlers`            | Specific configuration for handlers (e.g. `base_path`). See [Handler Configuration](#handler-configuration) below.                        | `null`                            |
| `last_sync_timestamp` | **[Auto-generated]** The timestamp of the last successful sync. Do not edit manually.                                                     | `null`                            |
| `repo_metadata`       | **[Auto-generated]** Details about the last synced state (commit, branch) for each repo. Do not edit manually.                            | `null`                            |

### Repository Configuration

Each item in the `repos` list supports the following parameters to control how content is fetched:

| Parameter          | Description                                                                  | Example                           |
| :----------------- | :--------------------------------------------------------------------------- | :-------------------------------- |
| `url`              | **(Required)** The Git repository URL (HTTPS or SSH).                        | `https://github.com/org/repo.git` |
| `branch`           | The specific branch to sync from. If `null`, uses the repo's default branch. | `develop`                         |
| `auth_config`      | Authentication details (e.g. `{ "method": "token", "token": "..." }`).       | `null`                            |
| `include_patterns` | A list of glob patterns to *include*. Only matching files will be synced.    | `["prompts/python/*"]`            |
| `exclude_patterns` | A list of glob patterns to *exclude*. Applied after includes.                | `["**/deprecated/*"]`             |

### Handler Configuration

The `handlers` section allows you to customize behavior for specific tools (e.g., `continue`,
`kilocode`).

| Parameter   | Description                                                                                              | Example                 |
| :---------- | :------------------------------------------------------------------------------------------------------- | :---------------------- |
| `base_path` | Overrides the default deployment directory for the handler. Supports environment variables like `$HOME`. | `"$HOME/.continue-dev"` |

### Full Configuration Example

Below is a complete `.prompt-unifier/config.yaml` example demonstrating advanced usage.

**Note:** Advanced repository settings like `auth_config`, `include_patterns`, and
`exclude_patterns` **cannot** be set via CLI flags (like `--repo`). You must edit the `config.yaml`
file directly to use them.

```yaml
repos:
  # Simple public repository
  - url: https://github.com/company/public-prompts.git
    branch: main

  # Private repository with authentication and filtering
  - url: git@gitlab.com:company/internal-prompts.git
    branch: develop
    auth_config:
      method: ssh_key
      # Optional: path to specific key if not using default agent
      # key_path: ~/.ssh/id_rsa_company
    include_patterns:
      - "prompts/backend/**"
      - "rules/python/*"
    exclude_patterns:
      - "**/deprecated/**"
      - "**/*.tmp"

storage_path: ~/.prompt-unifier/storage

# Deploy only content with these tags
deploy_tags:
  - python
  - backend
  - security

# Deploy to these handlers by default
target_handlers:
  - continue
  - kilocode

# Handler-specific configuration
handlers:
  continue:
    base_path: $PWD/.continue
  kilocode:
    base_path: $HOME/.kilocode
```

## Example Repository

An example repository with prompts and rules is available as a template:

**[prompt-unifier-data](https://gitlab.com/waewoo/prompt-unifier-data)** - A collection of
DevOps-focused prompts and coding rules ready to use with Prompt Unifier.

This repository includes:

- Structured prompts and rules with proper YAML frontmatter
- GitLab CI pipeline for validation
- Auto-bump release mechanism with semantic versioning

You can fork this repository to create your own prompt collection, or use it directly as a starting
point.

## Core Concepts

The tool manages two types of files, both using **YAML frontmatter**.

### Prompts

AI prompt templates, typically stored in a `prompts/` directory within your Git repository.

**Example: `prompts/backend/api-design.md`**

```markdown
---
title: api-design-review
description: Reviews an API design for best practices.
version: 1.1.0
tags: [python, api, backend]
---
# API Design Review

You are an expert API designer. Please review the following API design...
```

### Rules

Coding standards and best practices, typically stored in a `rules/` directory.

**Example: `rules/testing/pytest-best-practices.md`**

```markdown
---
title: pytest-best-practices
description: Best practices for writing tests with pytest.
category: standards
tags: [python, pytest]
version: 1.0.0
---
# Pytest Best Practices

- Use fixtures for setup and teardown.
- Keep tests small and focused.
```

## Commands

The CLI provides several commands to manage your prompts.

### Global Options

These options can be used with any command:

- `--verbose`, `-v`: Increase verbosity level. Use `-v` for INFO, `-vv` for DEBUG.
- `--log-file TEXT`: Write logs to a file for persistent debugging.
- `--version`, `-V`: Show version and exit.
- `--help`: Show help message and exit.

```bash
# Run any command with verbose output
prompt-unifier -v validate

# Debug mode with file logging
prompt-unifier -vv --log-file debug.log sync --repo https://github.com/example/prompts.git
```

### init

Initialize `prompt-unifier` configuration in your current directory.

Creates a `.prompt-unifier/config.yaml` file that tracks which repositories you sync from and your
deployment settings. It also sets up a local storage directory (default:
`~/.prompt-unifier/storage/`) with `prompts/` and `rules/` subdirectories and a `.gitignore` file.

**Options:**

- `--storage-path TEXT`: Specify a custom storage directory path instead of the default.

### sync

Synchronize prompts from Git repositories.

Clones or pulls prompts from one or more Git repositories into a centralized local storage path. You
can specify repositories via the command line or in the `config.yaml` file. The configuration is
updated with metadata about the synced repositories.

**Multi-Repository Sync with Last-Wins Strategy:** When multiple repositories are synced, files with
identical paths will be overwritten by content from later repositories in the sync order.

**Options:**

- `--repo TEXT`: Git repository URL (can be specified multiple times).
- `--storage-path TEXT`: Override the default storage path for this sync.

**Example:**

```bash
prompt-unifier sync \
  --repo https://github.com/company/global-prompts.git \
  --repo https://github.com/team/team-prompts.git \
  --storage-path /custom/path/storage
```

### list

List available prompts and rules.

Displays a table of all available prompts and rules in your centralized storage. You can filter and
sort the content using various options.

**Options:**

- `--tool`, `-t TEXT`: Filter content by target tool handler.
- `--tag TEXT`: Filter content by a specific tag.
- `--sort`, `-s TEXT`: Sort content by 'name' (default) or 'date'.

**Examples:**

```bash
# List all content
prompt-unifier list

# List prompts tagged "python" with verbose output
prompt-unifier -v list --tag python

# List content sorted by date
prompt-unifier list --sort date
```

### status

Check sync status.

Displays the synchronization status, including when each repository was last synced and whether new
commits are available on the remote. It also checks the deployment status of prompts and rules
against configured handlers.

### validate

Validate prompt and rule files.

Checks prompt and rule files for correct YAML frontmatter, required fields, and valid syntax. Also
includes SCAFF methodology validation (Specific, Contextual, Actionable, Formatted, Focused) to
ensure prompt quality. You can validate the central storage or a local directory of files.

**Options:**

- `[DIRECTORY]`: Optional. Directory or file to validate (defaults to synchronized storage).
- `--json`: Output validation results in JSON format.
- `--type TEXT`, `-t TEXT`: Specify content type to validate: 'all', 'prompts', or 'rules' [default:
  'all'].
- `--scaff/--no-scaff`: Enable/disable SCAFF methodology validation [default: enabled].

**SCAFF Validation:**

By default, the validate command analyzes your prompts against the SCAFF methodology:

- **Specific**: Clear requirements with measurable goals
- **Contextual**: Background information and problem context
- **Actionable**: Concrete action steps and instructions
- **Formatted**: Proper Markdown structure and organization
- **Focused**: Single topic with appropriate length (500-2000 words optimal)

Each prompt receives a score (0-100) and actionable suggestions for improvement. SCAFF validation is
non-blocking (warnings only) and can be disabled with `--no-scaff`.

**Examples:**

```bash
# Validate with SCAFF checks (default)
prompt-unifier validate

# Validate without SCAFF checks
prompt-unifier validate --no-scaff

# Validate a local directory with SCAFF
prompt-unifier validate ./my-prompts/

# Get JSON output with SCAFF scores
prompt-unifier validate --json
```

### test

Run functional tests for prompt files using AI.

Discovers `.test.yaml` files and executes their test scenarios using the configured AI provider.
This allows you to verify that your prompts perform as intended with real LLM models.

**Options:**

- `[TARGETS...]`: Optional. List of files or directories to test (defaults to synchronized storage).
- `--provider`, `-p`: Optional. AI provider/model to use (e.g., `gpt-4o`,
  `mistral/codestral-latest`). Overrides any configuration in `config.yaml` or environment
  variables.

**Functional Testing with AI:**

The `test` command enables functional testing of prompts by executing them with real AI providers
and validating the responses.

**Setup:**

1. Configure API keys in `.env` (OPENAI_API_KEY, ANTHROPIC_API_KEY, etc.)
1. Create a `.test.yaml` file alongside your prompt.

**Environment Variables:**

- `DEFAULT_LLM_MODEL`: Set the default AI model to use (e.g., `mistral/codestral-latest`) if not
  specified in the test file.

**Example Test File:**

```yaml
scenarios:
  - description: "Test code generation"
    input: "Write a function..."
    expect:
      - type: contains
        value: "def function"
```

**Examples:**

```bash
# Run tests for all prompts in storage
prompt-unifier test

# Run tests for specific prompt files
prompt-unifier test prompts/code-review.md prompts/refactor.md

# Run tests for an entire directory
prompt-unifier test prompts/python/

# Run tests with verbose output for detailed AI execution logs
prompt-unifier -v test prompts/backend/
```

### deploy

Deploy prompts and rules to tool handlers.

Copies the synchronized prompts and rules to the configuration directories of your AI coding
assistants.

- **Default Handler:** `continue`
- **Supported Handlers:** `continue`, `kilocode`
- **Default Destinations:**
  - **Continue**: `./.continue/prompts/` and `./.continue/rules/`
  - **Kilo Code**: `./.kilocode/workflows/` and `./.kilocode/rules/`

**Options:**

- `--name TEXT`: Deploy only a specific prompt or rule by name.
- `--tags TEXT`: Filter content to deploy by tags (comma-separated).
- `--handlers TEXT`: Specify target handlers for deployment (comma-separated). Supported:
  'continue', 'kilocode'.
- `--base-path PATH`: Custom base path for handler deployment (overrides config.yaml).
- `--clean`: Remove orphaned prompts/rules in destination that are not in your source (creates
  backups before removal).
- `--dry-run`: Preview deployment without executing any file operations.

**Examples:**

```bash
# Deploy only prompts tagged "python", with cleanup, and preview changes
prompt-unifier deploy --tags python --clean --dry-run

# Deploy to Kilo Code handler
prompt-unifier deploy --handlers kilocode

# Deploy to both Continue and Kilo Code
prompt-unifier deploy --handlers continue,kilocode
```

## Development Setup

If you want to contribute to the development of `prompt-unifier`:

1. **Clone the repository:**

   ```bash
   git clone https://gitlab.com/waewoo/prompt-unifier.git
   cd prompt-unifier
   ```

1. **Install dependencies using Poetry:**

   ```bash
   poetry install
   ```

1. **Install pre-commit hooks:** This will run linters and formatters automatically before each
   commit.

   ```bash
   poetry run pre-commit install
   ```

### Running Checks

This project uses a **Makefile-driven architecture** that serves as the single entry point for all
development and CI/CD operations. Commands are organized into functional groups:

#### Environment Setup

- `make env-install`: Install dependencies and git hooks (first-time setup)
- `make env-update`: Update all dependencies (refreshing lock file)
- `make env-clean`: Cleanup temporary files and caches

#### Application Development

- `make app-run ARGS="--version"`: Run the CLI with arguments
- `make app-lint`: Run static analysis (lint, format, types via pre-commit)
- `make app-test`: Run unit tests with coverage
- `make app-check-all`: Run FULL validation (lint + test + CI check)

#### CI/CD Simulation

- `make ci-pipeline`: Run FULL GitLab pipeline locally in Docker
- `make ci-job JOB=<name>`: Run specific GitLab CI job locally
- `make ci-validate`: Validate `.gitlab-ci.yml` syntax
- `make ci-list`: List all available CI jobs
- `make ci-image-build`: Build custom CI base Docker image
- `make ci-image-push`: Push CI base image to registry

#### Security Scanning

- `make sec-all`: Run ALL security scans (code + secrets + deps)
- `make sec-code`: SAST scan with Bandit
- `make sec-secrets`: Secret detection
- `make sec-deps`: Dependency vulnerability check with pip-audit

#### Package & Release

- `make pkg-build`: Build wheel/sdist packages
- `make pkg-changelog`: Generate changelog
- `make pkg-notes VERSION=x.y.z`: Generate release notes
- `make pkg-publish VERSION_BUMP=<patch|minor|major>`: Create release and push tags
- `make pkg-prepare-release`: Auto-bump version (CI only)
- `make pkg-publish-package`: Upload to PyPI (CI only)

#### Documentation

- `make docs-install`: Install documentation dependencies
- `make docs-live PORT=8000`: Serve docs locally with live reload
- `make docs-build`: Build static documentation site

Run `make help` to see all available targets with descriptions.

## Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.

## License

MIT License - see [LICENSE](LICENSE) for details.

