timeline.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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": "I'll create hello.ts for you. Let me first load the code standards."
  16. }
  17. },
  18. {
  19. "timestamp": 1200,
  20. "type": "tool_call",
  21. "messageId": "msg_test_002",
  22. "data": {
  23. "tool": "read",
  24. "input": {
  25. "filePath": ".opencode/context/core/standards/code.md"
  26. },
  27. "status": "completed"
  28. }
  29. },
  30. {
  31. "timestamp": 1300,
  32. "type": "text",
  33. "messageId": "msg_test_003",
  34. "data": {
  35. "text": "Would you like me to create hello.ts with TypeScript?"
  36. }
  37. },
  38. {
  39. "timestamp": 1400,
  40. "type": "user_message",
  41. "messageId": "msg_test_004",
  42. "data": {
  43. "text": "Yes"
  44. }
  45. },
  46. {
  47. "timestamp": 1500,
  48. "type": "tool_call",
  49. "messageId": "msg_test_005",
  50. "data": {
  51. "tool": "write",
  52. "input": {
  53. "filePath": "hello.ts",
  54. "content": "console.log('Hello, world!');"
  55. },
  56. "status": "completed"
  57. }
  58. }
  59. ]