@tinkcarlos/skillora 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +1 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -204,7 +204,7 @@ function escapeXml(value) {
|
|
|
204
204
|
|
|
205
205
|
function renderSkillsTable(skills, cliName) {
|
|
206
206
|
const invocableSkills = skills.filter((s) => s.userInvocable);
|
|
207
|
-
const slashCommands = invocableSkills.map((s) =>
|
|
207
|
+
const slashCommands = invocableSkills.map((s) => `/ora/${s.name}`).join(", ");
|
|
208
208
|
|
|
209
209
|
const usage = [
|
|
210
210
|
"<usage>",
|