An open API service indexing awesome lists of open source software.

https://github.com/truemedia/basic-skill

A basic skill for Mind Stack that can say hello and goodbye in many different ways
https://github.com/truemedia/basic-skill

Last synced: 4 months ago
JSON representation

A basic skill for Mind Stack that can say hello and goodbye in many different ways

Awesome Lists containing this project

README

        

# Basic skill
A basic skill for Mind Stack that can say hello and goodbye in many different ways

## Installation

NPM
```bash
npm i --save basic-skillset
```

Yarn
```bash
yarn add basic-skillset
```

## Usage
Node
```js
const Bot = require('mindstack');
const BasicSkill = require('basic-skillset');

let botInstance = new Bot()
.addSkill(BasicSkill) // Basic skill
```