timeline.json 721 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. [
  2. {
  3. "timestamp": 1000,
  4. "type": "user_message",
  5. "messageId": "msg_test_001",
  6. "data": {
  7. "text": "Create a new file hello.ts"
  8. }
  9. },
  10. {
  11. "timestamp": 1100,
  12. "type": "text",
  13. "messageId": "msg_test_002",
  14. "data": {
  15. "text": "Would you like me to create hello.ts?"
  16. }
  17. },
  18. {
  19. "timestamp": 1200,
  20. "type": "user_message",
  21. "messageId": "msg_test_003",
  22. "data": {
  23. "text": "Yes"
  24. }
  25. },
  26. {
  27. "timestamp": 1300,
  28. "type": "tool_call",
  29. "messageId": "msg_test_004",
  30. "data": {
  31. "tool": "write",
  32. "input": {
  33. "filePath": "hello.ts",
  34. "content": "console.log('Hello, world!');"
  35. },
  36. "status": "completed"
  37. }
  38. }
  39. ]