/skills/tutorials/create-skill/typescript/5-update-manifest/
I followed the steps from the TS create skill tutorial and in step 5 there are some ambiguities.
{"code":"ResourceNotFound","message":"/manifest/manifest-1.1.json does not exist"}{YOUR_SKILL_URL}, where did I defined it? Previous steps only talk about "name" or "id". Can I find it in the "appsettings.json"? Did the deployment script create it for me?http://localhost:3978/src/manifest/manifest-1.1.json which also does not work. n addition on my machine localhost is on port 3980.Thanks @bhdzllr for reporting this issue! We will be reviewing this and we will back to you as soon as we have any update.
We're adding this to the backlog to improve the TS docs around skills and publishing. Thanks!
For your question about publishing, you are correct that you can use the publish.ps1 script to publish, and you should be able to find the values for the resourceGroup and botWebAppName in your appsettings.json file after running the deploy.ps1 script.
Hi @bhdzllr, we created the PR #3643 fixing the ambiguities that you mentioned above. Feel free to add your feedback in the Pull Request.
src/manifest but it throws an error if you try to access it fixed in the PR #3601. You can add those changes in the index.ts of your Skill to have access to the manifest.YOUR_SKILL_URL is the endpoint URL where the Skill will receive the message (e.g. http://localhost:3980/api/messsages)publish.ps1 and you can find the botWebAppName and resourceGroupName populated in the appsettings.json file after the deployment of the Skillhttp://localhost:3980/manifest/manifest-1.1.json after adding the changes of the Pull RequestWe will be attentive to your answer 馃槉.
@peterinnesmsft - Please drive this PR to closure to resolve this issue.
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days
This issue is solved with PR #3643.