Two services on the AI bus. terminal: read_screen (the visible grid as text, cursor and cwd in the note), read_scrollback (up to 2000 recent lines) and run — which types the line into the live, unsandboxed shell exactly as the person would, refuses control characters and anything over 4 kB, and answers at once so the model reads the outcome with read_screen next. browser: page (the active tab's title and url — CEF exposes no page text, so none is promised), tabs, navigate and new_tab, http(s) or about:blank only. Context lines: the shell's cwd, the active tab. Written by the delegate from the sheets/files shapes; terminal 331 + 5 tests, browser checks. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
# browser — a Chrome-like browser as a plain full-window Makepad app.
|
|
#
|
|
# Chromium (CEF, libs/cef) renders ONLY the page, GPU-accelerated straight
|
|
# into an IOSurface-backed Makepad texture. All browser chrome — the tab
|
|
# strip, the toolbar with back/forward/reload, the omnibox and the menu —
|
|
# is Makepad splash UI, styled from the wm theme when hosted by
|
|
# makepad-wm (`MAKEPAD_WM_THEME_SPLASH`) and from a Chrome-dark palette otherwise.
|
|
#
|
|
# Runs standalone, and unmodified inside makepad-wm / Studio tiles via the
|
|
# shared --stdin-loop client runtime every Makepad app has.
|
|
|
|
[package]
|
|
name = "makepad-browser"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
default-run = "browser"
|
|
|
|
[[bin]]
|
|
name = "browser"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
makepad-widgets = { path = "../../widgets", features = ["cef"] }
|
|
makepad-cef = { path = "../../libs/cef" }
|
|
makepad-ai-services = { path = "../../libs/ai/services" }
|
|
makepad-strict-json = { path = "../../libs/strict_json" }
|
|
makepad-wm-theme = { path = "../../libs/wm_theme" }
|
|
# The window manager's vocabulary: the bar's title, the polite close.
|
|
makepad-wm-api = { path = "../../libs/wm_api" }
|