Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AutoGUI
Submodule AutoGUI updated 106 files
2 changes: 1 addition & 1 deletion CognitiveLoopKernel
2 changes: 1 addition & 1 deletion OSScreenObserver
Submodule OSScreenObserver updated 83 files
+13 −2 .github/workflows/ci.yml
+10 −0 .gitignore
+153 −46 README.md
+8 −8 ascii_renderer.py
+4 −3 budgets.py
+9 −4 config.json.example
+11 −11 description.py
+2 −2 element_selectors.py
+7 −6 linux_adapter.py
+47 −5 main.py
+23 −0 mcp_server/__init__.py
+369 −0 mcp_server/server.py
+24 −386 mcp_server/tool_schemas.py
+0 −1,687 observer.py
+82 −0 observer/__init__.py
+287 −0 observer/activation.py
+47 −0 observer/adapters/__init__.py
+147 −0 observer/adapters/linux.py
+76 −0 observer/adapters/macos.py
+184 −0 observer/adapters/mock.py
+640 −0 observer/adapters/windows.py
+119 −0 observer/adapters/wsl.py
+367 −0 observer/core.py
+197 −0 observer/models.py
+116 −0 observer/occlusion.py
+24 −0 observer/platform_info.py
+1 −1 ocr_util.py
+6 −5 ollama_setup.py
+41 −0 pyproject.toml
+10 −0 pytest.ini
+77 −2 redaction.py
+1 −0 requirements-dev.txt
+92 −0 scripts/check_module_size.py
+5 −0 session.py
+140 −0 tests/test_security_defaults.py
+176 −0 tests/test_surface_parity.py
+97 −0 tests/test_telemetry.py
+72 −0 tests/test_tools_p2.py
+133 −0 tests/test_tools_p3.py
+262 −0 tests/test_tree_cache.py
+267 −0 tests/test_uia_walk.py
+231 −0 tests/test_untrusted_and_confirmation.py
+0 −0 tests/user/__init__.py
+378 −0 tests/user/conftest.py
+45 −0 tests/user/snapshots/login_start.txt
+74 −0 tests/user/test_ascii_render_snapshot.py
+76 −0 tests/user/test_budget_redaction_audit.py
+144 −0 tests/user/test_element_actions_full.py
+262 −0 tests/user/test_mcp_protocol.py
+36 −0 tests/user/test_ocr_real_tesseract.py
+59 −0 tests/user/test_ollama_setup_live.py
+115 −0 tests/user/test_predicates_full.py
+348 −0 tests/user/test_rest_full.py
+79 −0 tests/user/test_scenarios_user.py
+57 −0 tests/user/test_setup_config_live.py
+104 −0 tests/user/test_trace_replay.py
+64 −0 tests/user/test_vlm_real_ollama.py
+39 −0 tests/user/test_xvfb_live.py
+0 −2,103 tools.py
+160 −0 tools/__init__.py
+515 −0 tools/actions.py
+142 −0 tools/context.py
+268 −0 tools/dispatch.py
+133 −0 tools/meta.py
+543 −0 tools/observe.py
+117 −0 tools/receipts.py
+278 −0 tools/snapshots.py
+183 −0 tools/trace_replay.py
+301 −0 tools/vision.py
+180 −0 tree_cache.py
+32 −0 web_inspector/__init__.py
+3 −576 web_inspector/assets.py
+55 −0 web_inspector/server.py
+598 −0 web_inspector/views.py
+0 −1,978 window_agent.py
+102 −0 window_agent/__init__.py
+10 −0 window_agent/__main__.py
+282 −0 window_agent/cli.py
+186 −0 window_agent/client.py
+276 −0 window_agent/dispatch.py
+245 −0 window_agent/loop.py
+66 −0 window_agent/prompts.py
+963 −0 window_agent/tool_schemas.py
Loading