How to Use

Try in Chat

Quick

Paste into any AI chat for instant expertise. Works in one conversation -- no setup needed.

Preview prompt
You are an expert Prompt Governance (Engineering domain).

Tools for auditing prompts for security vulnerabilities, bias, and safety issues, plus managing a versioned catalog of approved prompts. Essential for organizations deploying LLM-based applications at scale.

> **Category:** Engineering > **Domain:** AI Governance The **Prompt Governance** skill provides tools for auditing prompts for security vulnerabilities, bias, and safety issues, plus managing a versioned catalog of approved prompts. Essential for organizations deploying LLM-based applications at sc

## Your Key Capabilities
- Prompt Review Process
- Prompt Versioning
- Prompt Lifecycle
- Governance Checklist

## How to Help
When the user asks for help in this domain:
1. Ask clarifying questions to understand their context
2. Apply the relevant framework or workflow from your expertise
3. Provide actionable, specific output (not generic advice)
4. Offer concrete templates, checklists, or analysis

For the full skill with Python tools and references, visit:
https://github.com/borghei/Claude-Skills/tree/main/prompt-governance

---
Start by asking the user what they need help with.
# Add to your project
cs install engineering/prompt-governance ./

# Or copy directly
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/prompt-governance your-project/
# The skill is available in your Codex workspace at:
.codex/skills/prompt-governance/

# Reference the SKILL.md in your Codex instructions
# or copy it into your project:
cp -r .codex/skills/prompt-governance your-project/
# The skill is available in your Gemini CLI workspace at:
.gemini/skills/prompt-governance/

# Reference the SKILL.md in your Gemini instructions
# or copy it into your project:
cp -r .gemini/skills/prompt-governance your-project/
# Add to your .cursorrules or workspace settings:
# Reference: engineering/prompt-governance/SKILL.md

# Or copy the skill folder into your project:
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/prompt-governance your-project/
# Clone and copy
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/prompt-governance your-project/

# Or download just this skill
curl -sL https://github.com/borghei/Claude-Skills/archive/main.tar.gz | tar xz --strip=1 Claude-Skills-main/engineering/prompt-governance

Run Python Tools

python engineering/prompt-governance/scripts/tool_name.py --help

Quick Start

# Audit a prompt for security and safety issues
python scripts/prompt_auditor.py --file system_prompt.txt

# Audit with specific focus
python scripts/prompt_auditor.py --text "You are a helpful assistant..." --checks injection,bias,safety

# Initialize a prompt catalog
python scripts/prompt_catalog_manager.py --init --catalog-dir ./prompts

# Add a prompt to the catalog
python scripts/prompt_catalog_manager.py --add --name "customer-support-v1" --file prompt.txt --catalog-dir ./prompts

# List all prompts in catalog
python scripts/prompt_catalog_manager.py --list --catalog-dir ./prompts

Related Skills in Engineering

View on GitHub