.gitignore 461 B

1234567891011121314151617181920212223242526272829303132
  1. # Developer identity (local only)
  2. .developer
  3. # Current task pointer (each dev works on different task)
  4. .current-task
  5. # Session/window scoped runtime state
  6. .runtime/
  7. # Ralph Loop state file
  8. .ralph-state.json
  9. # Agent runtime files
  10. .agents/
  11. .agent-log
  12. .session-id
  13. # Task directory runtime files
  14. .plan-log
  15. # Atomic update temp files
  16. *.tmp
  17. # Update backup directories
  18. .backup-*
  19. # Conflict resolution temp files
  20. *.new
  21. # Python cache
  22. **/__pycache__/
  23. **/*.pyc