senior-prompt-engineer

Designs and optimizes LLM prompts, RAG pipelines, and agentic systems for AI products.

Updated Jul 24, 2026
One-click install
npx skills add https://github.com/eklyukin/my-ai-config --skill senior-prompt-engineer-eklyukin
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: senior-prompt-engineer
Source: https://github.com/eklyukin/my-ai-config/tree/main/skills/senior-prompt-engineer
Command: npx skills add https://github.com/eklyukin/my-ai-config --skill senior-prompt-engineer-eklyukin

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Building production LLM features requires expertise in prompt design, evaluation, and agent orchestration that most teams lack, leading to unreliable outputs and unmeasured quality. ## Core Features & Use Cases - Prompt Optimization: Applies prompt engineering patterns, few-shot learning, and chain-of-thought techniques to improve LLM output quality. - RAG and Agent Evaluation: Provides reference frameworks for evaluating retrieval-augmented generation pipelines and designing agentic systems. - Automation Scripts: Includes prompt_optimizer.py, rag_evaluator.py, and agent_orchestrator.py CLI tools for structured processing workflows. - Use Case: When building an AI product feature, use this Skill to design the system prompt, select evaluation metrics for the RAG pipeline, and structure the agent orchestration logic. ## Quick Start Ask the AI to review and optimize the system prompt for your LLM feature using prompt engineering best practices.

Frequently Asked Questions about senior-prompt-engineer

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

FAQPage Schema
How do I optimize prompts for LLM applications?▼

Prompt optimization applies patterns like few-shot learning, chain-of-thought reasoning, and structured output formatting to improve response quality. The prompt_optimizer.py script provides a CLI entry point for running optimization workflows against input data.

How to evaluate a RAG pipeline for an AI product?▼

RAG evaluation measures retrieval relevance and generation quality using structured frameworks. The rag_evaluator.py script and the llm_evaluation_frameworks.md reference describe evaluation workflows, metrics, and troubleshooting procedures.

What prompt engineering patterns work best for production LLM systems?▼

Production systems benefit from chain-of-thought for reasoning tasks, few-shot examples for format consistency, and explicit output schemas for parsing. The prompt_engineering_patterns.md reference covers implementation strategies and scalability considerations.

Does this skill work with LangChain and LlamaIndex?▼

Yes, the skill's documented tech stack includes LangChain, LlamaIndex, and DSPy as LLM frameworks. The guidance covers agent design and RAG patterns applicable to these frameworks, though the bundled scripts use only Python standard library.

What are the limitations of the bundled automation scripts?▼

The scripts prompt_optimizer.py, rag_evaluator.py, and agent_orchestrator.py are scaffolding templates with placeholder execution logic. They provide CLI structure, logging, and config validation but require custom implementation in the _execute method for real processing.