In this categoryChatGPT ยท 25
ChatGPTBeginner

How to Build a Custom GPT with Clear Instructions

Create a reusable Custom GPT in ChatGPT with a tight instruction block so it behaves the same way every time you open it.

9 minBeginner

A Custom GPT is a saved version of ChatGPT with your instructions baked in, so you skip the long setup prompt every session. The instruction block is what makes it reliable. This guide builds one for a focused job and writes instructions that hold up.

What you need

  • A ChatGPT plan that includes Custom GPTs
  • A single job for the GPT to do well
  • About 10 minutes

Step 1: Open the GPT builder

From the sidebar, open the GPTs area and start a new GPT. Skip the conversational builder and go straight to the Configure tab so you control the instruction text directly.

ChatGPT - Configure tab
New GPT
[ Create ] [ Configure ] <- pick this
Name: Release Notes Writer
Instructions: (the box that decides behavior)
The Configure tab gives you the raw instruction box.

Step 2: Write scoped instructions

State the role, the inputs, the output shape, and the limits. Telling it what not to do is as useful as telling it what to do.

Instructions
You are a release-notes writer for a software team.
Input: a list of merged pull request titles.
Output: Markdown grouped under Added, Changed, Fixed.
Rules:
- One line per item, plain past tense.
- No marketing words, no emoji.
- If a title is unclear, list it under a 'Needs review' heading.
Never invent changes that are not in the input.

Step 3: Test against a real input

Use the preview pane to paste a sample input. Check the output matches your shape and that the limits hold, then adjust the wording where it drifts.

ChatGPT - preview
You
fix: rounding on totals feat: CSV export chore: bump deps
Agent
### Added - CSV export ### Fixed - Rounding on totals ### Changed - Updated dependencies
The GPT follows the configured shape on a sample.
Do not paste secrets into instructions
Instructions can be surfaced by users of the GPT. Keep API keys and private data out of the instruction box and the knowledge files.

Result: a saved GPT that does one job consistently, so you open it and paste input instead of rebuilding the prompt every time.

Watch related tutorials

Free weekly email

New guides in your inbox

Fresh step-by-step how-to guides as we publish them. One email a week, no more.

Tags
#chatgpt#custom-gpt#prompting#instructions#setup