@toolr/seedr 0.1.50 → 0.1.52

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.50"
168
+ version: "0.1.52"
169
169
  }),
170
170
  signal: AbortSignal.timeout(4e3)
171
171
  }).catch(() => {
@@ -646,10 +646,7 @@ async function installPluginForTool(item, tool, scope, method, cwd) {
646
646
  const pluginJson = await readJson(
647
647
  join3(tmpPath, ".claude-plugin", "plugin.json")
648
648
  );
649
- const marketplaceJson = await readJson(
650
- join3(tmpPath, ".claude-plugin", "marketplace.json")
651
- );
652
- const marketplace = marketplaceJson.name || item.author?.name || "seedr";
649
+ const marketplace = item.marketplace || item.author?.name || "seedr";
653
650
  const pluginName = pluginJson.name || item.slug;
654
651
  const version = pluginJson.version || "1.0.0";
655
652
  const pluginId = getPluginId(pluginName, marketplace);
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.50",
3
+ "version": "0.1.52",
4
4
  "description": "Seed your projects with AI configurations",
5
5
  "type": "module",
6
6
  "bin": {