prompt-governance

Version, evaluate, and deploy production prompts with registries, eval pipelines, and rollback workflows.

Updated Aug 14, 2026
One-click install
npx skills add https://github.com/Rohithdgrr/REEK-uninstaller --skill prompt-governance-rohithdgrr
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: prompt-governance
Source: https://github.com/Rohithdgrr/REEK-uninstaller/tree/main/.opencode/skills/prompt-governance
Command: npx skills add https://github.com/Rohithdgrr/REEK-uninstaller --skill prompt-governance-rohithdgrr

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Prompt changes in production often ship without versioning, testing, or rollback, causing silent quality regressions that users discover before the team does. This Skill treats prompts as first-class infrastructure with the same rigor as application code. ## Core Features & Use Cases - Prompt Registry: Build file-based or database-backed registries with version history, environment promotion (dev to staging to prod), and audit trails. - Eval Pipeline: Create golden datasets and automated eval runners (exact match, LLM-as-judge, schema validation) that gate every prompt change in CI. - Governed Iteration & A/B Testing: Run the full branch-develop-eval-review-promote lifecycle with stable-assignment A/B tests and one-command rollback. - Use Case: A team with prompts hardcoded across their app uses this Skill to centralize prompts into a versioned registry, add a 100-example golden dataset, and block any prompt deploy that drops the eval pass rate below threshold. ## Quick Start Audit how our production prompts are currently stored and design a versioned prompt registry with an eval pipeline and rollback plan.

Frequently Asked Questions about prompt-governance

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I version prompts in production?▼

Store prompts in a versioned registry separate from application code, either as structured files in version control or a database-backed registry. Track each version with status, promotion metadata, and an audit trail so any change can be reviewed and rolled back.

How do I test prompt changes before deploying?▼

Build an eval pipeline that runs the new prompt against a golden dataset of input/expected-output pairs and compares scores to the current production version. Gate promotion on pass thresholds such as 95% exact match for classification or 0.85 LLM-as-judge score for summarization.

What is a golden dataset for prompt evaluation?▼

A golden dataset is a fixed set of input/expected-output pairs defining correct prompt behavior. It needs at least 20 examples for basic coverage and 100 or more for production confidence, covering edge cases and reviewed by a domain expert.

How do I A/B test prompts with real users?▼

Assign variants by hashing user_id so each user consistently sees one variant, and log every assignment. Define the success metric before starting, run at least one week or 1,000 requests per variant, and require p<0.05 significance before declaring a winner.

When should I not use prompt governance workflows?▼

This Skill is not for writing or improving individual prompts, designing RAG pipelines, or reducing LLM API costs. It applies when prompts already exist in production and need versioning, evaluation, and deployment controls.