Module 10

When It Lies To You

Module 10. Every failure in this module actually happened, on a real system, and cost real time. None of them looked like failures while they were happening. That is the entire point.

10 · Claude Code for Filmmakers1 / 16

It does not lie the way a person lies

It fails confidently, fluently, and in the same tone it uses when it succeeds.

There is no tell. The message that says "done, all forty exported" is written with exactly the same certainty whether or not anything was exported.

10 · Claude Code for Filmmakers2 / 16

The one habit

Do this

Verify the artifact, never the success code.

A success message describes what was attempted. It does not describe what exists.

  • A render "succeeded" means the process exited. Not that the film is right.
  • "Uploaded 40 files" means 40 calls returned. Not that 40 files are there.
  • "Saved your changes" means a write ran. Not that it wrote what you meant.

If you did not look at the thing, you do not know. Every failure in the rest of this module is a variation of forgetting that.

10 · Claude Code for Filmmakers3 / 16

1. Fifty successes and nothing there

A batch job ran overnight, reporting each item complete. Fifty confirmations. In the morning the report said fifty done.

Nothing had been created. The calls had returned a success shape without the work ever being queued.

The trap

The counter is not the artifact. A number that goes up is a number that went up.

The fix, forever: submit one. Go and look at the thing itself, in the place it is supposed to be. Only then submit the other forty nine.

10 · Claude Code for Filmmakers4 / 16

2. Two hands on the same project file

Two processes were pointed at one editing application at the same time, to go faster.

Nothing errored. Nothing warned. Days later, a timeline was missing shots that had definitely been cut.

An application that holds state in memory does not collide loudly. It collides quietly, and the damage surfaces long after the session where you could have understood it.

Never do this

One writer per resource. One hand on the timeline, one process per project file, always.

10 · Claude Code for Filmmakers5 / 16

3. The audit that reported health while rotting

A weekly health check ran for weeks and passed every time.

It was checking that files existed. It was not checking that they said anything true. The system was drifting the whole time, and the green result was actively making it worse, because it retired the suspicion that would have caught it.

Watch out

A check you have never seen fail is not a check. It is decoration.

Break it on purpose. Feed it something you know is wrong. If it still passes, you have learned something enormous for the cost of two minutes.

10 · Claude Code for Filmmakers6 / 16

4. The file that described itself wrongly

A configuration file carried a comment naming which of three settings it was using. The comment said one thing. The actual contents were a different, much stricter one.

Result: every new user's first experience was being asked for permission on every single file, dozens of times in a row, on a system advertised as effortless. They concluded the tool was broken. They were not wrong.

Nobody had diffed the file against the thing it claimed to be, because it said what it was right there at the top.

The trap

A label is a claim, not a fact. The file says what it says, not what its comment says.

10 · Claude Code for Filmmakers7 / 16

5. Retrying into a wall

A sign-in did not work. So it was tried again. And again.

Repeated attempts do not read as persistence to the system on the other end. They read as an attack, and the account was hard locked for most of a day.

Never do this

Never retry a refused action hoping for a different answer. A refusal is information.

When something is denied: that lane is closed, the task is not. Say what is blocked, then go and do every other part of the work.

10 · Claude Code for Filmmakers8 / 16

6. The long session that got stupid

A session that had been running for hours started making worse decisions. Forgetting constraints from earlier. Contradicting itself.

Nothing was wrong with the model. The context was full. Everything said in the first hour had been pushed out to make room.

Tip

When it starts feeling dumber, that is a capacity signal, not a quality signal. Save where you are, start fresh, and tell the new session the three things that matter.

Long sessions are not a badge. Split the work and each half is sharper than the whole was.

10 · Claude Code for Filmmakers9 / 16

7. The correct answer to the wrong question

The most expensive failure in this course's world is not a wrong output. It is forty correct outputs, generated perfectly, from a prompt you would have fixed in one line at item two.

Nothing failed. The bill and the afternoon are gone anyway.

Do this

One first. Look at it. Then the rest. Every time, forever, no exceptions for jobs you are confident about.

10 · Claude Code for Filmmakers10 / 16

Ask for the evidence, not the verdict

Rewrite your requests so the answer contains proof:

Instead ofAsk
"did the exports work?""list every file with its size and duration"
"is the archive complete?""verify against the manifest and show mismatches"
"did you fix shot 9?""show me the diff and the new file's path"
"is this accurate?""quote the line you got that from"

A verdict is an opinion. A file listing is a fact.

10 · Claude Code for Filmmakers11 / 16

Make it say the word MISSING

The failure underneath most of the others is filling a gap with something plausible.

"If you do not have the value, write MISSING. Do not estimate, do not infer it from context, do not use a typical value. MISSING is a correct answer and a guess is not."

Put that sentence in the instructions your studio reads every session. It is one line and it converts the most dangerous failure mode into a visible one.

10 · Claude Code for Filmmakers12 / 16

Do it now

10 · Claude Code for Filmmakers13 / 16

The exercise

Twenty minutes, on the film you already made.

  1. Take the last thing you were told was done. Go and look at the actual file.
  2. "Add to my studio instructions: if you do not have a value, write MISSING. Never estimate."
  3. Take one guard or check you rely on. Feed it something wrong and watch it fail.
  4. If it passed, fix it now, while it costs nothing.
  5. "List every file in deliverables/ with size and duration." Compare against what you believe.
  6. Start your export queue, kill it halfway, and run it again. Watch whether it resumes.
  7. Write down what you found. It will be more than you expect.
10 · Claude Code for Filmmakers14 / 16

What you should have now

  • A studio that says MISSING instead of inventing
  • At least one guard you have personally watched fire
  • A queue you know survives being interrupted, because you interrupted it
  • The habit of asking for a file listing instead of a verdict
  • One discovery from step 5 that you did not expect

You are no longer running on trust, which means you can now let it run.

10 · Claude Code for Filmmakers15 / 16

Next: Module 11

Your Short Film. The capstone. One finished piece, start to finish, using every module, and the four weeks after it.

Verified against Claude Code 2.1.220 · 2026-07-30.

10 · Claude Code for Filmmakers16 / 16
Keys space next  ·  back
Or click the arrows, the sides of the frame, or the bar along the bottom
Home / End first / last
S presenter notes
A scroll-all view, then ⌘P to make a PDF
F fullscreen  ·  ? this help
NextYour Short FilmContinue ›