Private/Help.ps1

function Get-DevCommand {
    @(
        'mni - Make New Item (create file + open in VS Code)'
        'Get-DevCommand - List available DevXToolkit commands'
        'Show-DevHelp - Display help information'
    )
}

function Show-DevHelp {
@"
DevXToolkit - Basic Commands

mni <path>
    Creates a new file (and directories if needed) and opens it in VS Code.

Get-DevCommand
    Lists all available DevXToolkit commands.

Show-DevHelp
    Displays this help text.
"@

}