prompt-engineering

Installation
SKILL.md

Prompt Engineering Skill

Comprehensive prompting techniques for effective LLM interactions across any model or framework.

Quick Start

import openai

client = openai.OpenAI()

# Basic prompt
response = client.chat.completions.create(
    model="gpt-4",
    messages=[
        {"role": "system", "content": "You are an expert engineer."},
        {"role": "user", "content": "Explain mooring systems."}
    ]
)
Related skills
Installs
22
GitHub Stars
8
First Seen
Jan 24, 2026