solmate-skills 1.0.0 → 1.0.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
@@ -35,7 +35,7 @@ function listSkills() {
35
35
  const skills = getAvailableSkills();
36
36
  console.log('\nAvailable skills to install:');
37
37
  skills.forEach(skill => console.log(` - ${skill}`));
38
- console.log('\nUsage: npx solmate-skills install <skill-name> | install-all\n');
38
+ console.log('\nUsage: npx solmate-skills install <skill-name> | all\n');
39
39
  }
40
40
 
41
41
  function installSkill(skillName) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solmate-skills",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Curated skills for Solmate projects",
5
5
  "main": "bin/cli.js",
6
6
  "bin": {