@skillkit/core 1.19.1 → 1.19.2
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 +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2719,7 +2719,7 @@ declare const KNOWN_SKILL_REPOS: readonly [{
|
|
|
2719
2719
|
readonly description: "Vercel AI SDK skills";
|
|
2720
2720
|
}, {
|
|
2721
2721
|
readonly owner: "composioHQ";
|
|
2722
|
-
readonly repo: "awesome-claude-
|
|
2722
|
+
readonly repo: "awesome-claude-skills";
|
|
2723
2723
|
readonly description: "Curated Claude Code skills";
|
|
2724
2724
|
}];
|
|
2725
2725
|
/**
|
package/dist/index.js
CHANGED
|
@@ -7287,7 +7287,7 @@ import { randomUUID as randomUUID5 } from "crypto";
|
|
|
7287
7287
|
var KNOWN_SKILL_REPOS = [
|
|
7288
7288
|
{ owner: "anthropics", repo: "courses", description: "Anthropic official courses and skills" },
|
|
7289
7289
|
{ owner: "vercel-labs", repo: "ai-sdk-preview-internal-knowledge-base", description: "Vercel AI SDK skills" },
|
|
7290
|
-
{ owner: "composioHQ", repo: "awesome-claude-
|
|
7290
|
+
{ owner: "composioHQ", repo: "awesome-claude-skills", description: "Curated Claude Code skills" }
|
|
7291
7291
|
];
|
|
7292
7292
|
var INDEX_PATH = join14(homedir5(), ".skillkit", "index.json");
|
|
7293
7293
|
var INDEX_CACHE_HOURS = 24;
|
|
@@ -34513,7 +34513,7 @@ var SkillScanner = class {
|
|
|
34513
34513
|
|
|
34514
34514
|
// src/scanner/reporter.ts
|
|
34515
34515
|
import { basename as basename21 } from "path";
|
|
34516
|
-
var SCANNER_VERSION = true ? "1.19.
|
|
34516
|
+
var SCANNER_VERSION = true ? "1.19.2" : "0.0.0";
|
|
34517
34517
|
var SEVERITY_COLORS = {
|
|
34518
34518
|
["critical" /* CRITICAL */]: "\x1B[91m",
|
|
34519
34519
|
["high" /* HIGH */]: "\x1B[31m",
|
|
@@ -34615,13 +34615,13 @@ function formatSarif(result) {
|
|
|
34615
34615
|
driver: {
|
|
34616
34616
|
name: "skillkit-scanner",
|
|
34617
34617
|
version: SCANNER_VERSION,
|
|
34618
|
-
informationUri: "https://
|
|
34618
|
+
informationUri: "https://skillkit.sh",
|
|
34619
34619
|
rules: [...rules.values()].map((r) => ({
|
|
34620
34620
|
id: r.ruleId,
|
|
34621
34621
|
name: r.ruleId,
|
|
34622
34622
|
shortDescription: { text: r.title },
|
|
34623
34623
|
fullDescription: { text: r.description },
|
|
34624
|
-
helpUri: "https://
|
|
34624
|
+
helpUri: "https://skillkit.sh/docs/security",
|
|
34625
34625
|
defaultConfiguration: {
|
|
34626
34626
|
level: severityToSarif[r.severity] ?? "warning"
|
|
34627
34627
|
},
|