UNPKG

@ibm-adw/skill-toolkit

Version:

Developing your own skills with IBM Automation Digital Worker Skill Toolkit

19 lines (16 loc) 540 B
/* Licensed Materials - Property of IBM 5737-I23 Copyright IBM Corp. 2019. All Rights Reserved. U.S. Government Users Restricted Rights: Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ const generateReadMe = (skillProjectRepo, skillData) => { return '# ' + skillProjectRepo + '\n' + '\n' + '### ' + skillData.name + ' - ' + skillData.packageName + '\n' + 'The skill is documented [here](skill-documentation.md).'; }; module.exports = { generateReadMe };