In the docs for password reset the quotes are missing in the command, to work properly quotes around the name are necessary.
Command in the docs:
clpctl user:reset:password --userName=john.doe --password='!newPassword!'
Correct Command:
clpctl user:reset:password --userName='john.doe' --password='!newPassword!'