A JavaScript library to enable intellisense based on a grammar. Example:
Sentence -> Greeting | Command
Greeting -> "hello" Name
Name -> string
Command -> "execute " commandName
commandName -> "test" | "build" | "verify"
Then users will be guided with suggestions as they type