1m
you got me 
First steps to get it working.
download a fresh image and flash it.
Update the system
sudo apt update && sudo apt upgrade
Install node red and npm by this script.
bash <(curl -sL https://raw.githubusercontent.com/node-red/raspbian-deb-package/master/resources/update-nodejs-and-nodered)
Credits to bitluni.net and his node red tutorial.
Let node red start on boot
sudo systemctl enable nodered.service
Perform a reboot and look if node-red starts
reboot sudo init 6
http://your_rpi_ip:1880
Install some missing dependencies
sudo apt-get install libmagic-dev libatlas-base-dev
Install dependencies for snowboy
npm install nan
Install snowboy
npm install snowboy
Setup the matrix repository
curl https://apt.matrix.one/doc/apt-key.gpg | sudo apt-key add -
echo "deb https://apt.matrix.one/raspbian $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/matrixlabs.list
Update the apt cache
sudo apt update
Install MALOS
sudo apt-get install matrixio-malos
followed by a reboot.
reboot sudo init 6
Now install missing node red packages. I did that over the Node-Red interface Manage palette.
node-red-dashboard, node-red-contrib-micropi, node-red-contrib-snowboy, node-red-node-weather-underground, node-red-node-watson
Perform a reboot to load all modules correctly.
reboot sudo init 6
Start node red over the browser and insert the flow’s from @johnwalicki
Allready tested:
arecord with Matrix Voice
Simple Speech Dashboard
Did create allready my own wakeword.pmdl and do further work on sunday.
Hope this helps someone. If not feel free to ask or improve this post.
NOTE
If you do it that way like i understand from @johnwalicki the file to edit the microphone is not under
/usr/lib/node_modules/node-red-contrib-micropi/micropi/nodes/micropi/lib/mic.js
you can find the file under
/home/pi/.node-red/node_modules/node-red-contrib-micropi/micropi/nodes/micropi/lib/mic.js
But not tested the corresponding flow yet. 