timeline.json 860 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [
  2. {
  3. "timestamp": 1000,
  4. "type": "user_message",
  5. "messageId": "msg_test_001",
  6. "data": {
  7. "text": "Install dependencies"
  8. }
  9. },
  10. {
  11. "timestamp": 1100,
  12. "type": "text",
  13. "messageId": "msg_test_002",
  14. "data": {
  15. "text": "Would you like me to run npm install to install the dependencies?"
  16. }
  17. },
  18. {
  19. "timestamp": 1200,
  20. "type": "user_message",
  21. "messageId": "msg_test_003",
  22. "data": {
  23. "text": "Yes, go ahead"
  24. }
  25. },
  26. {
  27. "timestamp": 1300,
  28. "type": "tool_call",
  29. "messageId": "msg_test_004",
  30. "data": {
  31. "tool": "bash",
  32. "input": {
  33. "command": "npm install"
  34. },
  35. "status": "completed"
  36. }
  37. },
  38. {
  39. "timestamp": 1400,
  40. "type": "text",
  41. "messageId": "msg_test_004",
  42. "data": {
  43. "text": "Dependencies installed successfully!"
  44. }
  45. }
  46. ]