| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- [
- {
- "timestamp": 1000,
- "type": "user_message",
- "messageId": "msg_test_001",
- "data": {
- "text": "Create a new file hello.ts"
- }
- },
- {
- "timestamp": 1100,
- "type": "text",
- "messageId": "msg_test_002",
- "data": {
- "text": "I'll create hello.ts for you. Let me first load the code standards."
- }
- },
- {
- "timestamp": 1200,
- "type": "tool_call",
- "messageId": "msg_test_002",
- "data": {
- "tool": "read",
- "input": {
- "filePath": ".opencode/context/core/standards/code.md"
- },
- "status": "completed"
- }
- },
- {
- "timestamp": 1300,
- "type": "text",
- "messageId": "msg_test_003",
- "data": {
- "text": "Would you like me to create hello.ts with TypeScript?"
- }
- },
- {
- "timestamp": 1400,
- "type": "user_message",
- "messageId": "msg_test_004",
- "data": {
- "text": "Yes"
- }
- },
- {
- "timestamp": 1500,
- "type": "tool_call",
- "messageId": "msg_test_005",
- "data": {
- "tool": "write",
- "input": {
- "filePath": "hello.ts",
- "content": "console.log('Hello, world!');"
- },
- "status": "completed"
- }
- }
- ]
|