@toolr/seedr 0.1.24 → 0.1.26
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.
|
@@ -482,6 +482,11 @@ async function installSkill(item, tools, scope, method, cwd = process.cwd()) {
|
|
|
482
482
|
centralPath = await installToCentralLocation(item, sourcePath, cwd);
|
|
483
483
|
}
|
|
484
484
|
for (const tool of tools) {
|
|
485
|
+
const readsAgentsDir = tool === "gemini" || tool === "codex" || tool === "opencode";
|
|
486
|
+
if (readsAgentsDir && method === "symlink" && centralPath) {
|
|
487
|
+
results.push({ tool, success: true, path: centralPath });
|
|
488
|
+
continue;
|
|
489
|
+
}
|
|
485
490
|
const result = await installSkillForTool(
|
|
486
491
|
item,
|
|
487
492
|
tool,
|
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED