@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.
Files changed (2) hide show
  1. package/bin/cli.js +1 -1
  2. 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) => `/${s.name}`).join(", ");
207
+ const slashCommands = invocableSkills.map((s) => `/ora/${s.name}`).join(", ");
208
208
 
209
209
  const usage = [
210
210
  "<usage>",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinkcarlos/skillora",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "CLI installer for bundled Claude Code skills (SKILL.md format)",
5
5
  "bin": {
6
6
  "skillora": "bin/cli.js"