Merge branch 'skill-scan-refresh' into master

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-11 07:34:31 -04:00
+31
View File
@@ -2016,6 +2016,37 @@ export function companySkillService(db: Db) {
}
}
// Re-scan GitHub/sks_sh sources to pick up newly added skills
const existingSkills = acceptedSkills;
const sourceByLocator = new Map<string, CompanySkill[]>();
for (const skill of existingSkills) {
if (skill.sourceType !== "github" && skill.sourceType !== "skills_sh") continue;
const locator = skill.sourceLocator ?? "";
if (!locator) continue;
if (!sourceByLocator.has(locator)) sourceByLocator.set(locator, []);
sourceByLocator.get(locator)!.push(skill);
}
for (const [sourceLocator, skillsAtSource] of sourceByLocator) {
try {
const result = await readUrlSkillImports(companyId, sourceLocator, null);
for (const nextSkill of result.skills) {
const existing = acceptedSkills.find((s) => s.slug === nextSkill.slug);
if (!existing) {
// New skill discovered — derive key and upsert
nextSkill.key = deriveCanonicalSkillKey(companyId, nextSkill);
const persisted = (await upsertImportedSkills(companyId, [nextSkill]))[0];
if (persisted) {
imported.push(persisted);
upsertAcceptedSkill(persisted);
}
}
}
} catch {
// Best-effort: don't fail the whole scan if one source fails
warnings.push(`Could not re-scan source ${sourceLocator} — skipping.`);
}
}
return {
scannedProjects: scannedProjectIds.size,
scannedWorkspaces: scanTargets.length,