Skip to content

Downloads ​

🚧 Work in progress

These files are still being tested and may be updated before the event. Re-download on the day.

Everything for AI Flight Academy scenarios. Files download straight from this site – no GitHub account, no cloning.

Scenario 1 Β· The Digital Twin ​

🟒 Cowork ​

Installing Twin Forge: Cowork β†’ Customize β†’ Skills β†’ Add β–Ύ β†’ Upload skill β†’ pick the downloaded SKILL.md. Then start a new session – skills are only discovered at session start.

Upload the .md, not a .zip

Tested on a live tenant: .zip skill uploads fail silently. SKILL.md is self-contained, so there's nothing else to bundle.

🟣 Code ​

Unzip, then open digital-twin.code-workspace in VS Code – it comes with agent mode and the right extension recommendations already set.

One-line setup in a terminal

PowerShell:

powershell
$u='https://microsoftlearning.github.io/AI-Flight-Academy/downloads/digital-twin-starter.zip'
$z="$env:TEMP\dts.zip"; iwr $u -OutFile $z
Expand-Archive $z -DestinationPath "$HOME\digital-twin" -Force
code "$HOME\digital-twin\digital-twin-starter\digital-twin.code-workspace"

macOS / Linux:

bash
curl -L -o /tmp/dts.zip https://microsoftlearning.github.io/AI-Flight-Academy/downloads/digital-twin-starter.zip
unzip -q /tmp/dts.zip -d ~/digital-twin
code ~/digital-twin/digital-twin-starter/digital-twin.code-workspace

Scenario 2 Β· Greenlight ​

Seat a council of audiences over a piece of content so the verdicts split, then have the room decide what to build. All three altitudes share the same data pack – five articles, four example audience cards, and a style guide.

🟒 Cowork ​

Installing Greenlight: Cowork β†’ Customize β†’ Skills β†’ Add β–Ύ β†’ Upload skill β†’ pick the downloaded SKILL.md. Then start a new session – skills are only discovered at session start. Then point Cowork to the data pack and say seat the council and review P4.

🟣 Code ​

Unzip all three so the-greenlight-starter, the-greenlight, and data-pack sit side by side – the runner and checks.py expect the data pack as a sibling. Then open the-greenlight.code-workspace in VS Code.

One-line setup in a terminal

PowerShell:

powershell
$base='https://microsoftlearning.github.io/AI-Flight-Academy/downloads'
$dest="$HOME\the-greenlight"
foreach ($n in 'the-greenlight-starter','the-greenlight','greenlight-data-pack') {
  $z="$env:TEMP\$n.zip"; iwr "$base/$n.zip" -OutFile $z
  Expand-Archive $z -DestinationPath $dest -Force
}
code "$dest\the-greenlight-starter\the-greenlight.code-workspace"

macOS / Linux:

bash
base=https://microsoftlearning.github.io/AI-Flight-Academy/downloads
dest=~/the-greenlight
for n in the-greenlight-starter the-greenlight greenlight-data-pack; do
  curl -L -o /tmp/$n.zip $base/$n.zip
  unzip -q /tmp/$n.zip -d $dest
done
code $dest/the-greenlight-starter/the-greenlight.code-workspace