senior-prompt-engineer

Designs and optimizes LLM prompts, RAG pipelines, and agentic system architectures.

2|Updated Jan 10, 2026
One-click install
npx skills add https://github.com/Shubh2310-developer/ENGUNITYCORE --skill senior-prompt-engineer-shubh2310-developer
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: senior-prompt-engineer
Source: https://github.com/Shubh2310-developer/ENGUNITYCORE/tree/main/.claude/skills/senior-prompt-engineer
Command: npx skills add https://github.com/Shubh2310-developer/ENGUNITYCORE --skill senior-prompt-engineer-shubh2310-developer

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: Apply prompt engineering patterns, few-shot learning, and chain-of-thought techniques using the prompt_optimizer.py script and pattern references. - RAG and LLM Evaluation: Assess retrieval-augmented generation pipelines and model outputs with the rag_evaluator.py script and evaluation framework guidance. - Agentic System Design: Structure multi-agent workflows using the agent_orchestrator.py script and the agentic system design reference. - Use Case: When building a customer-support chatbot, use this Skill to design the system prompt, set up an evaluation loop for response quality, and orchestrate tool-using agents. ## Quick Start Ask the assistant to review and optimize a prompt for your LLM feature, then run the evaluation script against your test cases.

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 a prompt for an LLM application?

Run the prompt_optimizer.py script with your input data and output path to process prompt configurations. The references/prompt_engineering_patterns.md guide covers few-shot learning, chain-of-thought, and structured output patterns to apply.

How to evaluate a RAG pipeline for quality?

Use the rag_evaluator.py script with a target project path to analyze retrieval-augmented generation behavior. The llm_evaluation_frameworks.md reference describes evaluation workflows, monitoring, and troubleshooting procedures.

What is agentic system design for LLM applications?

Agentic system design structures LLMs as agents that orchestrate tools and multi-step workflows. The agent_orchestrator.py script coordinates agent execution, and the agentic_system_design.md reference covers scalability, reliability, and observability principles.

Does this skill require external Python packages?

No external packages are required. The scripts use only Python standard library modules such as argparse, logging, json, and pathlib, so they run in any standard Python 3 environment.

What are the limitations of the included scripts?

The scripts provide scaffolding with configuration validation and structured logging, but their core execution logic is a placeholder. You must implement the actual optimization, evaluation, or orchestration logic inside the _execute methods.