Getting Started - Incorrect 'tagocore' property name in manifest example.

Getting Started - Incorrect 'tagocore' property name in manifest example.

The package.json example has 'tagocore' as property name for the plugin description but it should be 'tcore' as shown below. The error that is thrown is kinda misleading because that suggests there is something wrong with the short_description.


  1. {
  2.   "name": "router_plugin",
  3.   "version": "1.0.0",
  4.   "tcore": {
  5.     "name": "MyPlugin",
  6.     "short_description": "Short",
  7.     "types": [
  8.       "service"
  9.     ]
  10.   },
  11.   "dependencies": {
  12.     "@tago-io/tcore-sdk": "^0.7.2",
  13.     "express": "^4.18.2"
  14.   }
  15. }