Prompt Engineering
72 courses 5 categories
Part of Learn Data & AI
Prompt engineering is the consumer side of large language models — getting useful work out of ChatGPT, Claude, Gemini, Midjourney, and the coding assistants that wrap them. Unlike LLM engineering (which lives on the provider/API side) or the broader AI hub, this topic focuses on people using the tools effectively: developers driving Cursor and Claude Code, marketers running content workflows, analysts extracting structure from documents, and designers iterating with image and video models.
The skill in 2026 is no longer "how to phrase a question." Every flagship model handles short prompts well. What separates expert users from casual ones is workflow design: choosing the right model for each task, structuring multi-step conversations, attaching the right context, using projects and custom instructions, and building reusable templates that survive product updates. The same applies on the creative side — Midjourney v7, Flux, and the current video models reward users who understand parameter syntax and reference workflows.
What you'll find under this topic
- ChatGPT mastery: Custom GPTs, projects, voice mode, code interpreter, Actions
- Claude workflows: Projects, Artifacts, Computer Use, Claude Code for development
- AI coding tools: Cursor, Claude Code, Copilot, Windsurf — context selection and review loops
- Image generation: Midjourney v7, Flux, Stable Diffusion — parameter syntax and references
- Prompt patterns: role priming, chain-of-thought, few-shot, structured output, self-critique
- Business workflows: research, content production, data extraction, customer support
- Model selection: when to use Sonnet vs Opus vs GPT-4 vs Gemini for what task
This skill set transfers across job functions. Engineers ship features faster, writers produce more with less friction, analysts handle larger document sets, and founders prototype products without hiring. It is the most widely applicable category on CourseFlix because the tools have a near-universal user base in 2026.
Categories (5)
Courses (72)
Showing 1 – 30 of 72 courses
NewPractical Guide to Mastering Claude Code. Learn the basics and key features step by step to confidently use the tool.1h 7m
NewLearn to fully utilize the capabilities of Claude Code. Turn knowledge into effective skills and boost your productivity in software development.2h 46m
NewMaster Claude Code by acquiring practical knowledge and techniques necessary for working with the terminal and automation. A structured program will accelerate8h 21m5/5
New100% TypeScript. 100% Production-ready. 0% hype. Only real tools and experience.3h 2m5/5
Updated 1mo agoUnlock the full potential of AI chatbots with ChatRAG – a comprehensive Next.js build designed for launching a successful SaaS business.
Updated 1mo agoMaster AI workflow for accelerated development. Real cases and tools used by engineers. Trusted by over 200 developers.15h 31m5/5
Updated 1mo agoCreate mobile applications for iOS and Android using Cursor, mastering full-stack development and integration with modern tools.7h 39m
Updated 1mo agoStudy the principles of AI programming to remain an in-demand engineer. Accelerate the transition into the future of software development with AI coding.6h 13m
Updated 2mo agoExplore mindful development with artificial intelligence, understand the principles of how language models work, and learn to integrate them into workflows.3h 18m
Updated 2mo agoLearn how to safely and effectively integrate AI into everyday development. Practical methods, patterns, and tips will strengthen your skills without risks.1h 37m5/5
Updated 3mo agoMaster development using AI tools and create a portfolio. Prepare for a career as an AI developer and improve your skills faster and more efficiently.17h 52m5/5
Updated 3mo agoEmbark on an interactive journey to build an AI chatbot from the ground up in this comprehensive three-hour workshop.2h 21m
Updated 4mo agoStart releasing features faster with ClaudeKit. Fifteen specialized AI agents replace boilerplate and cover the full development cycle, adapting to your stack.5/5
Updated 4mo agoStop memorizing random prompts. Instead, learn how Large Language Models (LLMs) actually work and how to use them effectively. This course will take you from be31h 45m5/5
Updated 5mo agoMaster the personalization of AI tools to enhance coding efficiency. Learn to apply AI for development, automation, and process optimization.19h 27m5/5
Updated 6mo agoLearn to create powerful local scripts using AI models with Ollama and Vercel. Master scripting that interacts with file systems and automates tasks.15m
Updated 6mo agoGet acquainted with artificial intelligence foundations for web development. The course will help you integrate AI into your projects and become a developer of1h 7m
Updated 6mo agoStudy real AI workflows for automating development tasks. Unlock the potential of autonomous agents to improve work productivity and efficiency.19m
Updated 6mo agoLearn context management for AI in the Claude Code course. Discover tools, frameworks, and techniques for predictable artificial intelligence outcomes.12m5/5
Updated 8mo agoPrompt Engineering helps you guide AI models with clear and useful inputs. LLMs can write, plan, explain, and code.45m5/5
Updated 8mo agoExplore the power of integrating Supabase with Bolt in this comprehensive workshop, designed as a continuation of the "Overnight Fullstack Applications" course.42m5/5
Updated 8mo agoThis is a practical training where you will learn full-stack development of SaaS applications based on Cloudflare Workers step by step.11h 27m5/5
Updated 9mo agoClaude Code is a course that teaches how to use the intelligent assistant (AI) from Anthropic for programming directly in the terminal.2h 23m5/5
Updated 9mo agoIn this workshop, you build a small landing page generator with Next.js and Claude Code.47m
Updated 9mo agoYou build a small FigJam‑style app step by step in this workshop. You use Claude Code, Opus 4, Cursor IDE, and the McKay App Template.1h 12m5/5
Updated 9mo agoThe course "Cursor AI: A Complete Guide for Developers" is designed for developers aiming to accelerate the process of creating websites.6h 52m5/5
Updated 9mo agoUnlock the potential of AI in application development with this comprehensive course, where you will build and deploy an innovative AI platform from scratch.10h 34m
Updated 10mo agoImagine you have an AI assistant ready to solve any task in Excel. This course will show you how to unlock the full potential of ChatGPT even with basic.3h 23m
Updated 1y agoHello everyone! Welcome to the course "Developing a 3D Browser Game with AI and Cursor" . I'm glad to see you here!2h 7m
Updated 1y agoDiscover the power of AI-enhanced design in our course where we integrate advanced tools to transform the UI/UX design landscape.3h 42m5/5
Related topics
Frequently asked questions
- Is prompt engineering still a real skill in 2026?
- Yes, but as a component of LLM engineering rather than a standalone job. The 2023 era of 'prompt engineer' job titles is over; what remains is a craft inside the broader role of AI engineer. Skilled prompt design still meaningfully changes output quality, cost, and reliability — it just isn't sold as a separate career path anymore.
- What separates good prompts from bad ones?
- Clear role and goal up front, explicit output format and examples, deliberate placement of static context (cacheable at the top) versus dynamic content, structured reasoning hints where useful, and explicit failure modes. Bad prompts read like vague instructions to an intern; good prompts read like a tight spec to a competent contractor with examples attached.
- Do prompting techniques transfer between models?
- Mostly yes for the high-level patterns — clarity, examples, structured outputs, retrieval grounding. Model-specific quirks (Claude's XML tags, OpenAI's response_format, role-message conventions, reasoning model defaults) do differ. Plan on a small portability test when switching providers, and avoid one-shot evaluations on a single model when the production stack might change.
- Chain-of-thought, ReAct, reflection — which patterns matter?
- Chain-of-thought helps on multi-step reasoning tasks but adds latency and cost. ReAct and agent loops matter for tool-using workflows. Self-reflection and self-critique improve some hard reasoning tasks. With modern reasoning models, simpler prompts often outperform clever scaffolding — evaluate on your actual task rather than copying patterns from blog posts.
- How do I get better at prompt engineering?
- Build an evaluation harness first so you can measure changes objectively. Read the model providers' own prompting guides — they're written by the people who trained the models. Run side-by-side comparisons on real tasks rather than toy examples. Keep a personal library of prompts that worked and notes on why they worked. Iteration without measurement is just vibes.