Remote Desktop Testing Windows logo

Remote Desktop Testing Windows

Organization
letta-ai
remote-desktop-testing-windows

Test any GUI app or change on a Daytona Windows remote desktop sandbox. Use to launch a GUI program, sync a local project, take a screenshot, record a video, or share a clickable live-desktop link with a teammate. Generic — the only dependency is Daytona. For Linux, use remote-desktop-testing-linux.

Overview

Publisherletta-ai
Repositoryskills
Skill nameremote-desktop-testing-windows
Stars
144
Forks
25
Bundled files
1
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by letta-ai on GitHub. Read the source before you install it.

Installation

Install the Remote Desktop Testing Windows AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/letta-ai/skills.git /tmp/skills
mkdir -p .claude/skills
cp -r /tmp/skills/tools/remote-desktop-testing-windows .claude/skills/remote-desktop-testing-windows
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Remote Desktop Testing Windows in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Remote Desktop Testing Windows on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Remote Desktop Testing Windows is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Remote Desktop Testing on Windows

Overview

Generic Daytona Windows sandbox driver. It creates (or reuses) a Windows sandbox whose desktop is streamed over noVNC, and provides the primitives for visual testing of any GUI app: sync code, run PowerShell, launch GUI programs in the interactive desktop session, screenshot, record video, and mint a clickable desktop link a teammate can open to drive the app.

When to Use

  • Demo or visually verify a GUI app (Electron, browser, native Win32) on Windows without a local Windows machine
  • Produce a screenshot + video + clickable live-desktop link for a teammate
  • Debug Windows-specific desktop behavior of a cross-platform app
  • Run throwaway desktop sessions that are fully disposable (stop with cleanup)

Usage

Run the bundled script with Node from the skill directory:

bash
node scripts/remote-desktop.mjs <command> [options]

Credentials: DAYTONA_API_KEY (and optionally DAYTONA_API_URL/DAYTONA_TARGET) from the environment or a dotenv file — ./.env by default, override with --env-path <file>. The script auto-installs @daytona/sdk under ~/.letta/skill-state/remote-desktop-testing-windows/ on first use and remembers the active sandbox id there, so later commands don't need --sandbox.

Typical flow

bash
# 1. Start (or reuse) a Windows sandbox (default snapshot: "windows", the stock Daytona one)
node scripts/remote-desktop.mjs start

# 2. (Optional) push a local project to C:\Users\Public\remote-desktop\workspace
node scripts/remote-desktop.mjs sync --project-path ~/repos/my-app --sync-mode working_tree

# 3. Set up / build with PowerShell commands
node scripts/remote-desktop.mjs shell \
  --command "Set-Location C:\Users\Public\remote-desktop\workspace; npm install"

# 4. Launch the GUI app in the interactive desktop session and verify its window appeared
node scripts/remote-desktop.mjs launch \
  --command "my-app.exe --some-flag" --label my-app --wait-window "My App"

# 5. Deliverables: screenshot, video, and a clickable live-desktop link
node scripts/remote-desktop.mjs screenshot --output /tmp/demo.png
node scripts/remote-desktop.mjs record --output /tmp/demo.mp4 --mp4 --duration 12
node scripts/remote-desktop.mjs preview

Always confirm the result visually (open the screenshot, or check windows / --wait-window) before reporting success — never report success from process existence alone. When sharing with a teammate, send the desktopUrl from preview (signed noVNC link, expires ~6h; re-run preview to refresh). Pass --port <n> to preview to also mint a signed URL for an app's HTTP port.

Commands

CommandWhat it does
startCreate/reuse a sandbox and start the desktop stream. --fresh forces a new one.
syncSync --project-path to C:\Users\Public\remote-desktop\workspace (git_archive = committed HEAD, working_tree = uncommitted too; robocopy /MIR preserving remote node_modules).
shell --command PSRun PowerShell. --timeout <s> for long ones.
launch --command CMDLaunch a GUI command in the interactive desktop session via schtasks /IT (logged to C:\Users\Public\remote-desktop\launch-<label>.log). --wait-window <regex> verifies a matching window title appears.
windowsList visible desktop windows.
screenshotSave a PNG of the full desktop locally.
previewPrint signed desktopUrl (noVNC), plus appUrl if --port given.
recordRecord the live desktop via Playwright + local Chrome (--duration <s>, --mp4).
recording-start/stop/downloadNative Daytona recording — unreliable on Windows (recordings can silently vanish); prefer record.
snapshot --snapshot <name>Bake the sandbox into a snapshot (Daytona snapshots Windows from STOPPED; stops, snapshots, restarts).
cleanupStop the active sandbox.

Snapshots

Cold Windows boxes are slow to set up. After installing your toolchain/deps once, bake a prepared snapshot so future start --snapshot <name> runs skip setup:

bash
node scripts/remote-desktop.mjs snapshot --snapshot my-app-windows-dev-v1

Revert throwaway edits before baking. Keep install-skip markers or caches outside the workspace directory (e.g. directly under C:\Users\Public\remote-desktop\) — sync mirrors with robocopy /MIR, which deletes anything in the workspace not present locally.

Gotchas

  • Daytona shell/process commands run as SYSTEM. GUI apps launched from shell can run invisibly. launch exists precisely for this: it wraps the command in a .cmd and runs it via schtasks /IT /RU Administrator, which puts the window in the interactive session that the noVNC link shows. Always use launch (not shell) to start GUI apps.
  • Verify with --wait-window or windows + screenshot — a running process is not a visible window.
  • For the shareable link, send desktopUrl (the interactive desktop), not a raw app-port URL.
  • record runs Playwright locally: it resolves playwright/playwright-core from --project-path first, else auto-installs playwright-core into skill state, and drives the local Chrome binary (--chrome-path, default macOS Chrome). --mp4 needs local ffmpeg.
  • Maintainer note: the launch .cmd generation uses String.raw — keep it that way. A plain template literal turns Windows path backslashes (\node_modules, \bin) into JS escapes (\n, \b) and silently corrupts the launcher.
  • Native schtasks /Delete on a missing task writes to stderr, which PowerShell's $ErrorActionPreference='Stop' escalates — the script routes it through cmd.exe /c to swallow that; do the same for any other best-effort native command you add.

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Remote Desktop Testing Windows AI skill do?

Test any GUI app or change on a Daytona Windows remote desktop sandbox. Use to launch a GUI program, sync a local project, take a screenshot, record a video, or share a clickable live-desktop link with a teammate. Generic — the only dependency is Daytona. For Linux, use remote-desktop-testing-linux.

Why use Remote Desktop Testing Windows on TypingMind?

Because you install it once and use it with any model. Remote Desktop Testing Windows is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Remote Desktop Testing Windows in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/letta-ai/skills/tree/main/tools/remote-desktop-testing-windows. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Remote Desktop Testing Windows?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Remote Desktop Testing Windows?

As many as you like. As long as a model supports skills, you can use Remote Desktop Testing Windows with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Remote Desktop Testing Windows AI skill free?

It is published on GitHub by letta-ai. Check the repository for licensing terms. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇