flutter/genui_workshop_run_cloud_shell
Creates a shell script to build and run the Flutter web app on Cloud Shell using a local HTTP server.
npx skills add https://github.com/flutter/demos --skill genui_workshop_run_cloud_shell
Goal: Create a script to easily build and serve the Flutter web app on Cloud Shell.
Instructions:
Use your code editing tools to create a shell script in the root of the project and make it executable.
run_cloud_shell.sh in the root directory of the project with the following content:#!/bin/bash
# Builds the web target and serves it on port 8080
flutter build web
python3 -m http.server 8080 --directory build/web
chmod +x run_cloud_shell.sh
*(Note: We use python3 instead of python just in case python isn't mapped to Python 3 in the environment, though python -m http.server as written in the README is also fine if python points to python 3.)*
Take flutter/genui_workshop_run_cloud_shell from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.