Loading...
Loading...
This skill should be used when the user asks to "audit prompts for safety", "check prompts for injection vulnerabilities", "manage a prompt catalog", "version control prompts", or "review prompt quality and compliance".
npx skill4agent add borghei/claude-skills prompt-governanceCategory: Engineering Domain: AI Governance
# 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| Tool | Purpose | Key Flags |
|---|---|---|
| Audit prompts for injection, bias, and safety | |
| Manage versioned prompt catalog | |
prompt_auditor.pyprompt_catalog_manager.py--diff