workflows/default/hooks/dev/Start-Dev.ps1

#!/usr/bin/env pwsh
<#
.SYNOPSIS
    Stub script for starting development environment.
.DESCRIPTION
    This is a placeholder. Install a profile (e.g., dotnet) to get full dev scripts,
    or customize this script for your project.
#>


Write-Host ""
Write-Host " Development scripts not configured." -ForegroundColor Yellow
Write-Host ""
Write-Host " Options:" -ForegroundColor Cyan
Write-Host " 1. Install a profile: dotbot init --profile dotnet"
Write-Host " 2. Customize this script for your project"
Write-Host ""