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.
- execweave-0.7.1/.github/workflows/cleanup-workflow-history.yml +98 -0
- {execweave-0.6.9 → execweave-0.7.1}/PKG-INFO +13 -13
- {execweave-0.6.9 → execweave-0.7.1}/README.de.md +4 -10
- {execweave-0.6.9 → execweave-0.7.1}/README.fr.md +4 -10
- {execweave-0.6.9 → execweave-0.7.1}/README.ja.md +4 -10
- {execweave-0.6.9 → execweave-0.7.1}/README.ko.md +4 -10
- {execweave-0.6.9 → execweave-0.7.1}/README.md +12 -12
- {execweave-0.6.9 → execweave-0.7.1}/README.ru.md +4 -10
- {execweave-0.6.9 → execweave-0.7.1}/README.zh-CN.md +4 -10
- {execweave-0.6.9 → execweave-0.7.1}/README.zh-TW.md +4 -10
- execweave-0.7.1/docs/antigravity-hooks.md +78 -0
- {execweave-0.6.9 → execweave-0.7.1}/pyproject.toml +2 -2
- {execweave-0.6.9 → execweave-0.7.1}/scripts/audit_i18n_parity.py +1 -2
- {execweave-0.6.9 → execweave-0.7.1}/scripts/check_claude_hook.py +10 -15
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/__init__.py +1 -1
- execweave-0.7.1/src/execweave/agent_trace.py +1057 -0
- execweave-0.7.1/src/execweave/antigravity_adapter.py +76 -0
- execweave-0.6.9/src/execweave/antigravity_adapter.py → execweave-0.7.1/src/execweave/antigravity_adapter_base.py +67 -1
- execweave-0.7.1/src/execweave/antigravity_full_fidelity.py +167 -0
- execweave-0.6.9/src/execweave/antigravity_full_fidelity.py → execweave-0.7.1/src/execweave/antigravity_full_fidelity_base.py +57 -1
- execweave-0.7.1/src/execweave/antigravity_full_fidelity_collaboration_base.py +365 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/antigravity_hook_cli.py +51 -6
- execweave-0.7.1/src/execweave/antigravity_subagent_linkage.py +302 -0
- execweave-0.7.1/src/execweave/antigravity_trace_capability.py +39 -0
- execweave-0.7.1/src/execweave/claude_delegation.py +131 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/claude_hook_cli.py +84 -24
- execweave-0.7.1/src/execweave/claude_hook_contract.py +938 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/codex_adapter.py +51 -1
- execweave-0.7.1/src/execweave/codex_conversation.py +289 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/codex_hook_cli.py +54 -21
- execweave-0.7.1/src/execweave/codex_hook_lifecycle.py +329 -0
- execweave-0.7.1/src/execweave/codex_message_diagnostics.py +322 -0
- execweave-0.7.1/src/execweave/codex_message_transport_diagnostics.py +399 -0
- execweave-0.7.1/src/execweave/codex_record.py +199 -0
- execweave-0.7.1/src/execweave/codex_rollout_structures.py +402 -0
- execweave-0.7.1/src/execweave/codex_rollout_trace.py +56 -0
- execweave-0.7.1/src/execweave/codex_rollout_trace_base.py +1509 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/content_store.py +93 -0
- execweave-0.7.1/src/execweave/conversation_archive.py +320 -0
- execweave-0.7.1/src/execweave/conversation_preview.py +686 -0
- execweave-0.7.1/src/execweave/conversation_records.py +479 -0
- execweave-0.7.1/src/execweave/cursor_delegation.py +87 -0
- execweave-0.7.1/src/execweave/cursor_delegation_base.py +215 -0
- execweave-0.7.1/src/execweave/cursor_full_fidelity.py +483 -0
- execweave-0.7.1/src/execweave/cursor_hook_cli.py +190 -0
- execweave-0.7.1/src/execweave/cursor_hook_contract.py +439 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/gemini_full_fidelity.py +6 -2
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/gemini_hook_cli.py +37 -16
- execweave-0.7.1/src/execweave/gemini_hook_contract.py +441 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live.py +83 -2
- execweave-0.7.1/src/execweave/opencode_event_contract.py +732 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/opencode_hook_cli.py +47 -5
- execweave-0.7.1/src/execweave/opencode_task_linkage.py +125 -0
- execweave-0.7.1/src/execweave/provider_lifecycle.py +282 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/provider_record.py +70 -7
- execweave-0.7.1/src/execweave/viewer_antigravity_linkage_inspector.py +49 -0
- execweave-0.7.1/src/execweave/viewer_content_inspector.py +309 -0
- execweave-0.7.1/src/execweave/viewer_conversation_panel.py +101 -0
- execweave-0.7.1/src/execweave/viewer_conversation_tree.py +92 -0
- execweave-0.7.1/src/execweave/viewer_dashboard_clean.py +195 -0
- execweave-0.7.1/src/execweave/viewer_dashboard_focus.py +71 -0
- execweave-0.7.1/src/execweave/viewer_execution_inspector.py +43 -0
- execweave-0.7.1/src/execweave/viewer_live_layout.py +61 -0
- execweave-0.7.1/src/execweave/viewer_projection.py +69 -0
- execweave-0.7.1/tests/test_agent_message_viewer.py +138 -0
- execweave-0.7.1/tests/test_agent_trace_lifecycle.py +82 -0
- execweave-0.7.1/tests/test_agent_trace_viewer_visibility.py +117 -0
- execweave-0.7.1/tests/test_antigravity_agent_collaboration.py +161 -0
- execweave-0.7.1/tests/test_antigravity_lifecycle.py +54 -0
- execweave-0.7.1/tests/test_antigravity_linkage_projection.py +100 -0
- execweave-0.7.1/tests/test_antigravity_official_contract.py +157 -0
- execweave-0.7.1/tests/test_antigravity_subagent_transcript_linkage.py +329 -0
- execweave-0.7.1/tests/test_antigravity_trace_capability_cli.py +48 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_claude_adapter.py +15 -15
- execweave-0.7.1/tests/test_claude_delegation.py +121 -0
- execweave-0.7.1/tests/test_claude_hook_contract.py +313 -0
- execweave-0.7.1/tests/test_claude_hook_metadata.py +60 -0
- execweave-0.7.1/tests/test_claude_hook_viewer.py +100 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_codex_adapter.py +4 -2
- execweave-0.7.1/tests/test_codex_archive_full_fidelity.py +196 -0
- execweave-0.7.1/tests/test_codex_hook_lifecycle.py +161 -0
- execweave-0.7.1/tests/test_codex_message_diagnostics.py +186 -0
- execweave-0.7.1/tests/test_codex_message_transport_diagnostics.py +184 -0
- execweave-0.7.1/tests/test_codex_reducer_command.py +83 -0
- execweave-0.7.1/tests/test_codex_rollout_structures.py +234 -0
- execweave-0.7.1/tests/test_codex_rollout_trace.py +393 -0
- execweave-0.7.1/tests/test_conversation_access.py +267 -0
- execweave-0.7.1/tests/test_conversation_provider_parity.py +487 -0
- execweave-0.7.1/tests/test_cross_provider_agent_trace.py +264 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_cursor_adapter.py +19 -7
- execweave-0.7.1/tests/test_cursor_delegation.py +91 -0
- execweave-0.7.1/tests/test_cursor_full_fidelity.py +268 -0
- execweave-0.7.1/tests/test_cursor_hook_contract.py +127 -0
- execweave-0.7.1/tests/test_cursor_hook_fail_open.py +60 -0
- execweave-0.7.1/tests/test_cursor_task_linkage.py +96 -0
- execweave-0.7.1/tests/test_dashboard_information_architecture.py +240 -0
- execweave-0.7.1/tests/test_dashboard_simplification.py +205 -0
- execweave-0.7.1/tests/test_delegation_viewer.py +209 -0
- execweave-0.7.1/tests/test_execution_viewer.py +115 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_gemini_full_fidelity.py +8 -5
- execweave-0.7.1/tests/test_gemini_hook_contract.py +226 -0
- execweave-0.7.1/tests/test_gemini_lifecycle.py +75 -0
- execweave-0.7.1/tests/test_opencode_event_contract.py +246 -0
- execweave-0.7.1/tests/test_opencode_event_lifecycle.py +57 -0
- execweave-0.7.1/tests/test_opencode_task_session_linkage.py +125 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_v069_dashboard_release.py +7 -5
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_viewer_content_inspector.py +75 -0
- execweave-0.6.9/docs/antigravity-hooks.md +0 -55
- execweave-0.6.9/src/execweave/codex_record.py +0 -111
- execweave-0.6.9/src/execweave/cursor_full_fidelity.py +0 -203
- execweave-0.6.9/src/execweave/cursor_hook_cli.py +0 -101
- execweave-0.6.9/src/execweave/provider_lifecycle.py +0 -167
- execweave-0.6.9/src/execweave/viewer_content_inspector.py +0 -196
- execweave-0.6.9/tests/test_cursor_full_fidelity.py +0 -136
- {execweave-0.6.9 → execweave-0.7.1}/.github/workflows/ci.yml +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/.github/workflows/i18n.yml +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/.github/workflows/package-benchmark.yml +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/.github/workflows/package-smoke.yml +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/.github/workflows/publish.yml +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/.github/workflows/scalability.yml +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/.github/workflows/wheel-smoke.yml +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/.github/workflows/windows-launcher.yml +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/.gitignore +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/LICENSE +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/benchmarks/phase1_overhead.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/assets/codex.gif +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/benchmarks/README.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/benchmarks/v0.6.0-github-actions.json +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/benchmarks/v0.6.0-github-actions.svg +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/claude-code-hooks.de.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/claude-code-hooks.fr.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/claude-code-hooks.ja.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/claude-code-hooks.ko.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/claude-code-hooks.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/claude-code-hooks.ru.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/claude-code-hooks.zh-CN.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/claude-code-hooks.zh-TW.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/codex-hooks.de.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/codex-hooks.fr.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/codex-hooks.ja.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/codex-hooks.ko.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/codex-hooks.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/codex-hooks.ru.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/codex-hooks.zh-CN.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/codex-hooks.zh-TW.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/cursor-hooks.de.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/cursor-hooks.fr.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/cursor-hooks.ja.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/cursor-hooks.ko.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/cursor-hooks.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/cursor-hooks.ru.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/cursor-hooks.zh-CN.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/cursor-hooks.zh-TW.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/evidence-grades.de.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/evidence-grades.fr.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/evidence-grades.ja.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/evidence-grades.ko.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/evidence-grades.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/evidence-grades.ru.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/evidence-grades.zh-CN.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/evidence-grades.zh-TW.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/gemini-hooks.de.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/gemini-hooks.fr.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/gemini-hooks.ja.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/gemini-hooks.ko.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/gemini-hooks.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/gemini-hooks.ru.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/gemini-hooks.zh-CN.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/gemini-hooks.zh-TW.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/inference-gateway.de.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/inference-gateway.fr.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/inference-gateway.ja.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/inference-gateway.ko.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/inference-gateway.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/inference-gateway.ru.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/inference-gateway.zh-CN.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/inference-gateway.zh-TW.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/live-graph.de.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/live-graph.fr.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/live-graph.ja.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/live-graph.ko.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/live-graph.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/live-graph.ru.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/live-graph.zh-CN.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/live-graph.zh-TW.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/model-runtime.de.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/model-runtime.fr.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/model-runtime.ja.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/model-runtime.ko.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/model-runtime.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/model-runtime.ru.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/model-runtime.zh-CN.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/model-runtime.zh-TW.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/opencode-plugin.de.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/opencode-plugin.fr.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/opencode-plugin.ja.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/opencode-plugin.ko.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/opencode-plugin.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/opencode-plugin.ru.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/opencode-plugin.zh-CN.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/opencode-plugin.zh-TW.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/phase-1-runtime-collection.de.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/phase-1-runtime-collection.fr.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/phase-1-runtime-collection.ja.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/phase-1-runtime-collection.ko.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/phase-1-runtime-collection.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/phase-1-runtime-collection.ru.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/phase-1-runtime-collection.zh-CN.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/phase-1-runtime-collection.zh-TW.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/phase-2-execution-graph.de.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/phase-2-execution-graph.fr.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/phase-2-execution-graph.ja.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/phase-2-execution-graph.ko.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/phase-2-execution-graph.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/phase-2-execution-graph.ru.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/phase-2-execution-graph.zh-CN.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/phase-2-execution-graph.zh-TW.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/rule-packs.de.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/rule-packs.fr.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/rule-packs.ja.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/rule-packs.ko.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/rule-packs.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/rule-packs.ru.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/rule-packs.zh-CN.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/rule-packs.zh-TW.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/run-integrity.de.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/run-integrity.fr.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/run-integrity.ja.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/run-integrity.ko.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/run-integrity.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/run-integrity.ru.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/run-integrity.zh-CN.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/run-integrity.zh-TW.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/runtime-threat-model.de.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/runtime-threat-model.fr.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/runtime-threat-model.ja.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/runtime-threat-model.ko.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/runtime-threat-model.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/runtime-threat-model.ru.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/runtime-threat-model.zh-CN.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/runtime-threat-model.zh-TW.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/security-analysis.de.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/security-analysis.fr.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/security-analysis.ja.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/security-analysis.ko.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/security-analysis.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/security-analysis.ru.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/security-analysis.zh-CN.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/security-analysis.zh-TW.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/semantic-telemetry.de.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/semantic-telemetry.fr.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/semantic-telemetry.ja.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/semantic-telemetry.ko.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/semantic-telemetry.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/semantic-telemetry.ru.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/semantic-telemetry.zh-CN.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/semantic-telemetry.zh-TW.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/docs/v0.6.5-hardening-decisions.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/scripts/check_claude_record_graph.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/scripts/check_codex_hook.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/scripts/check_correlation_graph.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/scripts/check_inference_gateway_cli.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/scripts/check_model_runtime_cli.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/scripts/check_openai_compatible_cli.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/scripts/check_semantic_graph.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/scripts/check_viewer_js.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/scripts/check_wheel_install.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/scripts/check_windows_launchers.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/scripts/emit_claude_hook_smoke.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/scripts/emit_cursor_hook_smoke.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/scripts/emit_gemini_hook_smoke.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/scripts/emit_opencode_plugin_smoke.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/scripts/make_semantic_smoke.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/scripts/sync_i18n_nav.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/__main__.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/agent_bootstrap.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/analysis.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/anthropic.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/anthropic_cli.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/anthropic_full_fidelity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/antigravity_record.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/auto_specialized.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/backends.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/benchmark.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/claude_adapter.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/claude_full_fidelity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/claude_model_observer.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/claude_record.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/cli.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/codex_full_fidelity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/collector.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/command.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/content_evidence.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/correlation.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/cursor_adapter.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/cursor_record.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/entry.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/evidence_grade.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/fidelity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/filesystem.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/focus.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/gemini_adapter.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/gemini_record.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/graph.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/graph_ops.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/http_proxy.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/http_proxy_cli.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/inference_gateway.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/inference_gateway_cli.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/inference_gateway_full_fidelity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/inference_identity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/inference_identity_cli.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/integrity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/integrity_cli.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/litellm_callback.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/litellm_callback_cli.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_core.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_view.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_view_extra_style.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_view_markup.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_view_script_a.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_view_script_b.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_view_script_c.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_view_script_d.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/live_view_style.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/model_runtime.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/model_runtime_cli.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/model_runtime_full_fidelity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/openai_compatible.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/openai_compatible_cli.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/openai_compatible_full_fidelity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/opencode_adapter.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/opencode_full_fidelity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/opencode_plugin_cli.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/opencode_record.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/overhead_benchmark.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/rule_pack.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/rule_pack_cli.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/scalability_benchmark.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/schema.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/scope.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/semantic.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/sink.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/strace_backend.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/theme.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/top.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/top_cli.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/validate.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/view_cli.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/viewer.py +0 -0
- /execweave-0.6.9/src/execweave/viewer_projection.py → /execweave-0.7.1/src/execweave/viewer_projection_base.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/src/execweave/workflow.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/fixtures/hooks/README.md +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/fixtures/hooks/claude.json +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/fixtures/hooks/codex.json +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/fixtures/hooks/cursor.json +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/fixtures/hooks/gemini.json +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/fixtures/hooks/manifest.json +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/fixtures/hooks/opencode.json +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_agent_bootstrap.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_analysis.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_anthropic.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_antigravity_cursor_launch.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_auto_specialized.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_backends.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_claude_full_fidelity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_claude_model_observer.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_claude_record.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_codex_full_fidelity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_codex_record.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_collector.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_command.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_condense.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_correlation.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_correlation_canonical_path.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_correlation_checker.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_correlation_process_exe.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_cursor_record.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_dashboard_ux_and_hook_projection.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_evidence_grade.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_fidelity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_filesystem_resilience.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_focus.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_full_fidelity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_gemini_adapter.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_gemini_record.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_graph.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_graph_ops.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_hook_fixture_corpus.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_http_proxy.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_inference_gateway.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_inference_gateway_full_fidelity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_inference_identity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_integrity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_litellm_callback.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_live.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_live_auth.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_live_dashboard.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_live_dashboard_js.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_live_delta.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_live_logs_export.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_live_theme.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_lmstudio_auto_specialized.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_model_runtime.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_model_runtime_full_fidelity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_openai_compatible.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_opencode_adapter.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_opencode_full_fidelity.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_opencode_plugin.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_opencode_record.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_overhead_benchmark.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_provider_lifecycle.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_rule_pack.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_schema.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_scope.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_semantic.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_strace_backend.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_threat_model.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_top_detached.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_v063_features.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_v064_live_auto_integrations.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_v064_live_evidence.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_validate.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_version.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_viewer.py +0 -0
- {execweave-0.6.9 → execweave-0.7.1}/tests/test_viewer_projection.py +0 -0
- {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.
|
|
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.
|
|
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
|
|
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
|
-
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
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
|
|
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
|
-
|
|
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
|
|
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
|
|
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
|
|
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
|
-
|
|
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
|
|
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 を明確に分離します。
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
|
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
|
|
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 프로젝트입니다.
|
|
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
|
-
현재
|
|
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
|
-
|
|
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
|
|
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.
|
|
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
|
|
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
|
-
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
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 проект
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
229
|
+
ExecWeave 包含 bounded filesystem/viewer protection、incremental Live JSONL tailing、large-graph safety guard、detached 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
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
229
|
+
ExecWeave 具備 bounded filesystem/viewer protection、incremental Live JSONL tailing、large-graph safety guard、detached 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
|
|
300
|
+
ExecWeave 採用 **PolyForm Noncommercial License 1.0.0**。依授權條款可進行非商業使用、修改與散布;商業用途需要另外取得授權方的書面商業授權。詳見 [`LICENSE`](LICENSE)。
|