execweave 0.6.3__tar.gz → 0.6.4__tar.gz

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 (247) hide show
  1. {execweave-0.6.3 → execweave-0.6.4}/.github/workflows/i18n.yml +2 -1
  2. {execweave-0.6.3 → execweave-0.6.4}/.github/workflows/publish.yml +2 -0
  3. {execweave-0.6.3 → execweave-0.6.4}/PKG-INFO +47 -22
  4. {execweave-0.6.3 → execweave-0.6.4}/README.de.md +44 -22
  5. {execweave-0.6.3 → execweave-0.6.4}/README.fr.md +44 -22
  6. {execweave-0.6.3 → execweave-0.6.4}/README.ja.md +43 -21
  7. {execweave-0.6.3 → execweave-0.6.4}/README.ko.md +43 -21
  8. {execweave-0.6.3 → execweave-0.6.4}/README.md +46 -21
  9. {execweave-0.6.3 → execweave-0.6.4}/README.ru.md +44 -22
  10. {execweave-0.6.3 → execweave-0.6.4}/README.zh-CN.md +43 -21
  11. {execweave-0.6.3 → execweave-0.6.4}/README.zh-TW.md +43 -21
  12. execweave-0.6.4/docs/assets/execweave-launch-demo-v5-x.gif +0 -0
  13. {execweave-0.6.3 → execweave-0.6.4}/docs/inference-gateway.de.md +22 -0
  14. {execweave-0.6.3 → execweave-0.6.4}/docs/inference-gateway.fr.md +22 -0
  15. {execweave-0.6.3 → execweave-0.6.4}/docs/inference-gateway.ja.md +22 -0
  16. {execweave-0.6.3 → execweave-0.6.4}/docs/inference-gateway.ko.md +22 -0
  17. {execweave-0.6.3 → execweave-0.6.4}/docs/inference-gateway.md +22 -0
  18. {execweave-0.6.3 → execweave-0.6.4}/docs/inference-gateway.ru.md +22 -0
  19. {execweave-0.6.3 → execweave-0.6.4}/docs/inference-gateway.zh-CN.md +22 -0
  20. {execweave-0.6.3 → execweave-0.6.4}/docs/inference-gateway.zh-TW.md +22 -0
  21. execweave-0.6.4/docs/live-graph.de.md +223 -0
  22. execweave-0.6.4/docs/live-graph.fr.md +223 -0
  23. execweave-0.6.4/docs/live-graph.ja.md +223 -0
  24. execweave-0.6.4/docs/live-graph.ko.md +223 -0
  25. execweave-0.6.4/docs/live-graph.md +223 -0
  26. execweave-0.6.4/docs/live-graph.ru.md +223 -0
  27. execweave-0.6.4/docs/live-graph.zh-CN.md +223 -0
  28. execweave-0.6.4/docs/live-graph.zh-TW.md +223 -0
  29. {execweave-0.6.3 → execweave-0.6.4}/docs/model-runtime.de.md +3 -0
  30. {execweave-0.6.3 → execweave-0.6.4}/docs/model-runtime.fr.md +3 -0
  31. {execweave-0.6.3 → execweave-0.6.4}/docs/model-runtime.ja.md +3 -0
  32. {execweave-0.6.3 → execweave-0.6.4}/docs/model-runtime.ko.md +3 -0
  33. {execweave-0.6.3 → execweave-0.6.4}/docs/model-runtime.md +3 -0
  34. {execweave-0.6.3 → execweave-0.6.4}/docs/model-runtime.ru.md +3 -0
  35. {execweave-0.6.3 → execweave-0.6.4}/docs/model-runtime.zh-CN.md +3 -0
  36. {execweave-0.6.3 → execweave-0.6.4}/docs/model-runtime.zh-TW.md +3 -0
  37. {execweave-0.6.3 → execweave-0.6.4}/pyproject.toml +3 -2
  38. {execweave-0.6.3 → execweave-0.6.4}/scripts/audit_i18n_parity.py +17 -3
  39. {execweave-0.6.3 → execweave-0.6.4}/scripts/check_inference_gateway_cli.py +24 -0
  40. {execweave-0.6.3 → execweave-0.6.4}/scripts/check_wheel_install.py +3 -0
  41. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/__init__.py +1 -1
  42. execweave-0.6.4/src/execweave/auto_specialized.py +322 -0
  43. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/collector.py +16 -5
  44. execweave-0.6.4/src/execweave/litellm_callback.py +182 -0
  45. execweave-0.6.4/src/execweave/litellm_callback_cli.py +42 -0
  46. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/live.py +191 -54
  47. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/live_view.py +5 -4
  48. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/semantic.py +80 -2
  49. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/top.py +159 -14
  50. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/top_cli.py +50 -2
  51. execweave-0.6.4/tests/test_auto_specialized.py +380 -0
  52. execweave-0.6.4/tests/test_litellm_callback.py +189 -0
  53. execweave-0.6.4/tests/test_lmstudio_auto_specialized.py +149 -0
  54. execweave-0.6.4/tests/test_top_detached.py +104 -0
  55. execweave-0.6.4/tests/test_v064_live_auto_integrations.py +135 -0
  56. execweave-0.6.4/tests/test_v064_live_evidence.py +250 -0
  57. execweave-0.6.3/docs/assets/execweave-viewer.png +0 -0
  58. execweave-0.6.3/docs/live-graph.de.md +0 -138
  59. execweave-0.6.3/docs/live-graph.fr.md +0 -138
  60. execweave-0.6.3/docs/live-graph.ja.md +0 -138
  61. execweave-0.6.3/docs/live-graph.ko.md +0 -138
  62. execweave-0.6.3/docs/live-graph.md +0 -138
  63. execweave-0.6.3/docs/live-graph.ru.md +0 -138
  64. execweave-0.6.3/docs/live-graph.zh-CN.md +0 -134
  65. execweave-0.6.3/docs/live-graph.zh-TW.md +0 -134
  66. {execweave-0.6.3 → execweave-0.6.4}/.github/workflows/ci.yml +0 -0
  67. {execweave-0.6.3 → execweave-0.6.4}/.github/workflows/package-benchmark.yml +0 -0
  68. {execweave-0.6.3 → execweave-0.6.4}/.github/workflows/package-smoke.yml +0 -0
  69. {execweave-0.6.3 → execweave-0.6.4}/.github/workflows/scalability.yml +0 -0
  70. {execweave-0.6.3 → execweave-0.6.4}/.github/workflows/wheel-smoke.yml +0 -0
  71. {execweave-0.6.3 → execweave-0.6.4}/.github/workflows/windows-launcher.yml +0 -0
  72. {execweave-0.6.3 → execweave-0.6.4}/.gitignore +0 -0
  73. {execweave-0.6.3 → execweave-0.6.4}/LICENSE +0 -0
  74. {execweave-0.6.3 → execweave-0.6.4}/benchmarks/phase1_overhead.py +0 -0
  75. {execweave-0.6.3 → execweave-0.6.4}/docs/benchmarks/README.md +0 -0
  76. {execweave-0.6.3 → execweave-0.6.4}/docs/benchmarks/v0.6.0-github-actions.json +0 -0
  77. {execweave-0.6.3 → execweave-0.6.4}/docs/benchmarks/v0.6.0-github-actions.svg +0 -0
  78. {execweave-0.6.3 → execweave-0.6.4}/docs/claude-code-hooks.de.md +0 -0
  79. {execweave-0.6.3 → execweave-0.6.4}/docs/claude-code-hooks.fr.md +0 -0
  80. {execweave-0.6.3 → execweave-0.6.4}/docs/claude-code-hooks.ja.md +0 -0
  81. {execweave-0.6.3 → execweave-0.6.4}/docs/claude-code-hooks.ko.md +0 -0
  82. {execweave-0.6.3 → execweave-0.6.4}/docs/claude-code-hooks.md +0 -0
  83. {execweave-0.6.3 → execweave-0.6.4}/docs/claude-code-hooks.ru.md +0 -0
  84. {execweave-0.6.3 → execweave-0.6.4}/docs/claude-code-hooks.zh-CN.md +0 -0
  85. {execweave-0.6.3 → execweave-0.6.4}/docs/claude-code-hooks.zh-TW.md +0 -0
  86. {execweave-0.6.3 → execweave-0.6.4}/docs/codex-hooks.de.md +0 -0
  87. {execweave-0.6.3 → execweave-0.6.4}/docs/codex-hooks.fr.md +0 -0
  88. {execweave-0.6.3 → execweave-0.6.4}/docs/codex-hooks.ja.md +0 -0
  89. {execweave-0.6.3 → execweave-0.6.4}/docs/codex-hooks.ko.md +0 -0
  90. {execweave-0.6.3 → execweave-0.6.4}/docs/codex-hooks.md +0 -0
  91. {execweave-0.6.3 → execweave-0.6.4}/docs/codex-hooks.ru.md +0 -0
  92. {execweave-0.6.3 → execweave-0.6.4}/docs/codex-hooks.zh-CN.md +0 -0
  93. {execweave-0.6.3 → execweave-0.6.4}/docs/codex-hooks.zh-TW.md +0 -0
  94. {execweave-0.6.3 → execweave-0.6.4}/docs/cursor-hooks.de.md +0 -0
  95. {execweave-0.6.3 → execweave-0.6.4}/docs/cursor-hooks.fr.md +0 -0
  96. {execweave-0.6.3 → execweave-0.6.4}/docs/cursor-hooks.ja.md +0 -0
  97. {execweave-0.6.3 → execweave-0.6.4}/docs/cursor-hooks.ko.md +0 -0
  98. {execweave-0.6.3 → execweave-0.6.4}/docs/cursor-hooks.md +0 -0
  99. {execweave-0.6.3 → execweave-0.6.4}/docs/cursor-hooks.ru.md +0 -0
  100. {execweave-0.6.3 → execweave-0.6.4}/docs/cursor-hooks.zh-CN.md +0 -0
  101. {execweave-0.6.3 → execweave-0.6.4}/docs/cursor-hooks.zh-TW.md +0 -0
  102. {execweave-0.6.3 → execweave-0.6.4}/docs/gemini-hooks.de.md +0 -0
  103. {execweave-0.6.3 → execweave-0.6.4}/docs/gemini-hooks.fr.md +0 -0
  104. {execweave-0.6.3 → execweave-0.6.4}/docs/gemini-hooks.ja.md +0 -0
  105. {execweave-0.6.3 → execweave-0.6.4}/docs/gemini-hooks.ko.md +0 -0
  106. {execweave-0.6.3 → execweave-0.6.4}/docs/gemini-hooks.md +0 -0
  107. {execweave-0.6.3 → execweave-0.6.4}/docs/gemini-hooks.ru.md +0 -0
  108. {execweave-0.6.3 → execweave-0.6.4}/docs/gemini-hooks.zh-CN.md +0 -0
  109. {execweave-0.6.3 → execweave-0.6.4}/docs/gemini-hooks.zh-TW.md +0 -0
  110. {execweave-0.6.3 → execweave-0.6.4}/docs/opencode-plugin.de.md +0 -0
  111. {execweave-0.6.3 → execweave-0.6.4}/docs/opencode-plugin.fr.md +0 -0
  112. {execweave-0.6.3 → execweave-0.6.4}/docs/opencode-plugin.ja.md +0 -0
  113. {execweave-0.6.3 → execweave-0.6.4}/docs/opencode-plugin.ko.md +0 -0
  114. {execweave-0.6.3 → execweave-0.6.4}/docs/opencode-plugin.md +0 -0
  115. {execweave-0.6.3 → execweave-0.6.4}/docs/opencode-plugin.ru.md +0 -0
  116. {execweave-0.6.3 → execweave-0.6.4}/docs/opencode-plugin.zh-CN.md +0 -0
  117. {execweave-0.6.3 → execweave-0.6.4}/docs/opencode-plugin.zh-TW.md +0 -0
  118. {execweave-0.6.3 → execweave-0.6.4}/docs/phase-1-runtime-collection.de.md +0 -0
  119. {execweave-0.6.3 → execweave-0.6.4}/docs/phase-1-runtime-collection.fr.md +0 -0
  120. {execweave-0.6.3 → execweave-0.6.4}/docs/phase-1-runtime-collection.ja.md +0 -0
  121. {execweave-0.6.3 → execweave-0.6.4}/docs/phase-1-runtime-collection.ko.md +0 -0
  122. {execweave-0.6.3 → execweave-0.6.4}/docs/phase-1-runtime-collection.md +0 -0
  123. {execweave-0.6.3 → execweave-0.6.4}/docs/phase-1-runtime-collection.ru.md +0 -0
  124. {execweave-0.6.3 → execweave-0.6.4}/docs/phase-1-runtime-collection.zh-CN.md +0 -0
  125. {execweave-0.6.3 → execweave-0.6.4}/docs/phase-1-runtime-collection.zh-TW.md +0 -0
  126. {execweave-0.6.3 → execweave-0.6.4}/docs/phase-2-execution-graph.de.md +0 -0
  127. {execweave-0.6.3 → execweave-0.6.4}/docs/phase-2-execution-graph.fr.md +0 -0
  128. {execweave-0.6.3 → execweave-0.6.4}/docs/phase-2-execution-graph.ja.md +0 -0
  129. {execweave-0.6.3 → execweave-0.6.4}/docs/phase-2-execution-graph.ko.md +0 -0
  130. {execweave-0.6.3 → execweave-0.6.4}/docs/phase-2-execution-graph.md +0 -0
  131. {execweave-0.6.3 → execweave-0.6.4}/docs/phase-2-execution-graph.ru.md +0 -0
  132. {execweave-0.6.3 → execweave-0.6.4}/docs/phase-2-execution-graph.zh-CN.md +0 -0
  133. {execweave-0.6.3 → execweave-0.6.4}/docs/phase-2-execution-graph.zh-TW.md +0 -0
  134. {execweave-0.6.3 → execweave-0.6.4}/docs/security-analysis.de.md +0 -0
  135. {execweave-0.6.3 → execweave-0.6.4}/docs/security-analysis.fr.md +0 -0
  136. {execweave-0.6.3 → execweave-0.6.4}/docs/security-analysis.ja.md +0 -0
  137. {execweave-0.6.3 → execweave-0.6.4}/docs/security-analysis.ko.md +0 -0
  138. {execweave-0.6.3 → execweave-0.6.4}/docs/security-analysis.md +0 -0
  139. {execweave-0.6.3 → execweave-0.6.4}/docs/security-analysis.ru.md +0 -0
  140. {execweave-0.6.3 → execweave-0.6.4}/docs/security-analysis.zh-CN.md +0 -0
  141. {execweave-0.6.3 → execweave-0.6.4}/docs/security-analysis.zh-TW.md +0 -0
  142. {execweave-0.6.3 → execweave-0.6.4}/docs/semantic-telemetry.de.md +0 -0
  143. {execweave-0.6.3 → execweave-0.6.4}/docs/semantic-telemetry.fr.md +0 -0
  144. {execweave-0.6.3 → execweave-0.6.4}/docs/semantic-telemetry.ja.md +0 -0
  145. {execweave-0.6.3 → execweave-0.6.4}/docs/semantic-telemetry.ko.md +0 -0
  146. {execweave-0.6.3 → execweave-0.6.4}/docs/semantic-telemetry.md +0 -0
  147. {execweave-0.6.3 → execweave-0.6.4}/docs/semantic-telemetry.ru.md +0 -0
  148. {execweave-0.6.3 → execweave-0.6.4}/docs/semantic-telemetry.zh-CN.md +0 -0
  149. {execweave-0.6.3 → execweave-0.6.4}/docs/semantic-telemetry.zh-TW.md +0 -0
  150. {execweave-0.6.3 → execweave-0.6.4}/scripts/check_claude_hook.py +0 -0
  151. {execweave-0.6.3 → execweave-0.6.4}/scripts/check_claude_record_graph.py +0 -0
  152. {execweave-0.6.3 → execweave-0.6.4}/scripts/check_correlation_graph.py +0 -0
  153. {execweave-0.6.3 → execweave-0.6.4}/scripts/check_model_runtime_cli.py +0 -0
  154. {execweave-0.6.3 → execweave-0.6.4}/scripts/check_semantic_graph.py +0 -0
  155. {execweave-0.6.3 → execweave-0.6.4}/scripts/check_viewer_js.py +0 -0
  156. {execweave-0.6.3 → execweave-0.6.4}/scripts/check_windows_launchers.py +0 -0
  157. {execweave-0.6.3 → execweave-0.6.4}/scripts/emit_claude_hook_smoke.py +0 -0
  158. {execweave-0.6.3 → execweave-0.6.4}/scripts/emit_cursor_hook_smoke.py +0 -0
  159. {execweave-0.6.3 → execweave-0.6.4}/scripts/emit_gemini_hook_smoke.py +0 -0
  160. {execweave-0.6.3 → execweave-0.6.4}/scripts/emit_opencode_plugin_smoke.py +0 -0
  161. {execweave-0.6.3 → execweave-0.6.4}/scripts/make_semantic_smoke.py +0 -0
  162. {execweave-0.6.3 → execweave-0.6.4}/scripts/sync_i18n_nav.py +0 -0
  163. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/__main__.py +0 -0
  164. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/analysis.py +0 -0
  165. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/backends.py +0 -0
  166. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/benchmark.py +0 -0
  167. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/claude_adapter.py +0 -0
  168. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/claude_hook_cli.py +0 -0
  169. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/claude_record.py +0 -0
  170. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/cli.py +0 -0
  171. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/codex_adapter.py +0 -0
  172. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/codex_hook_cli.py +0 -0
  173. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/codex_record.py +0 -0
  174. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/command.py +0 -0
  175. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/correlation.py +0 -0
  176. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/cursor_adapter.py +0 -0
  177. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/cursor_hook_cli.py +0 -0
  178. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/cursor_record.py +0 -0
  179. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/entry.py +0 -0
  180. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/filesystem.py +0 -0
  181. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/focus.py +0 -0
  182. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/gemini_adapter.py +0 -0
  183. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/gemini_hook_cli.py +0 -0
  184. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/gemini_record.py +0 -0
  185. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/graph.py +0 -0
  186. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/graph_ops.py +0 -0
  187. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/inference_gateway.py +0 -0
  188. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/inference_gateway_cli.py +0 -0
  189. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/inference_identity.py +0 -0
  190. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/inference_identity_cli.py +0 -0
  191. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/model_runtime.py +0 -0
  192. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/model_runtime_cli.py +0 -0
  193. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/opencode_adapter.py +0 -0
  194. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/opencode_hook_cli.py +0 -0
  195. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/opencode_plugin_cli.py +0 -0
  196. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/opencode_record.py +0 -0
  197. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/overhead_benchmark.py +0 -0
  198. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/provider_record.py +0 -0
  199. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/scalability_benchmark.py +0 -0
  200. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/schema.py +0 -0
  201. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/scope.py +0 -0
  202. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/sink.py +0 -0
  203. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/strace_backend.py +0 -0
  204. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/theme.py +0 -0
  205. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/validate.py +0 -0
  206. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/view_cli.py +0 -0
  207. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/viewer.py +0 -0
  208. {execweave-0.6.3 → execweave-0.6.4}/src/execweave/workflow.py +0 -0
  209. {execweave-0.6.3 → execweave-0.6.4}/tests/test_analysis.py +0 -0
  210. {execweave-0.6.3 → execweave-0.6.4}/tests/test_backends.py +0 -0
  211. {execweave-0.6.3 → execweave-0.6.4}/tests/test_claude_adapter.py +0 -0
  212. {execweave-0.6.3 → execweave-0.6.4}/tests/test_claude_record.py +0 -0
  213. {execweave-0.6.3 → execweave-0.6.4}/tests/test_codex_adapter.py +0 -0
  214. {execweave-0.6.3 → execweave-0.6.4}/tests/test_codex_record.py +0 -0
  215. {execweave-0.6.3 → execweave-0.6.4}/tests/test_collector.py +0 -0
  216. {execweave-0.6.3 → execweave-0.6.4}/tests/test_command.py +0 -0
  217. {execweave-0.6.3 → execweave-0.6.4}/tests/test_condense.py +0 -0
  218. {execweave-0.6.3 → execweave-0.6.4}/tests/test_correlation.py +0 -0
  219. {execweave-0.6.3 → execweave-0.6.4}/tests/test_correlation_canonical_path.py +0 -0
  220. {execweave-0.6.3 → execweave-0.6.4}/tests/test_correlation_process_exe.py +0 -0
  221. {execweave-0.6.3 → execweave-0.6.4}/tests/test_cursor_adapter.py +0 -0
  222. {execweave-0.6.3 → execweave-0.6.4}/tests/test_cursor_record.py +0 -0
  223. {execweave-0.6.3 → execweave-0.6.4}/tests/test_filesystem_resilience.py +0 -0
  224. {execweave-0.6.3 → execweave-0.6.4}/tests/test_focus.py +0 -0
  225. {execweave-0.6.3 → execweave-0.6.4}/tests/test_gemini_adapter.py +0 -0
  226. {execweave-0.6.3 → execweave-0.6.4}/tests/test_gemini_record.py +0 -0
  227. {execweave-0.6.3 → execweave-0.6.4}/tests/test_graph.py +0 -0
  228. {execweave-0.6.3 → execweave-0.6.4}/tests/test_graph_ops.py +0 -0
  229. {execweave-0.6.3 → execweave-0.6.4}/tests/test_inference_gateway.py +0 -0
  230. {execweave-0.6.3 → execweave-0.6.4}/tests/test_inference_identity.py +0 -0
  231. {execweave-0.6.3 → execweave-0.6.4}/tests/test_live.py +0 -0
  232. {execweave-0.6.3 → execweave-0.6.4}/tests/test_live_delta.py +0 -0
  233. {execweave-0.6.3 → execweave-0.6.4}/tests/test_live_theme.py +0 -0
  234. {execweave-0.6.3 → execweave-0.6.4}/tests/test_model_runtime.py +0 -0
  235. {execweave-0.6.3 → execweave-0.6.4}/tests/test_opencode_adapter.py +0 -0
  236. {execweave-0.6.3 → execweave-0.6.4}/tests/test_opencode_plugin.py +0 -0
  237. {execweave-0.6.3 → execweave-0.6.4}/tests/test_opencode_record.py +0 -0
  238. {execweave-0.6.3 → execweave-0.6.4}/tests/test_overhead_benchmark.py +0 -0
  239. {execweave-0.6.3 → execweave-0.6.4}/tests/test_schema.py +0 -0
  240. {execweave-0.6.3 → execweave-0.6.4}/tests/test_scope.py +0 -0
  241. {execweave-0.6.3 → execweave-0.6.4}/tests/test_semantic.py +0 -0
  242. {execweave-0.6.3 → execweave-0.6.4}/tests/test_strace_backend.py +0 -0
  243. {execweave-0.6.3 → execweave-0.6.4}/tests/test_v063_features.py +0 -0
  244. {execweave-0.6.3 → execweave-0.6.4}/tests/test_validate.py +0 -0
  245. {execweave-0.6.3 → execweave-0.6.4}/tests/test_version.py +0 -0
  246. {execweave-0.6.3 → execweave-0.6.4}/tests/test_viewer.py +0 -0
  247. {execweave-0.6.3 → execweave-0.6.4}/tests/test_workflow.py +0 -0
@@ -1,6 +1,7 @@
1
1
  name: Documentation i18n
2
2
 
3
3
  on:
4
+ workflow_dispatch:
4
5
  push:
5
6
  branches: [main]
6
7
  paths:
@@ -30,5 +31,5 @@ jobs:
30
31
  python-version: "3.12"
31
32
  - name: Check eight-language navigation and coverage
32
33
  run: python scripts/sync_i18n_nav.py --check
33
- - name: Check German, French, and Russian structural parity
34
+ - name: Check translation structural parity
34
35
  run: python scripts/audit_i18n_parity.py --languages fr de ru
@@ -38,6 +38,8 @@ jobs:
38
38
  python -m pip install build twine
39
39
  python -m build
40
40
  python -m twine check dist/*
41
+ - name: Clean wheel install smoke
42
+ run: python scripts/check_wheel_install.py
41
43
  - uses: actions/upload-artifact@v4
42
44
  with:
43
45
  name: python-package-distributions
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: execweave
3
- Version: 0.6.3
3
+ Version: 0.6.4
4
4
  Summary: Turn AI-agent runtime behavior into a local interactive execution graph.
5
5
  Project-URL: Homepage, https://github.com/Irish-kw/ExecWeave
6
6
  Project-URL: Repository, https://github.com/Irish-kw/ExecWeave
@@ -76,9 +76,30 @@ ExecWeave is an open-source, local-first observability project that turns AI-age
76
76
  > **Event is ground truth. The graph is a materialized view.**
77
77
 
78
78
  <p align="center">
79
- <img src="docs/assets/execweave-viewer.png" alt="ExecWeave Live execution graph" width="100%">
79
+ <img src="docs/assets/execweave-launch-demo-v5-x.gif" alt="ExecWeave animated live demo" width="100%">
80
80
  </p>
81
81
 
82
+ <!-- execweave-demo:start -->
83
+ ## Reproduce this demo
84
+
85
+ The animation above is a real ExecWeave v0.6.3 live session. This workload deliberately creates enough activity to make the execution graph useful: multiple Python modules, JSON/CSV files, tests, file inspection, and outbound HTTP requests.
86
+
87
+ Run a local Agent CLI under ExecWeave. For example:
88
+
89
+ ```bash
90
+ execweave live --open -- claude
91
+ ```
92
+
93
+ Then paste this workload prompt into the Agent:
94
+
95
+ ```text
96
+ Create a small Python project in ./execweave-demo with 8 modules,
97
+ generate sample JSON and CSV data, run the program and tests,
98
+ inspect the generated files, and fetch example.com plus the GitHub API.
99
+ ```
100
+ The same workload works with `codex`, `gemini`, `cursor`, or `opencode`. Exact node, edge, event, process, and endpoint counts vary by OS, Agent version, and environment. ExecWeave records observed runtime evidence; the animation is one concrete run, not a fixed expected graph.
101
+ <!-- execweave-demo:end -->
102
+
82
103
  ## Install
83
104
 
84
105
  ExecWeave is published on PyPI as a standard Python wheel/sdist. Install the latest published release with:
@@ -118,39 +139,43 @@ execweave live --open -- python my_agent.py
118
139
  execweave live --open -- ollama serve
119
140
  ```
120
141
 
121
- `execweave live` streams process, file, and network evidence for the command tree it launches. It does **not** automatically inject Agent semantic hooks, model-runtime API metadata, or inference-gateway routing metadata into the Live Viewer.
142
+ `execweave live` streams process, file, and network evidence for the command tree it launches. In v0.6.4, configured Claude/Codex/Gemini/Cursor hooks and the OpenCode plugin automatically feed the per-run live sidecar. Ollama, llama.cpp, and vLLM server launches also receive automatic local model-catalog probes.
122
143
 
123
144
  #### Live capability matrix
124
145
 
125
146
  | Integration | Direct OS-runtime live | Specialized metadata | Automatically in Live Viewer |
126
147
  | --- | --- | --- | --- |
127
- | Claude Code | Yes | `execweave-claude-record` / hooks | No |
128
- | OpenAI Codex | Yes | `execweave-codex-record` / hooks | No |
129
- | Gemini CLI | Yes | `execweave-gemini-record` / hooks | No |
130
- | Cursor | Yes | `execweave-cursor-record` / hooks | No |
131
- | OpenCode | Yes | `execweave-opencode-record` / plugin | No |
132
- | Ollama | Yes, when launched under ExecWeave (for example `ollama serve`) | `execweave-model-runtime event/probe --runtime ollama` | No |
133
- | llama.cpp | Yes, when its local server is launched under ExecWeave | `execweave-model-runtime event/probe --runtime llamacpp` | No |
134
- | vLLM | Yes, when its local server is launched under ExecWeave | `execweave-model-runtime event/probe --runtime vllm` | No |
135
- | LM Studio | Yes only for a local process launched under ExecWeave; an already-running server is not attached | `execweave-model-runtime event/probe --runtime lmstudio` | No |
136
- | LiteLLM Proxy | Yes, when the local proxy is launched under ExecWeave | `execweave-inference-gateway event --gateway litellm` | No |
148
+ | Claude Code | Yes | `execweave-claude-record` / hooks | Yes (configured hook/plugin) |
149
+ | OpenAI Codex | Yes | `execweave-codex-record` / hooks | Yes (configured hook/plugin) |
150
+ | Gemini CLI | Yes | `execweave-gemini-record` / hooks | Yes (configured hook/plugin) |
151
+ | Cursor | Yes | `execweave-cursor-record` / hooks | Yes (configured hook/plugin) |
152
+ | OpenCode | Yes | `execweave-opencode-record` / plugin | Yes (configured hook/plugin) |
153
+ | Ollama | Yes, when launched under ExecWeave (for example `ollama serve`) | `execweave-model-runtime event/probe --runtime ollama` | Yes (automatic local probe) |
154
+ | llama.cpp | Yes, when its local server is launched under ExecWeave | `execweave-model-runtime event/probe --runtime llamacpp` | Yes (automatic local probe) |
155
+ | vLLM | Yes, when its local server is launched under ExecWeave | `execweave-model-runtime event/probe --runtime vllm` | Yes (automatic local probe) |
156
+ | LM Studio | Yes only for a local process launched under ExecWeave; an already-running server is not attached | `execweave-model-runtime event/probe --runtime lmstudio` | Yes (automatic after successful `lms server start --port <port>`) |
157
+ | LiteLLM Proxy | Yes, when the local proxy is launched under ExecWeave | `execweave-inference-gateway event --gateway litellm` / configured callback | Yes (configured callback) |
137
158
  | OpenRouter | No direct remote-service process; run the local client/Agent under `live` instead | `execweave-inference-gateway event/generation --gateway openrouter` | No |
138
159
 
160
+ Agent rows marked **Yes** require the provider hook/plugin to be configured once; `execweave live` then supplies the per-run `EXECWEAVE_SEMANTIC_SIDECAR` automatically. Ollama, llama.cpp, and vLLM rows marked **Yes** use automatic loopback model-catalog probes only when ExecWeave launches the corresponding local server. LM Studio is also automatic for `lms server start` when an explicit `--port` is supplied, the compatible endpoint was absent before launch, and the launcher exits successfully. LiteLLM Proxy is **Yes** after its ExecWeave callback has been configured once and the proxy is launched inside the current `execweave live` environment. OpenRouter remains **No** because remote routing metadata is not available from OS/network observation alone.
161
+
139
162
  For an already-running Ollama server, use `execweave-model-runtime probe --runtime ollama` to snapshot loaded-model state. For OpenRouter, `live` can observe the local client and its network activity, while gateway routing/usage metadata remains a separate evidence layer.
140
163
 
141
- <!-- v0.6.3-live -->
142
- ### v0.6.3 live observability
164
+ <!-- v0.6.4-live -->
165
+ ### v0.6.4 live observability
143
166
 
144
- Use the same live session in either the browser or terminal:
167
+ `top` keeps the Agent fully interactive in the terminal where you launched it and opens the dashboard in a **separate terminal window**:
145
168
 
146
169
  ```bash
147
- execweave top -- codex # Terminal dashboard
148
- execweave top --open -- codex # Terminal + Web Viewer
170
+ execweave top -- codex # Agent here + detached Top dashboard
171
+ execweave top --open -- codex # Agent here + detached Top dashboard + Web Viewer
149
172
  ```
150
173
 
174
+ The detached dashboard is an attach-only client for the same localhost live session; it never launches a second Agent process. On Windows it uses a new console, on macOS it opens Terminal, and on desktop Linux it uses an available terminal emulator. In a headless environment, ExecWeave prints an attach command instead of taking over the Agent terminal.
175
+
151
176
  Live updates use incremental snapshots/deltas with bounded history instead of repeatedly rebuilding and transferring the full graph. Live and standalone viewers support a persistent Dark/Light theme switch. On Linux, very large recursive filesystem scopes are preflighted and automatically fall back from inotify to polling when needed, so an exhausted inotify watch pool does not abort the session.
152
177
 
153
- `live` is a generic OS-runtime view rather than an integration whitelist. Specialized Agent semantic, model-runtime, and gateway metadata remain separate evidence layers and are not automatically injected into the Live Viewer in v0.6.3.
178
+ v0.6.4 gives each live run a shared specialized-evidence sidecar. Configured Claude Code, Codex, Gemini CLI, Cursor, and OpenCode integrations inherit that sidecar automatically, so their provider semantic evidence can appear incrementally beside OS-runtime evidence in the same live graph. This live normalization is provisional; after the command exits, the final graph is rebuilt from the canonical runtime + semantic merge. Missing specialized evidence is never invented.
154
179
 
155
180
  Run the reproducible graph scalability benchmark with `execweave-scalability`; CI covers 10k, 100k, and 1M synthetic events.
156
181
 
@@ -403,9 +428,9 @@ Security findings remain explicit about evidence limits. A possible sensitive-fi
403
428
 
404
429
  ## Current status
405
430
 
406
- ExecWeave `main` is currently **v0.6.3** and under active development.
431
+ ExecWeave `main` is currently **v0.6.4** and under active development.
407
432
 
408
- The baseline includes runtime collection, graph materialization/querying, standalone/live Viewer, Claude/Codex/Gemini/Cursor/OpenCode semantic integrations, conservative Tool → Process correlation, OpenRouter/LiteLLM gateway metadata, Ollama/llama.cpp/vLLM/LM Studio runtime metadata, exact Gateway ↔ Model Runtime request identity, published PyPI wheel/sdist packaging, reproducible overhead benchmarking, cross-platform command-launcher compatibility, large-graph browser safety guards, incremental Live JSONL tail/cache, and cross-platform CI on Python 3.10/3.12.
433
+ The baseline includes runtime collection, graph materialization/querying, standalone/live Viewer, detached terminal Top dashboard, provisional multi-layer live evidence with canonical final semantic merge, Claude/Codex/Gemini/Cursor/OpenCode semantic integrations, conservative Tool → Process correlation, OpenRouter/LiteLLM gateway metadata, Ollama/llama.cpp/vLLM/LM Studio runtime metadata, exact Gateway ↔ Model Runtime request identity, published PyPI wheel/sdist packaging, reproducible overhead benchmarking, cross-platform command-launcher compatibility, large-graph browser safety guards, incremental Live JSONL tail/cache, and cross-platform CI on Python 3.10/3.12.
409
434
 
410
435
  ## Privacy
411
436
 
@@ -435,4 +460,4 @@ Contributions are welcome, especially around native OS collectors, additional Ag
435
460
 
436
461
  ## License
437
462
 
438
- See [`LICENSE`](LICENSE).
463
+ See [`LICENSE`](LICENSE).
@@ -26,9 +26,31 @@ ExecWeave ist ein Open-Source-, local-first Observability-Projekt, das die Aktiv
26
26
  > **Das Event ist die ground truth; der Graph ist eine materialized view.**
27
27
 
28
28
  <p align="center">
29
- <img src="docs/assets/execweave-viewer.png" alt="ExecWeave Live execution graph" width="100%">
29
+ <img src="docs/assets/execweave-launch-demo-v5-x.gif" alt="ExecWeave Live execution graph" width="100%">
30
30
  </p>
31
31
 
32
+ <!-- execweave-demo:start -->
33
+ ## Diese Demo reproduzieren
34
+
35
+ Der Screenshot oben stammt aus einer echten ExecWeave-v0.6.3-Live-Session. Dieser Workload erzeugt absichtlich genügend Aktivität für einen aussagekräftigen execution graph: mehrere Python modules, JSON/CSV files, tests, file inspection und ausgehende HTTP requests.
36
+
37
+ Starte eine lokale Agent CLI unter ExecWeave, zum Beispiel:
38
+
39
+ ```bash
40
+ execweave live --open -- claude
41
+ ```
42
+
43
+ Füge danach diesen workload prompt in den Agent ein:
44
+
45
+ ```text
46
+ Create a small Python project in ./execweave-demo with 8 modules,
47
+ generate sample JSON and CSV data, run the program and tests,
48
+ inspect the generated files, and fetch example.com plus the GitHub API.
49
+ ```
50
+
51
+ Derselbe workload funktioniert auch mit `codex`, `gemini`, `cursor` oder `opencode`. Die genaue Anzahl von nodes, edges, events, processes und endpoints hängt von OS, Agent version und environment ab. ExecWeave zeichnet tatsächlich beobachtetes runtime evidence auf; der Screenshot zeigt einen konkreten Lauf und keinen fest erwarteten graph.
52
+ <!-- execweave-demo:end -->
53
+
32
54
  ## Installation
33
55
 
34
56
  ExecWeave wird auf PyPI als normales Python wheel/sdist veröffentlicht. Installieren Sie die neueste Release-Version mit:
@@ -68,41 +90,41 @@ execweave live --open -- python my_agent.py
68
90
  execweave live --open -- ollama serve
69
91
  ```
70
92
 
71
- `execweave live` streamt Process-, File- und Network-Evidence für den von ExecWeave gestarteten Command Tree. Agent-Semantic-Hooks, Model-Runtime-API-Metadaten oder Inference-Gateway-Routing-Metadaten werden **nicht** automatisch in den Live Viewer injiziert.
93
+ `execweave live` streamt Process-, File- und Network-Evidence für den gestarteten Command Tree. Seit v0.6.4 speisen konfigurierte Claude/Codex/Gemini/Cursor-Hooks und das OpenCode-Plugin automatisch den run-spezifischen Live-Sidecar; unter ExecWeave gestartete Ollama-, llama.cpp- und vLLM-Server erhalten zusätzlich einen automatischen lokalen Model-Catalog-Probe.
72
94
 
73
95
  #### Live-Capability-Matrix
74
96
 
75
97
  | Integration | Direct OS-runtime live | Specialized metadata | Automatisch im Live Viewer |
76
98
  | --- | --- | --- | --- |
77
- | Claude Code | Ja | `execweave-claude-record` / hooks | Nein |
78
- | OpenAI Codex | Ja | `execweave-codex-record` / hooks | Nein |
79
- | Gemini CLI | Ja | `execweave-gemini-record` / hooks | Nein |
80
- | Cursor | Ja | `execweave-cursor-record` / hooks | Nein |
81
- | OpenCode | Ja | `execweave-opencode-record` / plugin | Nein |
82
- | Ollama | Ja, wenn es unter ExecWeave gestartet wird, z. B. `ollama serve` | `execweave-model-runtime event/probe --runtime ollama` | Nein |
83
- | llama.cpp | Ja, wenn der lokale Server unter ExecWeave gestartet wird | `execweave-model-runtime event/probe --runtime llamacpp` | Nein |
84
- | vLLM | Ja, wenn der lokale Server unter ExecWeave gestartet wird | `execweave-model-runtime event/probe --runtime vllm` | Nein |
85
- | LM Studio | Nur für einen lokalen Prozess, der unter ExecWeave gestartet wurde; ein bereits laufender Server wird nicht attached | `execweave-model-runtime event/probe --runtime lmstudio` | Nein |
86
- | LiteLLM Proxy | Ja, wenn der lokale Proxy unter ExecWeave gestartet wird | `execweave-inference-gateway event --gateway litellm` | Nein |
99
+ | Claude Code | Ja | `execweave-claude-record` / hooks | Ja (konfigurierter Hook/Plugin) |
100
+ | OpenAI Codex | Ja | `execweave-codex-record` / hooks | Ja (konfigurierter Hook/Plugin) |
101
+ | Gemini CLI | Ja | `execweave-gemini-record` / hooks | Ja (konfigurierter Hook/Plugin) |
102
+ | Cursor | Ja | `execweave-cursor-record` / hooks | Ja (konfigurierter Hook/Plugin) |
103
+ | OpenCode | Ja | `execweave-opencode-record` / plugin | Ja (konfigurierter Hook/Plugin) |
104
+ | Ollama | Ja, wenn es unter ExecWeave gestartet wird, z. B. `ollama serve` | `execweave-model-runtime event/probe --runtime ollama` | Ja (automatischer lokaler Probe) |
105
+ | llama.cpp | Ja, wenn der lokale Server unter ExecWeave gestartet wird | `execweave-model-runtime event/probe --runtime llamacpp` | Ja (automatischer lokaler Probe) |
106
+ | vLLM | Ja, wenn der lokale Server unter ExecWeave gestartet wird | `execweave-model-runtime event/probe --runtime vllm` | Ja (automatischer lokaler Probe) |
107
+ | LM Studio | Nur für einen lokalen Prozess, der unter ExecWeave gestartet wurde; ein bereits laufender Server wird nicht attached | `execweave-model-runtime event/probe --runtime lmstudio` | Ja (automatischer Probe nach erfolgreichem Start mit `--port`) |
108
+ | LiteLLM Proxy | Ja, wenn der lokale Proxy unter ExecWeave gestartet wird | `execweave-inference-gateway event --gateway litellm` / configured callback | Ja (konfigurierter Callback) |
87
109
  | OpenRouter | Kein direkt startbarer Remote-Service-Prozess; stattdessen den lokalen Client/Agent unter `live` ausführen | `execweave-inference-gateway event/generation --gateway openrouter` | Nein |
88
110
 
89
111
  Für einen bereits laufenden Ollama-Server kann `execweave-model-runtime probe --runtime ollama` den geladenen Modellzustand snapshotten. Bei OpenRouter kann `live` den lokalen Client und dessen Network-Aktivität beobachten; Gateway-Routing-/Usage-Metadaten bleiben eine separate Evidence-Layer.
90
112
 
91
- <!-- v0.6.3-live -->
92
- ### v0.6.3 Live-Observability
113
+ <!-- v0.6.4-live -->
114
+ ### v0.6.4 Live-Observability
93
115
 
94
- Dieselbe Live-Session kann im Browser oder Terminal betrachtet werden:
116
+ `top` lässt den Agent im ursprünglichen Terminal interaktiv und öffnet das Dashboard in einem separaten Terminalfenster:
95
117
 
96
118
  ```bash
97
- execweave top -- codex # Terminal dashboard
98
- execweave top --open -- codex # Terminal + Web Viewer
119
+ execweave top -- codex
120
+ execweave top --open -- codex
99
121
  ```
100
122
 
101
- Live-Updates verwenden inkrementelle Snapshots/Deltas mit begrenzter History, statt den vollständigen Graph wiederholt neu zu bauen und zu übertragen. Live- und Standalone-Viewer unterstützen einen persistenten Dark/Light-Theme-Schalter. Unter Linux werden sehr große rekursive Filesystem-Scopes vorab geprüft und bei Bedarf automatisch von inotify auf Polling zurückgestuft, sodass ein erschöpfter inotify-Watch-Pool die Session nicht abbricht.
123
+ Live-Updates verwenden inkrementelle Snapshots/Deltas mit begrenzter History. Live- und Standalone-Viewer behalten die Dark/Light-Auswahl. Unter Linux werden sehr große rekursive Filesystem-Scopes vorab geprüft und bei Bedarf automatisch von inotify auf Polling zurückgestuft.
102
124
 
103
- `live` ist eine generische OS-Runtime-Ansicht und keine Integrations-Whitelist. Spezialisierte Agent-Semantic-, Model-Runtime- und Gateway-Metadaten bleiben getrennte Evidence-Layer und werden in v0.6.3 nicht automatisch in den Live Viewer injiziert.
125
+ v0.6.4 erstellt für jeden Live-Run einen gemeinsamen Specialized-Evidence-Sidecar. Konfigurierte Claude/Codex/Gemini/Cursor-Hooks und das OpenCode-Plugin erscheinen automatisch im selben Live Graph; unter ExecWeave gestartete Ollama-, llama.cpp- und vLLM-Server werden automatisch über ihre Loopback-API nach dem Model Catalog abgefragt. Diese spezialisierten Live-Events sind provisional; nach Ende des Befehls wird der finale Graph aus dem canonical Runtime+Semantic-Merge neu aufgebaut. Fehlende Evidence wird nicht erfunden.
104
126
 
105
- Der reproduzierbare Graph-Scalability-Benchmark läuft mit `execweave-scalability`; CI deckt 10k, 100k und 1M synthetische Events ab.
127
+ Mit `execweave-scalability` lässt sich der Graph-Scalability-Benchmark reproduzieren; CI deckt 10k, 100k und 1M synthetische Events ab.
106
128
 
107
129
  #### Scalability-Benchmark
108
130
 
@@ -353,7 +375,7 @@ Security Findings bleiben hinsichtlich ihrer Evidence-Grenzen explizit. Ein mög
353
375
 
354
376
  ## Aktueller Stand
355
377
 
356
- ExecWeave `main` ist derzeit **v0.6.3** und wird aktiv weiterentwickelt.
378
+ ExecWeave `main` ist derzeit **v0.6.4** und wird aktiv weiterentwickelt.
357
379
 
358
380
  Der Baseline umfasst Runtime Collection, Graph-Materialisierung und -Abfragen, Standalone/Live Viewer, Claude/Codex/Gemini/Cursor/OpenCode Semantic Integrations, konservative Tool → Process Correlation, OpenRouter/LiteLLM Gateway Metadata, Ollama/llama.cpp/vLLM/LM Studio Runtime Metadata, exakte Gateway ↔ Model Runtime Request Identity, veröffentlichte PyPI wheel/sdist-Pakete, reproduzierbares Overhead Benchmarking, Cross-Platform Command-Launcher-Kompatibilität, Large-Graph Browser Safety Guards, inkrementelles Live JSONL Tail/Cache und Cross-Platform CI unter Python 3.10/3.12.
359
381
 
@@ -385,4 +407,4 @@ Beiträge sind willkommen, insbesondere zu native OS collectors, zusätzlichen A
385
407
 
386
408
  ## Lizenz
387
409
 
388
- Siehe [`LICENSE`](LICENSE).
410
+ Siehe [`LICENSE`](LICENSE).
@@ -26,9 +26,31 @@ ExecWeave est un projet d’observabilité open source et local-first qui transf
26
26
  > **L’Event est la ground truth ; le Graph est une materialized view.**
27
27
 
28
28
  <p align="center">
29
- <img src="docs/assets/execweave-viewer.png" alt="ExecWeave Live execution graph" width="100%">
29
+ <img src="docs/assets/execweave-launch-demo-v5-x.gif" alt="ExecWeave Live execution graph" width="100%">
30
30
  </p>
31
31
 
32
+ <!-- execweave-demo:start -->
33
+ ## Reproduire cette démo
34
+
35
+ La capture ci-dessus provient d'une véritable session live ExecWeave v0.6.3. Ce workload provoque volontairement assez d'activité pour rendre l'execution graph parlant : plusieurs modules Python, des fichiers JSON/CSV, des tests, l'inspection de fichiers et des requêtes HTTP sortantes.
36
+
37
+ Exécutez un Agent CLI local sous ExecWeave, par exemple :
38
+
39
+ ```bash
40
+ execweave live --open -- claude
41
+ ```
42
+
43
+ Puis collez ce workload prompt dans l'Agent :
44
+
45
+ ```text
46
+ Create a small Python project in ./execweave-demo with 8 modules,
47
+ generate sample JSON and CSV data, run the program and tests,
48
+ inspect the generated files, and fetch example.com plus the GitHub API.
49
+ ```
50
+
51
+ Le même workload fonctionne avec `codex`, `gemini`, `cursor` ou `opencode`. Le nombre exact de nodes, edges, events, processes et endpoints dépend de l'OS, de la version de l'Agent et de l'environnement. ExecWeave enregistre le runtime evidence réellement observé ; la capture montre une exécution concrète, pas un graph attendu fixe.
52
+ <!-- execweave-demo:end -->
53
+
32
54
  ## Installation
33
55
 
34
56
  ExecWeave est publié sur PyPI sous forme de wheel/sdist Python standard. Installez la dernière release avec :
@@ -68,41 +90,41 @@ execweave live --open -- python my_agent.py
68
90
  execweave live --open -- ollama serve
69
91
  ```
70
92
 
71
- `execweave live` diffuse les preuves process, file et network de l’arbre de commandes qu’il lance. Il **n’injecte pas automatiquement** dans le Live Viewer les hooks sémantiques Agent, les métadonnées API du Model Runtime ni les métadonnées de routage de l’Inference Gateway.
93
+ `execweave live` diffuse les preuves process, file et network de l’arbre de commandes qu’il lance. Depuis v0.6.4, les hooks Claude/Codex/Gemini/Cursor configurés et le plugin OpenCode alimentent automatiquement le live sidecar du run ; les serveurs Ollama, llama.cpp et vLLM lancés sous ExecWeave reçoivent aussi un probe local automatique du catalogue de modèles.
72
94
 
73
95
  #### Matrice des capacités Live
74
96
 
75
97
  | Integration | Direct OS-runtime live | Specialized metadata | Automatiquement dans le Live Viewer |
76
98
  | --- | --- | --- | --- |
77
- | Claude Code | Oui | `execweave-claude-record` / hooks | Non |
78
- | OpenAI Codex | Oui | `execweave-codex-record` / hooks | Non |
79
- | Gemini CLI | Oui | `execweave-gemini-record` / hooks | Non |
80
- | Cursor | Oui | `execweave-cursor-record` / hooks | Non |
81
- | OpenCode | Oui | `execweave-opencode-record` / plugin | Non |
82
- | Ollama | Oui, lorsqu’il est lancé sous ExecWeave, par exemple `ollama serve` | `execweave-model-runtime event/probe --runtime ollama` | Non |
83
- | llama.cpp | Oui, lorsque son serveur local est lancé sous ExecWeave | `execweave-model-runtime event/probe --runtime llamacpp` | Non |
84
- | vLLM | Oui, lorsque son serveur local est lancé sous ExecWeave | `execweave-model-runtime event/probe --runtime vllm` | Non |
85
- | LM Studio | Oui uniquement pour un processus local lancé sous ExecWeave ; un serveur déjà actif n’est pas attaché | `execweave-model-runtime event/probe --runtime lmstudio` | Non |
86
- | LiteLLM Proxy | Oui, lorsque le proxy local est lancé sous ExecWeave | `execweave-inference-gateway event --gateway litellm` | Non |
99
+ | Claude Code | Oui | `execweave-claude-record` / hooks | Oui (hook/plugin configuré) |
100
+ | OpenAI Codex | Oui | `execweave-codex-record` / hooks | Oui (hook/plugin configuré) |
101
+ | Gemini CLI | Oui | `execweave-gemini-record` / hooks | Oui (hook/plugin configuré) |
102
+ | Cursor | Oui | `execweave-cursor-record` / hooks | Oui (hook/plugin configuré) |
103
+ | OpenCode | Oui | `execweave-opencode-record` / plugin | Oui (hook/plugin configuré) |
104
+ | Ollama | Oui, lorsqu’il est lancé sous ExecWeave, par exemple `ollama serve` | `execweave-model-runtime event/probe --runtime ollama` | Oui (probe local automatique) |
105
+ | llama.cpp | Oui, lorsque son serveur local est lancé sous ExecWeave | `execweave-model-runtime event/probe --runtime llamacpp` | Oui (probe local automatique) |
106
+ | vLLM | Oui, lorsque son serveur local est lancé sous ExecWeave | `execweave-model-runtime event/probe --runtime vllm` | Oui (probe local automatique) |
107
+ | LM Studio | Oui uniquement pour un processus local lancé sous ExecWeave ; un serveur déjà actif n’est pas attaché | `execweave-model-runtime event/probe --runtime lmstudio` | Oui (probe auto après démarrage réussi avec `--port`) |
108
+ | LiteLLM Proxy | Oui, lorsque le proxy local est lancé sous ExecWeave | `execweave-inference-gateway event --gateway litellm` / configured callback | Oui (callback configuré) |
87
109
  | OpenRouter | Pas de processus de service distant à lancer directement ; exécutez plutôt le client/Agent local sous `live` | `execweave-inference-gateway event/generation --gateway openrouter` | Non |
88
110
 
89
111
  Pour un serveur Ollama déjà actif, utilisez `execweave-model-runtime probe --runtime ollama` afin de prendre un snapshot de l’état des modèles chargés. Pour OpenRouter, `live` peut observer le client local et son activité réseau, tandis que les métadonnées de routage/usage du gateway restent une couche de preuve distincte.
90
112
 
91
- <!-- v0.6.3-live -->
92
- ### Observabilité Live v0.6.3
113
+ <!-- v0.6.4-live -->
114
+ ### Observabilité Live v0.6.4
93
115
 
94
- Utilisez la même session Live dans le navigateur ou le terminal :
116
+ `top` garde l’Agent interactif dans le Terminal d’origine et ouvre le dashboard dans une fenêtre Terminal séparée :
95
117
 
96
118
  ```bash
97
- execweave top -- codex # Terminal dashboard
98
- execweave top --open -- codex # Terminal + Web Viewer
119
+ execweave top -- codex
120
+ execweave top --open -- codex
99
121
  ```
100
122
 
101
- Les mises à jour Live utilisent des snapshots/deltas incrémentaux avec un historique borné au lieu de reconstruire et retransférer continuellement le graphe complet. Les Viewers Live et standalone proposent un sélecteur Dark/Light persistant. Sous Linux, les très grands scopes filesystem récursifs sont pré-évalués et basculent automatiquement d’inotify vers le polling si nécessaire, afin qu’un pool de watches inotify épuisé n’interrompe pas la session.
123
+ Les mises à jour Live utilisent des snapshots/deltas incrémentaux avec un historique borné. Les Viewers Live et standalone conservent le choix Dark/Light. Sous Linux, les très grands scopes filesystem récursifs sont pré-évalués et basculent automatiquement d’inotify vers le polling si nécessaire.
102
124
 
103
- `live` est une vue OS-runtime générique et non une whitelist d’intégrations. Les métadonnées spécialisées Agent semantic, Model Runtime et Gateway restent des couches de preuve séparées et ne sont pas automatiquement injectées dans le Live Viewer en v0.6.3.
125
+ v0.6.4 crée un specialized-evidence sidecar partagé pour chaque run live. Les hooks Claude/Codex/Gemini/Cursor configurés et le plugin OpenCode arrivent automatiquement dans le même Live Graph ; les serveurs Ollama, llama.cpp et vLLM lancés sous ExecWeave sont interrogés automatiquement via leur API loopback pour le catalogue de modèles. Ces événements spécialisés live sont provisoires ; après la fin de la commande, le graphe final est reconstruit depuis le merge canonical runtime + semantic. Aucune preuve absente n’est inventée.
104
126
 
105
- Lancez le benchmark reproductible de scalabilité du graphe avec `execweave-scalability` ; la CI couvre 10k, 100k et 1M événements synthétiques.
127
+ Lancez `execweave-scalability` pour reproduire le benchmark de scalabilité ; la CI couvre 10k, 100k et 1M événements synthétiques.
106
128
 
107
129
  #### Benchmark de scalabilité
108
130
 
@@ -353,7 +375,7 @@ Les findings de sécurité restent explicites sur les limites de la preuve. Un p
353
375
 
354
376
  ## État actuel
355
377
 
356
- ExecWeave `main` est actuellement en **v0.6.3** et reste en développement actif.
378
+ ExecWeave `main` est actuellement en **v0.6.4** et reste en développement actif.
357
379
 
358
380
  Le baseline comprend la collecte runtime, la matérialisation/interrogation du graphe, les Viewers standalone/live, les intégrations semantic Claude/Codex/Gemini/Cursor/OpenCode, la corrélation conservatrice Tool → Process, les métadonnées gateway OpenRouter/LiteLLM, les métadonnées runtime Ollama/llama.cpp/vLLM/LM Studio, l’identité exacte Gateway ↔ Model Runtime request, les packages wheel/sdist publiés sur PyPI, un benchmark de surcharge reproductible, la compatibilité cross-platform du launcher, les garde-fous de navigateur pour grands graphes, le tail/cache Live JSONL incrémental et la CI cross-platform sous Python 3.10/3.12.
359
381
 
@@ -385,4 +407,4 @@ Les contributions sont les bienvenues, notamment autour des native OS collectors
385
407
 
386
408
  ## Licence
387
409
 
388
- Voir [`LICENSE`](LICENSE).
410
+ Voir [`LICENSE`](LICENSE).
@@ -20,9 +20,31 @@ ExecWeave は、AI エージェントの活動をインタラクティブな exe
20
20
  > **Event is ground truth. The graph is a materialized view.**
21
21
 
22
22
  <p align="center">
23
- <img src="docs/assets/execweave-viewer.png" alt="ExecWeave Live execution graph" width="100%">
23
+ <img src="docs/assets/execweave-launch-demo-v5-x.gif" alt="ExecWeave Live execution graph" width="100%">
24
24
  </p>
25
25
 
26
+ <!-- execweave-demo:start -->
27
+ ## この Demo を再現する
28
+
29
+ 上のスクリーンショットは、実際の ExecWeave v0.6.3 live session です。この workload は execution graph の挙動が分かりやすくなるよう、複数の Python modules、JSON/CSV files、tests、file inspection、外向き HTTP requests を意図的に発生させます。
30
+
31
+ ローカルの Agent CLI を ExecWeave の下で実行します。例:
32
+
33
+ ```bash
34
+ execweave live --open -- claude
35
+ ```
36
+
37
+ その後、次の workload prompt を Agent に貼り付けます:
38
+
39
+ ```text
40
+ Create a small Python project in ./execweave-demo with 8 modules,
41
+ generate sample JSON and CSV data, run the program and tests,
42
+ inspect the generated files, and fetch example.com plus the GitHub API.
43
+ ```
44
+
45
+ 同じ workload は `codex`、`gemini`、`cursor`、`opencode` でも利用できます。node、edge、event、process、endpoint の数は OS、Agent version、environment によって変わります。ExecWeave が記録するのは実際に観測された runtime evidence であり、上図は固定の期待 graph ではなく一つの実行例です。
46
+ <!-- execweave-demo:end -->
47
+
26
48
  ## Installation
27
49
 
28
50
  ExecWeave は PyPI で正式公開されています。最新の公開 release は次でインストールできます。
@@ -62,39 +84,39 @@ execweave live --open -- python my_agent.py
62
84
  execweave live --open -- ollama serve
63
85
  ```
64
86
 
65
- `execweave live` は、起動した command tree の process / file / network evidence をリアルタイム表示します。Agent semantic hooks、model-runtime API metadata、inference-gateway routing metadata **現在 Live Viewer に自動注入されません**。
87
+ `execweave live` は起動した command tree の process/file/network evidence をリアルタイム表示します。v0.6.4 では設定済み Claude/Codex/Gemini/Cursor hooks OpenCode plugin run 固有の live sidecar へ自動送信され、ExecWeave 配下で起動した Ollama、llama.cpp、vLLM server にはローカル model-catalog probe が自動実行されます。
66
88
 
67
89
  #### Live capability matrix
68
90
 
69
91
  | Integration | Direct OS-runtime live | Specialized metadata | Auto in Live Viewer |
70
92
  | --- | --- | --- | --- |
71
- | Claude Code | Yes | `execweave-claude-record` / hooks | No |
72
- | OpenAI Codex | Yes | `execweave-codex-record` / hooks | No |
73
- | Gemini CLI | Yes | `execweave-gemini-record` / hooks | No |
74
- | Cursor | Yes | `execweave-cursor-record` / hooks | No |
75
- | OpenCode | Yes | `execweave-opencode-record` / plugin | No |
76
- | Ollama | Yes, ExecWeave から起動する場合(例: `ollama serve`) | `execweave-model-runtime event/probe --runtime ollama` | No |
77
- | llama.cpp | Yes, ローカル server を ExecWeave から起動する場合 | `execweave-model-runtime event/probe --runtime llamacpp` | No |
78
- | vLLM | Yes, ローカル server を ExecWeave から起動する場合 | `execweave-model-runtime event/probe --runtime vllm` | No |
79
- | LM Studio | ExecWeave から起動したローカル process のみ。既存 server には attach しません | `execweave-model-runtime event/probe --runtime lmstudio` | No |
80
- | LiteLLM Proxy | Yes, ローカル proxy を ExecWeave から起動する場合 | `execweave-inference-gateway event --gateway litellm` | No |
93
+ | Claude Code | Yes | `execweave-claude-record` / hooks | Yes(設定済み hook/plugin) |
94
+ | OpenAI Codex | Yes | `execweave-codex-record` / hooks | Yes(設定済み hook/plugin) |
95
+ | Gemini CLI | Yes | `execweave-gemini-record` / hooks | Yes(設定済み hook/plugin) |
96
+ | Cursor | Yes | `execweave-cursor-record` / hooks | Yes(設定済み hook/plugin) |
97
+ | OpenCode | Yes | `execweave-opencode-record` / plugin | Yes(設定済み hook/plugin) |
98
+ | Ollama | Yes, ExecWeave から起動する場合(例: `ollama serve`) | `execweave-model-runtime event/probe --runtime ollama` | Yes(自動ローカル probe) |
99
+ | llama.cpp | Yes, ローカル server を ExecWeave から起動する場合 | `execweave-model-runtime event/probe --runtime llamacpp` | Yes(自動ローカル probe) |
100
+ | vLLM | Yes, ローカル server を ExecWeave から起動する場合 | `execweave-model-runtime event/probe --runtime vllm` | Yes(自動ローカル probe) |
101
+ | LM Studio | ExecWeave から起動したローカル process のみ。既存 server には attach しません | `execweave-model-runtime event/probe --runtime lmstudio` | Yes(明示した `--port` で起動成功後に自動 probe) |
102
+ | LiteLLM Proxy | Yes, ローカル proxy を ExecWeave から起動する場合 | `execweave-inference-gateway event --gateway litellm` / configured callback | Yes(設定済み callback) |
81
103
  | OpenRouter | Remote service 自体は direct live 不可。ローカル client/Agent を live してください | `execweave-inference-gateway event/generation --gateway openrouter` | No |
82
104
 
83
105
  Ollama がすでにバックグラウンドで動作中なら、`execweave-model-runtime probe --runtime ollama` で loaded-model state を snapshot できます。OpenRouter では `live` がローカル client と network activity を観測し、gateway routing/usage metadata は別の evidence layer のままです。
84
106
 
85
- <!-- v0.6.3-live -->
86
- ### v0.6.3 ライブ可観測性
107
+ <!-- v0.6.4-live -->
108
+ ### v0.6.4 ライブ可観測性
87
109
 
88
- 同じ live session をブラウザまたは Terminal で確認できます:
110
+ `top` Agent を元の Terminal で対話可能なままにし、dashboard を別の Terminal ウィンドウで開きます:
89
111
 
90
112
  ```bash
91
- execweave top -- codex # Terminal dashboard
92
- execweave top --open -- codex # Terminal + Web Viewer
113
+ execweave top -- codex
114
+ execweave top --open -- codex
93
115
  ```
94
116
 
95
- Live 更新は増分 snapshot/delta と有界履歴を使用し、graph 全体の再構築・再送を繰り返しません。Livestandalone Viewer は、設定を保持する Dark/Light 切り替えに対応します。Linux では非常に大きな recursive filesystem scope を事前に確認し、inotify watch 容量が不足する場合は自動的に polling へフォールバックするため、inotify watch exhaustion で session 全体が停止しません。
117
+ Live 更新は増分 snapshot/delta と有界履歴を使用し、Live/standalone Viewer は永続的な Dark/Light theme をサポートします。Linux の大規模 recursive filesystem scope は事前確認され、必要なら inotify から polling へ自動フォールバックします。
96
118
 
97
- `live` は汎用 OS-runtime view であり integration whitelist ではありません。Agent semantic、model-runtime、gateway metadata は分離された evidence layer のままで、v0.6.3 では Live Viewer に自動注入されません。
119
+ v0.6.4 では各 live run に共有 specialized-evidence sidecar があります。設定済み Claude/Codex/Gemini/Cursor hooks OpenCode plugin は同じ Live Graph に自動反映され、ExecWeave 配下で起動した Ollamallama.cpp、vLLM server は loopback API から model catalog を自動 probe します。live specialized events は provisional であり、command 終了後は canonical runtime + semantic merge から final graph を再構築します。存在しない evidence は推測しません。
98
120
 
99
121
  `execweave-scalability` で graph scalability benchmark を再現でき、CI は 10k、100k、1M synthetic events を検証します。
100
122
 
@@ -217,7 +239,7 @@ Security findings は evidence limit を維持し、possible sensitive-file →
217
239
 
218
240
  ## Current status
219
241
 
220
- ExecWeave `main` は現在 **v0.6.3**。Runtime collection、execution graph、5 種の Agent/IDE integration、OpenRouter/LiteLLM、Ollama/llama.cpp/vLLM/LM Studio、exact Gateway ↔ Runtime identity、公開済み PyPI packaging、reference overhead benchmark、cross-platform command-launcher compatibility、large-graph browser safety guards、incremental Live JSONL tail/cache、cross-platform CI が baseline に含まれます。
242
+ ExecWeave `main` は現在 **v0.6.4**。Runtime collection、execution graph、5 種の Agent/IDE integration、OpenRouter/LiteLLM、Ollama/llama.cpp/vLLM/LM Studio、exact Gateway ↔ Runtime identity、公開済み PyPI packaging、reference overhead benchmark、cross-platform command-launcher compatibility、large-graph browser safety guards、incremental Live JSONL tail/cache、cross-platform CI が baseline に含まれます。
221
243
 
222
244
  ## Privacy
223
245
 
@@ -235,4 +257,4 @@ ExecWeave は local-first です。Runtime events、semantic sidecars、graphs
235
257
 
236
258
  ## License
237
259
 
238
- [`LICENSE`](LICENSE) を参照してください。
260
+ [`LICENSE`](LICENSE) を参照してください。
@@ -20,9 +20,31 @@ ExecWeave는 AI 에이전트 활동을 인터랙티브 execution graph로 변환
20
20
  > **Event is ground truth. The graph is a materialized view.**
21
21
 
22
22
  <p align="center">
23
- <img src="docs/assets/execweave-viewer.png" alt="ExecWeave Live execution graph" width="100%">
23
+ <img src="docs/assets/execweave-launch-demo-v5-x.gif" alt="ExecWeave Live execution graph" width="100%">
24
24
  </p>
25
25
 
26
+ <!-- execweave-demo:start -->
27
+ ## 이 Demo 재현하기
28
+
29
+ 위 스크린샷은 실제 ExecWeave v0.6.3 live session입니다. 이 workload는 execution graph가 유용하게 보이도록 여러 Python modules, JSON/CSV files, tests, file inspection, 외부 HTTP requests를 의도적으로 발생시킵니다.
30
+
31
+ 로컬 Agent CLI를 ExecWeave 아래에서 실행합니다. 예:
32
+
33
+ ```bash
34
+ execweave live --open -- claude
35
+ ```
36
+
37
+ 그 다음 아래 workload prompt를 Agent에 붙여 넣습니다:
38
+
39
+ ```text
40
+ Create a small Python project in ./execweave-demo with 8 modules,
41
+ generate sample JSON and CSV data, run the program and tests,
42
+ inspect the generated files, and fetch example.com plus the GitHub API.
43
+ ```
44
+
45
+ 같은 workload는 `codex`, `gemini`, `cursor`, `opencode`에서도 사용할 수 있습니다. 실제 node, edge, event, process, endpoint 수는 OS, Agent version, environment에 따라 달라집니다. ExecWeave는 실제로 관측된 runtime evidence를 기록하며, 위 그림은 고정된 예상 graph가 아니라 하나의 실제 실행 예입니다.
46
+ <!-- execweave-demo:end -->
47
+
26
48
  ## Installation
27
49
 
28
50
  ExecWeave는 PyPI에 정식 공개되어 있습니다. 최신 공개 release 설치:
@@ -62,39 +84,39 @@ execweave live --open -- python my_agent.py
62
84
  execweave live --open -- ollama serve
63
85
  ```
64
86
 
65
- `execweave live`는 자신이 시작한 command tree의 process, file, network evidence를 실시간으로 보여 줍니다. Agent semantic hooks, model-runtime API metadata, inference-gateway routing metadata는 **현재 Live Viewer에 자동으로 주입되지 않습니다**.
87
+ `execweave live`는 실행한 command tree의 process/file/network evidence를 실시간으로 표시합니다. v0.6.4부터 설정된 Claude/Codex/Gemini/Cursor hooks OpenCode plugin은 run 전용 live sidecar로 자동 전송되며, ExecWeave 아래에서 실행한 Ollama, llama.cpp, vLLM server에는 로컬 model-catalog probe가 자동 적용됩니다.
66
88
 
67
89
  #### Live capability matrix
68
90
 
69
91
  | Integration | Direct OS-runtime live | Specialized metadata | Auto in Live Viewer |
70
92
  | --- | --- | --- | --- |
71
- | Claude Code | Yes | `execweave-claude-record` / hooks | No |
72
- | OpenAI Codex | Yes | `execweave-codex-record` / hooks | No |
73
- | Gemini CLI | Yes | `execweave-gemini-record` / hooks | No |
74
- | Cursor | Yes | `execweave-cursor-record` / hooks | No |
75
- | OpenCode | Yes | `execweave-opencode-record` / plugin | No |
76
- | Ollama | Yes, ExecWeave가 시작한 경우(예: `ollama serve`) | `execweave-model-runtime event/probe --runtime ollama` | No |
77
- | llama.cpp | Yes, 로컬 server를 ExecWeave가 시작한 경우 | `execweave-model-runtime event/probe --runtime llamacpp` | No |
78
- | vLLM | Yes, 로컬 server를 ExecWeave가 시작한 경우 | `execweave-model-runtime event/probe --runtime vllm` | No |
79
- | LM Studio | ExecWeave가 시작한 로컬 process만 가능하며 기존 server에는 attach하지 않음 | `execweave-model-runtime event/probe --runtime lmstudio` | No |
80
- | LiteLLM Proxy | Yes, 로컬 proxy를 ExecWeave가 시작한 경우 | `execweave-inference-gateway event --gateway litellm` | No |
93
+ | Claude Code | Yes | `execweave-claude-record` / hooks | Yes (설정된 hook/plugin) |
94
+ | OpenAI Codex | Yes | `execweave-codex-record` / hooks | Yes (설정된 hook/plugin) |
95
+ | Gemini CLI | Yes | `execweave-gemini-record` / hooks | Yes (설정된 hook/plugin) |
96
+ | Cursor | Yes | `execweave-cursor-record` / hooks | Yes (설정된 hook/plugin) |
97
+ | OpenCode | Yes | `execweave-opencode-record` / plugin | Yes (설정된 hook/plugin) |
98
+ | Ollama | Yes, ExecWeave가 시작한 경우(예: `ollama serve`) | `execweave-model-runtime event/probe --runtime ollama` | Yes (자동 로컬 probe) |
99
+ | llama.cpp | Yes, 로컬 server를 ExecWeave가 시작한 경우 | `execweave-model-runtime event/probe --runtime llamacpp` | Yes (자동 로컬 probe) |
100
+ | vLLM | Yes, 로컬 server를 ExecWeave가 시작한 경우 | `execweave-model-runtime event/probe --runtime vllm` | Yes (자동 로컬 probe) |
101
+ | LM Studio | ExecWeave가 시작한 로컬 process만 가능하며 기존 server에는 attach하지 않음 | `execweave-model-runtime event/probe --runtime lmstudio` | Yes (명시적 `--port`로 시작 성공 후 자동 probe) |
102
+ | LiteLLM Proxy | Yes, 로컬 proxy를 ExecWeave가 시작한 경우 | `execweave-inference-gateway event --gateway litellm` / configured callback | Yes (설정된 callback) |
81
103
  | OpenRouter | Remote service 자체는 direct live 불가. 로컬 client/Agent를 live해야 함 | `execweave-inference-gateway event/generation --gateway openrouter` | No |
82
104
 
83
105
  Ollama가 이미 백그라운드에서 실행 중이면 `execweave-model-runtime probe --runtime ollama`로 loaded-model state를 snapshot할 수 있습니다. OpenRouter에서는 `live`가 로컬 client와 network activity를 관측하고 gateway routing/usage metadata는 별도 evidence layer로 유지됩니다.
84
106
 
85
- <!-- v0.6.3-live -->
86
- ### v0.6.3 라이브 관측성
107
+ <!-- v0.6.4-live -->
108
+ ### v0.6.4 라이브 관측성
87
109
 
88
- 동일한 live session을 브라우저 또는 Terminal에서 확인할 수 있습니다:
110
+ `top`은 Agent를 기존 Terminal에서 계속 대화형으로 유지하고 dashboard를 별도 Terminal 창에서 엽니다:
89
111
 
90
112
  ```bash
91
- execweave top -- codex # Terminal dashboard
92
- execweave top --open -- codex # Terminal + Web Viewer
113
+ execweave top -- codex
114
+ execweave top --open -- codex
93
115
  ```
94
116
 
95
- Live 업데이트는 증분 snapshot/delta와 제한된 이력을 사용하므로 전체 graph를 반복해서 재구성하고 전송하지 않습니다. Livestandalone Viewer는 선택을 기억하는 Dark/Light 전환을 지원합니다. Linux에서는 매우 큰 recursive filesystem scope 사전 점검하고 inotify watch 용량이 부족하면 자동으로 polling으로 전환하므로 inotify watch exhaustion 때문에 session 전체가 중단되지 않습니다.
117
+ Live 업데이트는 증분 snapshot/delta와 제한된 이력을 사용하며 Live/standalone Viewer는 지속되는 Dark/Light theme를 지원합니다. Linux 매우 큰 recursive filesystem scope 사전 점검 필요하면 inotify에서 polling으로 자동 전환됩니다.
96
118
 
97
- `live`는 일반 OS-runtime view이며 integration whitelist가 아닙니다. Agent semantic, model-runtime, gateway metadata분리된 evidence layer유지되며 v0.6.3에서는 Live Viewer에 자동으로 주입되지 않습니다.
119
+ v0.6.4에서는 각 live run에 공유 specialized-evidence sidecar가 생성됩니다. 설정된 Claude/Codex/Gemini/Cursor hooks와 OpenCode plugin은 같은 Live Graph로 자동 유입되고, ExecWeave 아래에서 실행한 Ollama, llama.cpp, vLLM serverloopback APImodel catalog를 자동 probe합니다. live specialized events는 provisional이며 command 종료 후 canonical runtime + semantic merge에서 final graph를 다시 만듭니다. 관찰되지 않은 evidence는 추측하지 않습니다.
98
120
 
99
121
  `execweave-scalability`로 graph scalability benchmark를 재현할 수 있으며 CI는 10k, 100k, 1M synthetic events를 검증합니다.
100
122
 
@@ -217,7 +239,7 @@ Security findings는 evidence limit를 유지하며 possible sensitive-file →
217
239
 
218
240
  ## Current status
219
241
 
220
- ExecWeave `main`은 현재 **v0.6.3**입니다. Runtime collection, execution graph, 5개 Agent/IDE integration, OpenRouter/LiteLLM, Ollama/llama.cpp/vLLM/LM Studio, exact Gateway ↔ Runtime identity, 공개된 PyPI packaging, reference overhead benchmark, cross-platform command-launcher compatibility, large-graph browser safety guards, incremental Live JSONL tail/cache, cross-platform CI가 baseline에 포함됩니다.
242
+ ExecWeave `main`은 현재 **v0.6.4**입니다. Runtime collection, execution graph, 5개 Agent/IDE integration, OpenRouter/LiteLLM, Ollama/llama.cpp/vLLM/LM Studio, exact Gateway ↔ Runtime identity, 공개된 PyPI packaging, reference overhead benchmark, cross-platform command-launcher compatibility, large-graph browser safety guards, incremental Live JSONL tail/cache, cross-platform CI가 baseline에 포함됩니다.
221
243
 
222
244
  ## Privacy
223
245
 
@@ -235,4 +257,4 @@ ExecWeave는 local-first입니다. Runtime events, semantic sidecars, graphs, re
235
257
 
236
258
  ## License
237
259
 
238
- [`LICENSE`](LICENSE)를 참조하세요.
260
+ [`LICENSE`](LICENSE)를 참조하세요.