mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
Invert the docs convention so the Mintlify-published site lives under docs/public/ and internal artifacts (strategy docs, brainstorms, plans, etc.) sit at docs/ root or docs/internal/. Tools that default to writing into docs/ now land in the catch-all instead of leaking into the published tree. - Move Mintlify content (administration/, agents/, api-reference/, changelog/, core-concepts/, examples/, execution/, getting-started/, human-tools/, integrations/, languages/, reference/, tutorials/, workflows/, images/, logo/, docs.json, favicon.svg, dot-highlight.js) into docs/public/. - Collapse docs-internal/ into docs/internal/. - Update Rust path references (fabro-api/build.rs, fabro-server, fabro-dev), TypeScript generator arg, CI path filters, clippy.toml reasons, AGENTS.md/CLAUDE.md, and README.md image refs. Mintlify dashboard project root must be updated to docs/public/ in a follow-up. .mintignore move/trim and .claude/skills/ updates land in a separate commit.
50 lines
No EOL
2.4 KiB
Text
50 lines
No EOL
2.4 KiB
Text
---
|
|
title: "VNC Access"
|
|
description: "Access graphical desktop environments in sandboxes via VNC"
|
|
---
|
|
|
|
<Warning>
|
|
VNC access is **coming soon** and is not yet available. This page describes the planned feature.
|
|
</Warning>
|
|
|
|
VNC (Virtual Network Computing) provides a graphical desktop environment inside sandboxes, accessible directly from your browser. This enables interaction with GUI applications, visual debugging, and observation of agent-driven desktop automation.
|
|
|
|
## Use cases
|
|
|
|
- **GUI application testing** — interact with desktop apps built or modified by an agent
|
|
- **Browser testing** — verify web applications in a full browser environment inside the sandbox
|
|
- **Visual debugging** — inspect graphical output, rendered documents, or UI state
|
|
- **Agent observation** — watch an AI agent perform automated desktop interactions
|
|
|
|
## How it works
|
|
|
|
Sandboxes support VNC through a set of pre-installed packages (Xvfb, xfce4, x11vnc, noVNC) that provide a headless desktop environment with browser-based access. When VNC is enabled:
|
|
|
|
1. Start a run with VNC enabled on a cloud sandbox
|
|
2. Open a browser-based VNC viewer to see the sandbox desktop
|
|
3. Interact with the desktop using mouse and keyboard — or watch an agent automate it
|
|
|
|
## Example workflow
|
|
|
|
VNC is useful when the agent needs to interact with a GUI application that can't be driven through a CLI alone. This workflow automates filling out a legacy internal web form that requires browser interaction:
|
|
|
|
<Frame>
|
|
<img src="/images/vnc-access-workflow.svg" alt="VNC access workflow: Start → Prepare Data → Fill Portal Form → Review Submission → Exit, with a Redo loop back to Fill Portal Form" />
|
|
</Frame>
|
|
|
|
```dot
|
|
digraph FillLegacyForm {
|
|
graph [goal="Submit the quarterly compliance data through the internal portal"]
|
|
|
|
start [shape=Mdiamond, label="Start"]
|
|
exit [shape=Msquare, label="Exit"]
|
|
|
|
prepare [label="Prepare Data", prompt="Read the compliance data from data/quarterly-compliance.csv and format it for entry into the internal portal."]
|
|
fill [label="Fill Portal Form", prompt="Open Firefox, navigate to http://compliance.internal:8080, and fill out the quarterly submission form with the prepared data. Take a screenshot after each page."]
|
|
review [shape=hexagon, label="Review Submission"]
|
|
|
|
start -> prepare -> fill -> review
|
|
review -> exit [label="[A] Submit"]
|
|
review -> fill [label="[R] Redo"]
|
|
}
|
|
``` |