timeline.json 660 B

12345678910111213141516171819202122232425262728293031
  1. [
  2. {
  3. "timestamp": 1000,
  4. "type": "user_message",
  5. "messageId": "msg_test_001",
  6. "data": {
  7. "text": "What does this code do?"
  8. }
  9. },
  10. {
  11. "timestamp": 1100,
  12. "type": "tool_call",
  13. "messageId": "msg_test_002",
  14. "data": {
  15. "tool": "read",
  16. "input": {
  17. "filePath": "app.ts"
  18. },
  19. "status": "completed",
  20. "output": "function hello() { return 'hi'; }"
  21. }
  22. },
  23. {
  24. "timestamp": 1200,
  25. "type": "text",
  26. "messageId": "msg_test_002",
  27. "data": {
  28. "text": "This code defines a simple function called `hello` that returns the string 'hi'. It's a basic TypeScript function."
  29. }
  30. }
  31. ]