commands: [
{
name: "Respond",
description:
"Respond with something incredibly insightful to the user.",
// what the user actually has to say to run this command
match: "hello world",
// the js that's run on the page
pageFn: function () {
alert("Hello, Developer!");
},
},
],
After I changed it to “Respond” which is key defined in 5 min quick start, it works!
I think it would be better that keys are matched between both examples.