Sorry for the delayed response. I didn't see this for some reason.
One of the deficiencies of the Prism commanding approach is that they only wired it for Buttons. However, they do describe how you can extend commanding to other control events.
There is an example of that in Prism Explorer. Take a look at Infrastructure.Commanding.SelectionChanged and SelectorSelectionChangedCommandBehavior.
Then look at its usage in the module, ModelExplorer.Explorer.ExplorerView.xaml. Around line 278 you will find a binding of a ComboBox.SelectionChanged event to this command.
Use that as a model to come up with your own command behavior for binding to the TextBox changed event.