Browser Preview
You already know
and
. This skill fills the gap: what happens
after preview_serve returns a URL — how the user actually sees it.
What is Browser
The frontend has a right-side panel with two tabs:
Workspace and
Browser. Browser renders preview URLs inside an iframe. When you call
, the frontend automatically opens a Browser tab loading that URL.
Key facts:
- Each call creates one Browser tab
- URL format:
https://<host>/preview/{id}/
- Browser panel has a ⋮ menu (top-right) showing "RUNNING SERVICES" list
- Browser tab can be closed by the user without stopping the backend service
- Backend service stopping → Browser tab shows an error page
⚠️ CRITICAL: Never Tell Users to Access localhost
The user's browser CANNOT access or . These addresses point to the server container, not the user's machine. The preview architecture uses a
reverse proxy:
User's Browser → https://<host>/preview/{id}/path → (reverse proxy) → 127.0.0.1:{port}/path
Rules:
- NEVER tell the user to visit or — they cannot reach it
- ALWAYS direct users to the preview URL: (or the full URL
https://<host>/preview/{id}/
)
curl http://localhost:{port}
is for your own server-side diagnostics only — never suggest it to the user as a way to "test" the preview
- When a preview is running, tell the user: "Check the Browser panel, or refresh the Browser panel"
- If you need to give the user a URL, use the field returned by (format: )
⚠️ Static Assets Must Use Relative Paths
Because previews are served under
,
absolute paths in HTML/JS/CSS will break. The reverse proxy strips the
prefix before forwarding to the backend, but the browser resolves absolute paths from the domain root.
Example of the problem:
html
<!-- ❌ BROKEN: browser requests https://host/static/app.js → 404 (bypasses preview proxy) -->
<script src="/static/app.js"></script>
<!-- ✅ WORKS: browser requests https://host/preview/{id}/static/app.js → proxied correctly -->
<script src="static/app.js"></script>
<script src="./static/app.js"></script>
Common patterns to fix:
| Broken (absolute) | Fixed (relative) |
|---|
| or |
| or |
| or |
| |
| |
Check ALL places where paths appear:
- HTML , attributes
- JavaScript , , dynamic imports
- CSS references
- JavaScript string literals (e.g., in template strings or concatenation)
- Framework config files (e.g., , , )
⚠️ Be thorough — it's common to fix CSS
but miss JS string literals like
(with single quotes). Search for ALL occurrences of absolute paths across all file types.
⚠️ Do NOT Browse Filesystem to Debug Previews
Never look at workspace directories like
,
, or random folders to understand preview state. Those are user data, not preview service state.
The only sources of truth:
- Registry file: (running services)
- History file:
/data/preview_history.json
(all past services)
- / tools
- Port checks via (server-side only, for your diagnostics)
Do NOT use
/
on workspace directories to diagnose preview issues. Do NOT call unrelated tools like
. Stay focused.
Step-by-Step: Diagnosing Browser Issues
When a user reports any Browser problem, follow this exact sequence:
Step 1: Read the registry (running services)
bash
cat /data/previews.json 2>/dev/null || echo "NO_REGISTRY"
⚠️ Your bash CWD is
. The registry is at
(absolute path, one level up). Always use the absolute path.
JSON structure:
json
{
"previews": [
{"id": "f343befc", "title": "My App", "dir": "/data/workspace/my-project", "command": "npm run dev", "port": 9080, "is_builtin": false}
]
}
Step 2: Branch based on registry state
If registry has entries → Go to Step 3 (verify services)
If registry is empty or missing → Go to Step 4 (check history)
Step 3: Registry has entries — verify and fix
For each preview in the registry, check if the port is responding server-side (this is your diagnostic, not for the user):
bash
curl -s -o /dev/null -w "%{http_code}" http://localhost:{port}
If port responds (200):
- The service IS running. Tell the user:
- "You have a running service: {title}"
- "Click the ⋮ menu at the top-right of the Browser panel, then click it in the RUNNING SERVICES list to reopen"
- Preview URL:
- If user says the ⋮ menu is empty or doesn't show the service → frontend lost sync. Fix by recreating: then
preview_serve(dir, title, command)
using the info from the registry. This forces the frontend to re-register the tab.
If port does NOT respond:
- Process crashed but registry entry remains. Recreate:
preview_stop(id="{id}")
preview_serve(dir="{dir}", title="{title}", command="{command}")
Step 4: No running services — check history first, then scan workspace
When there are no running services, use a two-tier lookup to find projects the user can preview:
Tier 1: Read preview history (preferred — fast and accurate)
bash
cat /data/preview_history.json 2>/dev/null || echo "NO_HISTORY"
JSON structure:
json
{
"history": [
{
"id": "f343befc",
"title": "Trading System",
"dir": "/data/workspace/my-project",
"command": "python main.py",
"port": 8000,
"is_builtin": false,
"created_at": 1709100000.0,
"last_started_at": 1709200000.0
}
]
}
History entries are
never removed by — they persist across restarts. Entries are automatically pruned only when the project directory no longer exists.
If history has entries:
- List all history entries to the user with title, directory, and last started time
- Ask which one they want to restart
- Call with the , , and from the history entry
If user says a project is missing from history → fall through to Tier 2.
Tier 2: Scan workspace (fallback — when history is empty or incomplete)
bash
find /data/workspace -maxdepth 2 \( -name "package.json" -o -name "index.html" -o -name "*.html" -o -name "app.py" -o -name "main.py" -o -name "vite.config.*" \) -not -path "*/node_modules/*" -not -path "*/skills/*" -not -path "*/memory/*" -not -path "*/prompt/*" -not -path "*/.git/*" 2>/dev/null
Then:
- List discovered projects with brief descriptions
- Ask the user which one to preview
- Call with the appropriate directory
Don't just say "no services running" and stop. Always check history first, then scan, and offer options.
Quick Reference
| User says | You do |
|---|
| "tab disappeared" / "tab 不见了" | Step 1 → 2 → 3 or 4 |
| "blank page" / "白屏" | Check port (server-side), if dead → recreate; if alive → check for absolute path issues |
| "not updating" / "内容没更新" | Suggest refresh button in Browser tab, or recreate preview |
| "port conflict" / "端口冲突" | old → new |
| "can't see service" / "⋮ menu empty" | + to force re-register |
| "where's my project" / "what did I build" | Read /data/preview_history.json
and list entries |
| "resource load failed" / "JS/CSS 404" | Check for absolute paths (, ), fix to relative paths |
What You Cannot Do
- Cannot directly open/close/refresh Browser tabs (frontend UI)
- Cannot force-refresh the iframe
- Cannot read what the iframe displays
When you can't do something, tell the user the manual action (e.g., "click refresh in Browser tab"). If manual action doesn't work, recreate the preview with
+
.
Common Mistakes to Avoid
- ❌ Telling user to "visit http://localhost:18791/" — user cannot access localhost
- ❌ Saying "refresh the page at localhost" — meaningless to the user
- ❌ Only fixing CSS paths but missing JS string literals with absolute paths
- ❌ Forgetting to check ALL file types (HTML, JS, CSS, config) for absolute paths
- ✅ Always use as the user-facing URL
- ✅ Always use only for your own server-side diagnostics
- ✅ After fixing paths, call + to restart, then tell user to check Browser panel