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