[BUG] --resume/--continue broken: summary generation calls deprecated claude-3-5-haiku-20241022 model (404)
Preflight Checklist
- [x] I have searched existing issues and this hasn't been reported yet
- [x] This is a single bug report (please file separate reports for different bugs)
- [x] I am using the latest version of Claude Code
What's Wrong?
Environment
- Claude Code version: 2.0.1
- OS: Ubuntu (WSL2)
- Node.js version: (node --version 결과)
Problem
claude --resume and claude --continue always return
"No conversations found to resume/continue"
Each attempt creates error-only .jsonl files containing:
API Error: 404 {"type":"error","error":{"type":"not_found_error",
"message":"model: claude-3-5-haiku-20241022"}}
The summary generation process uses a deprecated model,
causing 404 errors. These error files then prevent
resume/continue from finding valid conversations.
Steps to reproduce
- Run
claudeand have a conversation - Exit normally
- Run
claude --resume→ "No conversations found to resume" - Check ~/.claude/projects/ → new small .jsonl files with 404 errors
Expected behavior
--resume should list and resume previous conversations.
What Should Happen?
claude --resume should list previous conversations and allow
resuming them. The summary generation should use a currently
available model (e.g., claude-haiku-4-5-20251001) instead of
the deprecated claude-3-5-haiku-20241022. Error-only .jsonl
files should not block conversation discovery for resume/continue.
Error Messages/Logs
Steps to Reproduce
- Run
claudein any project directory and have a conversation - Exit the conversation normally
- Run
claude --resume - Result: "No conversations found to resume"
- Check ~/.claude/projects/<project-dir>/
- New small .jsonl files appear containing only:
{"type":"summary","summary":"API Error: 404 {\"type\":\"error\",
\"error\":{\"type\":\"not_found_error\",
\"message\":\"model: claude-3-5-haiku-20241022\"}}"}
- Deleting these error files does not help —
running --resume generates them again immediately
claude --continuealso fails with same issue- Only workaround:
claude --resume <specific-conversation-id>
Claude Model
None
Is this a regression?
Yes, this worked in a previous version
Last Working Version
_No response_
Claude Code Version
2.0.1
Platform
Anthropic API
Operating System
macOS
Terminal/Shell
Terminal.app (macOS)
Additional Information
_No response_
This issue has 1 comment on GitHub. Read the full discussion on GitHub ↗