
___x_cmd_speckit_specify(){
    [ "$#" -gt 0 ] ||   set -- --help

    local op="$1";  shift
    case "$op" in
        -h|--help)      ___x_cmd help -m speckit specify  "$@"  ;  return 0 ;;
        init)           ___x_cmd_speckit_specify_init     "$@"  ;;
        *)              ___x_cmd_speckit___runcmd   "$op" "$@"  ;;
    esac
}

___x_cmd_speckit_specify_init(){
    [ "$#" -gt 0 ] ||   set -- --here

    ___x_cmd_speckit___runcmd init "$@"
}
