@toolr/seedr 0.1.49 → 0.1.51

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.
@@ -112,7 +112,7 @@ async function fetchItemToDestination(item, destPath) {
112
112
  await fetchFileTree(item.contents.files, remote, destPath);
113
113
  return;
114
114
  }
115
- const filesToFetch = item.type === "skill" ? ["SKILL.md"] : item.type === "plugin" ? [".claude-plugin/plugin.json", ".claude-plugin/marketplace.json"] : [`${item.type}.md`];
115
+ const filesToFetch = item.type === "skill" ? ["SKILL.md"] : item.type === "plugin" ? [".claude-plugin/plugin.json"] : [`${item.type}.md`];
116
116
  await mkdir2(destPath, { recursive: true });
117
117
  for (const file of filesToFetch) {
118
118
  const content = await fetchRemote(`${remote}/${file}`);
package/dist/cli.js CHANGED
@@ -23,7 +23,7 @@ import {
23
23
  skillHandler,
24
24
  uninstallSkill,
25
25
  writeTextFile
26
- } from "./chunk-6A3VPHMO.js";
26
+ } from "./chunk-U2KZAN6F.js";
27
27
 
28
28
  // src/cli.ts
29
29
  import { Command as Command5 } from "commander";
@@ -165,7 +165,7 @@ function trackInstalls(slug, type, results, scope) {
165
165
  type,
166
166
  tool: result.tool,
167
167
  scope,
168
- version: "0.1.49"
168
+ version: "0.1.51"
169
169
  }),
170
170
  signal: AbortSignal.timeout(4e3)
171
171
  }).catch(() => {
package/dist/index.js CHANGED
@@ -15,7 +15,7 @@ import {
15
15
  loadManifest,
16
16
  searchItems,
17
17
  uninstallSkill
18
- } from "./chunk-6A3VPHMO.js";
18
+ } from "./chunk-U2KZAN6F.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.49",
3
+ "version": "0.1.51",
4
4
  "description": "Seed your projects with AI configurations",
5
5
  "type": "module",
6
6
  "bin": {