@toolr/seedr 0.1.25 → 0.1.27

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
@@ -23,7 +23,7 @@ import {
23
23
  skillHandler,
24
24
  uninstallSkill,
25
25
  writeTextFile
26
- } from "./chunk-4MZKJ3JE.js";
26
+ } from "./chunk-AHALDEJX.js";
27
27
 
28
28
  // src/cli.ts
29
29
  import { Command as Command5 } from "commander";
package/dist/index.js CHANGED
@@ -15,7 +15,7 @@ import {
15
15
  loadManifest,
16
16
  searchItems,
17
17
  uninstallSkill
18
- } from "./chunk-4MZKJ3JE.js";
18
+ } from "./chunk-AHALDEJX.js";
19
19
 
20
20
  // src/converters/index.ts
21
21
  import matter from "gray-matter";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolr/seedr",
3
- "version": "0.1.25",
3
+ "version": "0.1.27",
4
4
  "description": "Seed your projects with AI configurations",
5
5
  "type": "module",
6
6
  "bin": {