gitnexus 1.6.4-rc.11 → 1.6.4-rc.12
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/dist/cli/setup.js +2 -2
- package/package.json +1 -1
package/dist/cli/setup.js
CHANGED
|
@@ -512,13 +512,13 @@ async function installCursorSkills(result) {
|
|
|
512
512
|
}
|
|
513
513
|
}
|
|
514
514
|
/**
|
|
515
|
-
* Install global OpenCode skills to ~/.config/opencode/
|
|
515
|
+
* Install global OpenCode skills to ~/.config/opencode/skills/gitnexus/
|
|
516
516
|
*/
|
|
517
517
|
async function installOpenCodeSkills(result) {
|
|
518
518
|
const opencodeDir = path.join(os.homedir(), '.config', 'opencode');
|
|
519
519
|
if (!(await dirExists(opencodeDir)))
|
|
520
520
|
return;
|
|
521
|
-
const skillsDir = path.join(opencodeDir, '
|
|
521
|
+
const skillsDir = path.join(opencodeDir, 'skills');
|
|
522
522
|
try {
|
|
523
523
|
const installed = await installSkillsTo(skillsDir);
|
|
524
524
|
if (installed.length > 0) {
|
package/package.json
CHANGED