@gabrihhh/jarvis 2.0.2 → 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/
|
|
64
|
-
const
|
|
65
|
-
|
|
66
|
-
const
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
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
|
+
"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/"
|
|
16
|
+
".claude/skills/"
|
|
17
17
|
],
|
|
18
18
|
"keywords": [
|
|
19
19
|
"claude",
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"permissions": {
|
|
3
|
-
"allow": [
|
|
4
|
-
"Bash(head -50 ~/.claude/telemetry/*.json)",
|
|
5
|
-
"Bash(grep -l \"usage\\\\|tokens\\\\|cost\\\\|model\" ~/.claude/projects/*/*.jsonl)",
|
|
6
|
-
"Bash(xargs -I {} sh -c 'echo \"=== {} ===\" && cat {}')",
|
|
7
|
-
"Bash(chmod +x /tmp/analyze_claude_data.sh)",
|
|
8
|
-
"Bash(/tmp/analyze_claude_data.sh)",
|
|
9
|
-
"Read(//tmp/**)",
|
|
10
|
-
"Bash(chmod +x:*)",
|
|
11
|
-
"Bash(npm install:*)",
|
|
12
|
-
"Bash(node:*)",
|
|
13
|
-
"Bash(claude-usage:*)",
|
|
14
|
-
"Bash(COLUMNS=60 node -e \"process.stdout.columns=60; import\\('./bin/claude-usage.js'\\)\")",
|
|
15
|
-
"Bash(npm set:*)",
|
|
16
|
-
"Bash(git init:*)",
|
|
17
|
-
"Bash(git add:*)",
|
|
18
|
-
"Bash(git commit -m ':*)",
|
|
19
|
-
"Bash(npm publish:*)",
|
|
20
|
-
"Bash(git commit:*)",
|
|
21
|
-
"Bash(git push:*)",
|
|
22
|
-
"Read(//home/patara/.nvm/versions/node/v18.20.8/lib/node_modules/@gabrihhh/jarvis/**)"
|
|
23
|
-
]
|
|
24
|
-
}
|
|
25
|
-
}
|
|
File without changes
|
|
File without changes
|