llm-wikis 0.2.2 → 0.2.3
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/package.json
CHANGED
package/postinstall.js
CHANGED
|
@@ -3,7 +3,7 @@ const fs = require('fs');
|
|
|
3
3
|
const path = require('path');
|
|
4
4
|
const os = require('os');
|
|
5
5
|
|
|
6
|
-
const src = path.join(__dirname, '
|
|
6
|
+
const src = path.join(__dirname, 'skills', 'wiki');
|
|
7
7
|
const dest = path.join(os.homedir(), '.claude', 'skills', 'wiki');
|
|
8
8
|
|
|
9
9
|
try {
|
|
@@ -12,5 +12,5 @@ try {
|
|
|
12
12
|
console.log('[llm-wiki-sync] Skill installed to ~/.claude/skills/wiki/');
|
|
13
13
|
} catch (err) {
|
|
14
14
|
console.warn('[llm-wiki-sync] Could not install skill:', err.message);
|
|
15
|
-
console.warn('[llm-wiki-sync] Manually copy the
|
|
15
|
+
console.warn('[llm-wiki-sync] Manually copy the skills/wiki/ directory to ~/.claude/skills/wiki/');
|
|
16
16
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|