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
- Host: GitHub
- URL: https://github.com/truemedia/basic-skill
- Owner: Truemedia
- License: mit
- Created: 2018-10-28T16:31:40.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-09T20:27:46.000Z (over 6 years ago)
- Last Synced: 2024-12-18T12:02:36.451Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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
```