Refresh quickstart walkthrough recording

This commit is contained in:
Thales Maciel 2026-03-09 23:06:21 -03:00
parent 0181de2563
commit 81636e86fb
3 changed files with 52 additions and 43 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 MiB

After

Width:  |  Height:  |  Size: 2.4 MiB

Before After
Before After

View file

@ -5,7 +5,7 @@ Require uv
Set Shell "zsh"
Set FontSize 18
Set Width 1200
Set Height 820
Set Height 760
Set Theme "Dracula"
Set TypingSpeed 35ms
Set Padding 24
@ -16,35 +16,29 @@ Type "cd /home/thales/projects/personal/pyro"
Enter
Type "export UV_CACHE_DIR=.uv-cache"
Enter
Type "export PYRO_ENVIRONMENT_CACHE_DIR=$(mktemp -d)"
Enter
Type "uvx --from pyro-mcp pyro --version >/dev/null"
Enter
Show
Type "printf '\\n# Check host support from the repo checkout\\n'"
Type "# Check that the host can boot and run guests"
Enter
Sleep 800ms
Type "uv run pyro doctor"
Sleep 700ms
Type "uvx --from pyro-mcp pyro doctor"
Enter
Sleep 2200ms
Type "printf '\\n# Inspect and pull the default environment\\n'"
Type "# Pull the default environment into a fresh local cache"
Enter
Sleep 800ms
Type "uv run pyro env list"
Enter
Sleep 1800ms
Type "uv run pyro env pull debian:12"
Enter
Sleep 1800ms
Type "printf '\\n# Run one command in an isolated guest\\n'"
Enter
Sleep 800ms
Type "uv run pyro run debian:12 -- git --version"
Sleep 700ms
Type "uvx --from pyro-mcp pyro env pull debian:12"
Enter
Sleep 2200ms
Type "printf '\\n# Prove the one-shot VM lifecycle demo\\n'"
Type "# Run one isolated command inside an ephemeral microVM"
Enter
Sleep 800ms
Type "uv run pyro demo"
Sleep 700ms
Type "uvx --from pyro-mcp pyro run debian:12 -- git --version"
Enter
Sleep 2600ms