Hi, is there any difference between these two commands ? As far as i can tell, the docs are the same and they seem to do the same thing. **Edit:** After looking into the code, i realised that the "install" command actually runs the "add" command :) [bootstrap.ts](https://github.com/NativeScript/nativescript-cli/blob/c18a8189ccb9ba33d04e3829edd322a0fbc1f6b5/lib/bootstrap.ts#L95): `$injector.requireCommand("plugin|add", "./commands/plugin/add-plugin"); $injector.requireCommand("plugin|install", "./commands/plugin/add-plugin");` Should be mentioned in the docs that "install" is actually just an alias for "add" to avoid confusion.