mirror of
https://github.com/lahfir/agent-desktop.git
synced 2026-07-31 11:19:16 +00:00
Settle the Playwright-grade reliability contract in agent-desktop-core before the Windows/Linux adapters are built, so they inherit it instead of redesigning it. Every command now observes, waits, verifies, and reports honestly instead of firing blindly. Highlights: capability-supertrait split of PlatformAdapter with not_supported() defaults; canonical role/state vocabulary with live `is --property visible`; display enumeration (`list-displays`) and honest `--screen` with scale factor; truthful Automation permission; `native_id` identity spine; window-id-first resolution; serializable `LocatorQuery` with live `find`; default-on auto-wait before every ref action; three-way `hit_test` occlusion gate; `scroll_into_view` in core; core accessible-name precedence; typed `ActionStep` delivery tier; `ProcessState` and `APP_UNRESPONSIVE`; `LaunchOptions`; baseline-diff desktop signals (`wait --event`); typed clipboard (`Text`/`Image`/`FileUrls`); mouse modifier chords and `mouse-wheel`. Hardened through a 35-reviewer pass with independent validation and a green live e2e gate (109/0), plus a head-vs-main performance comparison harness. BREAKING CHANGE: default-on auto-wait changes the timing of every previously-untouched ref-action call (bounded 5000 ms default; `--timeout-ms 0` restores single-shot). `ENVELOPE_VERSION` is now `2.1` (adds the `APP_UNRESPONSIVE` code and process state in error details). FFI ABI major is `3` (append-only struct evolution; `wait --event` is intentionally not exposed over FFI). The legacy string clipboard API is removed in favor of typed content. `key-down`/`key-up` fail closed until daemon-owned held input exists. `close-app` verifies termination and the osascript fallback path is removed. `--text` matching is subtree containment: `find --text X --first` returns the outermost matching container.
53 lines
1.9 KiB
Bash
Executable file
53 lines
1.9 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# Builds the agent-desktop E2E fixture into a runnable .app bundle.
|
|
# Usage: tests/fixture-app/build.sh [output-dir]
|
|
# Output: <output-dir>/AgentDeskFixture.app (default: alongside this script)
|
|
set -euo pipefail
|
|
|
|
here="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
out_dir="${1:-$here/build}"
|
|
app="$out_dir/AgentDeskFixture.app"
|
|
macos_dir="$app/Contents/MacOS"
|
|
bin="$macos_dir/AgentDeskFixture"
|
|
|
|
if [ -e "$app" ]; then
|
|
previous="$(mktemp -d "$out_dir/.fixture-previous.XXXXXX")"
|
|
mv "$app" "$previous/"
|
|
fi
|
|
mkdir -p "$macos_dir"
|
|
|
|
# Pin the SDK and deployment target so the fixture builds reproducibly instead
|
|
# of inheriting whatever the host toolchain defaults to (matches the
|
|
# LSMinimumSystemVersion in the Info.plist below). Compile every .swift file in
|
|
# this directory as one module.
|
|
sdk="$(xcrun --show-sdk-path --sdk macosx)"
|
|
target="$(uname -m)-apple-macos13.0"
|
|
swiftc -O -parse-as-library \
|
|
-target "$target" -sdk "$sdk" \
|
|
-framework SwiftUI -framework AppKit \
|
|
-o "$bin" \
|
|
"$here"/*.swift
|
|
|
|
cat > "$app/Contents/Info.plist" <<'PLIST'
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleName</key><string>AgentDeskFixture</string>
|
|
<key>CFBundleDisplayName</key><string>AgentDeskFixture</string>
|
|
<key>CFBundleIdentifier</key><string>com.agentdesktop.fixture</string>
|
|
<key>CFBundleVersion</key><string>1</string>
|
|
<key>CFBundleShortVersionString</key><string>1.0</string>
|
|
<key>CFBundlePackageType</key><string>APPL</string>
|
|
<key>CFBundleExecutable</key><string>AgentDeskFixture</string>
|
|
<key>LSMinimumSystemVersion</key><string>13.0</string>
|
|
<key>NSHighResolutionCapable</key><true/>
|
|
</dict>
|
|
</plist>
|
|
PLIST
|
|
|
|
if [ "${AGENT_DESKTOP_FIXTURE_BACKGROUND_BUNDLE:-}" = "1" ]; then
|
|
/usr/bin/plutil -insert LSUIElement -bool true "$app/Contents/Info.plist"
|
|
fi
|
|
|
|
echo "Built: $app"
|