[](https://codeclimate.com/github/mokevnin/cli-agent) [](https://codeclimate.com/githu
npm install cli-agent


```
npm install cli-agent --save-dev
`javascript``
// @see tests
const interaction = new CLIAgent(/ path to program /);
let year;
const result = await interaction.wait(/hello/i)
.wait(/question/i)
.send('2014\n')
.wait(/year is (\d+)/, (matches) => {
year = matches[1];
})
.start();