@skillkit/core 1.7.0 → 1.7.1
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/index.d.ts +0 -3
- package/dist/index.js +53 -17
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -6447,25 +6447,61 @@ function parseAssertionString(str) {
|
|
|
6447
6447
|
};
|
|
6448
6448
|
}
|
|
6449
6449
|
|
|
6450
|
+
// ../../marketplace/sources.json
|
|
6451
|
+
var sources_default = {
|
|
6452
|
+
$schema: "./sources-schema.json",
|
|
6453
|
+
version: 1,
|
|
6454
|
+
updatedAt: "2026-01-26",
|
|
6455
|
+
description: "Curated skill repository sources - THE SINGLE SOURCE OF TRUTH",
|
|
6456
|
+
sources: [
|
|
6457
|
+
{ source: "anthropics/skills", name: "Anthropic Official", official: true },
|
|
6458
|
+
{ source: "vercel-labs/agent-skills", name: "Vercel Labs", official: true },
|
|
6459
|
+
{ source: "expo/skills", name: "Expo / React Native", official: true },
|
|
6460
|
+
{ source: "remotion-dev/skills", name: "Remotion Video", official: true },
|
|
6461
|
+
{ source: "supabase/agent-skills", name: "Supabase", official: true },
|
|
6462
|
+
{ source: "stripe/ai", name: "Stripe Payments", official: true },
|
|
6463
|
+
{ source: "ComposioHQ/awesome-claude-skills", name: "Composio Awesome" },
|
|
6464
|
+
{ source: "travisvn/awesome-claude-skills", name: "Travis Awesome" },
|
|
6465
|
+
{ source: "mhattingpete/claude-skills-marketplace", name: "Skills Marketplace" },
|
|
6466
|
+
{ source: "coreyhaines31/marketingskills", name: "Marketing Skills" },
|
|
6467
|
+
{ source: "obra/superpowers", name: "Superpowers TDD" },
|
|
6468
|
+
{ source: "softaworks/agent-toolkit", name: "Softaworks Toolkit" },
|
|
6469
|
+
{ source: "wshobson/agents", name: "Dev Patterns" },
|
|
6470
|
+
{ source: "langgenius/dify", name: "Dify Frontend" },
|
|
6471
|
+
{ source: "trailofbits/skills", name: "Trail of Bits Security" },
|
|
6472
|
+
{ source: "better-auth/skills", name: "Better Auth" },
|
|
6473
|
+
{ source: "onmax/nuxt-skills", name: "Nuxt / Vue" },
|
|
6474
|
+
{ source: "hyf0/vue-skills", name: "Vue Best Practices" },
|
|
6475
|
+
{ source: "jezweb/claude-skills", name: "Cloudflare / TanStack" },
|
|
6476
|
+
{ source: "elysiajs/skills", name: "ElysiaJS / Bun" },
|
|
6477
|
+
{ source: "kadajett/agent-nestjs-skills", name: "NestJS" },
|
|
6478
|
+
{ source: "callstackincubator/agent-skills", name: "React Native" },
|
|
6479
|
+
{ source: "cloudai-x/threejs-skills", name: "Three.js" },
|
|
6480
|
+
{ source: "emalorenzo/three-agent-skills", name: "Three.js Advanced" },
|
|
6481
|
+
{ source: "dimillian/skills", name: "SwiftUI iOS" },
|
|
6482
|
+
{ source: "waynesutton/convexskills", name: "Convex Backend" },
|
|
6483
|
+
{ source: "kepano/obsidian-skills", name: "Obsidian Notes" },
|
|
6484
|
+
{ source: "jimliu/baoyu-skills", name: "Baoyu Tools" },
|
|
6485
|
+
{ source: "giuseppe-trisciuoglio/developer-kit", name: "Shadcn / Radix" },
|
|
6486
|
+
{ source: "openrouterteam/agent-skills", name: "OpenRouter SDK" },
|
|
6487
|
+
{ source: "intellectronica/agent-skills", name: "Context7" }
|
|
6488
|
+
]
|
|
6489
|
+
};
|
|
6490
|
+
|
|
6450
6491
|
// src/marketplace/types.ts
|
|
6451
|
-
var DEFAULT_SKILL_SOURCES =
|
|
6452
|
-
{
|
|
6453
|
-
owner
|
|
6454
|
-
|
|
6455
|
-
|
|
6456
|
-
|
|
6457
|
-
|
|
6458
|
-
|
|
6459
|
-
|
|
6460
|
-
|
|
6461
|
-
|
|
6462
|
-
repo: "courses",
|
|
6463
|
-
name: "Anthropic Official",
|
|
6464
|
-
description: "Official Anthropic courses and skills",
|
|
6465
|
-
official: true,
|
|
6466
|
-
branch: "master"
|
|
6492
|
+
var DEFAULT_SKILL_SOURCES = sources_default.sources.map(
|
|
6493
|
+
(s) => {
|
|
6494
|
+
const [owner, repo] = s.source.split("/");
|
|
6495
|
+
return {
|
|
6496
|
+
owner,
|
|
6497
|
+
repo,
|
|
6498
|
+
name: s.name,
|
|
6499
|
+
description: `Skills from ${s.name}`,
|
|
6500
|
+
official: s.official || false,
|
|
6501
|
+
branch: "main"
|
|
6502
|
+
};
|
|
6467
6503
|
}
|
|
6468
|
-
|
|
6504
|
+
);
|
|
6469
6505
|
var MARKETPLACE_CACHE_FILE = "marketplace-index.json";
|
|
6470
6506
|
var DEFAULT_CACHE_TTL = 60 * 60 * 1e3;
|
|
6471
6507
|
|