✅ GitHub Actions workflow generation ✅ Dockerfile + build scripts ✅ Terraform + Bicep scaffolding ✅ Shell command explanations
✅ 1. SAMPLE: “Generate GitHub Actions workflow from natural language” User Prompt
“Deploy my .NET 8 Web API to Azure Web App using GitHub Actions. Run build and test in CI, deploy only on push to main.” ✅ 2. SAMPLE: “Generate a Dockerfile using natural language” User Prompt
“Create a Dockerfile for .NET 8 that builds and runs an API.” ✅ 3. SAMPLE: “Scaffold Terraform template from natural language” User Prompt
“Create a Terraform script that deploys an Azure Resource Group + App Service Plan + Web App.” ✅ 4. SAMPLE: “Generate Bicep template from natural language” User Prompt
“Create a Bicep file for Azure Web App + App Service Plan.”
✅ 5. SAMPLE: “Explain a shell command” Command ls -alh /var/www Copilot-Style Explanation
ls → list files
-a → show hidden files
-l → long format (permissions, owner, size)
-h → human-readable sizes (KB/MB/GB)
/var/www → the directory you're listing
So: “Show all files (including hidden) in /var/www with full details and readable sizes.”