@agentunion/kite 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. package/__init__.py +1 -0
  2. package/__main__.py +15 -0
  3. package/cli.js +70 -0
  4. package/core/__init__.py +0 -0
  5. package/core/__pycache__/__init__.cpython-313.pyc +0 -0
  6. package/core/event_hub/BENCHMARK.md +94 -0
  7. package/core/event_hub/__init__.py +0 -0
  8. package/core/event_hub/__pycache__/__init__.cpython-313.pyc +0 -0
  9. package/core/event_hub/__pycache__/bench.cpython-313.pyc +0 -0
  10. package/core/event_hub/__pycache__/bench_perf.cpython-313.pyc +0 -0
  11. package/core/event_hub/__pycache__/dedup.cpython-313.pyc +0 -0
  12. package/core/event_hub/__pycache__/entry.cpython-313.pyc +0 -0
  13. package/core/event_hub/__pycache__/hub.cpython-313.pyc +0 -0
  14. package/core/event_hub/__pycache__/router.cpython-313.pyc +0 -0
  15. package/core/event_hub/__pycache__/server.cpython-313.pyc +0 -0
  16. package/core/event_hub/bench.py +459 -0
  17. package/core/event_hub/bench_extreme.py +308 -0
  18. package/core/event_hub/bench_perf.py +350 -0
  19. package/core/event_hub/bench_results/.gitkeep +0 -0
  20. package/core/event_hub/bench_results/2026-02-28_13-26-48.json +51 -0
  21. package/core/event_hub/bench_results/2026-02-28_13-44-45.json +51 -0
  22. package/core/event_hub/bench_results/2026-02-28_13-45-39.json +51 -0
  23. package/core/event_hub/dedup.py +31 -0
  24. package/core/event_hub/entry.py +113 -0
  25. package/core/event_hub/hub.py +263 -0
  26. package/core/event_hub/module.md +21 -0
  27. package/core/event_hub/router.py +21 -0
  28. package/core/event_hub/server.py +138 -0
  29. package/core/event_hub_bench/entry.py +371 -0
  30. package/core/event_hub_bench/module.md +25 -0
  31. package/core/launcher/__init__.py +0 -0
  32. package/core/launcher/__pycache__/__init__.cpython-313.pyc +0 -0
  33. package/core/launcher/__pycache__/entry.cpython-313.pyc +0 -0
  34. package/core/launcher/__pycache__/module_scanner.cpython-313.pyc +0 -0
  35. package/core/launcher/__pycache__/process_manager.cpython-313.pyc +0 -0
  36. package/core/launcher/data/log/lifecycle.jsonl +1045 -0
  37. package/core/launcher/data/processes_14752.json +32 -0
  38. package/core/launcher/data/token.txt +1 -0
  39. package/core/launcher/entry.py +965 -0
  40. package/core/launcher/module.md +37 -0
  41. package/core/launcher/module_scanner.py +253 -0
  42. package/core/launcher/process_manager.py +435 -0
  43. package/core/registry/__init__.py +0 -0
  44. package/core/registry/__pycache__/__init__.cpython-313.pyc +0 -0
  45. package/core/registry/__pycache__/entry.cpython-313.pyc +0 -0
  46. package/core/registry/__pycache__/server.cpython-313.pyc +0 -0
  47. package/core/registry/__pycache__/store.cpython-313.pyc +0 -0
  48. package/core/registry/data/port.txt +1 -0
  49. package/core/registry/data/port_14752.txt +1 -0
  50. package/core/registry/data/port_484.txt +1 -0
  51. package/core/registry/entry.py +73 -0
  52. package/core/registry/module.md +30 -0
  53. package/core/registry/server.py +256 -0
  54. package/core/registry/store.py +232 -0
  55. package/extensions/__init__.py +0 -0
  56. package/extensions/__pycache__/__init__.cpython-313.pyc +0 -0
  57. package/extensions/services/__init__.py +0 -0
  58. package/extensions/services/__pycache__/__init__.cpython-313.pyc +0 -0
  59. package/extensions/services/watchdog/__init__.py +0 -0
  60. package/extensions/services/watchdog/__pycache__/__init__.cpython-313.pyc +0 -0
  61. package/extensions/services/watchdog/__pycache__/entry.cpython-313.pyc +0 -0
  62. package/extensions/services/watchdog/__pycache__/monitor.cpython-313.pyc +0 -0
  63. package/extensions/services/watchdog/__pycache__/server.cpython-313.pyc +0 -0
  64. package/extensions/services/watchdog/entry.py +143 -0
  65. package/extensions/services/watchdog/module.md +25 -0
  66. package/extensions/services/watchdog/monitor.py +420 -0
  67. package/extensions/services/watchdog/server.py +167 -0
  68. package/main.py +17 -0
  69. package/package.json +27 -0
@@ -0,0 +1,1045 @@
1
+ {"ts": "2026-02-28T06:17:18.197275+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
2
+ {"ts": "2026-02-28T06:17:18.198323+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
3
+ {"ts": "2026-02-28T06:17:18.198887+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
4
+ {"ts": "2026-02-28T06:17:18.200099+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
5
+ {"ts": "2026-02-28T06:17:18.200726+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
6
+ {"ts": "2026-02-28T06:17:18.201194+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
7
+ {"ts": "2026-02-28T06:17:18.432475+00:00", "event": "starting", "module": "event_hub"}
8
+ {"ts": "2026-02-28T06:17:48.456935+00:00", "event": "started", "module": "event_hub", "pid": 17316}
9
+ {"ts": "2026-02-28T06:17:48.458011+00:00", "event": "starting", "module": "event_hub_bench"}
10
+ {"ts": "2026-02-28T06:18:18.492839+00:00", "event": "started", "module": "event_hub_bench", "pid": 4204}
11
+ {"ts": "2026-02-28T06:18:18.493849+00:00", "event": "starting", "module": "registry"}
12
+ {"ts": "2026-02-28T06:18:55.247898+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
13
+ {"ts": "2026-02-28T06:18:55.248521+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
14
+ {"ts": "2026-02-28T06:18:55.248968+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
15
+ {"ts": "2026-02-28T06:18:55.249373+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
16
+ {"ts": "2026-02-28T06:18:55.249799+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
17
+ {"ts": "2026-02-28T06:18:55.250243+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
18
+ {"ts": "2026-02-28T06:18:55.480823+00:00", "event": "starting", "module": "event_hub"}
19
+ {"ts": "2026-02-28T06:19:25.506615+00:00", "event": "started", "module": "event_hub", "pid": 15984}
20
+ {"ts": "2026-02-28T06:19:25.507745+00:00", "event": "starting", "module": "event_hub_bench"}
21
+ {"ts": "2026-02-28T06:19:55.536454+00:00", "event": "started", "module": "event_hub_bench", "pid": 7624}
22
+ {"ts": "2026-02-28T06:19:55.537368+00:00", "event": "starting", "module": "registry"}
23
+ {"ts": "2026-02-28T06:19:56.942951+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
24
+ {"ts": "2026-02-28T06:19:56.943667+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
25
+ {"ts": "2026-02-28T06:19:56.944192+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
26
+ {"ts": "2026-02-28T06:19:56.944701+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
27
+ {"ts": "2026-02-28T06:19:56.945167+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
28
+ {"ts": "2026-02-28T06:19:56.945614+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
29
+ {"ts": "2026-02-28T06:19:57.243272+00:00", "event": "starting", "module": "event_hub"}
30
+ {"ts": "2026-02-28T06:20:25.549610+00:00", "event": "started", "module": "registry", "pid": 7944}
31
+ {"ts": "2026-02-28T06:20:25.550644+00:00", "event": "starting", "module": "watchdog"}
32
+ {"ts": "2026-02-28T06:20:27.277410+00:00", "event": "started", "module": "event_hub", "pid": 17404}
33
+ {"ts": "2026-02-28T06:20:27.278412+00:00", "event": "starting", "module": "event_hub_bench"}
34
+ {"ts": "2026-02-28T06:20:55.575051+00:00", "event": "started", "module": "watchdog", "pid": 10264}
35
+ {"ts": "2026-02-28T06:20:55.806528+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
36
+ {"ts": "2026-02-28T06:20:55.807745+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
37
+ {"ts": "2026-02-28T06:20:55.808929+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
38
+ {"ts": "2026-02-28T06:20:55.809662+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
39
+ {"ts": "2026-02-28T06:20:55.810168+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
40
+ {"ts": "2026-02-28T06:20:57.308437+00:00", "event": "started", "module": "event_hub_bench", "pid": 11972}
41
+ {"ts": "2026-02-28T06:20:57.309648+00:00", "event": "starting", "module": "registry"}
42
+ {"ts": "2026-02-28T06:21:00.901560+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
43
+ {"ts": "2026-02-28T06:21:05.945240+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
44
+ {"ts": "2026-02-28T06:21:05.946227+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
45
+ {"ts": "2026-02-28T06:21:05.946777+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
46
+ {"ts": "2026-02-28T06:21:07.064503+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
47
+ {"ts": "2026-02-28T06:21:07.065159+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
48
+ {"ts": "2026-02-28T06:21:07.065609+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
49
+ {"ts": "2026-02-28T06:21:07.066022+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
50
+ {"ts": "2026-02-28T06:21:07.066613+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
51
+ {"ts": "2026-02-28T06:21:07.067006+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
52
+ {"ts": "2026-02-28T06:21:07.300775+00:00", "event": "starting", "module": "event_hub"}
53
+ {"ts": "2026-02-28T06:21:27.320286+00:00", "event": "started", "module": "registry", "pid": 12328}
54
+ {"ts": "2026-02-28T06:21:27.321277+00:00", "event": "starting", "module": "watchdog"}
55
+ {"ts": "2026-02-28T06:21:37.323263+00:00", "event": "started", "module": "event_hub", "pid": 10920}
56
+ {"ts": "2026-02-28T06:21:37.324310+00:00", "event": "starting", "module": "event_hub_bench"}
57
+ {"ts": "2026-02-28T06:21:57.355361+00:00", "event": "started", "module": "watchdog", "pid": 5500}
58
+ {"ts": "2026-02-28T06:21:57.623112+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
59
+ {"ts": "2026-02-28T06:21:57.624024+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
60
+ {"ts": "2026-02-28T06:21:57.624693+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
61
+ {"ts": "2026-02-28T06:22:02.967043+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
62
+ {"ts": "2026-02-28T06:22:07.354727+00:00", "event": "started", "module": "event_hub_bench", "pid": 17028}
63
+ {"ts": "2026-02-28T06:22:07.355812+00:00", "event": "starting", "module": "registry"}
64
+ {"ts": "2026-02-28T06:22:07.846576+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
65
+ {"ts": "2026-02-28T06:22:07.847597+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
66
+ {"ts": "2026-02-28T06:22:07.848209+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
67
+ {"ts": "2026-02-28T06:22:37.365276+00:00", "event": "started", "module": "registry", "pid": 340}
68
+ {"ts": "2026-02-28T06:22:37.366513+00:00", "event": "starting", "module": "watchdog"}
69
+ {"ts": "2026-02-28T06:23:07.389978+00:00", "event": "started", "module": "watchdog", "pid": 7412}
70
+ {"ts": "2026-02-28T06:23:07.730383+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
71
+ {"ts": "2026-02-28T06:23:07.731382+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
72
+ {"ts": "2026-02-28T06:23:07.732225+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
73
+ {"ts": "2026-02-28T06:23:07.732910+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
74
+ {"ts": "2026-02-28T06:23:07.733582+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
75
+ {"ts": "2026-02-28T06:23:13.736576+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
76
+ {"ts": "2026-02-28T06:23:17.983810+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
77
+ {"ts": "2026-02-28T06:23:17.984726+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
78
+ {"ts": "2026-02-28T06:23:17.985427+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
79
+ {"ts": "2026-02-28T06:23:19.234405+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
80
+ {"ts": "2026-02-28T06:23:19.235159+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
81
+ {"ts": "2026-02-28T06:23:19.235756+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
82
+ {"ts": "2026-02-28T06:23:19.236421+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
83
+ {"ts": "2026-02-28T06:23:19.237110+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
84
+ {"ts": "2026-02-28T06:23:19.237885+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
85
+ {"ts": "2026-02-28T06:23:19.526892+00:00", "event": "starting", "module": "event_hub"}
86
+ {"ts": "2026-02-28T06:23:49.551220+00:00", "event": "started", "module": "event_hub", "pid": 6740}
87
+ {"ts": "2026-02-28T06:23:49.552482+00:00", "event": "starting", "module": "event_hub_bench"}
88
+ {"ts": "2026-02-28T06:24:19.583861+00:00", "event": "started", "module": "event_hub_bench", "pid": 6676}
89
+ {"ts": "2026-02-28T06:24:19.584757+00:00", "event": "starting", "module": "registry"}
90
+ {"ts": "2026-02-28T06:24:49.590940+00:00", "event": "started", "module": "registry", "pid": 14684}
91
+ {"ts": "2026-02-28T06:24:49.591936+00:00", "event": "starting", "module": "watchdog"}
92
+ {"ts": "2026-02-28T06:25:19.621296+00:00", "event": "started", "module": "watchdog", "pid": 8820}
93
+ {"ts": "2026-02-28T06:25:19.859008+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
94
+ {"ts": "2026-02-28T06:25:19.859824+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
95
+ {"ts": "2026-02-28T06:25:19.860704+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
96
+ {"ts": "2026-02-28T06:25:19.861227+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
97
+ {"ts": "2026-02-28T06:25:19.861724+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
98
+ {"ts": "2026-02-28T06:25:24.767532+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
99
+ {"ts": "2026-02-28T06:25:30.087452+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
100
+ {"ts": "2026-02-28T06:25:30.088234+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
101
+ {"ts": "2026-02-28T06:25:30.088781+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
102
+ {"ts": "2026-02-28T06:25:30.098881+00:00", "event": "started", "module": "registry", "pid": 12492, "via": "restart_api"}
103
+ {"ts": "2026-02-28T06:25:31.216573+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
104
+ {"ts": "2026-02-28T06:25:31.217178+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
105
+ {"ts": "2026-02-28T06:25:31.217663+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
106
+ {"ts": "2026-02-28T06:25:31.218087+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
107
+ {"ts": "2026-02-28T06:25:31.218488+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
108
+ {"ts": "2026-02-28T06:25:31.218927+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
109
+ {"ts": "2026-02-28T06:25:31.457502+00:00", "event": "starting", "module": "event_hub"}
110
+ {"ts": "2026-02-28T06:26:01.482455+00:00", "event": "started", "module": "event_hub", "pid": 12776}
111
+ {"ts": "2026-02-28T06:26:01.483500+00:00", "event": "starting", "module": "event_hub_bench"}
112
+ {"ts": "2026-02-28T06:26:31.502680+00:00", "event": "started", "module": "event_hub_bench", "pid": 15892}
113
+ {"ts": "2026-02-28T06:26:31.503610+00:00", "event": "starting", "module": "registry"}
114
+ {"ts": "2026-02-28T06:27:01.512477+00:00", "event": "started", "module": "registry", "pid": 16812}
115
+ {"ts": "2026-02-28T06:27:01.513428+00:00", "event": "starting", "module": "watchdog"}
116
+ {"ts": "2026-02-28T06:27:31.532190+00:00", "event": "started", "module": "watchdog", "pid": 8772}
117
+ {"ts": "2026-02-28T06:27:31.774294+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
118
+ {"ts": "2026-02-28T06:27:31.775100+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
119
+ {"ts": "2026-02-28T06:27:31.775788+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
120
+ {"ts": "2026-02-28T06:27:31.776285+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
121
+ {"ts": "2026-02-28T06:27:31.776692+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
122
+ {"ts": "2026-02-28T06:27:36.390628+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
123
+ {"ts": "2026-02-28T06:27:41.713724+00:00", "event": "started", "module": "registry", "pid": 1824, "via": "restart_api"}
124
+ {"ts": "2026-02-28T06:27:42.016232+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
125
+ {"ts": "2026-02-28T06:27:42.017001+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
126
+ {"ts": "2026-02-28T06:27:42.017897+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
127
+ {"ts": "2026-02-28T06:27:43.233797+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
128
+ {"ts": "2026-02-28T06:27:43.234509+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
129
+ {"ts": "2026-02-28T06:27:43.235084+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
130
+ {"ts": "2026-02-28T06:27:43.235566+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
131
+ {"ts": "2026-02-28T06:27:43.236025+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
132
+ {"ts": "2026-02-28T06:27:43.236496+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
133
+ {"ts": "2026-02-28T06:27:43.523475+00:00", "event": "starting", "module": "event_hub"}
134
+ {"ts": "2026-02-28T06:28:13.548011+00:00", "event": "started", "module": "event_hub", "pid": 16348}
135
+ {"ts": "2026-02-28T06:28:13.548881+00:00", "event": "starting", "module": "event_hub_bench"}
136
+ {"ts": "2026-02-28T06:28:43.578250+00:00", "event": "started", "module": "event_hub_bench", "pid": 3224}
137
+ {"ts": "2026-02-28T06:28:43.579213+00:00", "event": "starting", "module": "registry"}
138
+ {"ts": "2026-02-28T06:29:13.585166+00:00", "event": "started", "module": "registry", "pid": 2788}
139
+ {"ts": "2026-02-28T06:29:13.586131+00:00", "event": "starting", "module": "watchdog"}
140
+ {"ts": "2026-02-28T06:29:43.611219+00:00", "event": "started", "module": "watchdog", "pid": 17384}
141
+ {"ts": "2026-02-28T06:29:43.872511+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
142
+ {"ts": "2026-02-28T06:29:43.873288+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
143
+ {"ts": "2026-02-28T06:29:43.873958+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
144
+ {"ts": "2026-02-28T06:29:43.874470+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
145
+ {"ts": "2026-02-28T06:29:43.874956+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
146
+ {"ts": "2026-02-28T06:29:48.461969+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
147
+ {"ts": "2026-02-28T06:29:53.784484+00:00", "event": "started", "module": "registry", "pid": 15236, "via": "restart_api"}
148
+ {"ts": "2026-02-28T06:29:54.146834+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
149
+ {"ts": "2026-02-28T06:29:54.147509+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
150
+ {"ts": "2026-02-28T06:29:54.147982+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
151
+ {"ts": "2026-02-28T06:29:55.305429+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
152
+ {"ts": "2026-02-28T06:29:55.306245+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
153
+ {"ts": "2026-02-28T06:29:55.306916+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
154
+ {"ts": "2026-02-28T06:29:55.307387+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
155
+ {"ts": "2026-02-28T06:29:55.307844+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
156
+ {"ts": "2026-02-28T06:29:55.308366+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
157
+ {"ts": "2026-02-28T06:29:55.551061+00:00", "event": "starting", "module": "event_hub"}
158
+ {"ts": "2026-02-28T06:30:25.569825+00:00", "event": "started", "module": "event_hub", "pid": 14512}
159
+ {"ts": "2026-02-28T06:30:25.570850+00:00", "event": "starting", "module": "event_hub_bench"}
160
+ {"ts": "2026-02-28T06:30:55.592486+00:00", "event": "started", "module": "event_hub_bench", "pid": 5832}
161
+ {"ts": "2026-02-28T06:30:55.593376+00:00", "event": "starting", "module": "registry"}
162
+ {"ts": "2026-02-28T06:31:25.607478+00:00", "event": "started", "module": "registry", "pid": 12176}
163
+ {"ts": "2026-02-28T06:31:25.608482+00:00", "event": "starting", "module": "watchdog"}
164
+ {"ts": "2026-02-28T06:31:55.638915+00:00", "event": "started", "module": "watchdog", "pid": 7300}
165
+ {"ts": "2026-02-28T06:31:55.859224+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
166
+ {"ts": "2026-02-28T06:31:55.860010+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
167
+ {"ts": "2026-02-28T06:31:55.860720+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
168
+ {"ts": "2026-02-28T06:31:55.861251+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
169
+ {"ts": "2026-02-28T06:31:55.861874+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
170
+ {"ts": "2026-02-28T06:32:00.349904+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
171
+ {"ts": "2026-02-28T06:32:05.659806+00:00", "event": "started", "module": "registry", "pid": 14820, "via": "restart_api"}
172
+ {"ts": "2026-02-28T06:32:06.113413+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
173
+ {"ts": "2026-02-28T06:32:06.114150+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
174
+ {"ts": "2026-02-28T06:32:06.114798+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
175
+ {"ts": "2026-02-28T06:32:07.228499+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
176
+ {"ts": "2026-02-28T06:32:07.229085+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
177
+ {"ts": "2026-02-28T06:32:07.229705+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
178
+ {"ts": "2026-02-28T06:32:07.230301+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
179
+ {"ts": "2026-02-28T06:32:07.230916+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
180
+ {"ts": "2026-02-28T06:32:07.231511+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
181
+ {"ts": "2026-02-28T06:32:07.460656+00:00", "event": "starting", "module": "event_hub"}
182
+ {"ts": "2026-02-28T06:32:37.486664+00:00", "event": "started", "module": "event_hub", "pid": 13200}
183
+ {"ts": "2026-02-28T06:32:37.487534+00:00", "event": "starting", "module": "event_hub_bench"}
184
+ {"ts": "2026-02-28T06:33:07.516967+00:00", "event": "started", "module": "event_hub_bench", "pid": 7264}
185
+ {"ts": "2026-02-28T06:33:07.517889+00:00", "event": "starting", "module": "registry"}
186
+ {"ts": "2026-02-28T06:33:37.530029+00:00", "event": "started", "module": "registry", "pid": 16400}
187
+ {"ts": "2026-02-28T06:33:37.530917+00:00", "event": "starting", "module": "watchdog"}
188
+ {"ts": "2026-02-28T06:34:07.553338+00:00", "event": "started", "module": "watchdog", "pid": 7660}
189
+ {"ts": "2026-02-28T06:34:07.772406+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
190
+ {"ts": "2026-02-28T06:34:07.773166+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
191
+ {"ts": "2026-02-28T06:34:07.773788+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
192
+ {"ts": "2026-02-28T06:34:07.774254+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
193
+ {"ts": "2026-02-28T06:34:07.774721+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
194
+ {"ts": "2026-02-28T06:34:12.086970+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
195
+ {"ts": "2026-02-28T06:34:17.384262+00:00", "event": "started", "module": "registry", "pid": 5532, "via": "restart_api"}
196
+ {"ts": "2026-02-28T06:34:17.999770+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
197
+ {"ts": "2026-02-28T06:34:18.000485+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
198
+ {"ts": "2026-02-28T06:34:18.001007+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
199
+ {"ts": "2026-02-28T06:34:19.093374+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
200
+ {"ts": "2026-02-28T06:34:19.093947+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
201
+ {"ts": "2026-02-28T06:34:19.094409+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
202
+ {"ts": "2026-02-28T06:34:19.094801+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
203
+ {"ts": "2026-02-28T06:34:19.095234+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
204
+ {"ts": "2026-02-28T06:34:19.095615+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
205
+ {"ts": "2026-02-28T06:34:19.326978+00:00", "event": "starting", "module": "event_hub"}
206
+ {"ts": "2026-02-28T06:34:49.346315+00:00", "event": "started", "module": "event_hub", "pid": 16860}
207
+ {"ts": "2026-02-28T06:34:49.347384+00:00", "event": "starting", "module": "event_hub_bench"}
208
+ {"ts": "2026-02-28T06:35:19.378126+00:00", "event": "started", "module": "event_hub_bench", "pid": 15944}
209
+ {"ts": "2026-02-28T06:35:19.379023+00:00", "event": "starting", "module": "registry"}
210
+ {"ts": "2026-02-28T06:35:49.389294+00:00", "event": "started", "module": "registry", "pid": 7428}
211
+ {"ts": "2026-02-28T06:35:49.390211+00:00", "event": "starting", "module": "watchdog"}
212
+ {"ts": "2026-02-28T06:36:19.411416+00:00", "event": "started", "module": "watchdog", "pid": 1996}
213
+ {"ts": "2026-02-28T06:36:19.643001+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
214
+ {"ts": "2026-02-28T06:36:19.643768+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
215
+ {"ts": "2026-02-28T06:36:19.644423+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
216
+ {"ts": "2026-02-28T06:36:19.644894+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
217
+ {"ts": "2026-02-28T06:36:19.645318+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
218
+ {"ts": "2026-02-28T06:36:23.963851+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
219
+ {"ts": "2026-02-28T06:36:29.257653+00:00", "event": "started", "module": "registry", "pid": 16884, "via": "restart_api"}
220
+ {"ts": "2026-02-28T06:36:29.904185+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
221
+ {"ts": "2026-02-28T06:36:29.904979+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
222
+ {"ts": "2026-02-28T06:36:29.905505+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
223
+ {"ts": "2026-02-28T06:36:30.990200+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
224
+ {"ts": "2026-02-28T06:36:30.990720+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
225
+ {"ts": "2026-02-28T06:36:30.991280+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
226
+ {"ts": "2026-02-28T06:36:30.991708+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
227
+ {"ts": "2026-02-28T06:36:30.992099+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
228
+ {"ts": "2026-02-28T06:36:30.992476+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
229
+ {"ts": "2026-02-28T06:36:31.219965+00:00", "event": "starting", "module": "event_hub"}
230
+ {"ts": "2026-02-28T06:37:01.242549+00:00", "event": "started", "module": "event_hub", "pid": 6652}
231
+ {"ts": "2026-02-28T06:37:01.243493+00:00", "event": "starting", "module": "event_hub_bench"}
232
+ {"ts": "2026-02-28T06:37:31.273028+00:00", "event": "started", "module": "event_hub_bench", "pid": 4568}
233
+ {"ts": "2026-02-28T06:37:31.273873+00:00", "event": "starting", "module": "registry"}
234
+ {"ts": "2026-02-28T06:38:01.286237+00:00", "event": "started", "module": "registry", "pid": 5160}
235
+ {"ts": "2026-02-28T06:38:01.287173+00:00", "event": "starting", "module": "watchdog"}
236
+ {"ts": "2026-02-28T06:38:31.317191+00:00", "event": "started", "module": "watchdog", "pid": 17208}
237
+ {"ts": "2026-02-28T06:38:31.562343+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
238
+ {"ts": "2026-02-28T06:38:31.563177+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
239
+ {"ts": "2026-02-28T06:38:31.564133+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
240
+ {"ts": "2026-02-28T06:38:31.564671+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
241
+ {"ts": "2026-02-28T06:38:31.565151+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
242
+ {"ts": "2026-02-28T06:38:35.952568+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
243
+ {"ts": "2026-02-28T06:38:41.254857+00:00", "event": "started", "module": "registry", "pid": 8972, "via": "restart_api"}
244
+ {"ts": "2026-02-28T06:38:41.807924+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
245
+ {"ts": "2026-02-28T06:38:41.808678+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
246
+ {"ts": "2026-02-28T06:38:41.809178+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
247
+ {"ts": "2026-02-28T06:38:42.897238+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
248
+ {"ts": "2026-02-28T06:38:42.897793+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
249
+ {"ts": "2026-02-28T06:38:42.898251+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
250
+ {"ts": "2026-02-28T06:38:42.898655+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
251
+ {"ts": "2026-02-28T06:38:42.899106+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
252
+ {"ts": "2026-02-28T06:38:42.899541+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
253
+ {"ts": "2026-02-28T06:38:43.121613+00:00", "event": "starting", "module": "event_hub"}
254
+ {"ts": "2026-02-28T06:39:13.141481+00:00", "event": "started", "module": "event_hub", "pid": 11472}
255
+ {"ts": "2026-02-28T06:39:13.142373+00:00", "event": "starting", "module": "event_hub_bench"}
256
+ {"ts": "2026-02-28T06:39:43.172270+00:00", "event": "started", "module": "event_hub_bench", "pid": 12324}
257
+ {"ts": "2026-02-28T06:39:43.173175+00:00", "event": "starting", "module": "registry"}
258
+ {"ts": "2026-02-28T06:40:13.188465+00:00", "event": "started", "module": "registry", "pid": 10284}
259
+ {"ts": "2026-02-28T06:40:13.189327+00:00", "event": "starting", "module": "watchdog"}
260
+ {"ts": "2026-02-28T06:40:43.215556+00:00", "event": "started", "module": "watchdog", "pid": 7944}
261
+ {"ts": "2026-02-28T06:40:43.445077+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
262
+ {"ts": "2026-02-28T06:40:43.445864+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
263
+ {"ts": "2026-02-28T06:40:43.446688+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
264
+ {"ts": "2026-02-28T06:40:43.447223+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
265
+ {"ts": "2026-02-28T06:40:43.447694+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
266
+ {"ts": "2026-02-28T06:40:47.797168+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
267
+ {"ts": "2026-02-28T06:40:53.095644+00:00", "event": "started", "module": "registry", "pid": 13176, "via": "restart_api"}
268
+ {"ts": "2026-02-28T06:40:53.678209+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
269
+ {"ts": "2026-02-28T06:40:53.678955+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
270
+ {"ts": "2026-02-28T06:40:53.679510+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
271
+ {"ts": "2026-02-28T06:40:54.771227+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
272
+ {"ts": "2026-02-28T06:40:54.771795+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
273
+ {"ts": "2026-02-28T06:40:54.772292+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
274
+ {"ts": "2026-02-28T06:40:54.772716+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
275
+ {"ts": "2026-02-28T06:40:54.773101+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
276
+ {"ts": "2026-02-28T06:40:54.773466+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
277
+ {"ts": "2026-02-28T06:40:54.994272+00:00", "event": "starting", "module": "event_hub"}
278
+ {"ts": "2026-02-28T06:41:25.017045+00:00", "event": "started", "module": "event_hub", "pid": 15512}
279
+ {"ts": "2026-02-28T06:41:25.017997+00:00", "event": "starting", "module": "event_hub_bench"}
280
+ {"ts": "2026-02-28T06:41:55.049195+00:00", "event": "started", "module": "event_hub_bench", "pid": 17380}
281
+ {"ts": "2026-02-28T06:41:55.050085+00:00", "event": "starting", "module": "registry"}
282
+ {"ts": "2026-02-28T06:42:25.055099+00:00", "event": "started", "module": "registry", "pid": 12992}
283
+ {"ts": "2026-02-28T06:42:25.056046+00:00", "event": "starting", "module": "watchdog"}
284
+ {"ts": "2026-02-28T06:42:55.086046+00:00", "event": "started", "module": "watchdog", "pid": 16268}
285
+ {"ts": "2026-02-28T06:42:55.316844+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
286
+ {"ts": "2026-02-28T06:42:55.317735+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
287
+ {"ts": "2026-02-28T06:42:55.318572+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
288
+ {"ts": "2026-02-28T06:42:55.319212+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
289
+ {"ts": "2026-02-28T06:42:55.319712+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
290
+ {"ts": "2026-02-28T06:42:59.754727+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
291
+ {"ts": "2026-02-28T06:43:05.061212+00:00", "event": "started", "module": "registry", "pid": 14820, "via": "restart_api"}
292
+ {"ts": "2026-02-28T06:43:05.549999+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
293
+ {"ts": "2026-02-28T06:43:05.550821+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
294
+ {"ts": "2026-02-28T06:43:05.551328+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
295
+ {"ts": "2026-02-28T06:43:06.626729+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
296
+ {"ts": "2026-02-28T06:43:06.627349+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
297
+ {"ts": "2026-02-28T06:43:06.627896+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
298
+ {"ts": "2026-02-28T06:43:06.628285+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
299
+ {"ts": "2026-02-28T06:43:06.628687+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
300
+ {"ts": "2026-02-28T06:43:06.629100+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
301
+ {"ts": "2026-02-28T06:43:06.851478+00:00", "event": "starting", "module": "event_hub"}
302
+ {"ts": "2026-02-28T06:43:36.880682+00:00", "event": "started", "module": "event_hub", "pid": 7480}
303
+ {"ts": "2026-02-28T06:43:36.881596+00:00", "event": "starting", "module": "event_hub_bench"}
304
+ {"ts": "2026-02-28T06:44:06.914037+00:00", "event": "started", "module": "event_hub_bench", "pid": 9188}
305
+ {"ts": "2026-02-28T06:44:06.914962+00:00", "event": "starting", "module": "registry"}
306
+ {"ts": "2026-02-28T06:44:36.925504+00:00", "event": "started", "module": "registry", "pid": 3004}
307
+ {"ts": "2026-02-28T06:44:36.926403+00:00", "event": "starting", "module": "watchdog"}
308
+ {"ts": "2026-02-28T06:45:06.948694+00:00", "event": "started", "module": "watchdog", "pid": 2740}
309
+ {"ts": "2026-02-28T06:45:07.183869+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
310
+ {"ts": "2026-02-28T06:45:07.184645+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
311
+ {"ts": "2026-02-28T06:45:07.185570+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
312
+ {"ts": "2026-02-28T06:45:07.186154+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
313
+ {"ts": "2026-02-28T06:45:07.186610+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
314
+ {"ts": "2026-02-28T06:45:11.686318+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
315
+ {"ts": "2026-02-28T06:45:17.001346+00:00", "event": "started", "module": "registry", "pid": 2192, "via": "restart_api"}
316
+ {"ts": "2026-02-28T06:45:17.417777+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
317
+ {"ts": "2026-02-28T06:45:17.418425+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
318
+ {"ts": "2026-02-28T06:45:17.419002+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
319
+ {"ts": "2026-02-28T06:45:18.504354+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
320
+ {"ts": "2026-02-28T06:45:18.504859+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
321
+ {"ts": "2026-02-28T06:45:18.505285+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
322
+ {"ts": "2026-02-28T06:45:18.505708+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
323
+ {"ts": "2026-02-28T06:45:18.506098+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
324
+ {"ts": "2026-02-28T06:45:18.506472+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
325
+ {"ts": "2026-02-28T06:45:18.733582+00:00", "event": "starting", "module": "event_hub"}
326
+ {"ts": "2026-02-28T06:45:48.752378+00:00", "event": "started", "module": "event_hub", "pid": 16156}
327
+ {"ts": "2026-02-28T06:45:48.753238+00:00", "event": "starting", "module": "event_hub_bench"}
328
+ {"ts": "2026-02-28T06:46:18.782466+00:00", "event": "started", "module": "event_hub_bench", "pid": 4164}
329
+ {"ts": "2026-02-28T06:46:18.783419+00:00", "event": "starting", "module": "registry"}
330
+ {"ts": "2026-02-28T06:46:48.800089+00:00", "event": "started", "module": "registry", "pid": 5044}
331
+ {"ts": "2026-02-28T06:46:48.800974+00:00", "event": "starting", "module": "watchdog"}
332
+ {"ts": "2026-02-28T06:47:18.825509+00:00", "event": "started", "module": "watchdog", "pid": 15380}
333
+ {"ts": "2026-02-28T06:47:19.067637+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
334
+ {"ts": "2026-02-28T06:47:19.068424+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
335
+ {"ts": "2026-02-28T06:47:19.069295+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
336
+ {"ts": "2026-02-28T06:47:19.069866+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
337
+ {"ts": "2026-02-28T06:47:19.070317+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
338
+ {"ts": "2026-02-28T06:47:23.421481+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
339
+ {"ts": "2026-02-28T06:47:28.721329+00:00", "event": "started", "module": "registry", "pid": 2816, "via": "restart_api"}
340
+ {"ts": "2026-02-28T06:47:29.320415+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
341
+ {"ts": "2026-02-28T06:47:29.321100+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
342
+ {"ts": "2026-02-28T06:47:29.321611+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
343
+ {"ts": "2026-02-28T06:47:30.409149+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
344
+ {"ts": "2026-02-28T06:47:30.409727+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
345
+ {"ts": "2026-02-28T06:47:30.410209+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
346
+ {"ts": "2026-02-28T06:47:30.410622+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
347
+ {"ts": "2026-02-28T06:47:30.411044+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
348
+ {"ts": "2026-02-28T06:47:30.411496+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
349
+ {"ts": "2026-02-28T06:47:30.635643+00:00", "event": "starting", "module": "event_hub"}
350
+ {"ts": "2026-02-28T06:48:00.660502+00:00", "event": "started", "module": "event_hub", "pid": 10636}
351
+ {"ts": "2026-02-28T06:48:00.661335+00:00", "event": "starting", "module": "event_hub_bench"}
352
+ {"ts": "2026-02-28T06:48:30.683315+00:00", "event": "started", "module": "event_hub_bench", "pid": 11240}
353
+ {"ts": "2026-02-28T06:48:30.684234+00:00", "event": "starting", "module": "registry"}
354
+ {"ts": "2026-02-28T06:49:00.686350+00:00", "event": "started", "module": "registry", "pid": 13760}
355
+ {"ts": "2026-02-28T06:49:00.687350+00:00", "event": "starting", "module": "watchdog"}
356
+ {"ts": "2026-02-28T06:49:30.717633+00:00", "event": "started", "module": "watchdog", "pid": 12116}
357
+ {"ts": "2026-02-28T06:49:30.944091+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
358
+ {"ts": "2026-02-28T06:49:30.944860+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
359
+ {"ts": "2026-02-28T06:49:30.945493+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
360
+ {"ts": "2026-02-28T06:49:30.945986+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
361
+ {"ts": "2026-02-28T06:49:30.946409+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
362
+ {"ts": "2026-02-28T06:49:35.281324+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
363
+ {"ts": "2026-02-28T06:49:40.587817+00:00", "event": "started", "module": "registry", "pid": 15784, "via": "restart_api"}
364
+ {"ts": "2026-02-28T06:49:41.187221+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
365
+ {"ts": "2026-02-28T06:49:41.187929+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
366
+ {"ts": "2026-02-28T06:49:41.188503+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
367
+ {"ts": "2026-02-28T06:49:42.282570+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
368
+ {"ts": "2026-02-28T06:49:42.283197+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
369
+ {"ts": "2026-02-28T06:49:42.283671+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
370
+ {"ts": "2026-02-28T06:49:42.284111+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
371
+ {"ts": "2026-02-28T06:49:42.284544+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
372
+ {"ts": "2026-02-28T06:49:42.284953+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
373
+ {"ts": "2026-02-28T06:49:42.511210+00:00", "event": "starting", "module": "event_hub"}
374
+ {"ts": "2026-02-28T06:50:12.527759+00:00", "event": "started", "module": "event_hub", "pid": 16764}
375
+ {"ts": "2026-02-28T06:50:12.528685+00:00", "event": "starting", "module": "event_hub_bench"}
376
+ {"ts": "2026-02-28T06:50:42.557446+00:00", "event": "started", "module": "event_hub_bench", "pid": 14504}
377
+ {"ts": "2026-02-28T06:50:42.558450+00:00", "event": "starting", "module": "registry"}
378
+ {"ts": "2026-02-28T06:51:12.566958+00:00", "event": "started", "module": "registry", "pid": 16232}
379
+ {"ts": "2026-02-28T06:51:12.567860+00:00", "event": "starting", "module": "watchdog"}
380
+ {"ts": "2026-02-28T06:51:42.601112+00:00", "event": "started", "module": "watchdog", "pid": 1884}
381
+ {"ts": "2026-02-28T06:51:42.830166+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
382
+ {"ts": "2026-02-28T06:51:42.831143+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
383
+ {"ts": "2026-02-28T06:51:42.832091+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
384
+ {"ts": "2026-02-28T06:51:42.832690+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
385
+ {"ts": "2026-02-28T06:51:42.833146+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
386
+ {"ts": "2026-02-28T06:51:47.354727+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
387
+ {"ts": "2026-02-28T06:51:52.645629+00:00", "event": "started", "module": "registry", "pid": 9028, "via": "restart_api"}
388
+ {"ts": "2026-02-28T06:51:52.935713+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
389
+ {"ts": "2026-02-28T06:51:52.936483+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
390
+ {"ts": "2026-02-28T06:51:52.937020+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
391
+ {"ts": "2026-02-28T06:51:54.034890+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
392
+ {"ts": "2026-02-28T06:51:54.035527+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
393
+ {"ts": "2026-02-28T06:51:54.036047+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
394
+ {"ts": "2026-02-28T06:51:54.036513+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
395
+ {"ts": "2026-02-28T06:51:54.036990+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
396
+ {"ts": "2026-02-28T06:51:54.037462+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
397
+ {"ts": "2026-02-28T06:51:54.259399+00:00", "event": "starting", "module": "event_hub"}
398
+ {"ts": "2026-02-28T06:52:24.279966+00:00", "event": "started", "module": "event_hub", "pid": 14636}
399
+ {"ts": "2026-02-28T06:52:24.280994+00:00", "event": "starting", "module": "event_hub_bench"}
400
+ {"ts": "2026-02-28T06:52:54.309449+00:00", "event": "started", "module": "event_hub_bench", "pid": 11080}
401
+ {"ts": "2026-02-28T06:52:54.310479+00:00", "event": "starting", "module": "registry"}
402
+ {"ts": "2026-02-28T06:53:24.318505+00:00", "event": "started", "module": "registry", "pid": 10308}
403
+ {"ts": "2026-02-28T06:53:24.319557+00:00", "event": "starting", "module": "watchdog"}
404
+ {"ts": "2026-02-28T06:53:54.344667+00:00", "event": "started", "module": "watchdog", "pid": 11384}
405
+ {"ts": "2026-02-28T06:53:54.581417+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
406
+ {"ts": "2026-02-28T06:53:54.582548+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
407
+ {"ts": "2026-02-28T06:53:54.583525+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
408
+ {"ts": "2026-02-28T06:53:54.584055+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
409
+ {"ts": "2026-02-28T06:53:54.584510+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
410
+ {"ts": "2026-02-28T06:53:59.002013+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
411
+ {"ts": "2026-02-28T06:54:04.312740+00:00", "event": "started", "module": "registry", "pid": 16808, "via": "restart_api"}
412
+ {"ts": "2026-02-28T06:54:04.683901+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
413
+ {"ts": "2026-02-28T06:54:04.684860+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
414
+ {"ts": "2026-02-28T06:54:04.685366+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
415
+ {"ts": "2026-02-28T06:54:05.824897+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
416
+ {"ts": "2026-02-28T06:54:05.825476+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
417
+ {"ts": "2026-02-28T06:54:05.825927+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
418
+ {"ts": "2026-02-28T06:54:05.826393+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
419
+ {"ts": "2026-02-28T06:54:05.826780+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
420
+ {"ts": "2026-02-28T06:54:05.827164+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
421
+ {"ts": "2026-02-28T06:54:06.065240+00:00", "event": "starting", "module": "event_hub"}
422
+ {"ts": "2026-02-28T06:54:36.100815+00:00", "event": "started", "module": "event_hub", "pid": 7860}
423
+ {"ts": "2026-02-28T06:54:36.101873+00:00", "event": "starting", "module": "event_hub_bench"}
424
+ {"ts": "2026-02-28T06:55:06.131712+00:00", "event": "started", "module": "event_hub_bench", "pid": 6824}
425
+ {"ts": "2026-02-28T06:55:06.132732+00:00", "event": "starting", "module": "registry"}
426
+ {"ts": "2026-02-28T06:55:36.143181+00:00", "event": "started", "module": "registry", "pid": 16696}
427
+ {"ts": "2026-02-28T06:55:36.144526+00:00", "event": "starting", "module": "watchdog"}
428
+ {"ts": "2026-02-28T06:56:06.178236+00:00", "event": "started", "module": "watchdog", "pid": 13848}
429
+ {"ts": "2026-02-28T06:56:06.419857+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
430
+ {"ts": "2026-02-28T06:56:06.420795+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
431
+ {"ts": "2026-02-28T06:56:06.421548+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
432
+ {"ts": "2026-02-28T06:56:06.422051+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
433
+ {"ts": "2026-02-28T06:56:06.422495+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
434
+ {"ts": "2026-02-28T06:56:11.020756+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
435
+ {"ts": "2026-02-28T06:56:16.329914+00:00", "event": "started", "module": "registry", "pid": 15172, "via": "restart_api"}
436
+ {"ts": "2026-02-28T06:56:16.546252+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
437
+ {"ts": "2026-02-28T06:56:16.547004+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
438
+ {"ts": "2026-02-28T06:56:16.547489+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
439
+ {"ts": "2026-02-28T06:56:17.673267+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
440
+ {"ts": "2026-02-28T06:56:17.673931+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
441
+ {"ts": "2026-02-28T06:56:17.674375+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
442
+ {"ts": "2026-02-28T06:56:17.674778+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
443
+ {"ts": "2026-02-28T06:56:17.675167+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
444
+ {"ts": "2026-02-28T06:56:17.675560+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
445
+ {"ts": "2026-02-28T06:56:17.909556+00:00", "event": "starting", "module": "event_hub"}
446
+ {"ts": "2026-02-28T06:56:47.937264+00:00", "event": "started", "module": "event_hub", "pid": 14532}
447
+ {"ts": "2026-02-28T06:56:47.938474+00:00", "event": "starting", "module": "event_hub_bench"}
448
+ {"ts": "2026-02-28T06:57:17.965986+00:00", "event": "started", "module": "event_hub_bench", "pid": 15928}
449
+ {"ts": "2026-02-28T06:57:17.967043+00:00", "event": "starting", "module": "registry"}
450
+ {"ts": "2026-02-28T06:57:47.979090+00:00", "event": "started", "module": "registry", "pid": 15968}
451
+ {"ts": "2026-02-28T06:57:47.980052+00:00", "event": "starting", "module": "watchdog"}
452
+ {"ts": "2026-02-28T06:58:18.012130+00:00", "event": "started", "module": "watchdog", "pid": 10604}
453
+ {"ts": "2026-02-28T06:58:18.243143+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
454
+ {"ts": "2026-02-28T06:58:18.244118+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
455
+ {"ts": "2026-02-28T06:58:18.245244+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
456
+ {"ts": "2026-02-28T06:58:18.245816+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
457
+ {"ts": "2026-02-28T06:58:18.246304+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
458
+ {"ts": "2026-02-28T06:58:22.651869+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
459
+ {"ts": "2026-02-28T06:58:27.957614+00:00", "event": "started", "module": "registry", "pid": 10500, "via": "restart_api"}
460
+ {"ts": "2026-02-28T06:58:28.359110+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
461
+ {"ts": "2026-02-28T06:58:28.359979+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
462
+ {"ts": "2026-02-28T06:58:28.360680+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
463
+ {"ts": "2026-02-28T06:58:29.489218+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
464
+ {"ts": "2026-02-28T06:58:29.489989+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
465
+ {"ts": "2026-02-28T06:58:29.490551+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
466
+ {"ts": "2026-02-28T06:58:29.491078+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
467
+ {"ts": "2026-02-28T06:58:29.491601+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
468
+ {"ts": "2026-02-28T06:58:29.492042+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
469
+ {"ts": "2026-02-28T06:58:29.726463+00:00", "event": "starting", "module": "event_hub"}
470
+ {"ts": "2026-02-28T06:58:59.749611+00:00", "event": "started", "module": "event_hub", "pid": 16108}
471
+ {"ts": "2026-02-28T06:58:59.750708+00:00", "event": "starting", "module": "event_hub_bench"}
472
+ {"ts": "2026-02-28T06:59:29.784451+00:00", "event": "started", "module": "event_hub_bench", "pid": 7956}
473
+ {"ts": "2026-02-28T06:59:29.785514+00:00", "event": "starting", "module": "registry"}
474
+ {"ts": "2026-02-28T06:59:59.786428+00:00", "event": "started", "module": "registry", "pid": 340}
475
+ {"ts": "2026-02-28T06:59:59.787508+00:00", "event": "starting", "module": "watchdog"}
476
+ {"ts": "2026-02-28T07:00:29.823396+00:00", "event": "started", "module": "watchdog", "pid": 716}
477
+ {"ts": "2026-02-28T07:00:30.059013+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
478
+ {"ts": "2026-02-28T07:00:30.060118+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
479
+ {"ts": "2026-02-28T07:00:30.060921+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
480
+ {"ts": "2026-02-28T07:00:30.061510+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
481
+ {"ts": "2026-02-28T07:00:30.062016+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
482
+ {"ts": "2026-02-28T07:00:34.490453+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
483
+ {"ts": "2026-02-28T07:00:39.777360+00:00", "event": "started", "module": "registry", "pid": 16820, "via": "restart_api"}
484
+ {"ts": "2026-02-28T07:00:40.164701+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
485
+ {"ts": "2026-02-28T07:00:40.165422+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
486
+ {"ts": "2026-02-28T07:00:40.165906+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
487
+ {"ts": "2026-02-28T07:00:41.284612+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
488
+ {"ts": "2026-02-28T07:00:41.285243+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
489
+ {"ts": "2026-02-28T07:00:41.285705+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
490
+ {"ts": "2026-02-28T07:00:41.286126+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
491
+ {"ts": "2026-02-28T07:00:41.286523+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
492
+ {"ts": "2026-02-28T07:00:41.286918+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
493
+ {"ts": "2026-02-28T07:00:41.514743+00:00", "event": "starting", "module": "event_hub"}
494
+ {"ts": "2026-02-28T07:01:11.549595+00:00", "event": "started", "module": "event_hub", "pid": 16692}
495
+ {"ts": "2026-02-28T07:01:11.550895+00:00", "event": "starting", "module": "event_hub_bench"}
496
+ {"ts": "2026-02-28T07:01:41.575382+00:00", "event": "started", "module": "event_hub_bench", "pid": 2180}
497
+ {"ts": "2026-02-28T07:01:41.576539+00:00", "event": "starting", "module": "registry"}
498
+ {"ts": "2026-02-28T07:02:11.584386+00:00", "event": "started", "module": "registry", "pid": 6328}
499
+ {"ts": "2026-02-28T07:02:11.585458+00:00", "event": "starting", "module": "watchdog"}
500
+ {"ts": "2026-02-28T07:02:41.614356+00:00", "event": "started", "module": "watchdog", "pid": 16528}
501
+ {"ts": "2026-02-28T07:02:41.850111+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
502
+ {"ts": "2026-02-28T07:02:41.851098+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
503
+ {"ts": "2026-02-28T07:02:41.852252+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
504
+ {"ts": "2026-02-28T07:02:41.852997+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
505
+ {"ts": "2026-02-28T07:02:41.853524+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
506
+ {"ts": "2026-02-28T07:02:46.591867+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
507
+ {"ts": "2026-02-28T07:02:51.874086+00:00", "event": "started", "module": "registry", "pid": 17204, "via": "restart_api"}
508
+ {"ts": "2026-02-28T07:02:51.946985+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
509
+ {"ts": "2026-02-28T07:02:51.947743+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
510
+ {"ts": "2026-02-28T07:02:51.948321+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
511
+ {"ts": "2026-02-28T07:02:53.079871+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
512
+ {"ts": "2026-02-28T07:02:53.080548+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
513
+ {"ts": "2026-02-28T07:02:53.081075+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
514
+ {"ts": "2026-02-28T07:02:53.081519+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
515
+ {"ts": "2026-02-28T07:02:53.081920+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
516
+ {"ts": "2026-02-28T07:02:53.082353+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
517
+ {"ts": "2026-02-28T07:02:53.316959+00:00", "event": "starting", "module": "event_hub"}
518
+ {"ts": "2026-02-28T07:03:23.346678+00:00", "event": "started", "module": "event_hub", "pid": 16772}
519
+ {"ts": "2026-02-28T07:03:23.347633+00:00", "event": "starting", "module": "event_hub_bench"}
520
+ {"ts": "2026-02-28T07:03:53.380468+00:00", "event": "started", "module": "event_hub_bench", "pid": 10628}
521
+ {"ts": "2026-02-28T07:03:53.381684+00:00", "event": "starting", "module": "registry"}
522
+ {"ts": "2026-02-28T07:04:23.393217+00:00", "event": "started", "module": "registry", "pid": 16648}
523
+ {"ts": "2026-02-28T07:04:23.394402+00:00", "event": "starting", "module": "watchdog"}
524
+ {"ts": "2026-02-28T07:04:53.418458+00:00", "event": "started", "module": "watchdog", "pid": 7580}
525
+ {"ts": "2026-02-28T07:04:53.669967+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
526
+ {"ts": "2026-02-28T07:04:53.671204+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
527
+ {"ts": "2026-02-28T07:04:53.672203+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
528
+ {"ts": "2026-02-28T07:04:53.673026+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
529
+ {"ts": "2026-02-28T07:04:53.673564+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
530
+ {"ts": "2026-02-28T07:04:58.379276+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
531
+ {"ts": "2026-02-28T07:05:03.702868+00:00", "event": "started", "module": "registry", "pid": 6580, "via": "restart_api"}
532
+ {"ts": "2026-02-28T07:05:03.791474+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
533
+ {"ts": "2026-02-28T07:05:03.792335+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
534
+ {"ts": "2026-02-28T07:05:03.793056+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
535
+ {"ts": "2026-02-28T07:05:04.953466+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
536
+ {"ts": "2026-02-28T07:05:04.954082+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
537
+ {"ts": "2026-02-28T07:05:04.954519+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
538
+ {"ts": "2026-02-28T07:05:04.955558+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
539
+ {"ts": "2026-02-28T07:05:04.956210+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
540
+ {"ts": "2026-02-28T07:05:04.956739+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
541
+ {"ts": "2026-02-28T07:05:05.195049+00:00", "event": "starting", "module": "event_hub"}
542
+ {"ts": "2026-02-28T07:05:35.229439+00:00", "event": "started", "module": "event_hub", "pid": 4552}
543
+ {"ts": "2026-02-28T07:05:35.230707+00:00", "event": "starting", "module": "event_hub_bench"}
544
+ {"ts": "2026-02-28T07:06:05.269884+00:00", "event": "started", "module": "event_hub_bench", "pid": 17348}
545
+ {"ts": "2026-02-28T07:06:05.271183+00:00", "event": "starting", "module": "registry"}
546
+ {"ts": "2026-02-28T07:06:35.283570+00:00", "event": "started", "module": "registry", "pid": 3100}
547
+ {"ts": "2026-02-28T07:06:35.284574+00:00", "event": "starting", "module": "watchdog"}
548
+ {"ts": "2026-02-28T07:07:05.309861+00:00", "event": "started", "module": "watchdog", "pid": 9200}
549
+ {"ts": "2026-02-28T07:07:05.557432+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
550
+ {"ts": "2026-02-28T07:07:05.558457+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
551
+ {"ts": "2026-02-28T07:07:05.559186+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
552
+ {"ts": "2026-02-28T07:07:05.559710+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
553
+ {"ts": "2026-02-28T07:07:05.560222+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
554
+ {"ts": "2026-02-28T07:07:10.056054+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
555
+ {"ts": "2026-02-28T07:07:15.377181+00:00", "event": "started", "module": "registry", "pid": 16392, "via": "restart_api"}
556
+ {"ts": "2026-02-28T07:07:15.673623+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
557
+ {"ts": "2026-02-28T07:07:15.674469+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
558
+ {"ts": "2026-02-28T07:07:15.675221+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
559
+ {"ts": "2026-02-28T07:07:16.813480+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
560
+ {"ts": "2026-02-28T07:07:16.814172+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
561
+ {"ts": "2026-02-28T07:07:16.814666+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
562
+ {"ts": "2026-02-28T07:07:16.815137+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
563
+ {"ts": "2026-02-28T07:07:16.815579+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
564
+ {"ts": "2026-02-28T07:07:16.816132+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
565
+ {"ts": "2026-02-28T07:07:17.055945+00:00", "event": "starting", "module": "event_hub"}
566
+ {"ts": "2026-02-28T07:07:47.076883+00:00", "event": "started", "module": "event_hub", "pid": 10844}
567
+ {"ts": "2026-02-28T07:07:47.077887+00:00", "event": "starting", "module": "event_hub_bench"}
568
+ {"ts": "2026-02-28T07:08:17.111917+00:00", "event": "started", "module": "event_hub_bench", "pid": 7688}
569
+ {"ts": "2026-02-28T07:08:17.113952+00:00", "event": "starting", "module": "registry"}
570
+ {"ts": "2026-02-28T07:08:47.123762+00:00", "event": "started", "module": "registry", "pid": 2972}
571
+ {"ts": "2026-02-28T07:08:47.124866+00:00", "event": "starting", "module": "watchdog"}
572
+ {"ts": "2026-02-28T07:09:17.148621+00:00", "event": "started", "module": "watchdog", "pid": 13884}
573
+ {"ts": "2026-02-28T07:09:17.388718+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
574
+ {"ts": "2026-02-28T07:09:17.390652+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
575
+ {"ts": "2026-02-28T07:09:17.391786+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
576
+ {"ts": "2026-02-28T07:09:17.392360+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
577
+ {"ts": "2026-02-28T07:09:17.392894+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
578
+ {"ts": "2026-02-28T07:09:22.001264+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
579
+ {"ts": "2026-02-28T07:09:27.303007+00:00", "event": "started", "module": "registry", "pid": 16492, "via": "restart_api"}
580
+ {"ts": "2026-02-28T07:09:27.504280+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
581
+ {"ts": "2026-02-28T07:09:27.505194+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
582
+ {"ts": "2026-02-28T07:09:27.505672+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
583
+ {"ts": "2026-02-28T07:09:28.641352+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
584
+ {"ts": "2026-02-28T07:09:28.641969+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
585
+ {"ts": "2026-02-28T07:09:28.642433+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
586
+ {"ts": "2026-02-28T07:09:28.642854+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
587
+ {"ts": "2026-02-28T07:09:28.643251+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
588
+ {"ts": "2026-02-28T07:09:28.643647+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
589
+ {"ts": "2026-02-28T07:09:28.871653+00:00", "event": "starting", "module": "event_hub"}
590
+ {"ts": "2026-02-28T07:09:58.895096+00:00", "event": "started", "module": "event_hub", "pid": 2072}
591
+ {"ts": "2026-02-28T07:09:58.896237+00:00", "event": "starting", "module": "event_hub_bench"}
592
+ {"ts": "2026-02-28T07:10:28.931947+00:00", "event": "started", "module": "event_hub_bench", "pid": 16828}
593
+ {"ts": "2026-02-28T07:10:28.933618+00:00", "event": "starting", "module": "registry"}
594
+ {"ts": "2026-02-28T07:10:58.939605+00:00", "event": "started", "module": "registry", "pid": 2420}
595
+ {"ts": "2026-02-28T07:10:58.940884+00:00", "event": "starting", "module": "watchdog"}
596
+ {"ts": "2026-02-28T07:11:28.967323+00:00", "event": "started", "module": "watchdog", "pid": 9256}
597
+ {"ts": "2026-02-28T07:11:29.223381+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
598
+ {"ts": "2026-02-28T07:11:29.224524+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
599
+ {"ts": "2026-02-28T07:11:29.225466+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
600
+ {"ts": "2026-02-28T07:11:29.226009+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
601
+ {"ts": "2026-02-28T07:11:29.226445+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
602
+ {"ts": "2026-02-28T07:11:33.809950+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
603
+ {"ts": "2026-02-28T07:11:39.119736+00:00", "event": "started", "module": "registry", "pid": 9960, "via": "restart_api"}
604
+ {"ts": "2026-02-28T07:11:39.339697+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
605
+ {"ts": "2026-02-28T07:11:39.340737+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
606
+ {"ts": "2026-02-28T07:11:39.341520+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
607
+ {"ts": "2026-02-28T07:11:40.480468+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
608
+ {"ts": "2026-02-28T07:11:40.481153+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
609
+ {"ts": "2026-02-28T07:11:40.481609+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
610
+ {"ts": "2026-02-28T07:11:40.482056+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
611
+ {"ts": "2026-02-28T07:11:40.482447+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
612
+ {"ts": "2026-02-28T07:11:40.482869+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
613
+ {"ts": "2026-02-28T07:11:40.715235+00:00", "event": "starting", "module": "event_hub"}
614
+ {"ts": "2026-02-28T07:12:10.738447+00:00", "event": "started", "module": "event_hub", "pid": 2896}
615
+ {"ts": "2026-02-28T07:12:10.739720+00:00", "event": "starting", "module": "event_hub_bench"}
616
+ {"ts": "2026-02-28T07:12:40.767928+00:00", "event": "started", "module": "event_hub_bench", "pid": 7564}
617
+ {"ts": "2026-02-28T07:12:40.769077+00:00", "event": "starting", "module": "registry"}
618
+ {"ts": "2026-02-28T07:13:10.780716+00:00", "event": "started", "module": "registry", "pid": 12840}
619
+ {"ts": "2026-02-28T07:13:10.782321+00:00", "event": "starting", "module": "watchdog"}
620
+ {"ts": "2026-02-28T07:13:40.803156+00:00", "event": "started", "module": "watchdog", "pid": 2940}
621
+ {"ts": "2026-02-28T07:13:41.037447+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
622
+ {"ts": "2026-02-28T07:13:41.038681+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
623
+ {"ts": "2026-02-28T07:13:41.039716+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
624
+ {"ts": "2026-02-28T07:13:41.040381+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
625
+ {"ts": "2026-02-28T07:13:41.040865+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
626
+ {"ts": "2026-02-28T07:13:45.517059+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
627
+ {"ts": "2026-02-28T07:13:50.821185+00:00", "event": "started", "module": "registry", "pid": 16756, "via": "restart_api"}
628
+ {"ts": "2026-02-28T07:13:51.139983+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
629
+ {"ts": "2026-02-28T07:13:51.140800+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
630
+ {"ts": "2026-02-28T07:13:51.141358+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
631
+ {"ts": "2026-02-28T07:13:52.266050+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
632
+ {"ts": "2026-02-28T07:13:52.266635+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
633
+ {"ts": "2026-02-28T07:13:52.267099+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
634
+ {"ts": "2026-02-28T07:13:52.267550+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
635
+ {"ts": "2026-02-28T07:13:52.267966+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
636
+ {"ts": "2026-02-28T07:13:52.268358+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
637
+ {"ts": "2026-02-28T07:13:52.497129+00:00", "event": "starting", "module": "event_hub"}
638
+ {"ts": "2026-02-28T07:14:22.521233+00:00", "event": "started", "module": "event_hub", "pid": 10820}
639
+ {"ts": "2026-02-28T07:14:22.522275+00:00", "event": "starting", "module": "event_hub_bench"}
640
+ {"ts": "2026-02-28T07:14:52.550869+00:00", "event": "started", "module": "event_hub_bench", "pid": 11208}
641
+ {"ts": "2026-02-28T07:14:52.551968+00:00", "event": "starting", "module": "registry"}
642
+ {"ts": "2026-02-28T07:15:22.568001+00:00", "event": "started", "module": "registry", "pid": 7492}
643
+ {"ts": "2026-02-28T07:15:22.570052+00:00", "event": "starting", "module": "watchdog"}
644
+ {"ts": "2026-02-28T07:15:52.608417+00:00", "event": "started", "module": "watchdog", "pid": 7592}
645
+ {"ts": "2026-02-28T07:15:52.840627+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
646
+ {"ts": "2026-02-28T07:15:52.841608+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
647
+ {"ts": "2026-02-28T07:15:52.842795+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
648
+ {"ts": "2026-02-28T07:15:52.843490+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
649
+ {"ts": "2026-02-28T07:15:52.843964+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
650
+ {"ts": "2026-02-28T07:15:57.396033+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
651
+ {"ts": "2026-02-28T07:16:02.715028+00:00", "event": "started", "module": "registry", "pid": 6520, "via": "restart_api"}
652
+ {"ts": "2026-02-28T07:16:02.960797+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
653
+ {"ts": "2026-02-28T07:16:02.961507+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
654
+ {"ts": "2026-02-28T07:16:02.961984+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
655
+ {"ts": "2026-02-28T07:16:04.081011+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
656
+ {"ts": "2026-02-28T07:16:04.081729+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
657
+ {"ts": "2026-02-28T07:16:04.082218+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
658
+ {"ts": "2026-02-28T07:16:04.082683+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
659
+ {"ts": "2026-02-28T07:16:04.083101+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
660
+ {"ts": "2026-02-28T07:16:04.083513+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
661
+ {"ts": "2026-02-28T07:16:04.327367+00:00", "event": "starting", "module": "event_hub"}
662
+ {"ts": "2026-02-28T07:16:34.354702+00:00", "event": "started", "module": "event_hub", "pid": 11932}
663
+ {"ts": "2026-02-28T07:16:34.355755+00:00", "event": "starting", "module": "event_hub_bench"}
664
+ {"ts": "2026-02-28T07:17:04.375307+00:00", "event": "started", "module": "event_hub_bench", "pid": 5052}
665
+ {"ts": "2026-02-28T07:17:04.376532+00:00", "event": "starting", "module": "registry"}
666
+ {"ts": "2026-02-28T07:17:34.383373+00:00", "event": "started", "module": "registry", "pid": 7340}
667
+ {"ts": "2026-02-28T07:17:34.384519+00:00", "event": "starting", "module": "watchdog"}
668
+ {"ts": "2026-02-28T07:18:04.415920+00:00", "event": "started", "module": "watchdog", "pid": 12664}
669
+ {"ts": "2026-02-28T07:18:04.666415+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
670
+ {"ts": "2026-02-28T07:18:04.667547+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
671
+ {"ts": "2026-02-28T07:18:04.668443+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
672
+ {"ts": "2026-02-28T07:18:04.669015+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
673
+ {"ts": "2026-02-28T07:18:04.669545+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
674
+ {"ts": "2026-02-28T07:18:09.394788+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
675
+ {"ts": "2026-02-28T07:18:14.703802+00:00", "event": "started", "module": "registry", "pid": 7864, "via": "restart_api"}
676
+ {"ts": "2026-02-28T07:18:14.774330+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
677
+ {"ts": "2026-02-28T07:18:14.775055+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
678
+ {"ts": "2026-02-28T07:18:14.775749+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
679
+ {"ts": "2026-02-28T07:18:15.889478+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
680
+ {"ts": "2026-02-28T07:18:15.890095+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
681
+ {"ts": "2026-02-28T07:18:15.890559+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
682
+ {"ts": "2026-02-28T07:18:15.891040+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
683
+ {"ts": "2026-02-28T07:18:15.891523+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
684
+ {"ts": "2026-02-28T07:18:15.891981+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
685
+ {"ts": "2026-02-28T07:18:16.128053+00:00", "event": "starting", "module": "event_hub"}
686
+ {"ts": "2026-02-28T07:18:46.156547+00:00", "event": "started", "module": "event_hub", "pid": 13568}
687
+ {"ts": "2026-02-28T07:18:46.157686+00:00", "event": "starting", "module": "event_hub_bench"}
688
+ {"ts": "2026-02-28T07:19:16.189578+00:00", "event": "started", "module": "event_hub_bench", "pid": 17284}
689
+ {"ts": "2026-02-28T07:19:16.190713+00:00", "event": "starting", "module": "registry"}
690
+ {"ts": "2026-02-28T07:19:46.192715+00:00", "event": "started", "module": "registry", "pid": 17404}
691
+ {"ts": "2026-02-28T07:19:46.193847+00:00", "event": "starting", "module": "watchdog"}
692
+ {"ts": "2026-02-28T07:20:16.219636+00:00", "event": "started", "module": "watchdog", "pid": 4528}
693
+ {"ts": "2026-02-28T07:20:16.471564+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
694
+ {"ts": "2026-02-28T07:20:16.472664+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
695
+ {"ts": "2026-02-28T07:20:16.473415+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
696
+ {"ts": "2026-02-28T07:20:16.473991+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
697
+ {"ts": "2026-02-28T07:20:16.474505+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
698
+ {"ts": "2026-02-28T07:20:21.133631+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
699
+ {"ts": "2026-02-28T07:20:26.442493+00:00", "event": "started", "module": "registry", "pid": 17388, "via": "restart_api"}
700
+ {"ts": "2026-02-28T07:20:26.578595+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
701
+ {"ts": "2026-02-28T07:20:26.579414+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
702
+ {"ts": "2026-02-28T07:20:26.580012+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
703
+ {"ts": "2026-02-28T07:20:27.734266+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
704
+ {"ts": "2026-02-28T07:20:27.734905+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
705
+ {"ts": "2026-02-28T07:20:27.735341+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
706
+ {"ts": "2026-02-28T07:20:27.735790+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
707
+ {"ts": "2026-02-28T07:20:27.736215+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
708
+ {"ts": "2026-02-28T07:20:27.736651+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
709
+ {"ts": "2026-02-28T07:20:27.970586+00:00", "event": "starting", "module": "event_hub"}
710
+ {"ts": "2026-02-28T07:20:57.990104+00:00", "event": "started", "module": "event_hub", "pid": 16440}
711
+ {"ts": "2026-02-28T07:20:57.991422+00:00", "event": "starting", "module": "event_hub_bench"}
712
+ {"ts": "2026-02-28T07:21:28.013004+00:00", "event": "started", "module": "event_hub_bench", "pid": 476}
713
+ {"ts": "2026-02-28T07:21:28.014197+00:00", "event": "starting", "module": "registry"}
714
+ {"ts": "2026-02-28T07:21:58.024895+00:00", "event": "started", "module": "registry", "pid": 16264}
715
+ {"ts": "2026-02-28T07:21:58.025931+00:00", "event": "starting", "module": "watchdog"}
716
+ {"ts": "2026-02-28T07:22:28.058047+00:00", "event": "started", "module": "watchdog", "pid": 10776}
717
+ {"ts": "2026-02-28T07:22:28.300328+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
718
+ {"ts": "2026-02-28T07:22:28.301477+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
719
+ {"ts": "2026-02-28T07:22:28.302265+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
720
+ {"ts": "2026-02-28T07:22:28.302843+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
721
+ {"ts": "2026-02-28T07:22:28.303303+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
722
+ {"ts": "2026-02-28T07:22:33.036383+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
723
+ {"ts": "2026-02-28T07:22:38.330540+00:00", "event": "started", "module": "registry", "pid": 16884, "via": "restart_api"}
724
+ {"ts": "2026-02-28T07:22:38.427300+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
725
+ {"ts": "2026-02-28T07:22:38.428375+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
726
+ {"ts": "2026-02-28T07:22:38.428977+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
727
+ {"ts": "2026-02-28T07:22:39.585075+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
728
+ {"ts": "2026-02-28T07:22:39.585708+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
729
+ {"ts": "2026-02-28T07:22:39.586175+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
730
+ {"ts": "2026-02-28T07:22:39.586647+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
731
+ {"ts": "2026-02-28T07:22:39.587065+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
732
+ {"ts": "2026-02-28T07:22:39.587482+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
733
+ {"ts": "2026-02-28T07:22:39.824706+00:00", "event": "starting", "module": "event_hub"}
734
+ {"ts": "2026-02-28T07:23:09.847277+00:00", "event": "started", "module": "event_hub", "pid": 5624}
735
+ {"ts": "2026-02-28T07:23:09.848212+00:00", "event": "starting", "module": "event_hub_bench"}
736
+ {"ts": "2026-02-28T07:23:39.878120+00:00", "event": "started", "module": "event_hub_bench", "pid": 13400}
737
+ {"ts": "2026-02-28T07:23:39.879191+00:00", "event": "starting", "module": "registry"}
738
+ {"ts": "2026-02-28T07:24:09.893951+00:00", "event": "started", "module": "registry", "pid": 7396}
739
+ {"ts": "2026-02-28T07:24:09.895051+00:00", "event": "starting", "module": "watchdog"}
740
+ {"ts": "2026-02-28T07:24:39.930838+00:00", "event": "started", "module": "watchdog", "pid": 11472}
741
+ {"ts": "2026-02-28T07:24:40.185520+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
742
+ {"ts": "2026-02-28T07:24:40.186494+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
743
+ {"ts": "2026-02-28T07:24:40.187209+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
744
+ {"ts": "2026-02-28T07:24:40.187752+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
745
+ {"ts": "2026-02-28T07:24:40.188244+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
746
+ {"ts": "2026-02-28T07:24:44.791304+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
747
+ {"ts": "2026-02-28T07:24:50.099512+00:00", "event": "started", "module": "registry", "pid": 2152, "via": "restart_api"}
748
+ {"ts": "2026-02-28T07:24:50.310158+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
749
+ {"ts": "2026-02-28T07:24:50.311017+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
750
+ {"ts": "2026-02-28T07:24:50.311889+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
751
+ {"ts": "2026-02-28T07:24:51.500011+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
752
+ {"ts": "2026-02-28T07:24:51.500797+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
753
+ {"ts": "2026-02-28T07:24:51.501368+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
754
+ {"ts": "2026-02-28T07:24:51.501876+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
755
+ {"ts": "2026-02-28T07:24:51.502380+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
756
+ {"ts": "2026-02-28T07:24:51.502843+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
757
+ {"ts": "2026-02-28T07:24:51.763090+00:00", "event": "starting", "module": "event_hub"}
758
+ {"ts": "2026-02-28T07:25:21.792794+00:00", "event": "started", "module": "event_hub", "pid": 5664}
759
+ {"ts": "2026-02-28T07:25:21.793865+00:00", "event": "starting", "module": "event_hub_bench"}
760
+ {"ts": "2026-02-28T07:25:51.820847+00:00", "event": "started", "module": "event_hub_bench", "pid": 14584}
761
+ {"ts": "2026-02-28T07:25:51.821833+00:00", "event": "starting", "module": "registry"}
762
+ {"ts": "2026-02-28T07:26:21.832126+00:00", "event": "started", "module": "registry", "pid": 16720}
763
+ {"ts": "2026-02-28T07:26:21.833165+00:00", "event": "starting", "module": "watchdog"}
764
+ {"ts": "2026-02-28T07:26:51.855491+00:00", "event": "started", "module": "watchdog", "pid": 5204}
765
+ {"ts": "2026-02-28T07:26:52.091861+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
766
+ {"ts": "2026-02-28T07:26:52.092743+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
767
+ {"ts": "2026-02-28T07:26:52.093481+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
768
+ {"ts": "2026-02-28T07:26:52.094363+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
769
+ {"ts": "2026-02-28T07:26:52.094922+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
770
+ {"ts": "2026-02-28T07:26:56.893286+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
771
+ {"ts": "2026-02-28T07:27:02.182718+00:00", "event": "started", "module": "registry", "pid": 10252, "via": "restart_api"}
772
+ {"ts": "2026-02-28T07:27:02.208942+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
773
+ {"ts": "2026-02-28T07:27:02.209562+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
774
+ {"ts": "2026-02-28T07:27:02.210006+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
775
+ {"ts": "2026-02-28T07:27:03.301888+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
776
+ {"ts": "2026-02-28T07:27:03.302510+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
777
+ {"ts": "2026-02-28T07:27:03.302997+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
778
+ {"ts": "2026-02-28T07:27:03.303458+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
779
+ {"ts": "2026-02-28T07:27:03.303898+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
780
+ {"ts": "2026-02-28T07:27:03.304349+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
781
+ {"ts": "2026-02-28T07:27:03.527731+00:00", "event": "starting", "module": "event_hub"}
782
+ {"ts": "2026-02-28T07:27:33.545355+00:00", "event": "started", "module": "event_hub", "pid": 8688}
783
+ {"ts": "2026-02-28T07:27:33.546180+00:00", "event": "starting", "module": "event_hub_bench"}
784
+ {"ts": "2026-02-28T07:28:03.569617+00:00", "event": "started", "module": "event_hub_bench", "pid": 3660}
785
+ {"ts": "2026-02-28T07:28:03.570537+00:00", "event": "starting", "module": "registry"}
786
+ {"ts": "2026-02-28T07:28:33.573059+00:00", "event": "started", "module": "registry", "pid": 12660}
787
+ {"ts": "2026-02-28T07:28:33.574002+00:00", "event": "starting", "module": "watchdog"}
788
+ {"ts": "2026-02-28T07:29:03.598270+00:00", "event": "started", "module": "watchdog", "pid": 3276}
789
+ {"ts": "2026-02-28T07:29:03.826072+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
790
+ {"ts": "2026-02-28T07:29:03.826986+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
791
+ {"ts": "2026-02-28T07:29:03.827719+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
792
+ {"ts": "2026-02-28T07:29:03.828218+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
793
+ {"ts": "2026-02-28T07:29:03.828699+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
794
+ {"ts": "2026-02-28T07:29:08.233867+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
795
+ {"ts": "2026-02-28T07:29:13.511300+00:00", "event": "started", "module": "registry", "pid": 5264, "via": "restart_api"}
796
+ {"ts": "2026-02-28T07:29:13.932158+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
797
+ {"ts": "2026-02-28T07:29:13.932884+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
798
+ {"ts": "2026-02-28T07:29:13.933401+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
799
+ {"ts": "2026-02-28T07:29:15.045845+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
800
+ {"ts": "2026-02-28T07:29:15.046449+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
801
+ {"ts": "2026-02-28T07:29:15.046882+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
802
+ {"ts": "2026-02-28T07:29:15.047301+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
803
+ {"ts": "2026-02-28T07:29:15.047724+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
804
+ {"ts": "2026-02-28T07:29:15.048099+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
805
+ {"ts": "2026-02-28T07:29:15.268708+00:00", "event": "starting", "module": "event_hub"}
806
+ {"ts": "2026-02-28T07:29:45.301893+00:00", "event": "started", "module": "event_hub", "pid": 17012}
807
+ {"ts": "2026-02-28T07:29:45.302794+00:00", "event": "starting", "module": "event_hub_bench"}
808
+ {"ts": "2026-02-28T07:30:15.322396+00:00", "event": "started", "module": "event_hub_bench", "pid": 16156}
809
+ {"ts": "2026-02-28T07:30:15.323384+00:00", "event": "starting", "module": "registry"}
810
+ {"ts": "2026-02-28T07:30:45.339893+00:00", "event": "started", "module": "registry", "pid": 908}
811
+ {"ts": "2026-02-28T07:30:45.340766+00:00", "event": "starting", "module": "watchdog"}
812
+ {"ts": "2026-02-28T07:31:15.370973+00:00", "event": "started", "module": "watchdog", "pid": 11880}
813
+ {"ts": "2026-02-28T07:31:15.598990+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
814
+ {"ts": "2026-02-28T07:31:15.599751+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
815
+ {"ts": "2026-02-28T07:31:15.600409+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
816
+ {"ts": "2026-02-28T07:31:15.600903+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
817
+ {"ts": "2026-02-28T07:31:15.601337+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
818
+ {"ts": "2026-02-28T07:31:19.917384+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
819
+ {"ts": "2026-02-28T07:31:25.204410+00:00", "event": "started", "module": "registry", "pid": 7736, "via": "restart_api"}
820
+ {"ts": "2026-02-28T07:31:25.720809+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
821
+ {"ts": "2026-02-28T07:31:25.721657+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
822
+ {"ts": "2026-02-28T07:31:25.722347+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
823
+ {"ts": "2026-02-28T07:31:26.828148+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
824
+ {"ts": "2026-02-28T07:31:26.828862+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
825
+ {"ts": "2026-02-28T07:31:26.829358+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
826
+ {"ts": "2026-02-28T07:31:26.829873+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
827
+ {"ts": "2026-02-28T07:31:26.830351+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
828
+ {"ts": "2026-02-28T07:31:26.830752+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
829
+ {"ts": "2026-02-28T07:31:27.055372+00:00", "event": "starting", "module": "event_hub"}
830
+ {"ts": "2026-02-28T07:31:57.072968+00:00", "event": "started", "module": "event_hub", "pid": 14952}
831
+ {"ts": "2026-02-28T07:31:57.073938+00:00", "event": "starting", "module": "event_hub_bench"}
832
+ {"ts": "2026-02-28T07:32:27.096164+00:00", "event": "started", "module": "event_hub_bench", "pid": 9112}
833
+ {"ts": "2026-02-28T07:32:27.097111+00:00", "event": "starting", "module": "registry"}
834
+ {"ts": "2026-02-28T07:32:57.099203+00:00", "event": "started", "module": "registry", "pid": 2668}
835
+ {"ts": "2026-02-28T07:32:57.100395+00:00", "event": "starting", "module": "watchdog"}
836
+ {"ts": "2026-02-28T07:33:27.122934+00:00", "event": "started", "module": "watchdog", "pid": 3700}
837
+ {"ts": "2026-02-28T07:33:27.360581+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
838
+ {"ts": "2026-02-28T07:33:27.361503+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
839
+ {"ts": "2026-02-28T07:33:27.362325+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
840
+ {"ts": "2026-02-28T07:33:27.362934+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
841
+ {"ts": "2026-02-28T07:33:27.363415+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
842
+ {"ts": "2026-02-28T07:33:32.417266+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
843
+ {"ts": "2026-02-28T07:33:37.466613+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
844
+ {"ts": "2026-02-28T07:33:37.467780+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
845
+ {"ts": "2026-02-28T07:33:37.468337+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
846
+ {"ts": "2026-02-28T07:33:38.621877+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
847
+ {"ts": "2026-02-28T07:33:38.622521+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
848
+ {"ts": "2026-02-28T07:33:38.623017+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
849
+ {"ts": "2026-02-28T07:33:38.623475+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
850
+ {"ts": "2026-02-28T07:33:38.623996+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
851
+ {"ts": "2026-02-28T07:33:38.624437+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
852
+ {"ts": "2026-02-28T07:33:38.873887+00:00", "event": "starting", "module": "event_hub"}
853
+ {"ts": "2026-02-28T07:34:08.899916+00:00", "event": "started", "module": "event_hub", "pid": 6932}
854
+ {"ts": "2026-02-28T07:34:08.901205+00:00", "event": "starting", "module": "event_hub_bench"}
855
+ {"ts": "2026-02-28T07:34:38.934443+00:00", "event": "started", "module": "event_hub_bench", "pid": 7480}
856
+ {"ts": "2026-02-28T07:34:38.935603+00:00", "event": "starting", "module": "registry"}
857
+ {"ts": "2026-02-28T07:35:08.938739+00:00", "event": "started", "module": "registry", "pid": 15744}
858
+ {"ts": "2026-02-28T07:35:08.939887+00:00", "event": "starting", "module": "watchdog"}
859
+ {"ts": "2026-02-28T07:35:38.969753+00:00", "event": "started", "module": "watchdog", "pid": 11388}
860
+ {"ts": "2026-02-28T07:35:39.216185+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
861
+ {"ts": "2026-02-28T07:35:39.217166+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
862
+ {"ts": "2026-02-28T07:35:39.217948+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
863
+ {"ts": "2026-02-28T07:35:39.218511+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
864
+ {"ts": "2026-02-28T07:35:39.219025+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
865
+ {"ts": "2026-02-28T07:35:43.876730+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
866
+ {"ts": "2026-02-28T07:35:49.184295+00:00", "event": "started", "module": "registry", "pid": 13832, "via": "restart_api"}
867
+ {"ts": "2026-02-28T07:35:49.351899+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
868
+ {"ts": "2026-02-28T07:35:49.352689+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
869
+ {"ts": "2026-02-28T07:35:49.353332+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
870
+ {"ts": "2026-02-28T07:35:50.476612+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
871
+ {"ts": "2026-02-28T07:35:50.477281+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
872
+ {"ts": "2026-02-28T07:35:50.477799+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
873
+ {"ts": "2026-02-28T07:35:50.478371+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
874
+ {"ts": "2026-02-28T07:35:50.478849+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
875
+ {"ts": "2026-02-28T07:35:50.479348+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
876
+ {"ts": "2026-02-28T07:35:50.717760+00:00", "event": "starting", "module": "event_hub"}
877
+ {"ts": "2026-02-28T07:36:20.742554+00:00", "event": "started", "module": "event_hub", "pid": 15512}
878
+ {"ts": "2026-02-28T07:36:20.743634+00:00", "event": "starting", "module": "event_hub_bench"}
879
+ {"ts": "2026-02-28T07:36:50.772418+00:00", "event": "started", "module": "event_hub_bench", "pid": 2764}
880
+ {"ts": "2026-02-28T07:36:50.773513+00:00", "event": "starting", "module": "registry"}
881
+ {"ts": "2026-02-28T07:37:20.782008+00:00", "event": "started", "module": "registry", "pid": 3644}
882
+ {"ts": "2026-02-28T07:37:20.783107+00:00", "event": "starting", "module": "watchdog"}
883
+ {"ts": "2026-02-28T07:37:50.809372+00:00", "event": "started", "module": "watchdog", "pid": 12036}
884
+ {"ts": "2026-02-28T07:37:51.064297+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
885
+ {"ts": "2026-02-28T07:37:51.065281+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
886
+ {"ts": "2026-02-28T07:37:51.066103+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
887
+ {"ts": "2026-02-28T07:37:51.067023+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
888
+ {"ts": "2026-02-28T07:37:51.067525+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
889
+ {"ts": "2026-02-28T07:37:55.474763+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
890
+ {"ts": "2026-02-28T07:38:00.775601+00:00", "event": "started", "module": "registry", "pid": 16476, "via": "restart_api"}
891
+ {"ts": "2026-02-28T07:38:01.195437+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
892
+ {"ts": "2026-02-28T07:38:01.196178+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
893
+ {"ts": "2026-02-28T07:38:01.196689+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
894
+ {"ts": "2026-02-28T07:38:02.492007+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
895
+ {"ts": "2026-02-28T07:38:02.492711+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
896
+ {"ts": "2026-02-28T07:38:02.493305+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
897
+ {"ts": "2026-02-28T07:38:02.493835+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
898
+ {"ts": "2026-02-28T07:38:02.494318+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
899
+ {"ts": "2026-02-28T07:38:02.494846+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
900
+ {"ts": "2026-02-28T07:38:02.756617+00:00", "event": "starting", "module": "event_hub"}
901
+ {"ts": "2026-02-28T07:38:32.783659+00:00", "event": "started", "module": "event_hub", "pid": 2932}
902
+ {"ts": "2026-02-28T07:38:32.784850+00:00", "event": "starting", "module": "event_hub_bench"}
903
+ {"ts": "2026-02-28T07:39:02.808574+00:00", "event": "started", "module": "event_hub_bench", "pid": 2308}
904
+ {"ts": "2026-02-28T07:39:02.809610+00:00", "event": "starting", "module": "registry"}
905
+ {"ts": "2026-02-28T07:39:32.813563+00:00", "event": "started", "module": "registry", "pid": 8924}
906
+ {"ts": "2026-02-28T07:39:32.814615+00:00", "event": "starting", "module": "watchdog"}
907
+ {"ts": "2026-02-28T07:40:02.848805+00:00", "event": "started", "module": "watchdog", "pid": 13516}
908
+ {"ts": "2026-02-28T07:40:03.090543+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
909
+ {"ts": "2026-02-28T07:40:03.091444+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
910
+ {"ts": "2026-02-28T07:40:03.092557+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
911
+ {"ts": "2026-02-28T07:40:03.093091+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
912
+ {"ts": "2026-02-28T07:40:03.093565+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
913
+ {"ts": "2026-02-28T07:40:07.806084+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
914
+ {"ts": "2026-02-28T07:40:13.117414+00:00", "event": "started", "module": "registry", "pid": 15196, "via": "restart_api"}
915
+ {"ts": "2026-02-28T07:40:13.220759+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
916
+ {"ts": "2026-02-28T07:40:13.221470+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
917
+ {"ts": "2026-02-28T07:40:13.221977+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
918
+ {"ts": "2026-02-28T07:40:14.330943+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
919
+ {"ts": "2026-02-28T07:40:14.331553+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
920
+ {"ts": "2026-02-28T07:40:14.332060+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
921
+ {"ts": "2026-02-28T07:40:14.332503+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
922
+ {"ts": "2026-02-28T07:40:14.332918+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
923
+ {"ts": "2026-02-28T07:40:14.333325+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
924
+ {"ts": "2026-02-28T07:40:14.573803+00:00", "event": "starting", "module": "event_hub"}
925
+ {"ts": "2026-02-28T07:40:44.602038+00:00", "event": "started", "module": "event_hub", "pid": 4852}
926
+ {"ts": "2026-02-28T07:40:44.603009+00:00", "event": "starting", "module": "event_hub_bench"}
927
+ {"ts": "2026-02-28T07:41:14.623273+00:00", "event": "started", "module": "event_hub_bench", "pid": 16804}
928
+ {"ts": "2026-02-28T07:41:14.624249+00:00", "event": "starting", "module": "registry"}
929
+ {"ts": "2026-02-28T07:41:44.640395+00:00", "event": "started", "module": "registry", "pid": 7120}
930
+ {"ts": "2026-02-28T07:41:44.641191+00:00", "event": "starting", "module": "watchdog"}
931
+ {"ts": "2026-02-28T07:42:14.669322+00:00", "event": "started", "module": "watchdog", "pid": 6132}
932
+ {"ts": "2026-02-28T07:42:14.907436+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
933
+ {"ts": "2026-02-28T07:42:14.908392+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
934
+ {"ts": "2026-02-28T07:42:14.909305+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
935
+ {"ts": "2026-02-28T07:42:14.909852+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
936
+ {"ts": "2026-02-28T07:42:14.910317+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
937
+ {"ts": "2026-02-28T07:42:20.004833+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
938
+ {"ts": "2026-02-28T07:42:25.025251+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
939
+ {"ts": "2026-02-28T07:42:25.026091+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
940
+ {"ts": "2026-02-28T07:42:25.026606+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
941
+ {"ts": "2026-02-28T07:42:26.152142+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
942
+ {"ts": "2026-02-28T07:42:26.152764+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
943
+ {"ts": "2026-02-28T07:42:26.153244+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
944
+ {"ts": "2026-02-28T07:42:26.153791+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
945
+ {"ts": "2026-02-28T07:42:26.154559+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
946
+ {"ts": "2026-02-28T07:42:26.155083+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
947
+ {"ts": "2026-02-28T07:42:26.390330+00:00", "event": "starting", "module": "event_hub"}
948
+ {"ts": "2026-02-28T07:42:56.411677+00:00", "event": "started", "module": "event_hub", "pid": 15836}
949
+ {"ts": "2026-02-28T07:42:56.412491+00:00", "event": "starting", "module": "event_hub_bench"}
950
+ {"ts": "2026-02-28T07:43:26.434179+00:00", "event": "started", "module": "event_hub_bench", "pid": 14200}
951
+ {"ts": "2026-02-28T07:43:26.435071+00:00", "event": "starting", "module": "registry"}
952
+ {"ts": "2026-02-28T07:43:56.450767+00:00", "event": "started", "module": "registry", "pid": 15512}
953
+ {"ts": "2026-02-28T07:43:56.451820+00:00", "event": "starting", "module": "watchdog"}
954
+ {"ts": "2026-02-28T07:44:26.477707+00:00", "event": "started", "module": "watchdog", "pid": 6436}
955
+ {"ts": "2026-02-28T07:44:26.716931+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
956
+ {"ts": "2026-02-28T07:44:26.717840+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
957
+ {"ts": "2026-02-28T07:44:26.718698+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
958
+ {"ts": "2026-02-28T07:44:26.719317+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
959
+ {"ts": "2026-02-28T07:44:26.719794+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
960
+ {"ts": "2026-02-28T07:44:31.128105+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
961
+ {"ts": "2026-02-28T07:44:36.430333+00:00", "event": "started", "module": "registry", "pid": 14912, "via": "restart_api"}
962
+ {"ts": "2026-02-28T07:44:36.820328+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
963
+ {"ts": "2026-02-28T07:44:36.821019+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
964
+ {"ts": "2026-02-28T07:44:36.821532+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
965
+ {"ts": "2026-02-28T07:44:37.929114+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
966
+ {"ts": "2026-02-28T07:44:37.929727+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
967
+ {"ts": "2026-02-28T07:44:37.930185+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
968
+ {"ts": "2026-02-28T07:44:37.930625+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
969
+ {"ts": "2026-02-28T07:44:37.931083+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
970
+ {"ts": "2026-02-28T07:44:37.931540+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
971
+ {"ts": "2026-02-28T07:44:38.159577+00:00", "event": "starting", "module": "event_hub"}
972
+ {"ts": "2026-02-28T07:45:08.185088+00:00", "event": "started", "module": "event_hub", "pid": 16532}
973
+ {"ts": "2026-02-28T07:45:08.185972+00:00", "event": "starting", "module": "event_hub_bench"}
974
+ {"ts": "2026-02-28T07:45:38.211981+00:00", "event": "started", "module": "event_hub_bench", "pid": 10828}
975
+ {"ts": "2026-02-28T07:45:38.212992+00:00", "event": "starting", "module": "registry"}
976
+ {"ts": "2026-02-28T07:46:08.225445+00:00", "event": "started", "module": "registry", "pid": 11156}
977
+ {"ts": "2026-02-28T07:46:08.226368+00:00", "event": "starting", "module": "watchdog"}
978
+ {"ts": "2026-02-28T07:46:38.258677+00:00", "event": "started", "module": "watchdog", "pid": 4484}
979
+ {"ts": "2026-02-28T07:46:38.502668+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
980
+ {"ts": "2026-02-28T07:46:38.503497+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
981
+ {"ts": "2026-02-28T07:46:38.504223+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
982
+ {"ts": "2026-02-28T07:46:38.504732+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
983
+ {"ts": "2026-02-28T07:46:38.505223+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
984
+ {"ts": "2026-02-28T07:46:42.929352+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
985
+ {"ts": "2026-02-28T07:46:48.209603+00:00", "event": "started", "module": "registry", "pid": 2808, "via": "restart_api"}
986
+ {"ts": "2026-02-28T07:46:48.632026+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
987
+ {"ts": "2026-02-28T07:46:48.632746+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
988
+ {"ts": "2026-02-28T07:46:48.633543+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
989
+ {"ts": "2026-02-28T07:46:49.752932+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
990
+ {"ts": "2026-02-28T07:46:49.753511+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
991
+ {"ts": "2026-02-28T07:46:49.753957+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
992
+ {"ts": "2026-02-28T07:46:49.754378+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
993
+ {"ts": "2026-02-28T07:46:49.754755+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
994
+ {"ts": "2026-02-28T07:46:49.755168+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
995
+ {"ts": "2026-02-28T07:46:49.976623+00:00", "event": "starting", "module": "event_hub"}
996
+ {"ts": "2026-02-28T07:47:20.005021+00:00", "event": "started", "module": "event_hub", "pid": 3280}
997
+ {"ts": "2026-02-28T07:47:20.005954+00:00", "event": "starting", "module": "event_hub_bench"}
998
+ {"ts": "2026-02-28T07:47:50.037553+00:00", "event": "started", "module": "event_hub_bench", "pid": 16416}
999
+ {"ts": "2026-02-28T07:47:50.038426+00:00", "event": "starting", "module": "registry"}
1000
+ {"ts": "2026-02-28T07:48:20.043361+00:00", "event": "started", "module": "registry", "pid": 15776}
1001
+ {"ts": "2026-02-28T07:48:20.044219+00:00", "event": "starting", "module": "watchdog"}
1002
+ {"ts": "2026-02-28T07:48:50.069936+00:00", "event": "started", "module": "watchdog", "pid": 15444}
1003
+ {"ts": "2026-02-28T07:48:50.298479+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
1004
+ {"ts": "2026-02-28T07:48:50.299494+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
1005
+ {"ts": "2026-02-28T07:48:50.300232+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
1006
+ {"ts": "2026-02-28T07:48:50.300727+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
1007
+ {"ts": "2026-02-28T07:48:50.301161+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
1008
+ {"ts": "2026-02-28T07:48:54.723428+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
1009
+ {"ts": "2026-02-28T07:49:00.020692+00:00", "event": "started", "module": "registry", "pid": 9908, "via": "restart_api"}
1010
+ {"ts": "2026-02-28T07:49:00.421613+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
1011
+ {"ts": "2026-02-28T07:49:00.422373+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
1012
+ {"ts": "2026-02-28T07:49:00.422848+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
1013
+ {"ts": "2026-02-28T07:49:01.520747+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
1014
+ {"ts": "2026-02-28T07:49:01.521330+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
1015
+ {"ts": "2026-02-28T07:49:01.521834+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
1016
+ {"ts": "2026-02-28T07:49:01.522285+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
1017
+ {"ts": "2026-02-28T07:49:01.522693+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
1018
+ {"ts": "2026-02-28T07:49:01.523070+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
1019
+ {"ts": "2026-02-28T07:49:01.742556+00:00", "event": "starting", "module": "event_hub"}
1020
+ {"ts": "2026-02-28T07:49:31.769472+00:00", "event": "started", "module": "event_hub", "pid": 11240}
1021
+ {"ts": "2026-02-28T07:49:31.770543+00:00", "event": "starting", "module": "event_hub_bench"}
1022
+ {"ts": "2026-02-28T07:50:01.804298+00:00", "event": "started", "module": "event_hub_bench", "pid": 15304}
1023
+ {"ts": "2026-02-28T07:50:01.805296+00:00", "event": "starting", "module": "registry"}
1024
+ {"ts": "2026-02-28T07:50:31.807101+00:00", "event": "started", "module": "registry", "pid": 12952}
1025
+ {"ts": "2026-02-28T07:50:31.808008+00:00", "event": "starting", "module": "watchdog"}
1026
+ {"ts": "2026-02-28T07:51:01.838376+00:00", "event": "started", "module": "watchdog", "pid": 9916}
1027
+ {"ts": "2026-02-28T07:51:02.057750+00:00", "event": "exited", "module": "event_hub_bench", "exit_code": 1}
1028
+ {"ts": "2026-02-28T07:51:02.058576+00:00", "event": "core_crash", "module": "event_hub_bench", "exit_code": 1}
1029
+ {"ts": "2026-02-28T07:51:02.059233+00:00", "event": "stopping", "module": "event_hub", "reason": "system_shutdown"}
1030
+ {"ts": "2026-02-28T07:51:02.059906+00:00", "event": "stopping", "module": "registry", "reason": "system_shutdown"}
1031
+ {"ts": "2026-02-28T07:51:02.060380+00:00", "event": "stopping", "module": "watchdog", "reason": "system_shutdown"}
1032
+ {"ts": "2026-02-28T07:51:06.607116+00:00", "event": "stopping", "module": "registry", "reason": "restart"}
1033
+ {"ts": "2026-02-28T07:51:11.887403+00:00", "event": "started", "module": "registry", "pid": 15408, "via": "restart_api"}
1034
+ {"ts": "2026-02-28T07:51:12.178779+00:00", "event": "stopped", "module": "event_hub", "reason": "system_shutdown"}
1035
+ {"ts": "2026-02-28T07:51:12.179467+00:00", "event": "stopped", "module": "registry", "reason": "system_shutdown"}
1036
+ {"ts": "2026-02-28T07:51:12.179927+00:00", "event": "stopped", "module": "watchdog", "reason": "system_shutdown"}
1037
+ {"ts": "2026-02-28T07:51:13.283055+00:00", "event": "scanned", "module": "event_hub", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub"}
1038
+ {"ts": "2026-02-28T07:51:13.283623+00:00", "event": "scanned", "module": "event_hub_bench", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\event_hub_bench"}
1039
+ {"ts": "2026-02-28T07:51:13.284103+00:00", "event": "scanned", "module": "registry", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\core\\registry"}
1040
+ {"ts": "2026-02-28T07:51:13.284811+00:00", "event": "scanned", "module": "watchdog", "state": "enabled", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\extensions\\services\\watchdog"}
1041
+ {"ts": "2026-02-28T07:51:13.285349+00:00", "event": "scanned", "module": "hello_test", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello"}
1042
+ {"ts": "2026-02-28T07:51:13.285787+00:00", "event": "scanned", "module": "hello_node", "state": "manual", "module_dir": "C:\\Users\\agentcp\\AppData\\Roaming\\Evol\\default\\workspace\\openclaw-acp-channel\\ai-phone-agent\\Kite\\test_modules\\hello_node"}
1043
+ {"ts": "2026-02-28T07:51:13.507482+00:00", "event": "starting", "module": "event_hub"}
1044
+ {"ts": "2026-02-28T07:51:43.524607+00:00", "event": "started", "module": "event_hub", "pid": 10280}
1045
+ {"ts": "2026-02-28T07:51:43.525525+00:00", "event": "starting", "module": "event_hub_bench"}