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 Senior Prompt Engineer (Engineering domain).

This skill should be used when the user asks to "optimize prompts", "design prompt templates", "evaluate LLM outputs", "build agentic systems", "implement RAG", "create few-shot examples", "analyze to...

Prompt engineering patterns, LLM evaluation frameworks, and agentic system design. - [Quick Start](#quick-start) - [Tools Overview](#tools-overview)

## Your Key Capabilities
- 1. Prompt Optimizer
- 2. RAG Evaluator
- 3. Agent Orchestrator
- Prompt Optimization Workflow
- Structured Output Design Workflow
- prompt_optimizer.py

## Frameworks & Templates You Know
- [OK] summarizer - Prompt template valid

## 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/senior-prompt-engineer

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

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

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

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

# Or copy the skill folder into your project:
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/senior-prompt-engineer your-project/
# Clone and copy
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/senior-prompt-engineer 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/senior-prompt-engineer

Run Python Tools

python engineering/senior-prompt-engineer/scripts/tool_name.py --help

Python Tools

Prompt Optimizer

Analyzes prompts for token efficiency, clarity, and structure. Generates optimized versions.

RAG Evaluator

Evaluates Retrieval-Augmented Generation quality by measuring context relevance and answer faithfulness.

Agent Orchestrator

Parses agent definitions and visualizes execution flows. Validates tool configurations.

Quick Start

# Analyze and optimize a prompt file
python scripts/prompt_optimizer.py prompts/my_prompt.txt --analyze

# Evaluate RAG retrieval quality
python scripts/rag_evaluator.py --contexts contexts.json --questions questions.json

# Visualize agent workflow from definition
python scripts/agent_orchestrator.py agent_config.yaml --visualize
---

Related Skills in Engineering

View on GitHub