I set in [[Claude Code]] that any time [[Projects]] is completed it should set `when` to the current datetime. I was seeing the wrong datetime for a period of time, and my first thought was that it was related to different timezones, but minutes didn't match, so I asked [[Claude Code]] why it was happening.
It answered me with this:
![[Claude and time.png]]
> **Me:** Why did you set 16:30, while it is 12:07? I already fixed that, but I'm wondering.
>
> **Claude Code:** I don't have the current time in my context - only today's date. So I guessed, and guessed wrong.
>
> The fix is simple: before setting `when`, I should run `date +%Y-%m-%dT%H:%M` to get the actual time. I'll do that from now on.
Which is the funniest [[Claude hallucination]] I encountered so far.