README
A Jetpack-compatible module for GCLI commands.
Currently I have no idea how this works. Maybe something like this:
var Gcli = require("gcli");
Gcli.addCommand({
name: 'rdp-monitor',
description: 'Commands to control the RDP Monitor DevTools'
});
Gcli.addCommand({
name: "rdp-monitor open",
description: "Open the RDP Monitor DevTools Tab",
exec: function(args, context) {
// TODO: open devtools tab
}
});