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:
$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:
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-workspaceScenario 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:
$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:
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