execweave 0.6.7__tar.gz → 0.7.0__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.
- execweave-0.7.0/LICENSE +16 -0
- {execweave-0.6.7 → execweave-0.7.0}/PKG-INFO +29 -34
- {execweave-0.6.7 → execweave-0.7.0}/README.de.md +20 -22
- {execweave-0.6.7 → execweave-0.7.0}/README.fr.md +19 -21
- {execweave-0.6.7 → execweave-0.7.0}/README.ja.md +19 -21
- {execweave-0.6.7 → execweave-0.7.0}/README.ko.md +19 -21
- {execweave-0.6.7 → execweave-0.7.0}/README.md +15 -15
- {execweave-0.6.7 → execweave-0.7.0}/README.ru.md +19 -21
- {execweave-0.6.7 → execweave-0.7.0}/README.zh-CN.md +19 -21
- {execweave-0.6.7 → execweave-0.7.0}/README.zh-TW.md +19 -21
- execweave-0.7.0/docs/antigravity-hooks.md +78 -0
- execweave-0.7.0/docs/assets/codex.gif +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/pyproject.toml +3 -2
- {execweave-0.6.7 → execweave-0.7.0}/scripts/check_claude_hook.py +10 -15
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/__init__.py +1 -1
- execweave-0.7.0/src/execweave/agent_trace.py +1057 -0
- execweave-0.7.0/src/execweave/antigravity_adapter.py +76 -0
- execweave-0.6.7/src/execweave/antigravity_adapter.py → execweave-0.7.0/src/execweave/antigravity_adapter_base.py +67 -1
- execweave-0.7.0/src/execweave/antigravity_full_fidelity.py +167 -0
- execweave-0.6.7/src/execweave/antigravity_full_fidelity.py → execweave-0.7.0/src/execweave/antigravity_full_fidelity_base.py +57 -1
- execweave-0.7.0/src/execweave/antigravity_full_fidelity_collaboration_base.py +365 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/antigravity_hook_cli.py +51 -6
- execweave-0.7.0/src/execweave/antigravity_subagent_linkage.py +302 -0
- execweave-0.7.0/src/execweave/antigravity_trace_capability.py +39 -0
- execweave-0.7.0/src/execweave/claude_delegation.py +131 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/claude_hook_cli.py +84 -24
- execweave-0.7.0/src/execweave/claude_hook_contract.py +938 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/codex_adapter.py +51 -1
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/codex_hook_cli.py +39 -21
- execweave-0.7.0/src/execweave/codex_hook_lifecycle.py +329 -0
- execweave-0.7.0/src/execweave/codex_message_diagnostics.py +322 -0
- execweave-0.7.0/src/execweave/codex_message_transport_diagnostics.py +399 -0
- execweave-0.7.0/src/execweave/codex_record.py +199 -0
- execweave-0.7.0/src/execweave/codex_rollout_structures.py +402 -0
- execweave-0.7.0/src/execweave/codex_rollout_trace.py +56 -0
- execweave-0.7.0/src/execweave/codex_rollout_trace_base.py +1509 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/content_store.py +93 -0
- execweave-0.7.0/src/execweave/conversation_archive.py +223 -0
- execweave-0.7.0/src/execweave/conversation_records.py +209 -0
- execweave-0.7.0/src/execweave/cursor_delegation.py +87 -0
- execweave-0.7.0/src/execweave/cursor_delegation_base.py +215 -0
- execweave-0.7.0/src/execweave/cursor_full_fidelity.py +483 -0
- execweave-0.7.0/src/execweave/cursor_hook_cli.py +190 -0
- execweave-0.7.0/src/execweave/cursor_hook_contract.py +439 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/gemini_full_fidelity.py +6 -2
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/gemini_hook_cli.py +37 -16
- execweave-0.7.0/src/execweave/gemini_hook_contract.py +441 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/live.py +80 -3
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/live_view.py +42 -0
- execweave-0.7.0/src/execweave/opencode_event_contract.py +732 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/opencode_hook_cli.py +47 -5
- execweave-0.7.0/src/execweave/opencode_task_linkage.py +125 -0
- execweave-0.7.0/src/execweave/provider_lifecycle.py +282 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/provider_record.py +70 -7
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/theme.py +1 -0
- execweave-0.7.0/src/execweave/viewer_antigravity_linkage_inspector.py +49 -0
- execweave-0.7.0/src/execweave/viewer_content_inspector.py +309 -0
- execweave-0.7.0/src/execweave/viewer_conversation_panel.py +65 -0
- execweave-0.7.0/src/execweave/viewer_execution_inspector.py +43 -0
- execweave-0.7.0/src/execweave/viewer_projection.py +50 -0
- execweave-0.7.0/tests/test_agent_message_viewer.py +138 -0
- execweave-0.7.0/tests/test_agent_trace_lifecycle.py +82 -0
- execweave-0.7.0/tests/test_agent_trace_viewer_visibility.py +117 -0
- execweave-0.7.0/tests/test_antigravity_agent_collaboration.py +161 -0
- execweave-0.7.0/tests/test_antigravity_lifecycle.py +54 -0
- execweave-0.7.0/tests/test_antigravity_linkage_projection.py +100 -0
- execweave-0.7.0/tests/test_antigravity_official_contract.py +157 -0
- execweave-0.7.0/tests/test_antigravity_subagent_transcript_linkage.py +329 -0
- execweave-0.7.0/tests/test_antigravity_trace_capability_cli.py +48 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_claude_adapter.py +15 -15
- execweave-0.7.0/tests/test_claude_delegation.py +121 -0
- execweave-0.7.0/tests/test_claude_hook_contract.py +313 -0
- execweave-0.7.0/tests/test_claude_hook_metadata.py +60 -0
- execweave-0.7.0/tests/test_claude_hook_viewer.py +100 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_codex_adapter.py +4 -2
- execweave-0.7.0/tests/test_codex_hook_lifecycle.py +161 -0
- execweave-0.7.0/tests/test_codex_message_diagnostics.py +186 -0
- execweave-0.7.0/tests/test_codex_message_transport_diagnostics.py +184 -0
- execweave-0.7.0/tests/test_codex_reducer_command.py +83 -0
- execweave-0.7.0/tests/test_codex_rollout_structures.py +234 -0
- execweave-0.7.0/tests/test_codex_rollout_trace.py +393 -0
- execweave-0.7.0/tests/test_conversation_access.py +267 -0
- execweave-0.7.0/tests/test_cross_provider_agent_trace.py +264 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_cursor_adapter.py +19 -7
- execweave-0.7.0/tests/test_cursor_delegation.py +91 -0
- execweave-0.7.0/tests/test_cursor_full_fidelity.py +268 -0
- execweave-0.7.0/tests/test_cursor_hook_contract.py +127 -0
- execweave-0.7.0/tests/test_cursor_hook_fail_open.py +60 -0
- execweave-0.7.0/tests/test_cursor_task_linkage.py +96 -0
- execweave-0.7.0/tests/test_delegation_viewer.py +209 -0
- execweave-0.7.0/tests/test_execution_viewer.py +115 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_gemini_full_fidelity.py +8 -5
- execweave-0.7.0/tests/test_gemini_hook_contract.py +226 -0
- execweave-0.7.0/tests/test_gemini_lifecycle.py +75 -0
- execweave-0.7.0/tests/test_opencode_event_contract.py +246 -0
- execweave-0.7.0/tests/test_opencode_event_lifecycle.py +57 -0
- execweave-0.7.0/tests/test_opencode_task_session_linkage.py +125 -0
- execweave-0.7.0/tests/test_v069_dashboard_release.py +127 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_viewer_content_inspector.py +75 -0
- execweave-0.6.7/LICENSE +0 -21
- execweave-0.6.7/docs/antigravity-hooks.md +0 -55
- execweave-0.6.7/docs/assets/execweave-launch-demo-v5-x.gif +0 -0
- execweave-0.6.7/src/execweave/codex_record.py +0 -111
- execweave-0.6.7/src/execweave/cursor_full_fidelity.py +0 -203
- execweave-0.6.7/src/execweave/cursor_hook_cli.py +0 -101
- execweave-0.6.7/src/execweave/provider_lifecycle.py +0 -167
- execweave-0.6.7/src/execweave/viewer_content_inspector.py +0 -196
- execweave-0.6.7/tests/test_cursor_full_fidelity.py +0 -136
- {execweave-0.6.7 → execweave-0.7.0}/.github/workflows/ci.yml +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/.github/workflows/i18n.yml +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/.github/workflows/package-benchmark.yml +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/.github/workflows/package-smoke.yml +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/.github/workflows/publish.yml +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/.github/workflows/scalability.yml +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/.github/workflows/wheel-smoke.yml +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/.github/workflows/windows-launcher.yml +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/.gitignore +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/benchmarks/phase1_overhead.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/benchmarks/README.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/benchmarks/v0.6.0-github-actions.json +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/benchmarks/v0.6.0-github-actions.svg +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/claude-code-hooks.de.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/claude-code-hooks.fr.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/claude-code-hooks.ja.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/claude-code-hooks.ko.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/claude-code-hooks.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/claude-code-hooks.ru.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/claude-code-hooks.zh-CN.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/claude-code-hooks.zh-TW.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/codex-hooks.de.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/codex-hooks.fr.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/codex-hooks.ja.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/codex-hooks.ko.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/codex-hooks.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/codex-hooks.ru.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/codex-hooks.zh-CN.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/codex-hooks.zh-TW.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/cursor-hooks.de.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/cursor-hooks.fr.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/cursor-hooks.ja.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/cursor-hooks.ko.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/cursor-hooks.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/cursor-hooks.ru.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/cursor-hooks.zh-CN.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/cursor-hooks.zh-TW.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/evidence-grades.de.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/evidence-grades.fr.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/evidence-grades.ja.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/evidence-grades.ko.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/evidence-grades.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/evidence-grades.ru.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/evidence-grades.zh-CN.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/evidence-grades.zh-TW.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/gemini-hooks.de.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/gemini-hooks.fr.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/gemini-hooks.ja.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/gemini-hooks.ko.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/gemini-hooks.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/gemini-hooks.ru.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/gemini-hooks.zh-CN.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/gemini-hooks.zh-TW.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/inference-gateway.de.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/inference-gateway.fr.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/inference-gateway.ja.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/inference-gateway.ko.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/inference-gateway.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/inference-gateway.ru.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/inference-gateway.zh-CN.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/inference-gateway.zh-TW.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/live-graph.de.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/live-graph.fr.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/live-graph.ja.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/live-graph.ko.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/live-graph.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/live-graph.ru.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/live-graph.zh-CN.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/live-graph.zh-TW.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/model-runtime.de.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/model-runtime.fr.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/model-runtime.ja.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/model-runtime.ko.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/model-runtime.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/model-runtime.ru.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/model-runtime.zh-CN.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/model-runtime.zh-TW.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/opencode-plugin.de.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/opencode-plugin.fr.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/opencode-plugin.ja.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/opencode-plugin.ko.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/opencode-plugin.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/opencode-plugin.ru.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/opencode-plugin.zh-CN.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/opencode-plugin.zh-TW.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/phase-1-runtime-collection.de.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/phase-1-runtime-collection.fr.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/phase-1-runtime-collection.ja.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/phase-1-runtime-collection.ko.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/phase-1-runtime-collection.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/phase-1-runtime-collection.ru.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/phase-1-runtime-collection.zh-CN.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/phase-1-runtime-collection.zh-TW.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/phase-2-execution-graph.de.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/phase-2-execution-graph.fr.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/phase-2-execution-graph.ja.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/phase-2-execution-graph.ko.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/phase-2-execution-graph.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/phase-2-execution-graph.ru.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/phase-2-execution-graph.zh-CN.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/phase-2-execution-graph.zh-TW.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/rule-packs.de.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/rule-packs.fr.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/rule-packs.ja.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/rule-packs.ko.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/rule-packs.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/rule-packs.ru.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/rule-packs.zh-CN.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/rule-packs.zh-TW.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/run-integrity.de.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/run-integrity.fr.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/run-integrity.ja.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/run-integrity.ko.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/run-integrity.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/run-integrity.ru.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/run-integrity.zh-CN.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/run-integrity.zh-TW.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/runtime-threat-model.de.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/runtime-threat-model.fr.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/runtime-threat-model.ja.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/runtime-threat-model.ko.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/runtime-threat-model.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/runtime-threat-model.ru.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/runtime-threat-model.zh-CN.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/runtime-threat-model.zh-TW.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/security-analysis.de.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/security-analysis.fr.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/security-analysis.ja.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/security-analysis.ko.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/security-analysis.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/security-analysis.ru.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/security-analysis.zh-CN.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/security-analysis.zh-TW.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/semantic-telemetry.de.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/semantic-telemetry.fr.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/semantic-telemetry.ja.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/semantic-telemetry.ko.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/semantic-telemetry.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/semantic-telemetry.ru.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/semantic-telemetry.zh-CN.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/semantic-telemetry.zh-TW.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/docs/v0.6.5-hardening-decisions.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/audit_i18n_parity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/check_claude_record_graph.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/check_codex_hook.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/check_correlation_graph.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/check_inference_gateway_cli.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/check_model_runtime_cli.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/check_openai_compatible_cli.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/check_semantic_graph.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/check_viewer_js.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/check_wheel_install.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/check_windows_launchers.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/emit_claude_hook_smoke.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/emit_cursor_hook_smoke.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/emit_gemini_hook_smoke.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/emit_opencode_plugin_smoke.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/make_semantic_smoke.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/scripts/sync_i18n_nav.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/__main__.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/agent_bootstrap.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/analysis.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/anthropic.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/anthropic_cli.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/anthropic_full_fidelity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/antigravity_record.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/auto_specialized.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/backends.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/benchmark.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/claude_adapter.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/claude_full_fidelity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/claude_model_observer.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/claude_record.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/cli.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/codex_full_fidelity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/collector.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/command.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/content_evidence.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/correlation.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/cursor_adapter.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/cursor_record.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/entry.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/evidence_grade.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/fidelity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/filesystem.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/focus.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/gemini_adapter.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/gemini_record.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/graph.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/graph_ops.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/http_proxy.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/http_proxy_cli.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/inference_gateway.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/inference_gateway_cli.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/inference_gateway_full_fidelity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/inference_identity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/inference_identity_cli.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/integrity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/integrity_cli.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/litellm_callback.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/litellm_callback_cli.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/live_core.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/live_view_extra_style.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/live_view_markup.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/live_view_script_a.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/live_view_script_b.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/live_view_script_c.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/live_view_script_d.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/live_view_style.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/model_runtime.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/model_runtime_cli.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/model_runtime_full_fidelity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/openai_compatible.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/openai_compatible_cli.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/openai_compatible_full_fidelity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/opencode_adapter.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/opencode_full_fidelity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/opencode_plugin_cli.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/opencode_record.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/overhead_benchmark.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/rule_pack.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/rule_pack_cli.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/scalability_benchmark.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/schema.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/scope.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/semantic.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/sink.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/strace_backend.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/top.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/top_cli.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/validate.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/view_cli.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/viewer.py +0 -0
- /execweave-0.6.7/src/execweave/viewer_projection.py → /execweave-0.7.0/src/execweave/viewer_projection_base.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/src/execweave/workflow.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/fixtures/hooks/README.md +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/fixtures/hooks/claude.json +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/fixtures/hooks/codex.json +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/fixtures/hooks/cursor.json +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/fixtures/hooks/gemini.json +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/fixtures/hooks/manifest.json +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/fixtures/hooks/opencode.json +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_agent_bootstrap.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_analysis.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_anthropic.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_antigravity_cursor_launch.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_auto_specialized.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_backends.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_claude_full_fidelity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_claude_model_observer.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_claude_record.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_codex_full_fidelity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_codex_record.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_collector.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_command.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_condense.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_correlation.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_correlation_canonical_path.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_correlation_checker.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_correlation_process_exe.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_cursor_record.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_dashboard_ux_and_hook_projection.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_evidence_grade.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_fidelity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_filesystem_resilience.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_focus.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_full_fidelity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_gemini_adapter.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_gemini_record.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_graph.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_graph_ops.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_hook_fixture_corpus.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_http_proxy.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_inference_gateway.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_inference_gateway_full_fidelity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_inference_identity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_integrity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_litellm_callback.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_live.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_live_auth.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_live_dashboard.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_live_dashboard_js.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_live_delta.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_live_logs_export.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_live_theme.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_lmstudio_auto_specialized.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_model_runtime.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_model_runtime_full_fidelity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_openai_compatible.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_opencode_adapter.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_opencode_full_fidelity.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_opencode_plugin.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_opencode_record.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_overhead_benchmark.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_provider_lifecycle.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_rule_pack.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_schema.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_scope.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_semantic.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_strace_backend.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_threat_model.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_top_detached.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_v063_features.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_v064_live_auto_integrations.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_v064_live_evidence.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_validate.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_version.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_viewer.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_viewer_projection.py +0 -0
- {execweave-0.6.7 → execweave-0.7.0}/tests/test_workflow.py +0 -0
execweave-0.7.0/LICENSE
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
PolyForm Noncommercial License 1.0.0
|
|
2
|
+
|
|
3
|
+
This software is licensed under the PolyForm Noncommercial License 1.0.0.
|
|
4
|
+
The complete license terms are available at:
|
|
5
|
+
https://polyformproject.org/licenses/noncommercial/1.0.0
|
|
6
|
+
|
|
7
|
+
Required Notice: Copyright (c) 2026 GWW
|
|
8
|
+
|
|
9
|
+
Commercial use is not permitted under this license. Any commercial use,
|
|
10
|
+
including use in or for a commercial product or service, requires a separate
|
|
11
|
+
written commercial license from the licensor.
|
|
12
|
+
|
|
13
|
+
For the avoidance of doubt, this license change applies to versions released
|
|
14
|
+
under these terms. Earlier versions that were already distributed under the
|
|
15
|
+
MIT License remain available under the license terms that accompanied those
|
|
16
|
+
versions.
|
|
@@ -1,40 +1,35 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: execweave
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.0
|
|
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
|
|
7
7
|
Project-URL: Documentation, https://github.com/Irish-kw/ExecWeave#documentation
|
|
8
8
|
Project-URL: Issues, https://github.com/Irish-kw/ExecWeave/issues
|
|
9
9
|
Author: ExecWeave contributors
|
|
10
|
-
License:
|
|
10
|
+
License: PolyForm Noncommercial License 1.0.0
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
This software is licensed under the PolyForm Noncommercial License 1.0.0.
|
|
13
|
+
The complete license terms are available at:
|
|
14
|
+
https://polyformproject.org/licenses/noncommercial/1.0.0
|
|
13
15
|
|
|
14
|
-
|
|
15
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
16
|
-
in the Software without restriction, including without limitation the rights
|
|
17
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
18
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
19
|
-
furnished to do so, subject to the following conditions:
|
|
16
|
+
Required Notice: Copyright (c) 2026 GWW
|
|
20
17
|
|
|
21
|
-
|
|
22
|
-
|
|
18
|
+
Commercial use is not permitted under this license. Any commercial use,
|
|
19
|
+
including use in or for a commercial product or service, requires a separate
|
|
20
|
+
written commercial license from the licensor.
|
|
23
21
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
29
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
30
|
-
SOFTWARE.
|
|
22
|
+
For the avoidance of doubt, this license change applies to versions released
|
|
23
|
+
under these terms. Earlier versions that were already distributed under the
|
|
24
|
+
MIT License remain available under the license terms that accompanied those
|
|
25
|
+
versions.
|
|
31
26
|
License-File: LICENSE
|
|
32
27
|
Keywords: ai-agents,execution-graph,observability,provenance,runtime,security
|
|
33
28
|
Classifier: Development Status :: 4 - Beta
|
|
34
29
|
Classifier: Environment :: Console
|
|
35
30
|
Classifier: Intended Audience :: Developers
|
|
36
31
|
Classifier: Intended Audience :: Information Technology
|
|
37
|
-
Classifier: License ::
|
|
32
|
+
Classifier: License :: Other/Proprietary License
|
|
38
33
|
Classifier: Operating System :: OS Independent
|
|
39
34
|
Classifier: Programming Language :: Python :: 3
|
|
40
35
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -71,12 +66,12 @@ Description-Content-Type: text/markdown
|
|
|
71
66
|
|
|
72
67
|
**See what AI agents actually do on your machine.**
|
|
73
68
|
|
|
74
|
-
ExecWeave is
|
|
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.
|
|
75
70
|
|
|
76
71
|
> **Event is ground truth. The graph is a materialized view.**
|
|
77
72
|
|
|
78
73
|
<p align="center">
|
|
79
|
-
<img src="docs/assets/
|
|
74
|
+
<img src="docs/assets/codex.gif" alt="ExecWeave animated live demo" width="100%">
|
|
80
75
|
</p>
|
|
81
76
|
|
|
82
77
|
## Install
|
|
@@ -87,11 +82,7 @@ Install the latest published wheel/sdist from PyPI:
|
|
|
87
82
|
python -m pip install -U execweave
|
|
88
83
|
```
|
|
89
84
|
|
|
90
|
-
The
|
|
91
|
-
|
|
92
|
-
```bash
|
|
93
|
-
python -m pip install --upgrade --force-reinstall "execweave @ git+https://github.com/Irish-kw/ExecWeave.git@main"
|
|
94
|
-
```
|
|
85
|
+
The current release is **v0.7.0**.
|
|
95
86
|
|
|
96
87
|
For development:
|
|
97
88
|
|
|
@@ -127,9 +118,13 @@ execweave record --open -- python my_agent.py
|
|
|
127
118
|
|
|
128
119
|
`execweave top -- codex` keeps the Agent interactive in the launch terminal while opening/attaching the detached Top dashboard according to the host environment.
|
|
129
120
|
|
|
130
|
-
|
|
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.
|
|
131
122
|
|
|
132
|
-
|
|
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
|
+
## v0.6.9: full-fidelity observability with explicit evidence boundaries
|
|
126
|
+
|
|
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.
|
|
133
128
|
|
|
134
129
|
```text
|
|
135
130
|
<run-root>/content/sha256/<sha256>.<json|txt|bin>
|
|
@@ -287,7 +282,7 @@ Portable filesystem observation is session-correlated rather than process-causal
|
|
|
287
282
|
|
|
288
283
|
## Performance and large-run safety
|
|
289
284
|
|
|
290
|
-
|
|
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.
|
|
291
286
|
|
|
292
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.
|
|
293
288
|
|
|
@@ -311,6 +306,8 @@ A provider-integrated run may contain:
|
|
|
311
306
|
├── viewer.html
|
|
312
307
|
├── semantic.jsonl
|
|
313
308
|
├── content/sha256/...
|
|
309
|
+
├── conversations.md
|
|
310
|
+
├── conversations.json
|
|
314
311
|
├── events.semantic.jsonl
|
|
315
312
|
├── graph.semantic.json
|
|
316
313
|
├── viewer.semantic.html
|
|
@@ -324,15 +321,13 @@ Derived correlation never rewrites the raw runtime or provider sidecar evidence.
|
|
|
324
321
|
|
|
325
322
|
## Privacy
|
|
326
323
|
|
|
327
|
-
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
|
|
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.
|
|
328
325
|
|
|
329
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.
|
|
330
327
|
|
|
331
328
|
## Current status
|
|
332
329
|
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
v0.6.5 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.0 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.
|
|
336
331
|
|
|
337
332
|
## Documentation
|
|
338
333
|
|
|
@@ -360,4 +355,4 @@ Contributions are welcome, especially around native OS collectors, Agent/IDE ada
|
|
|
360
355
|
|
|
361
356
|
## License
|
|
362
357
|
|
|
363
|
-
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,12 +15,12 @@
|
|
|
15
15
|
|
|
16
16
|
**Sehen Sie, was KI-Agenten auf Ihrem Rechner tatsächlich tun.**
|
|
17
17
|
|
|
18
|
-
ExecWeave ist ein
|
|
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
|
|
|
22
22
|
<p align="center">
|
|
23
|
-
<img src="docs/assets/
|
|
23
|
+
<img src="docs/assets/codex.gif" alt="ExecWeave animated live demo" width="100%">
|
|
24
24
|
</p>
|
|
25
25
|
|
|
26
26
|
## Installation
|
|
@@ -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
|
|
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
|
|
|
@@ -52,13 +48,17 @@ Live OS-runtime telemetry funktioniert mit **jedem lokalen Befehl**. Die unten g
|
|
|
52
48
|
```bash
|
|
53
49
|
execweave live --open -- claude
|
|
54
50
|
execweave live --open -- codex
|
|
55
|
-
execweave live --open --
|
|
51
|
+
execweave live --open -- antigravity
|
|
56
52
|
execweave live --open -- cursor
|
|
57
53
|
execweave live --open -- opencode
|
|
58
54
|
execweave live --open -- ollama serve
|
|
59
55
|
execweave live --open -- python my_agent.py
|
|
60
56
|
```
|
|
61
57
|
|
|
58
|
+
> **Bestätigen Sie den Hook, wenn Sie dazu aufgefordert werden.** Beim ersten provider-integrierten Lauf kann der Agent/die IDE fragen, ob ExecWeave die lokale Hook-Integration aktivieren darf. Wählen Sie **Allow / Yes**. Ohne Zustimmung kann OS-runtime telemetry weiterhin funktionieren, aber provider-level Tool-, Model- und supplied-content observability wird eingeschränkt oder nicht verfügbar sein.
|
|
59
|
+
|
|
60
|
+
Google Antigravity verwendet aktuell den `agy`-CLI-Befehl; ExecWeave akzeptiert auch `antigravity` als Alias und löst ihn zu `agy` auf. Für Cursor verwendet `execweave live --open -- cursor` zuerst einen PATH-Launcher und fällt unter macOS/Windows bei Bedarf auf das standardmäßige Cursor-Desktop-Binary zurück.
|
|
61
|
+
|
|
62
62
|
Oder erstellen Sie die finalisierte Artifact-Pipeline:
|
|
63
63
|
|
|
64
64
|
```bash
|
|
@@ -67,15 +67,15 @@ execweave record --open -- python my_agent.py
|
|
|
67
67
|
|
|
68
68
|
`execweave top -- codex` hält den Agent im Startterminal interaktiv und öffnet beziehungsweise verbindet das detached Top dashboard entsprechend der Host-Umgebung.
|
|
69
69
|
|
|
70
|
-
## v0.6.
|
|
70
|
+
## v0.6.9: Full-fidelity observability mit expliziten Evidence Boundaries
|
|
71
71
|
|
|
72
|
-
v0.6.
|
|
72
|
+
v0.6.9 erweitert die Observability über kompakte Metadaten hinaus. Wenn ein unterstützter Integration Point Inhalte ausdrücklich liefert, kann ExecWeave **den vollständigen von dieser Quelle gelieferten Wert** in einem lokalen SHA-256 content-addressed store bewahren und im semantic event stream nur eine Referenz ablegen.
|
|
73
73
|
|
|
74
74
|
```text
|
|
75
75
|
<run-root>/content/sha256/<sha256>.<json|txt|bin>
|
|
76
76
|
```
|
|
77
77
|
|
|
78
|
-
Je nach Adapter und Upstream-Hook/API-Surface können unter anderem Prompts/
|
|
78
|
+
Je nach Adapter und Upstream-Hook/API-Surface können unter anderem Prompts/messages, Model-request/response-Objekte, Tool-input/result, explizit exponierter reasoning/thinking text, Shell/MCP-output sowie durch Provider-Hooks gelieferter File Content erhalten bleiben.
|
|
79
79
|
|
|
80
80
|
`complete_from_source: true` bedeutet nur, dass ExecWeave den vollständigen Wert gespeichert hat, den dieser Integration Point geliefert hat. Es bedeutet **nicht**, dass ExecWeave hidden model state, nie exponierte Provider-Stufen, einen ungesehenen finalen Wire Request oder Bytes beobachtet hat, die nicht interceptet wurden.
|
|
81
81
|
|
|
@@ -87,7 +87,7 @@ Full fidelity verändert auch die Privacy Boundary: Application-level secrets, d
|
|
|
87
87
|
| --- | --- | --- |
|
|
88
88
|
| Claude Code | Yes | native hooks + vom Hook gelieferter full-fidelity content |
|
|
89
89
|
| OpenAI Codex | Yes | lifecycle hooks + vom Hook gelieferter full-fidelity content |
|
|
90
|
-
|
|
|
90
|
+
| Google Antigravity / Antigravity CLI | Yes | passive native hooks for invocation/tool evidence + full-fidelity values explicitly supplied to those hooks |
|
|
91
91
|
| Cursor | Yes | native hooks + vom Hook gelieferter full-fidelity content |
|
|
92
92
|
| OpenCode | Yes | project plugin + vom Plugin gelieferter full-fidelity content |
|
|
93
93
|
| Ollama | Yes | `execweave-model-runtime event/exchange/probe --runtime ollama` |
|
|
@@ -137,8 +137,8 @@ execweave-claude-record --open -- claude
|
|
|
137
137
|
execweave-codex-hook --print-config
|
|
138
138
|
execweave-codex-record --open -- codex
|
|
139
139
|
|
|
140
|
-
execweave-
|
|
141
|
-
execweave-
|
|
140
|
+
execweave-antigravity-hook --print-config
|
|
141
|
+
execweave-antigravity-record --open -- antigravity
|
|
142
142
|
|
|
143
143
|
execweave-cursor-hook --print-config
|
|
144
144
|
execweave-cursor-record --open -- cursor
|
|
@@ -147,7 +147,7 @@ execweave-opencode-plugin --install
|
|
|
147
147
|
execweave-opencode-record --open -- opencode
|
|
148
148
|
```
|
|
149
149
|
|
|
150
|
-
Provider-integrierte Recorder halten raw runtime, semantic und correlated artifacts getrennt. Stabile Provider-Identifier wie Cursor `tool_use_id` oder OpenCode `sessionID + callID` belegen logische Identität innerhalb des Providers, sind aber keine OS-PIDs.
|
|
150
|
+
Provider-integrierte Recorder halten raw runtime, semantic und correlated artifacts getrennt. Stabile Provider-Identifier wie Cursor `tool_use_id` oder OpenCode `sessionID + callID` belegen logische Identität innerhalb des Providers, sind aber keine OS-PIDs. Legacy Gemini CLI Hook Entry Points bleiben für bestehende Installationen erhalten; neue Google-CLI-Nutzung sollte Antigravity (`agy`) verwenden.
|
|
151
151
|
|
|
152
152
|
## Inference Gateways und Model Runtimes
|
|
153
153
|
|
|
@@ -224,7 +224,7 @@ Portable Filesystem Observation ist session-correlated und nicht process-causal;
|
|
|
224
224
|
|
|
225
225
|
## Performance und Large-run Safety
|
|
226
226
|
|
|
227
|
-
|
|
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.
|
|
228
228
|
|
|
229
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.
|
|
230
230
|
|
|
@@ -259,15 +259,13 @@ Derived correlation schreibt die rohe Runtime- oder Provider-Sidecar-Evidence ni
|
|
|
259
259
|
|
|
260
260
|
## Privacy
|
|
261
261
|
|
|
262
|
-
ExecWeave ist local-first: Captures, Content Blobs, Graphen, Reports und Viewer bleiben standardmäßig lokal. Der **OS runtime collector** erfasst File Content oder rohe Read/write Byte Buffers nicht absichtlich. Diese Boundary darf nicht mit dem **provider full-fidelity content store** aus v0.6.
|
|
262
|
+
ExecWeave ist local-first: Captures, Content Blobs, Graphen, Reports und Viewer bleiben standardmäßig lokal. Der **OS runtime collector** erfasst File Content oder rohe Read/write Byte Buffers nicht absichtlich. Diese Boundary darf nicht mit dem **provider full-fidelity content store** aus v0.6.9 verwechselt werden: Wenn ein unterstützter Hook/API ausdrücklich Prompt, Tool-Argumente/-Ergebnisse, Model Response, reasoning/thinking text, Shell Output, File Content oder andere sensitive Werte liefert, kann ExecWeave diese vollständig bewahren.
|
|
263
263
|
|
|
264
264
|
Gehen Sie nicht davon aus, dass Content secret-redacted ist. Commands, Paths, Endpoint Metadata, Identifier, Model Metadata, Prompts, Tool Values und Content Blobs können alle sensitiv sein. Prüfen Sie das gesamte Run Directory vor dem Teilen.
|
|
265
265
|
|
|
266
266
|
## Aktueller Status
|
|
267
267
|
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
v0.6.5 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.
|
|
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.
|
|
271
269
|
|
|
272
270
|
## Dokumentation
|
|
273
271
|
|
|
@@ -277,7 +275,7 @@ v0.6.5 kombiniert cross-platform runtime collection, materialisierte Execution G
|
|
|
277
275
|
- [`Semantic Telemetry`](docs/semantic-telemetry.de.md)
|
|
278
276
|
- [`Claude Code Hooks`](docs/claude-code-hooks.de.md)
|
|
279
277
|
- [`OpenAI Codex Hooks`](docs/codex-hooks.de.md)
|
|
280
|
-
- [`
|
|
278
|
+
- [`Google Antigravity Hooks`](docs/antigravity-hooks.md)
|
|
281
279
|
- [`Cursor Hooks`](docs/cursor-hooks.de.md)
|
|
282
280
|
- [`OpenCode Plugin`](docs/opencode-plugin.de.md)
|
|
283
281
|
- [`Inference Gateway / OpenRouter / LiteLLM`](docs/inference-gateway.de.md)
|
|
@@ -295,4 +293,4 @@ Beiträge sind willkommen, besonders zu nativen OS Collectors, Agent-/IDE-Adapte
|
|
|
295
293
|
|
|
296
294
|
## License
|
|
297
295
|
|
|
298
|
-
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,12 +15,12 @@
|
|
|
15
15
|
|
|
16
16
|
**Voyez ce que les agents IA font réellement sur votre machine.**
|
|
17
17
|
|
|
18
|
-
ExecWeave est un projet
|
|
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
|
|
|
22
22
|
<p align="center">
|
|
23
|
-
<img src="docs/assets/
|
|
23
|
+
<img src="docs/assets/codex.gif" alt="ExecWeave animated live demo" width="100%">
|
|
24
24
|
</p>
|
|
25
25
|
|
|
26
26
|
## Installation
|
|
@@ -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
|
|
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
|
|
|
@@ -52,13 +48,17 @@ La télémétrie OS-runtime live fonctionne avec **n’importe quelle commande l
|
|
|
52
48
|
```bash
|
|
53
49
|
execweave live --open -- claude
|
|
54
50
|
execweave live --open -- codex
|
|
55
|
-
execweave live --open --
|
|
51
|
+
execweave live --open -- antigravity
|
|
56
52
|
execweave live --open -- cursor
|
|
57
53
|
execweave live --open -- opencode
|
|
58
54
|
execweave live --open -- ollama serve
|
|
59
55
|
execweave live --open -- python my_agent.py
|
|
60
56
|
```
|
|
61
57
|
|
|
58
|
+
> **Approuvez le hook lorsqu’une autorisation est demandée.** Lors du premier run provider-intégré, l’Agent/IDE peut demander si ExecWeave est autorisé à activer son hook local. Choisissez **Allow / Yes**. Sans cette autorisation, la télémétrie OS-runtime peut continuer à fonctionner, mais l’observabilité provider-level des tools, models et supplied content sera réduite ou indisponible.
|
|
59
|
+
|
|
60
|
+
Google Antigravity utilise actuellement la commande CLI `agy`; ExecWeave accepte également `antigravity` comme alias et le résout vers `agy`. Pour Cursor, `execweave live --open -- cursor` utilise d’abord un launcher dans le PATH, puis, sous macOS/Windows, le binaire standard de l’application Cursor desktop si nécessaire.
|
|
61
|
+
|
|
62
62
|
Ou construisez le pipeline d’artefacts finalisé :
|
|
63
63
|
|
|
64
64
|
```bash
|
|
@@ -67,9 +67,9 @@ execweave record --open -- python my_agent.py
|
|
|
67
67
|
|
|
68
68
|
`execweave top -- codex` garde l’Agent interactif dans le terminal de lancement et ouvre ou attache le tableau de bord Top détaché selon l’environnement hôte.
|
|
69
69
|
|
|
70
|
-
## v0.6.
|
|
70
|
+
## v0.6.9 : observabilité full-fidelity avec frontières de preuve explicites
|
|
71
71
|
|
|
72
|
-
v0.6.
|
|
72
|
+
v0.6.9 étend l’observabilité au-delà des métadonnées compactes. Lorsqu’un point d’intégration pris en charge fournit explicitement du contenu, ExecWeave peut conserver **la valeur complète fournie par cette source** dans un store local adressé par contenu SHA-256, tout en ne gardant qu’une référence dans le flux d’événements sémantiques.
|
|
73
73
|
|
|
74
74
|
```text
|
|
75
75
|
<run-root>/content/sha256/<sha256>.<json|txt|bin>
|
|
@@ -87,7 +87,7 @@ Le full fidelity modifie aussi la frontière de confidentialité : les secrets a
|
|
|
87
87
|
| --- | --- | --- |
|
|
88
88
|
| Claude Code | Yes | native hooks + contenu full-fidelity fourni par le hook |
|
|
89
89
|
| OpenAI Codex | Yes | lifecycle hooks + contenu full-fidelity fourni par le hook |
|
|
90
|
-
|
|
|
90
|
+
| Google Antigravity / Antigravity CLI | Yes | passive native hooks for invocation/tool evidence + full-fidelity values explicitly supplied to those hooks |
|
|
91
91
|
| Cursor | Yes | native hooks + contenu full-fidelity fourni par le hook |
|
|
92
92
|
| OpenCode | Yes | project plugin + contenu full-fidelity fourni par le plugin |
|
|
93
93
|
| Ollama | Yes | `execweave-model-runtime event/exchange/probe --runtime ollama` |
|
|
@@ -137,8 +137,8 @@ execweave-claude-record --open -- claude
|
|
|
137
137
|
execweave-codex-hook --print-config
|
|
138
138
|
execweave-codex-record --open -- codex
|
|
139
139
|
|
|
140
|
-
execweave-
|
|
141
|
-
execweave-
|
|
140
|
+
execweave-antigravity-hook --print-config
|
|
141
|
+
execweave-antigravity-record --open -- antigravity
|
|
142
142
|
|
|
143
143
|
execweave-cursor-hook --print-config
|
|
144
144
|
execweave-cursor-record --open -- cursor
|
|
@@ -147,7 +147,7 @@ execweave-opencode-plugin --install
|
|
|
147
147
|
execweave-opencode-record --open -- opencode
|
|
148
148
|
```
|
|
149
149
|
|
|
150
|
-
Les recorders intégrés aux providers conservent séparément les artefacts runtime bruts, semantic et correlated. Des identifiants provider stables tels que Cursor `tool_use_id` ou OpenCode `sessionID + callID` prouvent une identité logique chez le provider ; ils ne sont pas des PID OS.
|
|
150
|
+
Les recorders intégrés aux providers conservent séparément les artefacts runtime bruts, semantic et correlated. Des identifiants provider stables tels que Cursor `tool_use_id` ou OpenCode `sessionID + callID` prouvent une identité logique chez le provider ; ils ne sont pas des PID OS. Les anciens entry points Gemini CLI restent empaquetés pour compatibilité avec les installations existantes ; les nouveaux usages Google CLI doivent utiliser Antigravity (`agy`).
|
|
151
151
|
|
|
152
152
|
## Inference gateways et model runtimes
|
|
153
153
|
|
|
@@ -224,7 +224,7 @@ L’observation filesystem portable est session-correlated et non process-causal
|
|
|
224
224
|
|
|
225
225
|
## Performance et sécurité des grands runs
|
|
226
226
|
|
|
227
|
-
|
|
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.
|
|
228
228
|
|
|
229
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.
|
|
230
230
|
|
|
@@ -259,15 +259,13 @@ La corrélation dérivée ne réécrit jamais les preuves runtime brutes ou le s
|
|
|
259
259
|
|
|
260
260
|
## Confidentialité
|
|
261
261
|
|
|
262
|
-
ExecWeave est local-first : captures, blobs de contenu, graphes, rapports et viewers restent locaux par défaut. Le **collector OS runtime** ne capture pas intentionnellement le contenu des fichiers ni les buffers raw read/write. Cette frontière ne doit pas être confondue avec le **provider full-fidelity content store** de v0.6.
|
|
262
|
+
ExecWeave est local-first : captures, blobs de contenu, graphes, rapports et viewers restent locaux par défaut. Le **collector OS runtime** ne capture pas intentionnellement le contenu des fichiers ni les buffers raw read/write. Cette frontière ne doit pas être confondue avec le **provider full-fidelity content store** de v0.6.9 : si un hook/API pris en charge fournit explicitement prompt, arguments/résultats d’outil, réponse modèle, reasoning/thinking text, sortie shell, contenu de fichier ou autre valeur sensible, ExecWeave peut conserver cette valeur intégralement.
|
|
263
263
|
|
|
264
264
|
Ne supposez pas que le contenu a été secret-redacted. Commandes, chemins, endpoint metadata, identifiants, model metadata, prompts, valeurs d’outil et content blobs peuvent tous être sensibles. Vérifiez tout le run directory avant partage.
|
|
265
265
|
|
|
266
266
|
## État actuel
|
|
267
267
|
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
v0.6.5 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.
|
|
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.
|
|
271
269
|
|
|
272
270
|
## Documentation
|
|
273
271
|
|
|
@@ -277,7 +275,7 @@ v0.6.5 combine collection runtime cross-platform, graphes d’exécution matéri
|
|
|
277
275
|
- [`Semantic Telemetry`](docs/semantic-telemetry.fr.md)
|
|
278
276
|
- [`Claude Code Hooks`](docs/claude-code-hooks.fr.md)
|
|
279
277
|
- [`OpenAI Codex Hooks`](docs/codex-hooks.fr.md)
|
|
280
|
-
- [`
|
|
278
|
+
- [`Google Antigravity Hooks`](docs/antigravity-hooks.md)
|
|
281
279
|
- [`Cursor Hooks`](docs/cursor-hooks.fr.md)
|
|
282
280
|
- [`OpenCode Plugin`](docs/opencode-plugin.fr.md)
|
|
283
281
|
- [`Inference Gateway / OpenRouter / LiteLLM`](docs/inference-gateway.fr.md)
|
|
@@ -295,4 +293,4 @@ Les contributions sont bienvenues, notamment pour les collectors OS natifs, adap
|
|
|
295
293
|
|
|
296
294
|
## License
|
|
297
295
|
|
|
298
|
-
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,12 +15,12 @@
|
|
|
15
15
|
|
|
16
16
|
**AI Agent があなたのマシン上で実際に何をしているかを可視化します。**
|
|
17
17
|
|
|
18
|
-
ExecWeave
|
|
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
|
|
|
22
22
|
<p align="center">
|
|
23
|
-
<img src="docs/assets/
|
|
23
|
+
<img src="docs/assets/codex.gif" alt="ExecWeave animated live demo" width="100%">
|
|
24
24
|
</p>
|
|
25
25
|
|
|
26
26
|
## インストール
|
|
@@ -31,11 +31,7 @@ PyPI から最新の公開 wheel/sdist をインストールします。
|
|
|
31
31
|
python -m pip install -U execweave
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
|
|
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
|
|
|
@@ -52,13 +48,17 @@ Live OS-runtime telemetry は**任意のローカルコマンド**で利用で
|
|
|
52
48
|
```bash
|
|
53
49
|
execweave live --open -- claude
|
|
54
50
|
execweave live --open -- codex
|
|
55
|
-
execweave live --open --
|
|
51
|
+
execweave live --open -- antigravity
|
|
56
52
|
execweave live --open -- cursor
|
|
57
53
|
execweave live --open -- opencode
|
|
58
54
|
execweave live --open -- ollama serve
|
|
59
55
|
execweave live --open -- python my_agent.py
|
|
60
56
|
```
|
|
61
57
|
|
|
58
|
+
> **Hook の許可を求められたら承認してください。** 初回の provider-integrated run では、Agent/IDE が ExecWeave のローカル Hook integration を許可するか確認する場合があります。**Allow / Yes** を選択してください。許可しなくても OS-runtime telemetry は動作する場合がありますが、provider-level の tool、model、supplied-content observability は制限または利用不可になります。
|
|
59
|
+
|
|
60
|
+
Google Antigravity は現在 `agy` CLI を使用します。ExecWeave は `antigravity` を friendly alias として受け付け、`agy` に解決します。Cursor の `execweave live --open -- cursor` はまず PATH launcher を使用し、見つからない場合は macOS/Windows の標準 Cursor desktop application binary にフォールバックします。
|
|
61
|
+
|
|
62
62
|
または finalized artifact pipeline を作成します。
|
|
63
63
|
|
|
64
64
|
```bash
|
|
@@ -67,9 +67,9 @@ execweave record --open -- python my_agent.py
|
|
|
67
67
|
|
|
68
68
|
`execweave top -- codex` は Agent を起動 terminal で対話可能なまま保持し、ホスト環境に応じて detached Top dashboard を開くか attach します。
|
|
69
69
|
|
|
70
|
-
## v0.6.
|
|
70
|
+
## v0.6.9:明示的な evidence boundary を持つ full-fidelity observability
|
|
71
71
|
|
|
72
|
-
v0.6.
|
|
72
|
+
v0.6.9 は compact metadata だけでなく、対応 integration point が明示的に提供した content を保存できます。ExecWeave は**その source から提供された完全な値**をローカル SHA-256 content-addressed store に保存し、semantic event stream には reference のみを残します。
|
|
73
73
|
|
|
74
74
|
```text
|
|
75
75
|
<run-root>/content/sha256/<sha256>.<json|txt|bin>
|
|
@@ -87,7 +87,7 @@ Full fidelity は privacy boundary も変えます。Application-level secret
|
|
|
87
87
|
| --- | --- | --- |
|
|
88
88
|
| Claude Code | Yes | native hooks + hook が提供する full-fidelity content |
|
|
89
89
|
| OpenAI Codex | Yes | lifecycle hooks + hook が提供する full-fidelity content |
|
|
90
|
-
|
|
|
90
|
+
| Google Antigravity / Antigravity CLI | Yes | passive native hooks for invocation/tool evidence + full-fidelity values explicitly supplied to those hooks |
|
|
91
91
|
| Cursor | Yes | native hooks + hook が提供する full-fidelity content |
|
|
92
92
|
| OpenCode | Yes | project plugin + plugin が提供する full-fidelity content |
|
|
93
93
|
| Ollama | Yes | `execweave-model-runtime event/exchange/probe --runtime ollama` |
|
|
@@ -137,8 +137,8 @@ execweave-claude-record --open -- claude
|
|
|
137
137
|
execweave-codex-hook --print-config
|
|
138
138
|
execweave-codex-record --open -- codex
|
|
139
139
|
|
|
140
|
-
execweave-
|
|
141
|
-
execweave-
|
|
140
|
+
execweave-antigravity-hook --print-config
|
|
141
|
+
execweave-antigravity-record --open -- antigravity
|
|
142
142
|
|
|
143
143
|
execweave-cursor-hook --print-config
|
|
144
144
|
execweave-cursor-record --open -- cursor
|
|
@@ -147,7 +147,7 @@ execweave-opencode-plugin --install
|
|
|
147
147
|
execweave-opencode-record --open -- opencode
|
|
148
148
|
```
|
|
149
149
|
|
|
150
|
-
Provider-integrated recorder は raw runtime、semantic、correlated artifact を別々に保持します。Cursor `tool_use_id` や OpenCode `sessionID + callID` のような stable provider identifier は provider 内部の logical identity を示しますが、OS PID ではありません。
|
|
150
|
+
Provider-integrated recorder は raw runtime、semantic、correlated artifact を別々に保持します。Cursor `tool_use_id` や OpenCode `sessionID + callID` のような stable provider identifier は provider 内部の logical identity を示しますが、OS PID ではありません。Legacy Gemini CLI hook entry points は既存インストールとの互換性のため残りますが、新しい Google CLI 利用では Antigravity (`agy`) を使用してください。
|
|
151
151
|
|
|
152
152
|
## Inference gateway と model runtime
|
|
153
153
|
|
|
@@ -224,7 +224,7 @@ Portable filesystem observation は session-correlated であり process-causal
|
|
|
224
224
|
|
|
225
225
|
## Performance と large-run safety
|
|
226
226
|
|
|
227
|
-
|
|
227
|
+
ExecWeave は bounded filesystem/viewer protection、incremental Live JSONL tailing、large-graph safety guard、detached Top、configured provider integration 用 provisional live sidecar を備えています。
|
|
228
228
|
|
|
229
229
|
再現可能な incremental `GraphAccumulator` reference result は、文書化された GitHub Actions workload の 1M synthetic events で **164,273 ev/s** です。これは graph accumulation benchmark であり、end-to-end collector/browser throughput ではありません。
|
|
230
230
|
|
|
@@ -259,15 +259,13 @@ Derived correlation は raw runtime / provider sidecar evidence を書き換え
|
|
|
259
259
|
|
|
260
260
|
## Privacy
|
|
261
261
|
|
|
262
|
-
ExecWeave は local-first であり、capture、content blob、graph、report、viewer はデフォルトでローカルに残ります。**OS runtime collector** は file content や raw read/write byte buffer を意図的に取得しません。ただし、この境界を v0.6.
|
|
262
|
+
ExecWeave は local-first であり、capture、content blob、graph、report、viewer はデフォルトでローカルに残ります。**OS runtime collector** は file content や raw read/write byte buffer を意図的に取得しません。ただし、この境界を v0.6.9 の **provider full-fidelity content store** と混同してはいけません。対応 hook/API が prompt、tool argument/result、model response、reasoning/thinking text、shell output、file content などを明示的に提供した場合、それらは完全に保存される可能性があります。
|
|
263
263
|
|
|
264
264
|
Content が secret-redacted 済みだと仮定しないでください。Command、path、endpoint metadata、identifier、model metadata、prompt、tool value、content blob はすべて sensitive になり得ます。共有前に run directory 全体を確認してください。
|
|
265
265
|
|
|
266
266
|
## 現在の状態
|
|
267
267
|
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
v0.6.5 は 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 は設計上分離されています。
|
|
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 は設計上分離されています。
|
|
271
269
|
|
|
272
270
|
## ドキュメント
|
|
273
271
|
|
|
@@ -277,7 +275,7 @@ v0.6.5 は cross-platform runtime collection、materialized execution graph、st
|
|
|
277
275
|
- [`Semantic Telemetry`](docs/semantic-telemetry.ja.md)
|
|
278
276
|
- [`Claude Code Hooks`](docs/claude-code-hooks.ja.md)
|
|
279
277
|
- [`OpenAI Codex Hooks`](docs/codex-hooks.ja.md)
|
|
280
|
-
- [`
|
|
278
|
+
- [`Google Antigravity Hooks`](docs/antigravity-hooks.md)
|
|
281
279
|
- [`Cursor Hooks`](docs/cursor-hooks.ja.md)
|
|
282
280
|
- [`OpenCode Plugin`](docs/opencode-plugin.ja.md)
|
|
283
281
|
- [`Inference Gateway / OpenRouter / LiteLLM`](docs/inference-gateway.ja.md)
|
|
@@ -295,4 +293,4 @@ v0.6.5 は cross-platform runtime collection、materialized execution graph、st
|
|
|
295
293
|
|
|
296
294
|
## License
|
|
297
295
|
|
|
298
|
-
[`LICENSE`](LICENSE) を参照してください。
|
|
296
|
+
ExecWeave は **PolyForm Noncommercial License 1.0.0** の下で提供されます。非商用の利用・変更・再配布はその条件に従って許可され、商用利用にはライセンサーから別途書面による商用ライセンスが必要です。詳しくは [`LICENSE`](LICENSE) を参照してください。
|