Skip to content

Skillset development

Wade Penistone edited this page Feb 10, 2019 · 9 revisions

Creating a skillset

Prerequisites

You will need a functioning Mind stack instance on your development machine using another skillset, to confirm that you have a bot instance ready to attach the skillset you are developing.

Also you will need a new git repo setup with the naming scheme being <skillset-name>-skillset
(eg basic-skillset)

Finally you will need some development knowledge or documentation of the type of skill you are planning to integrate with (if supported).

Boilerplate

You can generate boilerplate code for a skillset by using the Official generator. This will be enough to get you started on writing your own code.

Configuration

Configuration

Data

Data

Code

Code

Tags (Skip if using generator)

Make sure to include the following tags (if your skillset is public) under the keywords section of your package.json:

  • mindstack
  • skillset

Example

"keywords": [
    "mindstack",
    "skillset"
  ],