execweave 0.6.9__tar.gz → 0.7.1__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 (427) hide show
  1. execweave-0.7.1/.github/workflows/cleanup-workflow-history.yml +98 -0
  2. {execweave-0.6.9 → execweave-0.7.1}/PKG-INFO +13 -13
  3. {execweave-0.6.9 → execweave-0.7.1}/README.de.md +4 -10
  4. {execweave-0.6.9 → execweave-0.7.1}/README.fr.md +4 -10
  5. {execweave-0.6.9 → execweave-0.7.1}/README.ja.md +4 -10
  6. {execweave-0.6.9 → execweave-0.7.1}/README.ko.md +4 -10
  7. {execweave-0.6.9 → execweave-0.7.1}/README.md +12 -12
  8. {execweave-0.6.9 → execweave-0.7.1}/README.ru.md +4 -10
  9. {execweave-0.6.9 → execweave-0.7.1}/README.zh-CN.md +4 -10
  10. {execweave-0.6.9 → execweave-0.7.1}/README.zh-TW.md +4 -10
  11. execweave-0.7.1/docs/antigravity-hooks.md +78 -0
  12. {execweave-0.6.9 → execweave-0.7.1}/pyproject.toml +2 -2
  13. {execweave-0.6.9 → execweave-0.7.1}/scripts/audit_i18n_parity.py +1 -2
  14. {execweave-0.6.9 → execweave-0.7.1}/scripts/check_claude_hook.py +10 -15
  15. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/__init__.py +1 -1
  16. execweave-0.7.1/src/execweave/agent_trace.py +1057 -0
  17. execweave-0.7.1/src/execweave/antigravity_adapter.py +76 -0
  18. execweave-0.6.9/src/execweave/antigravity_adapter.py → execweave-0.7.1/src/execweave/antigravity_adapter_base.py +67 -1
  19. execweave-0.7.1/src/execweave/antigravity_full_fidelity.py +167 -0
  20. execweave-0.6.9/src/execweave/antigravity_full_fidelity.py → execweave-0.7.1/src/execweave/antigravity_full_fidelity_base.py +57 -1
  21. execweave-0.7.1/src/execweave/antigravity_full_fidelity_collaboration_base.py +365 -0
  22. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/antigravity_hook_cli.py +51 -6
  23. execweave-0.7.1/src/execweave/antigravity_subagent_linkage.py +302 -0
  24. execweave-0.7.1/src/execweave/antigravity_trace_capability.py +39 -0
  25. execweave-0.7.1/src/execweave/claude_delegation.py +131 -0
  26. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/claude_hook_cli.py +84 -24
  27. execweave-0.7.1/src/execweave/claude_hook_contract.py +938 -0
  28. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/codex_adapter.py +51 -1
  29. execweave-0.7.1/src/execweave/codex_conversation.py +289 -0
  30. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/codex_hook_cli.py +54 -21
  31. execweave-0.7.1/src/execweave/codex_hook_lifecycle.py +329 -0
  32. execweave-0.7.1/src/execweave/codex_message_diagnostics.py +322 -0
  33. execweave-0.7.1/src/execweave/codex_message_transport_diagnostics.py +399 -0
  34. execweave-0.7.1/src/execweave/codex_record.py +199 -0
  35. execweave-0.7.1/src/execweave/codex_rollout_structures.py +402 -0
  36. execweave-0.7.1/src/execweave/codex_rollout_trace.py +56 -0
  37. execweave-0.7.1/src/execweave/codex_rollout_trace_base.py +1509 -0
  38. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/content_store.py +93 -0
  39. execweave-0.7.1/src/execweave/conversation_archive.py +320 -0
  40. execweave-0.7.1/src/execweave/conversation_preview.py +686 -0
  41. execweave-0.7.1/src/execweave/conversation_records.py +479 -0
  42. execweave-0.7.1/src/execweave/cursor_delegation.py +87 -0
  43. execweave-0.7.1/src/execweave/cursor_delegation_base.py +215 -0
  44. execweave-0.7.1/src/execweave/cursor_full_fidelity.py +483 -0
  45. execweave-0.7.1/src/execweave/cursor_hook_cli.py +190 -0
  46. execweave-0.7.1/src/execweave/cursor_hook_contract.py +439 -0
  47. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/gemini_full_fidelity.py +6 -2
  48. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/gemini_hook_cli.py +37 -16
  49. execweave-0.7.1/src/execweave/gemini_hook_contract.py +441 -0
  50. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live.py +83 -2
  51. execweave-0.7.1/src/execweave/opencode_event_contract.py +732 -0
  52. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/opencode_hook_cli.py +47 -5
  53. execweave-0.7.1/src/execweave/opencode_task_linkage.py +125 -0
  54. execweave-0.7.1/src/execweave/provider_lifecycle.py +282 -0
  55. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/provider_record.py +70 -7
  56. execweave-0.7.1/src/execweave/viewer_antigravity_linkage_inspector.py +49 -0
  57. execweave-0.7.1/src/execweave/viewer_content_inspector.py +309 -0
  58. execweave-0.7.1/src/execweave/viewer_conversation_panel.py +101 -0
  59. execweave-0.7.1/src/execweave/viewer_conversation_tree.py +92 -0
  60. execweave-0.7.1/src/execweave/viewer_dashboard_clean.py +195 -0
  61. execweave-0.7.1/src/execweave/viewer_dashboard_focus.py +71 -0
  62. execweave-0.7.1/src/execweave/viewer_execution_inspector.py +43 -0
  63. execweave-0.7.1/src/execweave/viewer_live_layout.py +61 -0
  64. execweave-0.7.1/src/execweave/viewer_projection.py +69 -0
  65. execweave-0.7.1/tests/test_agent_message_viewer.py +138 -0
  66. execweave-0.7.1/tests/test_agent_trace_lifecycle.py +82 -0
  67. execweave-0.7.1/tests/test_agent_trace_viewer_visibility.py +117 -0
  68. execweave-0.7.1/tests/test_antigravity_agent_collaboration.py +161 -0
  69. execweave-0.7.1/tests/test_antigravity_lifecycle.py +54 -0
  70. execweave-0.7.1/tests/test_antigravity_linkage_projection.py +100 -0
  71. execweave-0.7.1/tests/test_antigravity_official_contract.py +157 -0
  72. execweave-0.7.1/tests/test_antigravity_subagent_transcript_linkage.py +329 -0
  73. execweave-0.7.1/tests/test_antigravity_trace_capability_cli.py +48 -0
  74. {execweave-0.6.9 → execweave-0.7.1}/tests/test_claude_adapter.py +15 -15
  75. execweave-0.7.1/tests/test_claude_delegation.py +121 -0
  76. execweave-0.7.1/tests/test_claude_hook_contract.py +313 -0
  77. execweave-0.7.1/tests/test_claude_hook_metadata.py +60 -0
  78. execweave-0.7.1/tests/test_claude_hook_viewer.py +100 -0
  79. {execweave-0.6.9 → execweave-0.7.1}/tests/test_codex_adapter.py +4 -2
  80. execweave-0.7.1/tests/test_codex_archive_full_fidelity.py +196 -0
  81. execweave-0.7.1/tests/test_codex_hook_lifecycle.py +161 -0
  82. execweave-0.7.1/tests/test_codex_message_diagnostics.py +186 -0
  83. execweave-0.7.1/tests/test_codex_message_transport_diagnostics.py +184 -0
  84. execweave-0.7.1/tests/test_codex_reducer_command.py +83 -0
  85. execweave-0.7.1/tests/test_codex_rollout_structures.py +234 -0
  86. execweave-0.7.1/tests/test_codex_rollout_trace.py +393 -0
  87. execweave-0.7.1/tests/test_conversation_access.py +267 -0
  88. execweave-0.7.1/tests/test_conversation_provider_parity.py +487 -0
  89. execweave-0.7.1/tests/test_cross_provider_agent_trace.py +264 -0
  90. {execweave-0.6.9 → execweave-0.7.1}/tests/test_cursor_adapter.py +19 -7
  91. execweave-0.7.1/tests/test_cursor_delegation.py +91 -0
  92. execweave-0.7.1/tests/test_cursor_full_fidelity.py +268 -0
  93. execweave-0.7.1/tests/test_cursor_hook_contract.py +127 -0
  94. execweave-0.7.1/tests/test_cursor_hook_fail_open.py +60 -0
  95. execweave-0.7.1/tests/test_cursor_task_linkage.py +96 -0
  96. execweave-0.7.1/tests/test_dashboard_information_architecture.py +240 -0
  97. execweave-0.7.1/tests/test_dashboard_simplification.py +205 -0
  98. execweave-0.7.1/tests/test_delegation_viewer.py +209 -0
  99. execweave-0.7.1/tests/test_execution_viewer.py +115 -0
  100. {execweave-0.6.9 → execweave-0.7.1}/tests/test_gemini_full_fidelity.py +8 -5
  101. execweave-0.7.1/tests/test_gemini_hook_contract.py +226 -0
  102. execweave-0.7.1/tests/test_gemini_lifecycle.py +75 -0
  103. execweave-0.7.1/tests/test_opencode_event_contract.py +246 -0
  104. execweave-0.7.1/tests/test_opencode_event_lifecycle.py +57 -0
  105. execweave-0.7.1/tests/test_opencode_task_session_linkage.py +125 -0
  106. {execweave-0.6.9 → execweave-0.7.1}/tests/test_v069_dashboard_release.py +7 -5
  107. {execweave-0.6.9 → execweave-0.7.1}/tests/test_viewer_content_inspector.py +75 -0
  108. execweave-0.6.9/docs/antigravity-hooks.md +0 -55
  109. execweave-0.6.9/src/execweave/codex_record.py +0 -111
  110. execweave-0.6.9/src/execweave/cursor_full_fidelity.py +0 -203
  111. execweave-0.6.9/src/execweave/cursor_hook_cli.py +0 -101
  112. execweave-0.6.9/src/execweave/provider_lifecycle.py +0 -167
  113. execweave-0.6.9/src/execweave/viewer_content_inspector.py +0 -196
  114. execweave-0.6.9/tests/test_cursor_full_fidelity.py +0 -136
  115. {execweave-0.6.9 → execweave-0.7.1}/.github/workflows/ci.yml +0 -0
  116. {execweave-0.6.9 → execweave-0.7.1}/.github/workflows/i18n.yml +0 -0
  117. {execweave-0.6.9 → execweave-0.7.1}/.github/workflows/package-benchmark.yml +0 -0
  118. {execweave-0.6.9 → execweave-0.7.1}/.github/workflows/package-smoke.yml +0 -0
  119. {execweave-0.6.9 → execweave-0.7.1}/.github/workflows/publish.yml +0 -0
  120. {execweave-0.6.9 → execweave-0.7.1}/.github/workflows/scalability.yml +0 -0
  121. {execweave-0.6.9 → execweave-0.7.1}/.github/workflows/wheel-smoke.yml +0 -0
  122. {execweave-0.6.9 → execweave-0.7.1}/.github/workflows/windows-launcher.yml +0 -0
  123. {execweave-0.6.9 → execweave-0.7.1}/.gitignore +0 -0
  124. {execweave-0.6.9 → execweave-0.7.1}/LICENSE +0 -0
  125. {execweave-0.6.9 → execweave-0.7.1}/benchmarks/phase1_overhead.py +0 -0
  126. {execweave-0.6.9 → execweave-0.7.1}/docs/assets/codex.gif +0 -0
  127. {execweave-0.6.9 → execweave-0.7.1}/docs/benchmarks/README.md +0 -0
  128. {execweave-0.6.9 → execweave-0.7.1}/docs/benchmarks/v0.6.0-github-actions.json +0 -0
  129. {execweave-0.6.9 → execweave-0.7.1}/docs/benchmarks/v0.6.0-github-actions.svg +0 -0
  130. {execweave-0.6.9 → execweave-0.7.1}/docs/claude-code-hooks.de.md +0 -0
  131. {execweave-0.6.9 → execweave-0.7.1}/docs/claude-code-hooks.fr.md +0 -0
  132. {execweave-0.6.9 → execweave-0.7.1}/docs/claude-code-hooks.ja.md +0 -0
  133. {execweave-0.6.9 → execweave-0.7.1}/docs/claude-code-hooks.ko.md +0 -0
  134. {execweave-0.6.9 → execweave-0.7.1}/docs/claude-code-hooks.md +0 -0
  135. {execweave-0.6.9 → execweave-0.7.1}/docs/claude-code-hooks.ru.md +0 -0
  136. {execweave-0.6.9 → execweave-0.7.1}/docs/claude-code-hooks.zh-CN.md +0 -0
  137. {execweave-0.6.9 → execweave-0.7.1}/docs/claude-code-hooks.zh-TW.md +0 -0
  138. {execweave-0.6.9 → execweave-0.7.1}/docs/codex-hooks.de.md +0 -0
  139. {execweave-0.6.9 → execweave-0.7.1}/docs/codex-hooks.fr.md +0 -0
  140. {execweave-0.6.9 → execweave-0.7.1}/docs/codex-hooks.ja.md +0 -0
  141. {execweave-0.6.9 → execweave-0.7.1}/docs/codex-hooks.ko.md +0 -0
  142. {execweave-0.6.9 → execweave-0.7.1}/docs/codex-hooks.md +0 -0
  143. {execweave-0.6.9 → execweave-0.7.1}/docs/codex-hooks.ru.md +0 -0
  144. {execweave-0.6.9 → execweave-0.7.1}/docs/codex-hooks.zh-CN.md +0 -0
  145. {execweave-0.6.9 → execweave-0.7.1}/docs/codex-hooks.zh-TW.md +0 -0
  146. {execweave-0.6.9 → execweave-0.7.1}/docs/cursor-hooks.de.md +0 -0
  147. {execweave-0.6.9 → execweave-0.7.1}/docs/cursor-hooks.fr.md +0 -0
  148. {execweave-0.6.9 → execweave-0.7.1}/docs/cursor-hooks.ja.md +0 -0
  149. {execweave-0.6.9 → execweave-0.7.1}/docs/cursor-hooks.ko.md +0 -0
  150. {execweave-0.6.9 → execweave-0.7.1}/docs/cursor-hooks.md +0 -0
  151. {execweave-0.6.9 → execweave-0.7.1}/docs/cursor-hooks.ru.md +0 -0
  152. {execweave-0.6.9 → execweave-0.7.1}/docs/cursor-hooks.zh-CN.md +0 -0
  153. {execweave-0.6.9 → execweave-0.7.1}/docs/cursor-hooks.zh-TW.md +0 -0
  154. {execweave-0.6.9 → execweave-0.7.1}/docs/evidence-grades.de.md +0 -0
  155. {execweave-0.6.9 → execweave-0.7.1}/docs/evidence-grades.fr.md +0 -0
  156. {execweave-0.6.9 → execweave-0.7.1}/docs/evidence-grades.ja.md +0 -0
  157. {execweave-0.6.9 → execweave-0.7.1}/docs/evidence-grades.ko.md +0 -0
  158. {execweave-0.6.9 → execweave-0.7.1}/docs/evidence-grades.md +0 -0
  159. {execweave-0.6.9 → execweave-0.7.1}/docs/evidence-grades.ru.md +0 -0
  160. {execweave-0.6.9 → execweave-0.7.1}/docs/evidence-grades.zh-CN.md +0 -0
  161. {execweave-0.6.9 → execweave-0.7.1}/docs/evidence-grades.zh-TW.md +0 -0
  162. {execweave-0.6.9 → execweave-0.7.1}/docs/gemini-hooks.de.md +0 -0
  163. {execweave-0.6.9 → execweave-0.7.1}/docs/gemini-hooks.fr.md +0 -0
  164. {execweave-0.6.9 → execweave-0.7.1}/docs/gemini-hooks.ja.md +0 -0
  165. {execweave-0.6.9 → execweave-0.7.1}/docs/gemini-hooks.ko.md +0 -0
  166. {execweave-0.6.9 → execweave-0.7.1}/docs/gemini-hooks.md +0 -0
  167. {execweave-0.6.9 → execweave-0.7.1}/docs/gemini-hooks.ru.md +0 -0
  168. {execweave-0.6.9 → execweave-0.7.1}/docs/gemini-hooks.zh-CN.md +0 -0
  169. {execweave-0.6.9 → execweave-0.7.1}/docs/gemini-hooks.zh-TW.md +0 -0
  170. {execweave-0.6.9 → execweave-0.7.1}/docs/inference-gateway.de.md +0 -0
  171. {execweave-0.6.9 → execweave-0.7.1}/docs/inference-gateway.fr.md +0 -0
  172. {execweave-0.6.9 → execweave-0.7.1}/docs/inference-gateway.ja.md +0 -0
  173. {execweave-0.6.9 → execweave-0.7.1}/docs/inference-gateway.ko.md +0 -0
  174. {execweave-0.6.9 → execweave-0.7.1}/docs/inference-gateway.md +0 -0
  175. {execweave-0.6.9 → execweave-0.7.1}/docs/inference-gateway.ru.md +0 -0
  176. {execweave-0.6.9 → execweave-0.7.1}/docs/inference-gateway.zh-CN.md +0 -0
  177. {execweave-0.6.9 → execweave-0.7.1}/docs/inference-gateway.zh-TW.md +0 -0
  178. {execweave-0.6.9 → execweave-0.7.1}/docs/live-graph.de.md +0 -0
  179. {execweave-0.6.9 → execweave-0.7.1}/docs/live-graph.fr.md +0 -0
  180. {execweave-0.6.9 → execweave-0.7.1}/docs/live-graph.ja.md +0 -0
  181. {execweave-0.6.9 → execweave-0.7.1}/docs/live-graph.ko.md +0 -0
  182. {execweave-0.6.9 → execweave-0.7.1}/docs/live-graph.md +0 -0
  183. {execweave-0.6.9 → execweave-0.7.1}/docs/live-graph.ru.md +0 -0
  184. {execweave-0.6.9 → execweave-0.7.1}/docs/live-graph.zh-CN.md +0 -0
  185. {execweave-0.6.9 → execweave-0.7.1}/docs/live-graph.zh-TW.md +0 -0
  186. {execweave-0.6.9 → execweave-0.7.1}/docs/model-runtime.de.md +0 -0
  187. {execweave-0.6.9 → execweave-0.7.1}/docs/model-runtime.fr.md +0 -0
  188. {execweave-0.6.9 → execweave-0.7.1}/docs/model-runtime.ja.md +0 -0
  189. {execweave-0.6.9 → execweave-0.7.1}/docs/model-runtime.ko.md +0 -0
  190. {execweave-0.6.9 → execweave-0.7.1}/docs/model-runtime.md +0 -0
  191. {execweave-0.6.9 → execweave-0.7.1}/docs/model-runtime.ru.md +0 -0
  192. {execweave-0.6.9 → execweave-0.7.1}/docs/model-runtime.zh-CN.md +0 -0
  193. {execweave-0.6.9 → execweave-0.7.1}/docs/model-runtime.zh-TW.md +0 -0
  194. {execweave-0.6.9 → execweave-0.7.1}/docs/opencode-plugin.de.md +0 -0
  195. {execweave-0.6.9 → execweave-0.7.1}/docs/opencode-plugin.fr.md +0 -0
  196. {execweave-0.6.9 → execweave-0.7.1}/docs/opencode-plugin.ja.md +0 -0
  197. {execweave-0.6.9 → execweave-0.7.1}/docs/opencode-plugin.ko.md +0 -0
  198. {execweave-0.6.9 → execweave-0.7.1}/docs/opencode-plugin.md +0 -0
  199. {execweave-0.6.9 → execweave-0.7.1}/docs/opencode-plugin.ru.md +0 -0
  200. {execweave-0.6.9 → execweave-0.7.1}/docs/opencode-plugin.zh-CN.md +0 -0
  201. {execweave-0.6.9 → execweave-0.7.1}/docs/opencode-plugin.zh-TW.md +0 -0
  202. {execweave-0.6.9 → execweave-0.7.1}/docs/phase-1-runtime-collection.de.md +0 -0
  203. {execweave-0.6.9 → execweave-0.7.1}/docs/phase-1-runtime-collection.fr.md +0 -0
  204. {execweave-0.6.9 → execweave-0.7.1}/docs/phase-1-runtime-collection.ja.md +0 -0
  205. {execweave-0.6.9 → execweave-0.7.1}/docs/phase-1-runtime-collection.ko.md +0 -0
  206. {execweave-0.6.9 → execweave-0.7.1}/docs/phase-1-runtime-collection.md +0 -0
  207. {execweave-0.6.9 → execweave-0.7.1}/docs/phase-1-runtime-collection.ru.md +0 -0
  208. {execweave-0.6.9 → execweave-0.7.1}/docs/phase-1-runtime-collection.zh-CN.md +0 -0
  209. {execweave-0.6.9 → execweave-0.7.1}/docs/phase-1-runtime-collection.zh-TW.md +0 -0
  210. {execweave-0.6.9 → execweave-0.7.1}/docs/phase-2-execution-graph.de.md +0 -0
  211. {execweave-0.6.9 → execweave-0.7.1}/docs/phase-2-execution-graph.fr.md +0 -0
  212. {execweave-0.6.9 → execweave-0.7.1}/docs/phase-2-execution-graph.ja.md +0 -0
  213. {execweave-0.6.9 → execweave-0.7.1}/docs/phase-2-execution-graph.ko.md +0 -0
  214. {execweave-0.6.9 → execweave-0.7.1}/docs/phase-2-execution-graph.md +0 -0
  215. {execweave-0.6.9 → execweave-0.7.1}/docs/phase-2-execution-graph.ru.md +0 -0
  216. {execweave-0.6.9 → execweave-0.7.1}/docs/phase-2-execution-graph.zh-CN.md +0 -0
  217. {execweave-0.6.9 → execweave-0.7.1}/docs/phase-2-execution-graph.zh-TW.md +0 -0
  218. {execweave-0.6.9 → execweave-0.7.1}/docs/rule-packs.de.md +0 -0
  219. {execweave-0.6.9 → execweave-0.7.1}/docs/rule-packs.fr.md +0 -0
  220. {execweave-0.6.9 → execweave-0.7.1}/docs/rule-packs.ja.md +0 -0
  221. {execweave-0.6.9 → execweave-0.7.1}/docs/rule-packs.ko.md +0 -0
  222. {execweave-0.6.9 → execweave-0.7.1}/docs/rule-packs.md +0 -0
  223. {execweave-0.6.9 → execweave-0.7.1}/docs/rule-packs.ru.md +0 -0
  224. {execweave-0.6.9 → execweave-0.7.1}/docs/rule-packs.zh-CN.md +0 -0
  225. {execweave-0.6.9 → execweave-0.7.1}/docs/rule-packs.zh-TW.md +0 -0
  226. {execweave-0.6.9 → execweave-0.7.1}/docs/run-integrity.de.md +0 -0
  227. {execweave-0.6.9 → execweave-0.7.1}/docs/run-integrity.fr.md +0 -0
  228. {execweave-0.6.9 → execweave-0.7.1}/docs/run-integrity.ja.md +0 -0
  229. {execweave-0.6.9 → execweave-0.7.1}/docs/run-integrity.ko.md +0 -0
  230. {execweave-0.6.9 → execweave-0.7.1}/docs/run-integrity.md +0 -0
  231. {execweave-0.6.9 → execweave-0.7.1}/docs/run-integrity.ru.md +0 -0
  232. {execweave-0.6.9 → execweave-0.7.1}/docs/run-integrity.zh-CN.md +0 -0
  233. {execweave-0.6.9 → execweave-0.7.1}/docs/run-integrity.zh-TW.md +0 -0
  234. {execweave-0.6.9 → execweave-0.7.1}/docs/runtime-threat-model.de.md +0 -0
  235. {execweave-0.6.9 → execweave-0.7.1}/docs/runtime-threat-model.fr.md +0 -0
  236. {execweave-0.6.9 → execweave-0.7.1}/docs/runtime-threat-model.ja.md +0 -0
  237. {execweave-0.6.9 → execweave-0.7.1}/docs/runtime-threat-model.ko.md +0 -0
  238. {execweave-0.6.9 → execweave-0.7.1}/docs/runtime-threat-model.md +0 -0
  239. {execweave-0.6.9 → execweave-0.7.1}/docs/runtime-threat-model.ru.md +0 -0
  240. {execweave-0.6.9 → execweave-0.7.1}/docs/runtime-threat-model.zh-CN.md +0 -0
  241. {execweave-0.6.9 → execweave-0.7.1}/docs/runtime-threat-model.zh-TW.md +0 -0
  242. {execweave-0.6.9 → execweave-0.7.1}/docs/security-analysis.de.md +0 -0
  243. {execweave-0.6.9 → execweave-0.7.1}/docs/security-analysis.fr.md +0 -0
  244. {execweave-0.6.9 → execweave-0.7.1}/docs/security-analysis.ja.md +0 -0
  245. {execweave-0.6.9 → execweave-0.7.1}/docs/security-analysis.ko.md +0 -0
  246. {execweave-0.6.9 → execweave-0.7.1}/docs/security-analysis.md +0 -0
  247. {execweave-0.6.9 → execweave-0.7.1}/docs/security-analysis.ru.md +0 -0
  248. {execweave-0.6.9 → execweave-0.7.1}/docs/security-analysis.zh-CN.md +0 -0
  249. {execweave-0.6.9 → execweave-0.7.1}/docs/security-analysis.zh-TW.md +0 -0
  250. {execweave-0.6.9 → execweave-0.7.1}/docs/semantic-telemetry.de.md +0 -0
  251. {execweave-0.6.9 → execweave-0.7.1}/docs/semantic-telemetry.fr.md +0 -0
  252. {execweave-0.6.9 → execweave-0.7.1}/docs/semantic-telemetry.ja.md +0 -0
  253. {execweave-0.6.9 → execweave-0.7.1}/docs/semantic-telemetry.ko.md +0 -0
  254. {execweave-0.6.9 → execweave-0.7.1}/docs/semantic-telemetry.md +0 -0
  255. {execweave-0.6.9 → execweave-0.7.1}/docs/semantic-telemetry.ru.md +0 -0
  256. {execweave-0.6.9 → execweave-0.7.1}/docs/semantic-telemetry.zh-CN.md +0 -0
  257. {execweave-0.6.9 → execweave-0.7.1}/docs/semantic-telemetry.zh-TW.md +0 -0
  258. {execweave-0.6.9 → execweave-0.7.1}/docs/v0.6.5-hardening-decisions.md +0 -0
  259. {execweave-0.6.9 → execweave-0.7.1}/scripts/check_claude_record_graph.py +0 -0
  260. {execweave-0.6.9 → execweave-0.7.1}/scripts/check_codex_hook.py +0 -0
  261. {execweave-0.6.9 → execweave-0.7.1}/scripts/check_correlation_graph.py +0 -0
  262. {execweave-0.6.9 → execweave-0.7.1}/scripts/check_inference_gateway_cli.py +0 -0
  263. {execweave-0.6.9 → execweave-0.7.1}/scripts/check_model_runtime_cli.py +0 -0
  264. {execweave-0.6.9 → execweave-0.7.1}/scripts/check_openai_compatible_cli.py +0 -0
  265. {execweave-0.6.9 → execweave-0.7.1}/scripts/check_semantic_graph.py +0 -0
  266. {execweave-0.6.9 → execweave-0.7.1}/scripts/check_viewer_js.py +0 -0
  267. {execweave-0.6.9 → execweave-0.7.1}/scripts/check_wheel_install.py +0 -0
  268. {execweave-0.6.9 → execweave-0.7.1}/scripts/check_windows_launchers.py +0 -0
  269. {execweave-0.6.9 → execweave-0.7.1}/scripts/emit_claude_hook_smoke.py +0 -0
  270. {execweave-0.6.9 → execweave-0.7.1}/scripts/emit_cursor_hook_smoke.py +0 -0
  271. {execweave-0.6.9 → execweave-0.7.1}/scripts/emit_gemini_hook_smoke.py +0 -0
  272. {execweave-0.6.9 → execweave-0.7.1}/scripts/emit_opencode_plugin_smoke.py +0 -0
  273. {execweave-0.6.9 → execweave-0.7.1}/scripts/make_semantic_smoke.py +0 -0
  274. {execweave-0.6.9 → execweave-0.7.1}/scripts/sync_i18n_nav.py +0 -0
  275. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/__main__.py +0 -0
  276. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/agent_bootstrap.py +0 -0
  277. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/analysis.py +0 -0
  278. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/anthropic.py +0 -0
  279. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/anthropic_cli.py +0 -0
  280. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/anthropic_full_fidelity.py +0 -0
  281. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/antigravity_record.py +0 -0
  282. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/auto_specialized.py +0 -0
  283. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/backends.py +0 -0
  284. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/benchmark.py +0 -0
  285. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/claude_adapter.py +0 -0
  286. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/claude_full_fidelity.py +0 -0
  287. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/claude_model_observer.py +0 -0
  288. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/claude_record.py +0 -0
  289. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/cli.py +0 -0
  290. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/codex_full_fidelity.py +0 -0
  291. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/collector.py +0 -0
  292. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/command.py +0 -0
  293. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/content_evidence.py +0 -0
  294. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/correlation.py +0 -0
  295. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/cursor_adapter.py +0 -0
  296. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/cursor_record.py +0 -0
  297. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/entry.py +0 -0
  298. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/evidence_grade.py +0 -0
  299. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/fidelity.py +0 -0
  300. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/filesystem.py +0 -0
  301. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/focus.py +0 -0
  302. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/gemini_adapter.py +0 -0
  303. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/gemini_record.py +0 -0
  304. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/graph.py +0 -0
  305. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/graph_ops.py +0 -0
  306. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/http_proxy.py +0 -0
  307. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/http_proxy_cli.py +0 -0
  308. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/inference_gateway.py +0 -0
  309. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/inference_gateway_cli.py +0 -0
  310. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/inference_gateway_full_fidelity.py +0 -0
  311. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/inference_identity.py +0 -0
  312. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/inference_identity_cli.py +0 -0
  313. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/integrity.py +0 -0
  314. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/integrity_cli.py +0 -0
  315. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/litellm_callback.py +0 -0
  316. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/litellm_callback_cli.py +0 -0
  317. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_core.py +0 -0
  318. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_view.py +0 -0
  319. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_view_extra_style.py +0 -0
  320. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_view_markup.py +0 -0
  321. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_view_script_a.py +0 -0
  322. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_view_script_b.py +0 -0
  323. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_view_script_c.py +0 -0
  324. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_view_script_d.py +0 -0
  325. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_view_style.py +0 -0
  326. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/model_runtime.py +0 -0
  327. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/model_runtime_cli.py +0 -0
  328. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/model_runtime_full_fidelity.py +0 -0
  329. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/openai_compatible.py +0 -0
  330. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/openai_compatible_cli.py +0 -0
  331. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/openai_compatible_full_fidelity.py +0 -0
  332. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/opencode_adapter.py +0 -0
  333. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/opencode_full_fidelity.py +0 -0
  334. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/opencode_plugin_cli.py +0 -0
  335. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/opencode_record.py +0 -0
  336. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/overhead_benchmark.py +0 -0
  337. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/rule_pack.py +0 -0
  338. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/rule_pack_cli.py +0 -0
  339. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/scalability_benchmark.py +0 -0
  340. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/schema.py +0 -0
  341. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/scope.py +0 -0
  342. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/semantic.py +0 -0
  343. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/sink.py +0 -0
  344. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/strace_backend.py +0 -0
  345. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/theme.py +0 -0
  346. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/top.py +0 -0
  347. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/top_cli.py +0 -0
  348. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/validate.py +0 -0
  349. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/view_cli.py +0 -0
  350. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/viewer.py +0 -0
  351. /execweave-0.6.9/src/execweave/viewer_projection.py → /execweave-0.7.1/src/execweave/viewer_projection_base.py +0 -0
  352. {execweave-0.6.9 → execweave-0.7.1}/src/execweave/workflow.py +0 -0
  353. {execweave-0.6.9 → execweave-0.7.1}/tests/fixtures/hooks/README.md +0 -0
  354. {execweave-0.6.9 → execweave-0.7.1}/tests/fixtures/hooks/claude.json +0 -0
  355. {execweave-0.6.9 → execweave-0.7.1}/tests/fixtures/hooks/codex.json +0 -0
  356. {execweave-0.6.9 → execweave-0.7.1}/tests/fixtures/hooks/cursor.json +0 -0
  357. {execweave-0.6.9 → execweave-0.7.1}/tests/fixtures/hooks/gemini.json +0 -0
  358. {execweave-0.6.9 → execweave-0.7.1}/tests/fixtures/hooks/manifest.json +0 -0
  359. {execweave-0.6.9 → execweave-0.7.1}/tests/fixtures/hooks/opencode.json +0 -0
  360. {execweave-0.6.9 → execweave-0.7.1}/tests/test_agent_bootstrap.py +0 -0
  361. {execweave-0.6.9 → execweave-0.7.1}/tests/test_analysis.py +0 -0
  362. {execweave-0.6.9 → execweave-0.7.1}/tests/test_anthropic.py +0 -0
  363. {execweave-0.6.9 → execweave-0.7.1}/tests/test_antigravity_cursor_launch.py +0 -0
  364. {execweave-0.6.9 → execweave-0.7.1}/tests/test_auto_specialized.py +0 -0
  365. {execweave-0.6.9 → execweave-0.7.1}/tests/test_backends.py +0 -0
  366. {execweave-0.6.9 → execweave-0.7.1}/tests/test_claude_full_fidelity.py +0 -0
  367. {execweave-0.6.9 → execweave-0.7.1}/tests/test_claude_model_observer.py +0 -0
  368. {execweave-0.6.9 → execweave-0.7.1}/tests/test_claude_record.py +0 -0
  369. {execweave-0.6.9 → execweave-0.7.1}/tests/test_codex_full_fidelity.py +0 -0
  370. {execweave-0.6.9 → execweave-0.7.1}/tests/test_codex_record.py +0 -0
  371. {execweave-0.6.9 → execweave-0.7.1}/tests/test_collector.py +0 -0
  372. {execweave-0.6.9 → execweave-0.7.1}/tests/test_command.py +0 -0
  373. {execweave-0.6.9 → execweave-0.7.1}/tests/test_condense.py +0 -0
  374. {execweave-0.6.9 → execweave-0.7.1}/tests/test_correlation.py +0 -0
  375. {execweave-0.6.9 → execweave-0.7.1}/tests/test_correlation_canonical_path.py +0 -0
  376. {execweave-0.6.9 → execweave-0.7.1}/tests/test_correlation_checker.py +0 -0
  377. {execweave-0.6.9 → execweave-0.7.1}/tests/test_correlation_process_exe.py +0 -0
  378. {execweave-0.6.9 → execweave-0.7.1}/tests/test_cursor_record.py +0 -0
  379. {execweave-0.6.9 → execweave-0.7.1}/tests/test_dashboard_ux_and_hook_projection.py +0 -0
  380. {execweave-0.6.9 → execweave-0.7.1}/tests/test_evidence_grade.py +0 -0
  381. {execweave-0.6.9 → execweave-0.7.1}/tests/test_fidelity.py +0 -0
  382. {execweave-0.6.9 → execweave-0.7.1}/tests/test_filesystem_resilience.py +0 -0
  383. {execweave-0.6.9 → execweave-0.7.1}/tests/test_focus.py +0 -0
  384. {execweave-0.6.9 → execweave-0.7.1}/tests/test_full_fidelity.py +0 -0
  385. {execweave-0.6.9 → execweave-0.7.1}/tests/test_gemini_adapter.py +0 -0
  386. {execweave-0.6.9 → execweave-0.7.1}/tests/test_gemini_record.py +0 -0
  387. {execweave-0.6.9 → execweave-0.7.1}/tests/test_graph.py +0 -0
  388. {execweave-0.6.9 → execweave-0.7.1}/tests/test_graph_ops.py +0 -0
  389. {execweave-0.6.9 → execweave-0.7.1}/tests/test_hook_fixture_corpus.py +0 -0
  390. {execweave-0.6.9 → execweave-0.7.1}/tests/test_http_proxy.py +0 -0
  391. {execweave-0.6.9 → execweave-0.7.1}/tests/test_inference_gateway.py +0 -0
  392. {execweave-0.6.9 → execweave-0.7.1}/tests/test_inference_gateway_full_fidelity.py +0 -0
  393. {execweave-0.6.9 → execweave-0.7.1}/tests/test_inference_identity.py +0 -0
  394. {execweave-0.6.9 → execweave-0.7.1}/tests/test_integrity.py +0 -0
  395. {execweave-0.6.9 → execweave-0.7.1}/tests/test_litellm_callback.py +0 -0
  396. {execweave-0.6.9 → execweave-0.7.1}/tests/test_live.py +0 -0
  397. {execweave-0.6.9 → execweave-0.7.1}/tests/test_live_auth.py +0 -0
  398. {execweave-0.6.9 → execweave-0.7.1}/tests/test_live_dashboard.py +0 -0
  399. {execweave-0.6.9 → execweave-0.7.1}/tests/test_live_dashboard_js.py +0 -0
  400. {execweave-0.6.9 → execweave-0.7.1}/tests/test_live_delta.py +0 -0
  401. {execweave-0.6.9 → execweave-0.7.1}/tests/test_live_logs_export.py +0 -0
  402. {execweave-0.6.9 → execweave-0.7.1}/tests/test_live_theme.py +0 -0
  403. {execweave-0.6.9 → execweave-0.7.1}/tests/test_lmstudio_auto_specialized.py +0 -0
  404. {execweave-0.6.9 → execweave-0.7.1}/tests/test_model_runtime.py +0 -0
  405. {execweave-0.6.9 → execweave-0.7.1}/tests/test_model_runtime_full_fidelity.py +0 -0
  406. {execweave-0.6.9 → execweave-0.7.1}/tests/test_openai_compatible.py +0 -0
  407. {execweave-0.6.9 → execweave-0.7.1}/tests/test_opencode_adapter.py +0 -0
  408. {execweave-0.6.9 → execweave-0.7.1}/tests/test_opencode_full_fidelity.py +0 -0
  409. {execweave-0.6.9 → execweave-0.7.1}/tests/test_opencode_plugin.py +0 -0
  410. {execweave-0.6.9 → execweave-0.7.1}/tests/test_opencode_record.py +0 -0
  411. {execweave-0.6.9 → execweave-0.7.1}/tests/test_overhead_benchmark.py +0 -0
  412. {execweave-0.6.9 → execweave-0.7.1}/tests/test_provider_lifecycle.py +0 -0
  413. {execweave-0.6.9 → execweave-0.7.1}/tests/test_rule_pack.py +0 -0
  414. {execweave-0.6.9 → execweave-0.7.1}/tests/test_schema.py +0 -0
  415. {execweave-0.6.9 → execweave-0.7.1}/tests/test_scope.py +0 -0
  416. {execweave-0.6.9 → execweave-0.7.1}/tests/test_semantic.py +0 -0
  417. {execweave-0.6.9 → execweave-0.7.1}/tests/test_strace_backend.py +0 -0
  418. {execweave-0.6.9 → execweave-0.7.1}/tests/test_threat_model.py +0 -0
  419. {execweave-0.6.9 → execweave-0.7.1}/tests/test_top_detached.py +0 -0
  420. {execweave-0.6.9 → execweave-0.7.1}/tests/test_v063_features.py +0 -0
  421. {execweave-0.6.9 → execweave-0.7.1}/tests/test_v064_live_auto_integrations.py +0 -0
  422. {execweave-0.6.9 → execweave-0.7.1}/tests/test_v064_live_evidence.py +0 -0
  423. {execweave-0.6.9 → execweave-0.7.1}/tests/test_validate.py +0 -0
  424. {execweave-0.6.9 → execweave-0.7.1}/tests/test_version.py +0 -0
  425. {execweave-0.6.9 → execweave-0.7.1}/tests/test_viewer.py +0 -0
  426. {execweave-0.6.9 → execweave-0.7.1}/tests/test_viewer_projection.py +0 -0
  427. {execweave-0.6.9 → execweave-0.7.1}/tests/test_workflow.py +0 -0
@@ -0,0 +1,98 @@
1
+ name: Cleanup workflow history
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ paths:
7
+ - .github/workflows/cleanup-workflow-history.yml
8
+ workflow_dispatch:
9
+
10
+ permissions:
11
+ contents: read
12
+ actions: write
13
+
14
+ jobs:
15
+ cleanup:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Delete superseded completed workflow runs
19
+ env:
20
+ GH_TOKEN: ${{ github.token }}
21
+ REPOSITORY: ${{ github.repository }}
22
+ CURRENT_RUN_ID: ${{ github.run_id }}
23
+ V070_PUBLISH_RUN_ID: "33179361863"
24
+ run: |
25
+ python - <<'PY'
26
+ import json
27
+ import os
28
+ import urllib.error
29
+ import urllib.request
30
+
31
+ repo = os.environ["REPOSITORY"]
32
+ token = os.environ["GH_TOKEN"]
33
+ current_run_id = int(os.environ["CURRENT_RUN_ID"])
34
+ protected_publish_run_id = int(os.environ["V070_PUBLISH_RUN_ID"])
35
+ api = f"https://api.github.com/repos/{repo}"
36
+ headers = {
37
+ "Accept": "application/vnd.github+json",
38
+ "Authorization": f"Bearer {token}",
39
+ "X-GitHub-Api-Version": "2022-11-28",
40
+ "User-Agent": "execweave-workflow-history-cleanup",
41
+ }
42
+
43
+ def request_json(url):
44
+ req = urllib.request.Request(url, headers=headers)
45
+ with urllib.request.urlopen(req) as response:
46
+ return json.load(response)
47
+
48
+ runs = []
49
+ page = 1
50
+ while True:
51
+ payload = request_json(f"{api}/actions/runs?per_page=100&page={page}")
52
+ batch = payload.get("workflow_runs", [])
53
+ runs.extend(batch)
54
+ if len(batch) < 100:
55
+ break
56
+ page += 1
57
+
58
+ completed = [run for run in runs if run.get("status") == "completed"]
59
+ completed.sort(key=lambda run: run.get("created_at", ""), reverse=True)
60
+
61
+ keep = {current_run_id, protected_publish_run_id}
62
+ seen_success = set()
63
+ seen_failure = set()
64
+
65
+ for run in completed:
66
+ workflow_id = run.get("workflow_id")
67
+ conclusion = run.get("conclusion")
68
+ if conclusion == "success" and workflow_id not in seen_success:
69
+ keep.add(run["id"])
70
+ seen_success.add(workflow_id)
71
+ elif conclusion != "success" and workflow_id not in seen_failure:
72
+ keep.add(run["id"])
73
+ seen_failure.add(workflow_id)
74
+
75
+ delete_ids = [run["id"] for run in completed if run["id"] not in keep]
76
+ deleted = 0
77
+ failed = []
78
+ for run_id in delete_ids:
79
+ req = urllib.request.Request(
80
+ f"{api}/actions/runs/{run_id}",
81
+ headers=headers,
82
+ method="DELETE",
83
+ )
84
+ try:
85
+ with urllib.request.urlopen(req) as response:
86
+ if response.status == 204:
87
+ deleted += 1
88
+ except urllib.error.HTTPError as exc:
89
+ failed.append((run_id, exc.code))
90
+
91
+ print(f"workflow runs discovered: {len(runs)}")
92
+ print(f"completed runs considered: {len(completed)}")
93
+ print(f"protected runs: {len(keep)}")
94
+ print(f"deleted runs: {deleted}")
95
+ if failed:
96
+ print(f"failed deletions: {failed}")
97
+ raise SystemExit(1)
98
+ PY
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: execweave
3
- Version: 0.6.9
3
+ Version: 0.7.1
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
@@ -66,7 +66,7 @@ Description-Content-Type: text/markdown
66
66
 
67
67
  **See what AI agents actually do on your machine.**
68
68
 
69
- ExecWeave is a source-available, local-first observability project that turns AI-agent activity into an interactive execution graph while keeping observed evidence, provider content, and derived inference explicitly separated. Starting with v0.6.8, the project is licensed for noncommercial use under PolyForm Noncommercial 1.0.0.
69
+ ExecWeave is a source-available, local-first observability project that turns AI-agent activity into an interactive execution graph while keeping observed evidence, provider content, and derived inference explicitly separated.
70
70
 
71
71
  > **Event is ground truth. The graph is a materialized view.**
72
72
 
@@ -82,11 +82,7 @@ Install the latest published wheel/sdist from PyPI:
82
82
  python -m pip install -U execweave
83
83
  ```
84
84
 
85
- The package version on `main` is currently **v0.6.9**. The published release may lag main; test the exact mainline build with:
86
-
87
- ```bash
88
- python -m pip install --upgrade --force-reinstall "execweave @ git+https://github.com/Irish-kw/ExecWeave.git@main"
89
- ```
85
+ The current release is **v0.7.1**.
90
86
 
91
87
  For development:
92
88
 
@@ -122,6 +118,10 @@ execweave record --open -- python my_agent.py
122
118
 
123
119
  `execweave top -- codex` keeps the Agent interactive in the launch terminal while opening/attaching the detached Top dashboard according to the host environment.
124
120
 
121
+ v0.7.0 extends ExecWeave from provider/runtime observability into attributable multi-agent execution traces. Where providers expose authoritative identity or lifecycle evidence, ExecWeave records parent/child relationships, delegated tasks, inter-agent messages, waits/results, tool ownership, and provider-supplied reasoning/content without promoting weak timing proximity into causal claims. Current provider coverage includes Claude Code, OpenAI Codex, Cursor, OpenCode, and Google Antigravity; missing or ambiguous evidence causes abstention rather than heuristic linkage.
122
+
123
+ Conversation evidence is now surfaced directly from each ExecWeave run. Existing provider content is indexed, validated provider transcripts that would otherwise require browsing Agent-specific folders are copied into the run-local SHA-256 content store, and finalized runs generate `conversations.md` plus `conversations.json`. Static and Live dashboards link directly to these run-local records. Live content serving is token-authenticated and restricted to validated run-local conversation indexes and SHA-256 content paths; arbitrary local files and path traversal are not exposed.
124
+
125
125
  ## v0.6.9: full-fidelity observability with explicit evidence boundaries
126
126
 
127
127
  v0.6.9 extends provider/runtime observability beyond compact metadata. When a supported integration point explicitly supplies content, ExecWeave can preserve the **complete supplied value** in a local SHA-256 content-addressed store while keeping only a reference in the semantic event stream.
@@ -282,7 +282,7 @@ Portable filesystem observation is session-correlated rather than process-causal
282
282
 
283
283
  ## Performance and large-run safety
284
284
 
285
- v0.6.3 added bounded filesystem/viewer protections, incremental Live JSONL tailing, and large-graph safety guards. v0.6.4 added detached Top and unified provisional live sidecars for configured provider integrations. These remain in v0.6.9; the project has **not** migrated Live to SSE, artifact storage to SQLite, the renderer to Canvas/WebGL, or collectors to Rust solely for this release.
285
+ ExecWeave includes bounded filesystem/viewer protections, incremental Live JSONL tailing, large-graph safety guards, detached Top, and provisional live sidecars for configured provider integrations.
286
286
 
287
287
  The reproducible incremental `GraphAccumulator` reference result reaches **164,273 ev/s** at 1M synthetic events on the documented GitHub Actions workload. This is a graph-accumulation benchmark, not end-to-end collector/browser throughput.
288
288
 
@@ -306,6 +306,8 @@ A provider-integrated run may contain:
306
306
  ├── viewer.html
307
307
  ├── semantic.jsonl
308
308
  ├── content/sha256/...
309
+ ├── conversations.md
310
+ ├── conversations.json
309
311
  ├── events.semantic.jsonl
310
312
  ├── graph.semantic.json
311
313
  ├── viewer.semantic.html
@@ -319,15 +321,13 @@ Derived correlation never rewrites the raw runtime or provider sidecar evidence.
319
321
 
320
322
  ## Privacy
321
323
 
322
- ExecWeave is local-first: captures, content blobs, graphs, reports, and viewers remain local by default. The **OS runtime collector** does not intentionally capture file contents or raw read/write byte buffers. That boundary must not be confused with the v0.6.9 **provider full-fidelity content store**: supported hooks/APIs can explicitly supply prompts, tool arguments/results, model responses, reasoning/thinking text, shell output, file content, or other sensitive values, and ExecWeave can preserve those values completely.
324
+ ExecWeave is local-first: captures, content blobs, graphs, reports, and viewers remain local by default. The **OS runtime collector** does not intentionally capture file contents or raw read/write byte buffers. That boundary must not be confused with the **provider full-fidelity content store introduced in v0.6.9**: supported hooks/APIs can explicitly supply prompts, tool arguments/results, model responses, reasoning/thinking text, shell output, file content, or other sensitive values, and ExecWeave can preserve those values completely.
323
325
 
324
326
  Do not assume content has been secret-redacted. Commands, paths, endpoint metadata, identifiers, model metadata, prompts, tool values, and content blobs can all be sensitive. Review the entire run directory before sharing it.
325
327
 
326
328
  ## Current status
327
329
 
328
- ExecWeave `main` is currently **v0.6.9** and under active release hardening. The latest published package/release can lag main until a GitHub Release is explicitly published; the publish workflow verifies that the release tag exactly matches the package version before PyPI upload.
329
-
330
- v0.6.9 combines cross-platform runtime collection, materialized execution graphs, standalone/live viewing, conservative provider↔runtime correlation, full-fidelity content-addressed provider evidence, evidence grades, bounded rule packs, an explicit runtime threat/fidelity contract, and honest local run-integrity sealing. Observed evidence and inference remain separate by design.
330
+ v0.7.1 combines cross-platform runtime collection, materialized execution graphs, standalone/live viewing, conservative provider↔runtime correlation, full-fidelity content-addressed provider evidence, attributable multi-agent execution traces, direct run-local conversation access, evidence grades, bounded rule packs, an explicit runtime threat/fidelity contract, and honest local run-integrity sealing. Observed evidence and inference remain separate by design.
331
331
 
332
332
  ## Documentation
333
333
 
@@ -355,4 +355,4 @@ Contributions are welcome, especially around native OS collectors, Agent/IDE ada
355
355
 
356
356
  ## License
357
357
 
358
- ExecWeave v0.6.8 and later are licensed under the **PolyForm Noncommercial License 1.0.0**. Noncommercial use, modification, and redistribution are permitted under those terms. Commercial use requires a separate written commercial license from the licensor. Earlier versions already released under MIT remain under the terms that accompanied those versions. See [`LICENSE`](LICENSE).
358
+ Starting with v0.6.8, ExecWeave is licensed under the **PolyForm Noncommercial License 1.0.0**. Noncommercial use, modification, and redistribution are permitted under its terms. Commercial use requires a separate written commercial license from the licensor. See [`LICENSE`](LICENSE).
@@ -15,7 +15,7 @@
15
15
 
16
16
  **Sehen Sie, was KI-Agenten auf Ihrem Rechner tatsächlich tun.**
17
17
 
18
- ExecWeave ist ein source-available, local-first Observability-Projekt, das Aktivitäten von KI-Agenten in einen interaktiven Execution Graph überführt und dabei observed evidence, provider content und derived inference ausdrücklich getrennt hält. Ab v0.6.8 gilt die PolyForm Noncommercial License 1.0.0; kommerzielle Nutzung ist nicht erlaubt.
18
+ ExecWeave ist ein source-available, local-first Observability-Projekt, das Aktivitäten von AI Agents in einen interaktiven execution graph umwandelt und observed evidence, provider content sowie derived inference ausdrücklich getrennt hält.
19
19
 
20
20
  > **Das Event ist die Ground Truth. Der Graph ist eine materialized view.**
21
21
 
@@ -31,11 +31,7 @@ Installieren Sie das neueste veröffentlichte wheel/sdist von PyPI:
31
31
  python -m pip install -U execweave
32
32
  ```
33
33
 
34
- Die Package-Version auf `main` ist derzeit **v0.6.9**. Die veröffentlichte Release kann hinter main zurückliegen. Um exakt den aktuellen Mainline-Build zu testen:
35
-
36
- ```bash
37
- python -m pip install --upgrade --force-reinstall "execweave @ git+https://github.com/Irish-kw/ExecWeave.git@main"
38
- ```
34
+ Die aktuelle stabile Version ist **v0.6.9**.
39
35
 
40
36
  Für die Entwicklung:
41
37
 
@@ -228,7 +224,7 @@ Portable Filesystem Observation ist session-correlated und nicht process-causal;
228
224
 
229
225
  ## Performance und Large-run Safety
230
226
 
231
- v0.6.3 brachte begrenzte Filesystem-/Viewer-Schutzmaßnahmen, inkrementelles Live-JSONL-Tailing und Large-graph Safety Guards. v0.6.4 ergänzte detached Top sowie einen gemeinsamen provisional live sidecar für konfigurierte Provider-Integrationen. Diese Fähigkeiten bleiben in v0.6.9 erhalten. Für diese Release wurde Live **nicht** allein aus Architekturgründen auf SSE, Artifact Storage auf SQLite, der Renderer auf Canvas/WebGL oder die Collectors auf Rust migriert.
227
+ ExecWeave umfasst begrenzte filesystem/viewer protections, inkrementelles Live-JSONL-Tailing, large-graph safety guards, detached Top und provisorische Live-Sidecars für konfigurierte Provider-Integrationen.
232
228
 
233
229
  Das reproduzierbare inkrementelle `GraphAccumulator`-Referenzergebnis erreicht bei 1M synthetischen Events auf dem dokumentierten GitHub-Actions-Workload **164,273 ev/s**. Dies ist ein Graph-Accumulation-Benchmark und kein End-to-end Collector-/Browser-Throughput.
234
230
 
@@ -269,8 +265,6 @@ Gehen Sie nicht davon aus, dass Content secret-redacted ist. Commands, Paths, En
269
265
 
270
266
  ## Aktueller Status
271
267
 
272
- ExecWeave `main` ist derzeit **v0.6.9** und befindet sich im Release Hardening. Das neueste öffentliche Package/Release kann hinter main liegen, bis eine GitHub Release ausdrücklich veröffentlicht wird. Der Publish Workflow prüft vor dem PyPI Upload, dass Release Tag und Package Version exakt übereinstimmen.
273
-
274
268
  v0.6.9 kombiniert cross-platform runtime collection, materialisierte Execution Graphs, standalone/live Viewing, konservative Provider↔Runtime-Korrelation, content-addressed full-fidelity Provider Evidence, Evidence Grades, begrenzte Rule Packs, einen expliziten Runtime Threat/Fidelity Contract und ehrliches lokales Run-integrity Sealing. Observed evidence und inference bleiben per Design getrennt.
275
269
 
276
270
  ## Dokumentation
@@ -299,4 +293,4 @@ Beiträge sind willkommen, besonders zu nativen OS Collectors, Agent-/IDE-Adapte
299
293
 
300
294
  ## License
301
295
 
302
- ExecWeave v0.6.8 und spätere Versionen stehen unter der **PolyForm Noncommercial License 1.0.0**. Nichtkommerzielle Nutzung, Änderung und Weitergabe sind unter diesen Bedingungen erlaubt; jede kommerzielle Nutzung erfordert eine separate schriftliche kommerzielle Lizenz. Bereits zuvor unter MIT veröffentlichte Versionen behalten ihre damaligen Lizenzbedingungen. Siehe [`LICENSE`](LICENSE).
296
+ ExecWeave steht unter der **PolyForm Noncommercial License 1.0.0**. Nichtkommerzielle Nutzung, Änderung und Weiterverteilung sind gemäß den Lizenzbedingungen gestattet. Kommerzielle Nutzung erfordert eine separate schriftliche kommerzielle Lizenz des Lizenzgebers. Siehe [`LICENSE`](LICENSE).
@@ -15,7 +15,7 @@
15
15
 
16
16
  **Voyez ce que les agents IA font réellement sur votre machine.**
17
17
 
18
- ExecWeave est un projet source-available, local-first, d’observabilité qui transforme l’activité des agents IA en graphe d’exécution interactif tout en séparant explicitement les preuves observées, le contenu fourni par les providers et les inférences dérivées. À partir de v0.6.8, le projet est sous PolyForm Noncommercial 1.0.0 et l’usage commercial n’est pas autorisé.
18
+ ExecWeave est un projet d’observabilité source-available et local-first qui transforme l’activité des agents IA en execution graph interactif, tout en séparant explicitement observed evidence, provider content et derived inference.
19
19
 
20
20
  > **L’événement est la ground truth. Le graphe est une materialized view.**
21
21
 
@@ -31,11 +31,7 @@ Installez la dernière wheel/sdist publiée sur PyPI :
31
31
  python -m pip install -U execweave
32
32
  ```
33
33
 
34
- La version du package sur `main` est actuellement **v0.6.9**. La release publiée peut être en retard sur main ; pour tester exactement le mainline courant :
35
-
36
- ```bash
37
- python -m pip install --upgrade --force-reinstall "execweave @ git+https://github.com/Irish-kw/ExecWeave.git@main"
38
- ```
34
+ La version stable actuelle est **v0.6.9**.
39
35
 
40
36
  Pour le développement :
41
37
 
@@ -228,7 +224,7 @@ L’observation filesystem portable est session-correlated et non process-causal
228
224
 
229
225
  ## Performance et sécurité des grands runs
230
226
 
231
- v0.6.3 a ajouté des protections filesystem/viewer bornées, le tail Live JSONL incrémental et des garde-fous pour les grands graphes. v0.6.4 a ajouté Top détaché et le sidecar live provisoire partagé pour les intégrations provider configurées. Ces capacités restent en v0.6.9. Cette release n’a **pas** migré Live vers SSE, le stockage d’artefacts vers SQLite, le renderer vers Canvas/WebGL, ni les collectors vers Rust simplement pour changer d’architecture.
227
+ ExecWeave inclut des protections bornées pour le filesystem/viewer, le suivi incrémental Live JSONL, des garde-fous pour les grands graphes, Top détaché et des live sidecars provisoires pour les provider integrations configurées.
232
228
 
233
229
  Le résultat de référence reproductible de l’`GraphAccumulator` incrémental atteint **164,273 ev/s** à 1M d’événements synthétiques sur le workload GitHub Actions documenté. Il s’agit d’un benchmark d’accumulation de graphe, pas d’un débit end-to-end collector/browser.
234
230
 
@@ -269,8 +265,6 @@ Ne supposez pas que le contenu a été secret-redacted. Commandes, chemins, endp
269
265
 
270
266
  ## État actuel
271
267
 
272
- ExecWeave `main` est actuellement en **v0.6.9** et en phase de release hardening. Le dernier package/release public peut être en retard sur main jusqu’à la publication explicite d’une GitHub Release ; le workflow de publication vérifie que le release tag correspond exactement à la package version avant upload sur PyPI.
273
-
274
268
  v0.6.9 combine collection runtime cross-platform, graphes d’exécution matérialisés, viewers standalone/live, corrélation provider↔runtime conservatrice, preuves provider full-fidelity adressées par contenu, evidence grades, rule packs bornés, contrat explicite runtime threat/fidelity et scellement local d’intégrité avec une frontière de confiance honnête. Les preuves observées et l’inférence restent séparées par conception.
275
269
 
276
270
  ## Documentation
@@ -299,4 +293,4 @@ Les contributions sont bienvenues, notamment pour les collectors OS natifs, adap
299
293
 
300
294
  ## License
301
295
 
302
- ExecWeave v0.6.8 et les versions ultérieures sont sous **PolyForm Noncommercial License 1.0.0**. L’usage, la modification et la redistribution non commerciaux sont permis selon ces termes ; tout usage commercial nécessite une licence commerciale écrite distincte. Les versions antérieures déjà publiées sous MIT restent soumises aux conditions qui les accompagnaient. Voir [`LICENSE`](LICENSE).
296
+ ExecWeave est distribué sous **PolyForm Noncommercial License 1.0.0**. L’utilisation, la modification et la redistribution non commerciales sont autorisées selon ses conditions. Toute utilisation commerciale nécessite une licence commerciale écrite distincte du concédant. Voir [`LICENSE`](LICENSE).
@@ -15,7 +15,7 @@
15
15
 
16
16
  **AI Agent があなたのマシン上で実際に何をしているかを可視化します。**
17
17
 
18
- ExecWeave は source-available、local-first の observability プロジェクトで、AI Agent の活動をインタラクティブな execution graph に変換し、observed evidence、provider content、derived inference を明確に分離します。v0.6.8 以降は PolyForm Noncommercial 1.0.0 の下で提供され、商用利用は許可されません。
18
+ ExecWeave は source-available、local-first の observability プロジェクトで、AI Agent の活動をインタラクティブな execution graph に変換し、observed evidence、provider content、derived inference を明確に分離します。
19
19
 
20
20
  > **Event が ground truth であり、Graph は materialized view です。**
21
21
 
@@ -31,11 +31,7 @@ PyPI から最新の公開 wheel/sdist をインストールします。
31
31
  python -m pip install -U execweave
32
32
  ```
33
33
 
34
- 現在の `main` の package version は **v0.6.9** です。公開 release が main より遅れる場合があります。現在の mainline を直接試すには:
35
-
36
- ```bash
37
- python -m pip install --upgrade --force-reinstall "execweave @ git+https://github.com/Irish-kw/ExecWeave.git@main"
38
- ```
34
+ 現在の正式リリースは **v0.6.9** です。
39
35
 
40
36
  開発用:
41
37
 
@@ -228,7 +224,7 @@ Portable filesystem observation は session-correlated であり process-causal
228
224
 
229
225
  ## Performance と large-run safety
230
226
 
231
- v0.6.3 では bounded filesystem/viewer protection、incremental Live JSONL tailing、large-graph safety guard を追加し、v0.6.4 では detached Topconfigured provider integration 用 provisional live sidecar を追加しました。これらは v0.6.9 にも残っています。本 release だけを理由に Live を SSE、artifact storage を SQLite、renderer を Canvas/WebGL、collector を Rust へ移行してはいません。
227
+ ExecWeave bounded filesystem/viewer protection、incremental Live JSONL tailing、large-graph safety guarddetached Topconfigured provider integration 用 provisional live sidecar を備えています。
232
228
 
233
229
  再現可能な incremental `GraphAccumulator` reference result は、文書化された GitHub Actions workload の 1M synthetic events で **164,273 ev/s** です。これは graph accumulation benchmark であり、end-to-end collector/browser throughput ではありません。
234
230
 
@@ -269,8 +265,6 @@ Content が secret-redacted 済みだと仮定しないでください。Command
269
265
 
270
266
  ## 現在の状態
271
267
 
272
- ExecWeave `main` は現在 **v0.6.9** で release hardening 中です。公開 package/release は main より遅れる場合があります。GitHub Release を明示的に publish した場合のみ publish workflow が動作し、PyPI upload 前に release tag と package version が完全一致することを検証します。
273
-
274
268
  v0.6.9 は cross-platform runtime collection、materialized execution graph、standalone/live viewer、保守的 provider↔runtime correlation、content-addressed full-fidelity provider evidence、evidence grades、bounded rule packs、明示的 runtime threat/fidelity contract、honest local run-integrity sealing を組み合わせています。Observed evidence と inference は設計上分離されています。
275
269
 
276
270
  ## ドキュメント
@@ -299,4 +293,4 @@ v0.6.9 は cross-platform runtime collection、materialized execution graph、st
299
293
 
300
294
  ## License
301
295
 
302
- ExecWeave v0.6.8 以降は **PolyForm Noncommercial License 1.0.0** の下で提供されます。非商用の利用・変更・再配布はその条件に従って許可されますが、商用利用には別途書面による商用ライセンスが必要です。以前に MIT で公開済みの旧バージョンは当時のライセンス条件のままです。詳しくは [`LICENSE`](LICENSE) を参照してください。
296
+ ExecWeave **PolyForm Noncommercial License 1.0.0** の下で提供されます。非商用の利用・変更・再配布はその条件に従って許可され、商用利用にはライセンサーから別途書面による商用ライセンスが必要です。詳しくは [`LICENSE`](LICENSE) を参照してください。
@@ -15,7 +15,7 @@
15
15
 
16
16
  **AI Agent가 내 컴퓨터에서 실제로 무엇을 하는지 확인하세요.**
17
17
 
18
- ExecWeave는 AI Agent 활동을 인터랙티브 execution graph로 변환하면서 observed evidence, provider content, derived inference를 명확히 분리하는 source-available, local-first observability 프로젝트입니다. v0.6.8부터 PolyForm Noncommercial 1.0.0이 적용되며 상업적 사용은 허용되지 않습니다.
18
+ ExecWeave는 AI Agent 활동을 인터랙티브 execution graph로 변환하면서 observed evidence, provider content, derived inference를 명확히 분리하는 source-available, local-first observability 프로젝트입니다.
19
19
 
20
20
  > **Event가 ground truth이고, Graph는 materialized view입니다.**
21
21
 
@@ -31,11 +31,7 @@ PyPI에서 최신 공개 wheel/sdist를 설치합니다.
31
31
  python -m pip install -U execweave
32
32
  ```
33
33
 
34
- 현재 `main`의 package version은 **v0.6.9**입니다. 공개 release가 main보다 늦을 수 있습니다. 현재 mainline을 직접 테스트하려면:
35
-
36
- ```bash
37
- python -m pip install --upgrade --force-reinstall "execweave @ git+https://github.com/Irish-kw/ExecWeave.git@main"
38
- ```
34
+ 현재 정식 릴리스는 **v0.6.9**입니다.
39
35
 
40
36
  개발 설치:
41
37
 
@@ -228,7 +224,7 @@ Portable filesystem observation은 session-correlated이며 process-causal이
228
224
 
229
225
  ## Performance와 large-run safety
230
226
 
231
- v0.6.3은 bounded filesystem/viewer protection, incremental Live JSONL tailing, large-graph safety guard 추가했고 v0.6.4는 detached Top configured provider integration용 provisional live sidecar를 추가했습니다. 이 기능들은 v0.6.9에도 유지됩니다. 이번 release만을 위해 Live를 SSE로, artifact storage를 SQLite로, renderer를 Canvas/WebGL로, collector를 Rust로 전환하지 않았습니다.
227
+ ExecWeave는 bounded filesystem/viewer protection, incremental Live JSONL tailing, large-graph safety guard, detached Top, configured provider integration용 provisional live sidecar를 포함합니다.
232
228
 
233
229
  재현 가능한 incremental `GraphAccumulator` reference result는 문서화된 GitHub Actions workload에서 1M synthetic events 기준 **164,273 ev/s**입니다. 이는 graph accumulation benchmark이며 end-to-end collector/browser throughput이 아닙니다.
234
230
 
@@ -269,8 +265,6 @@ Content가 secret-redacted되었다고 가정하지 마세요. Command, path, en
269
265
 
270
266
  ## 현재 상태
271
267
 
272
- ExecWeave `main`은 현재 **v0.6.9**이며 release hardening 중입니다. 공개 package/release는 main보다 늦을 수 있습니다. GitHub Release가 명시적으로 publish될 때만 publish workflow가 실행되며 PyPI upload 전에 release tag와 package version이 정확히 일치하는지 검증합니다.
273
-
274
268
  v0.6.9는 cross-platform runtime collection, materialized execution graph, standalone/live viewer, 보수적인 provider↔runtime correlation, content-addressed full-fidelity provider evidence, evidence grades, bounded rule packs, 명시적 runtime threat/fidelity contract, honest local run-integrity sealing을 결합합니다. Observed evidence와 inference는 설계상 분리됩니다.
275
269
 
276
270
  ## 문서
@@ -299,4 +293,4 @@ v0.6.9는 cross-platform runtime collection, materialized execution graph, stand
299
293
 
300
294
  ## License
301
295
 
302
- ExecWeave v0.6.8 이상은 **PolyForm Noncommercial License 1.0.0**에 따라 제공됩니다. 비상업적 사용, 수정, 재배포는 해당 조건에 따라 허용되지만 상업적 사용에는 별도의 서면 상업 라이선스가 필요합니다. 이전에 MIT로 공개된 버전은 당시 함께 제공된 라이선스 조건을 유지합니다. 자세한 내용은 [`LICENSE`](LICENSE)를 참고하세요.
296
+ ExecWeave **PolyForm Noncommercial License 1.0.0**에 따라 제공됩니다. 비상업적 사용, 수정 재배포는 해당 조건에 따라 허용되며, 상업적 사용에는 라이선서의 별도 서면 상업용 라이선스가 필요합니다. [`LICENSE`](LICENSE)를 참조하세요.
@@ -15,7 +15,7 @@
15
15
 
16
16
  **See what AI agents actually do on your machine.**
17
17
 
18
- ExecWeave is a source-available, local-first observability project that turns AI-agent activity into an interactive execution graph while keeping observed evidence, provider content, and derived inference explicitly separated. Starting with v0.6.8, the project is licensed for noncommercial use under PolyForm Noncommercial 1.0.0.
18
+ ExecWeave is a source-available, local-first observability project that turns AI-agent activity into an interactive execution graph while keeping observed evidence, provider content, and derived inference explicitly separated.
19
19
 
20
20
  > **Event is ground truth. The graph is a materialized view.**
21
21
 
@@ -31,11 +31,7 @@ Install the latest published wheel/sdist from PyPI:
31
31
  python -m pip install -U execweave
32
32
  ```
33
33
 
34
- The package version on `main` is currently **v0.6.9**. The published release may lag main; test the exact mainline build with:
35
-
36
- ```bash
37
- python -m pip install --upgrade --force-reinstall "execweave @ git+https://github.com/Irish-kw/ExecWeave.git@main"
38
- ```
34
+ The current release is **v0.7.1**.
39
35
 
40
36
  For development:
41
37
 
@@ -71,6 +67,10 @@ execweave record --open -- python my_agent.py
71
67
 
72
68
  `execweave top -- codex` keeps the Agent interactive in the launch terminal while opening/attaching the detached Top dashboard according to the host environment.
73
69
 
70
+ v0.7.0 extends ExecWeave from provider/runtime observability into attributable multi-agent execution traces. Where providers expose authoritative identity or lifecycle evidence, ExecWeave records parent/child relationships, delegated tasks, inter-agent messages, waits/results, tool ownership, and provider-supplied reasoning/content without promoting weak timing proximity into causal claims. Current provider coverage includes Claude Code, OpenAI Codex, Cursor, OpenCode, and Google Antigravity; missing or ambiguous evidence causes abstention rather than heuristic linkage.
71
+
72
+ Conversation evidence is now surfaced directly from each ExecWeave run. Existing provider content is indexed, validated provider transcripts that would otherwise require browsing Agent-specific folders are copied into the run-local SHA-256 content store, and finalized runs generate `conversations.md` plus `conversations.json`. Static and Live dashboards link directly to these run-local records. Live content serving is token-authenticated and restricted to validated run-local conversation indexes and SHA-256 content paths; arbitrary local files and path traversal are not exposed.
73
+
74
74
  ## v0.6.9: full-fidelity observability with explicit evidence boundaries
75
75
 
76
76
  v0.6.9 extends provider/runtime observability beyond compact metadata. When a supported integration point explicitly supplies content, ExecWeave can preserve the **complete supplied value** in a local SHA-256 content-addressed store while keeping only a reference in the semantic event stream.
@@ -231,7 +231,7 @@ Portable filesystem observation is session-correlated rather than process-causal
231
231
 
232
232
  ## Performance and large-run safety
233
233
 
234
- v0.6.3 added bounded filesystem/viewer protections, incremental Live JSONL tailing, and large-graph safety guards. v0.6.4 added detached Top and unified provisional live sidecars for configured provider integrations. These remain in v0.6.9; the project has **not** migrated Live to SSE, artifact storage to SQLite, the renderer to Canvas/WebGL, or collectors to Rust solely for this release.
234
+ ExecWeave includes bounded filesystem/viewer protections, incremental Live JSONL tailing, large-graph safety guards, detached Top, and provisional live sidecars for configured provider integrations.
235
235
 
236
236
  The reproducible incremental `GraphAccumulator` reference result reaches **164,273 ev/s** at 1M synthetic events on the documented GitHub Actions workload. This is a graph-accumulation benchmark, not end-to-end collector/browser throughput.
237
237
 
@@ -255,6 +255,8 @@ A provider-integrated run may contain:
255
255
  ├── viewer.html
256
256
  ├── semantic.jsonl
257
257
  ├── content/sha256/...
258
+ ├── conversations.md
259
+ ├── conversations.json
258
260
  ├── events.semantic.jsonl
259
261
  ├── graph.semantic.json
260
262
  ├── viewer.semantic.html
@@ -268,15 +270,13 @@ Derived correlation never rewrites the raw runtime or provider sidecar evidence.
268
270
 
269
271
  ## Privacy
270
272
 
271
- ExecWeave is local-first: captures, content blobs, graphs, reports, and viewers remain local by default. The **OS runtime collector** does not intentionally capture file contents or raw read/write byte buffers. That boundary must not be confused with the v0.6.9 **provider full-fidelity content store**: supported hooks/APIs can explicitly supply prompts, tool arguments/results, model responses, reasoning/thinking text, shell output, file content, or other sensitive values, and ExecWeave can preserve those values completely.
273
+ ExecWeave is local-first: captures, content blobs, graphs, reports, and viewers remain local by default. The **OS runtime collector** does not intentionally capture file contents or raw read/write byte buffers. That boundary must not be confused with the **provider full-fidelity content store introduced in v0.6.9**: supported hooks/APIs can explicitly supply prompts, tool arguments/results, model responses, reasoning/thinking text, shell output, file content, or other sensitive values, and ExecWeave can preserve those values completely.
272
274
 
273
275
  Do not assume content has been secret-redacted. Commands, paths, endpoint metadata, identifiers, model metadata, prompts, tool values, and content blobs can all be sensitive. Review the entire run directory before sharing it.
274
276
 
275
277
  ## Current status
276
278
 
277
- ExecWeave `main` is currently **v0.6.9** and under active release hardening. The latest published package/release can lag main until a GitHub Release is explicitly published; the publish workflow verifies that the release tag exactly matches the package version before PyPI upload.
278
-
279
- v0.6.9 combines cross-platform runtime collection, materialized execution graphs, standalone/live viewing, conservative provider↔runtime correlation, full-fidelity content-addressed provider evidence, evidence grades, bounded rule packs, an explicit runtime threat/fidelity contract, and honest local run-integrity sealing. Observed evidence and inference remain separate by design.
279
+ v0.7.1 combines cross-platform runtime collection, materialized execution graphs, standalone/live viewing, conservative provider↔runtime correlation, full-fidelity content-addressed provider evidence, attributable multi-agent execution traces, direct run-local conversation access, evidence grades, bounded rule packs, an explicit runtime threat/fidelity contract, and honest local run-integrity sealing. Observed evidence and inference remain separate by design.
280
280
 
281
281
  ## Documentation
282
282
 
@@ -304,4 +304,4 @@ Contributions are welcome, especially around native OS collectors, Agent/IDE ada
304
304
 
305
305
  ## License
306
306
 
307
- ExecWeave v0.6.8 and later are licensed under the **PolyForm Noncommercial License 1.0.0**. Noncommercial use, modification, and redistribution are permitted under those terms. Commercial use requires a separate written commercial license from the licensor. Earlier versions already released under MIT remain under the terms that accompanied those versions. See [`LICENSE`](LICENSE).
307
+ Starting with v0.6.8, ExecWeave is licensed under the **PolyForm Noncommercial License 1.0.0**. Noncommercial use, modification, and redistribution are permitted under its terms. Commercial use requires a separate written commercial license from the licensor. See [`LICENSE`](LICENSE).
@@ -15,7 +15,7 @@
15
15
 
16
16
  **Посмотрите, что ИИ-агенты действительно делают на вашей машине.**
17
17
 
18
- ExecWeave — source-available, local-first проект observability, который преобразует активность ИИ-агентов в интерактивный execution graph и при этом явно разделяет observed evidence, provider content и derived inference. Начиная с v0.6.8 проект распространяется по PolyForm Noncommercial 1.0.0; коммерческое использование не разрешено.
18
+ ExecWeave — source-available, local-first проект наблюдаемости, который преобразует активность AI Agent в интерактивный execution graph и явно разделяет observed evidence, provider content и derived inference.
19
19
 
20
20
  > **Event — это ground truth. Graph — materialized view.**
21
21
 
@@ -31,11 +31,7 @@ ExecWeave — source-available, local-first проект observability, кото
31
31
  python -m pip install -U execweave
32
32
  ```
33
33
 
34
- Версия package в `main` сейчас **v0.6.9**. Опубликованный release может отставать от main; чтобы протестировать текущий mainline напрямую:
35
-
36
- ```bash
37
- python -m pip install --upgrade --force-reinstall "execweave @ git+https://github.com/Irish-kw/ExecWeave.git@main"
38
- ```
34
+ Текущий стабильный релиз **v0.6.9**.
39
35
 
40
36
  Для разработки:
41
37
 
@@ -228,7 +224,7 @@ Portable filesystem observation является session-correlated, а не pro
228
224
 
229
225
  ## Performance и large-run safety
230
226
 
231
- v0.6.3 добавил bounded filesystem/viewer protections, incremental Live JSONL tailing и large-graph safety guards. v0.6.4 добавил detached Top и общий provisional live sidecar для настроенных provider integrations. Эти возможности остаются в v0.6.9. Ради этой release проект **не** мигрировал Live на SSE, artifact storage на SQLite, renderer на Canvas/WebGL или collectors на Rust только ради смены архитектуры.
227
+ ExecWeave включает bounded filesystem/viewer protection, incremental Live JSONL tailing, large-graph safety guards, detached Top и provisional live sidecars для настроенных provider integrations.
232
228
 
233
229
  Воспроизводимый reference result incremental `GraphAccumulator` достигает **164,273 ev/s** на 1M synthetic events в документированном GitHub Actions workload. Это benchmark накопления graph, а не end-to-end collector/browser throughput.
234
230
 
@@ -269,8 +265,6 @@ ExecWeave — local-first: captures, content blobs, graphs, reports и viewers
269
265
 
270
266
  ## Текущий статус
271
267
 
272
- ExecWeave `main` сейчас **v0.6.9** и проходит release hardening. Последний публичный package/release может отставать от main до явной публикации GitHub Release; publish workflow проверяет точное совпадение release tag и package version до загрузки в PyPI.
273
-
274
268
  v0.6.9 объединяет cross-platform runtime collection, materialized execution graphs, standalone/live viewing, консервативную provider↔runtime correlation, content-addressed full-fidelity provider evidence, evidence grades, bounded rule packs, явный runtime threat/fidelity contract и честный local run-integrity seal. Observed evidence и inference остаются разделёнными по дизайну.
275
269
 
276
270
  ## Документация
@@ -299,4 +293,4 @@ v0.6.9 объединяет cross-platform runtime collection, materialized exec
299
293
 
300
294
  ## License
301
295
 
302
- ExecWeave v0.6.8 и более поздние версии распространяются по **PolyForm Noncommercial License 1.0.0**. Некоммерческие использование, изменение и распространение разрешены в соответствии с этими условиями; любое коммерческое использование требует отдельной письменной коммерческой лицензии. Ранее выпущенные под MIT версии сохраняют условия лицензии, сопровождавшие их на момент выпуска. См. [`LICENSE`](LICENSE).
296
+ ExecWeave распространяется по **PolyForm Noncommercial License 1.0.0**. Некоммерческое использование, изменение и распространение разрешены на условиях лицензии. Для коммерческого использования требуется отдельная письменная коммерческая лицензия от лицензиара. См. [`LICENSE`](LICENSE).
@@ -15,7 +15,7 @@
15
15
 
16
16
  **看清 AI Agent 在你的机器上究竟做了什么。**
17
17
 
18
- ExecWeave 是一个 source-available、local-first 的可观测性项目,把 AI Agent 活动转换为交互式 execution graph,并明确区分 observed evidence、provider content 与 derived inference。自 v0.6.8 起采用 PolyForm Noncommercial 1.0.0,仅允许非商业用途。
18
+ ExecWeave 是一个 source-available、local-first 的可观测性项目,把 AI Agent 活动转换为交互式 execution graph,并明确区分 observed evidence、provider content 与 derived inference
19
19
 
20
20
  > **Event 是 ground truth;Graph 是 materialized view。**
21
21
 
@@ -31,11 +31,7 @@ ExecWeave 是一个 source-available、local-first 的可观测性项目,把 A
31
31
  python -m pip install -U execweave
32
32
  ```
33
33
 
34
- 当前 `main` 的包版本是 **v0.6.9**。正式 release 可能晚于 main;要测试当前 mainline:
35
-
36
- ```bash
37
- python -m pip install --upgrade --force-reinstall "execweave @ git+https://github.com/Irish-kw/ExecWeave.git@main"
38
- ```
34
+ 当前正式版本是 **v0.6.9**。
39
35
 
40
36
  开发安装:
41
37
 
@@ -230,7 +226,7 @@ Portable filesystem observation 是 session-correlated,而不是 process-causa
230
226
 
231
227
  ## Performance 与 large-run safety
232
228
 
233
- v0.6.3 加入 bounded filesystem/viewer protection、incremental Live JSONL tailinglarge-graph safety guard;v0.6.4 加入 detached Top,以及 configured provider integration 共用的 provisional live sidecar。这些能力继续保留在 v0.6.9。本次 release **没有**仅为架构替换而把 Live 迁移到 SSE、artifact storage 改成 SQLite、renderer 改成 Canvas/WebGL,或把 collector 改写成 Rust
229
+ ExecWeave 包含 bounded filesystem/viewer protection、incremental Live JSONL tailinglarge-graph safety guarddetached Top,以及 configured provider integration 使用的 provisional live sidecar。
234
230
 
235
231
  可复现的 incremental `GraphAccumulator` reference result 在文档化 GitHub Actions workload 上,1M synthetic events 达到 **164,273 ev/s**。这是 graph accumulation benchmark,而不是 end-to-end collector/browser throughput。
236
232
 
@@ -273,8 +269,6 @@ ExecWeave 是 local-first:capture、content blob、graph、report、viewer 默
273
269
 
274
270
  ## 当前状态
275
271
 
276
- ExecWeave `main` 当前是 **v0.6.9**,正在进行 release hardening。最新公开 package/release 可能晚于 main;只有明确发布 GitHub Release 才会触发 publish workflow,且 workflow 会先验证 release tag 与 package version 完全一致,再上传 PyPI。
277
-
278
272
  v0.6.9 组合 cross-platform runtime collection、materialized execution graph、standalone/live viewer、保守的 provider↔runtime correlation、content-addressed full-fidelity provider evidence、evidence grades、bounded rule packs、明确的 runtime threat/fidelity contract,以及诚实描述信任边界的 local run-integrity sealing。Observed evidence 与 inference 从设计上保持分离。
279
273
 
280
274
  ## 文档
@@ -303,4 +297,4 @@ v0.6.9 组合 cross-platform runtime collection、materialized execution graph
303
297
 
304
298
  ## License
305
299
 
306
- ExecWeave v0.6.8 起采用 **PolyForm Noncommercial License 1.0.0**。依该许可可进行非商业使用、修改和分发;任何商业用途都需要另行取得书面商业许可。此前已按 MIT 发布的旧版本仍维持当时随附的许可条款。详见 [`LICENSE`](LICENSE)。
300
+ ExecWeave 采用 **PolyForm Noncommercial License 1.0.0**。依许可条款可进行非商业使用、修改和分发;商业用途需要另行取得许可方的书面商业许可。详见 [`LICENSE`](LICENSE)。
@@ -15,7 +15,7 @@
15
15
 
16
16
  **看見 AI Agent 在你的電腦上實際做了什麼。**
17
17
 
18
- ExecWeave 是一個 source-available、local-first 的可觀測性專案,會把 AI Agent 活動轉成互動式 execution graph,並明確區分 observed evidence、provider content 與 derived inference。自 v0.6.8 起採用 PolyForm Noncommercial 1.0.0,僅允許非商業用途。
18
+ ExecWeave 是一個 source-available、local-first 的可觀測性專案,會把 AI Agent 活動轉成互動式 execution graph,並明確區分 observed evidence、provider content 與 derived inference
19
19
 
20
20
  > **Event 是 ground truth;Graph 是 materialized view。**
21
21
 
@@ -31,11 +31,7 @@ ExecWeave 是一個 source-available、local-first 的可觀測性專案,會
31
31
  python -m pip install -U execweave
32
32
  ```
33
33
 
34
- 目前 `main` 的套件版本是 **v0.6.9**。正式 release 可能晚於 main;若要測試目前 mainline:
35
-
36
- ```bash
37
- python -m pip install --upgrade --force-reinstall "execweave @ git+https://github.com/Irish-kw/ExecWeave.git@main"
38
- ```
34
+ 目前正式版本是 **v0.6.9**。
39
35
 
40
36
  開發安裝:
41
37
 
@@ -230,7 +226,7 @@ Portable filesystem observation 是 session-correlated,不是 process-causal
230
226
 
231
227
  ## Performance 與 large-run safety
232
228
 
233
- v0.6.3 加入 bounded filesystem/viewer protection、incremental Live JSONL tailinglarge-graph safety guard;v0.6.4 加入 detached Top,以及 configured provider integration 共用的 provisional live sidecar。這些能力都保留在 v0.6.9。這次 release **沒有**僅為架構替換而把 Live 遷移到 SSE、artifact storage 改成 SQLite、renderer 改成 Canvas/WebGL,或把 collector 改寫成 Rust
229
+ ExecWeave 具備 bounded filesystem/viewer protection、incremental Live JSONL tailinglarge-graph safety guarddetached Top,以及 configured provider integration 使用的 provisional live sidecar。
234
230
 
235
231
  可重現的 incremental `GraphAccumulator` reference result 在文件化的 GitHub Actions workload 上,1M synthetic events 達到 **164,273 ev/s**。這是 graph accumulation benchmark,不是 end-to-end collector/browser throughput。
236
232
 
@@ -273,8 +269,6 @@ ExecWeave 是 local-first:capture、content blob、graph、report、viewer 預
273
269
 
274
270
  ## 目前狀態
275
271
 
276
- ExecWeave `main` 目前是 **v0.6.9**,正在進行 release hardening。最新公開 package/release 可能會晚於 main;只有明確發布 GitHub Release 才會觸發 publish workflow,而且 workflow 會先驗證 release tag 與 package version 完全一致再上傳 PyPI。
277
-
278
272
  v0.6.9 整合 cross-platform runtime collection、materialized execution graph、standalone/live viewer、保守的 provider↔runtime correlation、content-addressed full-fidelity provider evidence、evidence grades、bounded rule packs、明確的 runtime threat/fidelity contract,以及誠實定義信任邊界的 local run-integrity sealing。Observed evidence 與 inference 仍從設計上分離。
279
273
 
280
274
  ## 文件
@@ -303,4 +297,4 @@ v0.6.9 整合 cross-platform runtime collection、materialized execution graph
303
297
 
304
298
  ## License
305
299
 
306
- ExecWeave v0.6.8 起採用 **PolyForm Noncommercial License 1.0.0**。依該授權可作非商業使用、修改與散布;任何商業用途都需要另外取得書面商業授權。先前已依 MIT 發布的舊版本仍維持當時隨附的授權條款。詳見 [`LICENSE`](LICENSE)。
300
+ ExecWeave 採用 **PolyForm Noncommercial License 1.0.0**。依授權條款可進行非商業使用、修改與散布;商業用途需要另外取得授權方的書面商業授權。詳見 [`LICENSE`](LICENSE)。