@gabrihhh/jarvis 2.0.3 → 2.0.4

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/jarvis.js CHANGED
@@ -60,13 +60,14 @@ if (args.includes('--graph')) {
60
60
  writeFileSync(settingsPath, JSON.stringify(settings, null, 2));
61
61
  console.log(' ✓ Status bar configured');
62
62
 
63
- // Slash commands → ~/.claude/commands/
64
- const commandsDir = join(homedir(), '.claude', 'commands');
65
- mkdirSync(commandsDir, { recursive: true });
66
- const srcCommands = join(__dir, '../.claude/commands');
67
- for (const file of ['setup-memory.md', 'memory-index.md']) {
68
- copyFileSync(join(srcCommands, file), join(commandsDir, file));
69
- console.log(` ✓ Slash command /${file.replace('.md', '')} installed`);
63
+ // Slash commands → ~/.claude/skills/<name>/SKILL.md
64
+ const skillsDir = join(homedir(), '.claude', 'skills');
65
+ const srcSkills = join(__dir, '../.claude/skills');
66
+ for (const skill of ['setup-memory', 'memory-index']) {
67
+ const destDir = join(skillsDir, skill);
68
+ mkdirSync(destDir, { recursive: true });
69
+ copyFileSync(join(srcSkills, skill, 'SKILL.md'), join(destDir, 'SKILL.md'));
70
+ console.log(` ✓ Slash command /${skill} installed`);
70
71
  }
71
72
 
72
73
  console.log('\n Restart Claude Code to activate.\n');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gabrihhh/jarvis",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "Claude Code terminal dashboard + semantic memory graph via Neo4j",
5
5
  "bin": {
6
6
  "jarvis": "bin/jarvis.js",
@@ -13,7 +13,7 @@
13
13
  "files": [
14
14
  "bin/",
15
15
  "src/",
16
- ".claude/commands/"
16
+ ".claude/skills/"
17
17
  ],
18
18
  "keywords": [
19
19
  "claude",