Cleanup: Temp Files and Artifacts

January 12, 2026 ยท View on GitHub

tmpclaude-*-cwd Files

Pattern: tmpclaude-*-cwd (e.g., tmpclaude-878b-cwd)

Location: Repository root

Cause: Claude Code creates these temporary files during sessions. They accumulate over time.

Action: Delete at the start of each session or when noticed.

# Delete all tmpclaude temp files
rm -f tmpclaude-*-cwd

Prevention: These files should be in .gitignore but still clutter the working directory.


Other Temp Files to Watch

PatternLocationAction
.demoapp.pidRootAuto-managed by build.py, don't commit
demoapp.logRootLog file, don't commit
*.min.csswwwroot dirsDO commit - these are build outputs

Cleanup Checklist

Before committing or at session start:

  • rm -f tmpclaude-*-cwd
  • Check git status for unexpected untracked files
  • Ensure .demoapp.pid is not staged