install-expo-modules currently forces package install (expo install, babel-preset-expo) and pod install, which makes it hard to use in CI, monorepos, or setups where dependency installation is already handled externally. It would be helpful to add a few optional flags like --skip-package-install, --skip-pod-install, and --platform ios|android so the command can be used purely for native/config integration when needed.
This is a small, non-breaking change—default behavior remains the same, and the implementation is straightforward since Android/iOS steps are already independent and can be gated with simple conditionals.
This would make the tool much more flexible without adding complexity for existing users.