0

I'm learning how I might manage multiple similar Alexa Skills at scale. I think I have an approach to create and update the skills using gulp-template and the ask-cli.

However, I can't find a way to programmatically upload logos for the skills. Is this possible via the ask cli, or must I upload them manually?

Swotly
  • 1

1 Answers1

0

If you are using ask cli, publishing related information will be present in the skill-package/skill.json file. Update the "publishingInformation" section per locale with new logos. Reference:documentation

Use "deploy" command to update the skill.

  • Ah, I've only ever downloaded the skill file which contains a reference to an s3 file that I'd uploaded via the Alexa console. You're proposing I edit the skill file to reference a local file that I then deploy via the "deploy" command. Makes sense, thanks – Swotly May 06 '21 at 17:42