Thanks for the clarification on database name, I had forgotten about using a config file.
However, in my stardog-admin user help text, the additional line you mention is not there anywhere in my output:
     [--] <username>
stardog@triple4:/localstore/stardog/stardog-2.0.1$ bin/stardog-admin help user
NAME
       stardog-admin user - Commands for working with users
SYNOPSIS
       stardog-admin [--server <server url>] user add [(-s | --superuser)]
               [(-N <password> | --new-password <password>)]
               [(-u <username> | --username <username>)]
               [(-p <password> | --passwd <password>)] [(-P | --ask-password)]
       stardog-admin [--server <server url>] user addrole
               (-R <role> | --role <role>) [(-u <username> | --username <username>)]
               [(-p <password> | --passwd <password>)] [(-P | --ask-password)]
       stardog-admin [--server <server url>] user disable
               [(-u <username> | --username <username>)]
               [(-p <password> | --passwd <password>)] [(-P | --ask-password)]
       stardog-admin [--server <server url>] user enable
               [(-u <username> | --username <username>)]
               [(-p <password> | --passwd <password>)] [(-P | --ask-password)]
       stardog-admin [--server <server url>] user grant
               (-a <action> | --action <action>) (-o <object> | --object <object>)
               [(-u <username> | --username <username>)]
               [(-p <password> | --passwd <password>)] [(-P | --ask-password)]
       stardog-admin [--server <server url>] user list [--verbose]
               [(-f <format> | --format <format>)]
               [(-u <username> | --username <username>)]
               [(-p <password> | --passwd <password>)] [(-P | --ask-password)]
       stardog-admin [--server <server url>] user passwd
               [(-N <new password> | --new-password <new password>)]
               [(-u <username> | --username <username>)]
               [(-p <password> | --passwd <password>)] [(-P | --ask-password)]
       stardog-admin [--server <server url>] user permission
               [(-f <format> | --format <format>)]
               [(-u <username> | --username <username>)]
               [(-p <password> | --passwd <password>)] [(-P | --ask-password)]
       stardog-admin [--server <server url>] user remove
               [(-u <username> | --username <username>)]
               [(-p <password> | --passwd <password>)] [(-P | --ask-password)]
       stardog-admin [--server <server url>] user removerole
               (-R <role> | --role <role>) [(-u <username> | --username <username>)]
               [(-p <password> | --passwd <password>)] [(-P | --ask-password)]
       stardog-admin [--server <server url>] user revoke
               (-a <action> | --action <action>) (-o <object> | --object <object>)
               [(-u <username> | --username <username>)]
               [(-p <password> | --passwd <password>)] [(-P | --ask-password)]
OPTIONS
       --server <server url>
           URL of Stardog Server. If this option isn't specified, it will be
           read from JVM argument 'stardog.default.cli.server'. If the JVM arg
           isn't set, the default value 'snarl://localhost:5820' is used. If
           server URL has no explicit port value, the default port value '5820'
           is used. Example: 'stardog --server snarl://
12.34.56.78:5820 server
           stop'
COMMANDS
       add
           Adds a new user.
           With --superuser option, Superuser flag. If this flag is set, the
           new user will be a super user.
           With --new-password option, Password for new user. If not provided,
           the user will be prompted to enter it.
           With --username option, User name.
           With --passwd option, Password.
           With --ask-password option, Prompt for password.
       enable
           Enables a user.
           With --username option, User name.
           With --passwd option, Password.
           With --ask-password option, Prompt for password.
       disable
           Disables a user.
           With --username option, User name.
           With --passwd option, Password.
           With --ask-password option, Prompt for password.
       addrole
           Assigns a role to a user.
           With --role option, Role to be associated with the user.
           With --username option, User name.
           With --passwd option, Password.
           With --ask-password option, Prompt for password.
       removerole
           Removes a role from a user.
           With --role option, Role to be removed.
           With --username option, User name.
           With --passwd option, Password.
           With --ask-password option, Prompt for password.
       remove
           Removes a user.
           With --username option, User name.
           With --passwd option, Password.
           With --ask-password option, Prompt for password.
       grant
           Grants a permission to a user.
           With --action option, Action to be permitted:
           [read,write,create,delete,grant,revoke,execute,all].
           With --object option, Target resource (user:username,
           db:databasename).
           With --username option, User name.
           With --passwd option, Password.
           With --ask-password option, Prompt for password.
       list
           Lists all users.
           With --verbose option, Verbose flag. If this flag is set more user
           information will be printed.
           With --format option, Output format, one of [TEXT, CSV, HTML]. The
           default is 'TEXT'.
           With --username option, User name.
           With --passwd option, Password.
           With --ask-password option, Prompt for password.
       revoke
           Revokes user permission.
           With --action option, Action to be permitted:
           [read,write,create,delete,grant,revoke,execute,all].
           With --object option, Target resource (user:username,
           db:databasename).
           With --username option, User name.
           With --passwd option, Password.
           With --ask-password option, Prompt for password.
       permission
           Lists user permissions.
           With --format option, Output format, one of [TEXT, CSV, HTML]. The
           default is 'TEXT'.
           With --username option, User name.
           With --passwd option, Password.
           With --ask-password option, Prompt for password.
       passwd
           Changes user password.
           With --new-password option, New password for user. If not provided,
           the user will be prompted to enter it.
           With --username option, User name.
           With --passwd option, Password.
           With --ask-password option, Prompt for password.