NonDev Apps

Day 02 of 21

ChatGPT vs Codex - know which tool to use

Goal: Using the wrong tool for the wrong job wastes time and causes mistakes. Today you learn the one simple rule, walk through three worked examples, practice classifying real tasks, and run the two-tool workflow from idea to safe Codex prompt.

What to do

01

Learn the one rule

ChatGPT thinks with you. Codex works inside your project. ChatGPT is for explaining, planning, drafting, and deciding. Codex is for reading and changing files on your computer. Neither tool can do the other's job well — ChatGPT cannot touch your files, and Codex is not the right place to think through a vague idea.

02

Worked example 1 — explaining an error

Scenario: You ran Codex and it printed an error message you do not understand. The error says something like "cannot find module" or "unexpected token." You have no idea what it means. Which tool do you use, The answer is ChatGPT first. Explaining what an error means is a thinking task, not a file task. Paste the error into ChatGPT and ask: "Explain this error in plain English. What caused it and what is the safest first step to fix it?"

03

Worked example 2 — changing specific text in a file

Scenario: You want to change the text on a button on your homepage from "Submit" to "Send my message." You know exactly which page it is on. Which tool do you use, The answer is Codex directly. You have a specific file change with a clear target. There is nothing to think through first — the task is already specific enough for Codex. Open your terminal in your project folder, start Codex, and give it an exact instruction: name the file, name the text to change, and tell it to show a plan before editing.

04

Worked example 3 — adding a feature you have not planned yet

Scenario: You want to add a newsletter signup section to your site but you have no idea where it should go, what files it needs, or how it connects to anything. Which tool do you use, The answer is ChatGPT first, then Codex. When you do not know the plan, handing the task straight to Codex is risky — it may change many files in unexpected ways. Open ChatGPT and describe the feature. Ask it to: list which files would likely need to change, describe the safest first step, and write a specific Codex prompt for that one step only.

05

Classify five tasks yourself

Open your notepad. Write "ChatGPT", "Codex", or "ChatGPT then Codex" next to each task. Trust your first instinct — you have all the information you need from the last three steps. Task A: "Explain what a 404 error means." Task B: "Change the homepage title from Home to Welcome." Task C: "I want to add a contact form but I do not know how." Task D: "Fix a broken link on my about page." Task E: "Write me a better version of my homepage intro paragraph."

06

Ask ChatGPT to turn a vague idea into a safe Codex prompt

Think of one real change you want to make to your project — something you have been putting off because you were not sure how to do it. Open ChatGPT and paste the template below, replacing the placeholder with your actual idea. This is the core two-tool workflow. You do the thinking in ChatGPT; you do the building in Codex.

I am a non-developer using a tool called Codex to make changes to my project files. I have an idea: [DESCRIBE YOUR IDEA IN ONE SENTENCE]. I need you to turn this into a safe, specific Codex prompt that: 1. Names the exact file to change (or asks Codex to identify it if unknown) 2. Describes the exact change in plain English 3. Tells Codex to inspect first and show a plan before making any edits 4. Tells Codex not to touch any other files Write the Codex prompt as a numbered list of instructions I can copy and paste directly into Codex.
07

Save your personal tool rule

Open your notepad. Write one sentence that captures your personal rule for choosing between ChatGPT and Codex. Use your own words — do not copy the lesson. Then write a second sentence that describes the task type where you personally are most likely to use the wrong tool. Knowing your own weak spot helps you pause before you act.

Expected result

You know the ChatGPT vs Codex rule in your own words, you correctly classified five real tasks, you used ChatGPT to turn a vague idea into a specific safe Codex prompt, and you wrote your personal tool rule.

Key takeaway

  • ChatGPT for thinking. Codex for files. When you do not have a plan yet, open ChatGPT first. When you have a specific file change in mind, go straight to Codex. Knowing which tool to reach for is half the skill.
Day 2 - ChatGPT vs Codex - know which tool to... - NonDev Apps