use a fork of Inquirer that lets us get rid of the question mark prefix
diff --git a/README.md b/README.md
index 353c248..7925bfe 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@
 # Attaching to an action
 Say for example you wish to attach to an action `foo`, and this action occurs in a sequence `seq`.
 ```
-? (wskdb) attach foo
+(wskdb) attach foo
 Attaching to foo
    Creating action trampoline
    Creating sequence splice seq
@@ -33,7 +33,7 @@
 
 If you wish to limit the instrumentation to the action, avoiding any containing rules or sequences:
 ```
-? (wskdb) attach foo --action-only
+(wskdb) attach foo --action-only
 Attaching to foo
    Creating action trampoline
 ```
diff --git a/client/lib/repl.js b/client/lib/repl.js
index bfbfd54..7862b6a 100644
--- a/client/lib/repl.js
+++ b/client/lib/repl.js
@@ -104,6 +104,7 @@
 function repl(wskprops) {
     prompt.prompt([{
 	name: 'command', message: '(wskdb)',
+	prefixMessage: '', // override the default question mark prefix
 	validate: function(line) {
 	    var commandLine = line.split(/\s+/);
 	    return line.length == 0 || commandHandlers[commandLine[0]] ? true : "Invalid command";
diff --git a/client/package.json b/client/package.json
index ef01de3..766b647 100644
--- a/client/package.json
+++ b/client/package.json
@@ -13,7 +13,7 @@
     "colors": "^1.1.2",
     "columnify": "^1.5.4",
     "expand-home-dir": "0.0.3",
-    "inquirer": "^1.1.3",
+    "inquirer": "git@github.com:starpit/Inquirer.js.git",
     "node-inspector": "^0.12.8",
     "open": "0.0.5",
     "openwhisk": "^2.1.3",