Files
skillhub/services/indexer/src/skill-indexer.ts
airano 4212b5ba47 sync: stale skill detection, sentry filtering, claim removal, review improvements
Stale Detection:
- Detect skills removed/moved from GitHub (3 consecutive 404s threshold)
- Hide stale skills from browse/search, show warning banner on detail page
- Serve cached files with isStale flag when GitHub returns 404
- Add stale-check crawler command for batch verification
- CLI shows warning when installing stale skills from cache

Sentry & Error Handling:
- Filter browser extension errors and add denyUrls
- Anti-inflation measures and sentinel recalibration for curation

Claim & Removal:
- Enhanced ClaimForm with repo-level removal support
- Add repo-removal-request API endpoint with tests
- Improved owner page with bilingual content

Review Pipeline:
- Review version and reviewer tracking in submit API
- Source format filter for pending reviews
- Updated review tests

Other:
- Updated i18n strings (en/fa)
- BrowseFilters improvements
- Dockerfile updates

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 05:59:26 +03:30

194 lines
6.8 KiB
TypeScript

/**
* Skill indexing utility
* Shared between worker and CLI commands
*/
import type { SourceFormat } from 'skillhub-core';
import { createDb, skillQueries, categoryQueries, addRequestQueries, userQueries, type Database } from '@skillhub/db';
import { sendSkillIndexedEmail } from './email-notify.js';
import type { GitHubCrawler } from './crawler.js';
import { SkillAnalyzer } from './analyzer.js';
import { syncSkillToMeilisearch } from './meilisearch-sync.js';
let db: Database | null = null;
function getDb(): Database {
if (!db) {
db = createDb(process.env.DATABASE_URL);
}
return db;
}
/**
* Index a single skill from a GitHub source
*/
export async function indexSkill(
crawler: GitHubCrawler,
source: { owner: string; repo: string; path: string; branch: string; sourceFormat?: SourceFormat },
force = false
): Promise<string | null> {
const database = getDb();
const analyzer = new SkillAnalyzer();
const sourceFormat = source.sourceFormat || 'skill.md';
// Fetch skill content
console.log(`Fetching ${source.owner}/${source.repo}/${source.path} [${sourceFormat}]...`);
let content;
try {
content = await crawler.fetchSkillContent(source);
} catch (error) {
const errorMsg = error instanceof Error ? error.message : String(error);
// Detect 404 (skill removed from GitHub) — increment stale check
if (errorMsg.includes('not found') || errorMsg.includes('Not Found') || errorMsg.includes('404')) {
const skillName = source.path.split('/').pop() || 'skill';
const formatSuffix = sourceFormat !== 'skill.md' ? `~${sourceFormat.replace('.', '')}` : '';
const skillId = `${source.owner}/${source.repo}/${skillName}${formatSuffix}`;
await skillQueries.incrementStaleCheck(database, skillId).catch((err) => {
console.warn(` -> Failed to increment stale check for ${skillId}:`, err);
});
console.log(` -> ${skillId}: GitHub 404 (stale check incremented)`);
return null;
}
// For non-404 errors, rethrow
throw error;
}
// Analyze the skill with format awareness
const analysis = await analyzer.analyze(content, sourceFormat);
// Skip invalid skills
if (!analysis.validation.isValid) {
console.log(`Skipping invalid skill: ${analysis.validation.errors.map((e) => e.message).join(', ')}`);
return null;
}
// Generate skill ID with format suffix for non-SKILL.md
const skillName = analysis.skill.metadata.name || source.path.split('/').pop() || 'skill';
const formatSuffix = sourceFormat !== 'skill.md' ? `~${sourceFormat.replace('.', '')}` : '';
const skillId = `${source.owner}/${source.repo}/${skillName}${formatSuffix}`;
// Check if skill is blocked (owner requested removal)
const existing = await skillQueries.getById(database, skillId);
if (existing?.isBlocked) {
console.log(`Skill ${skillId} is blocked, skipping`);
return null;
}
// Check if we need to update (unless force)
if (!force) {
if (existing && existing.contentHash === analysis.meta.contentHash) {
// Content unchanged, but check if path/branch changed
// (e.g., repo was restructured, file moved to a different directory)
const actualBranch = source.branch || content.repoMeta.defaultBranch;
if (existing.skillPath !== source.path || existing.branch !== actualBranch) {
console.log(`Skill ${skillId} path changed: ${existing.skillPath}${source.path}`);
// Don't skip - fall through to upsert which now updates skillPath/branch
} else {
console.log(`Skill ${skillId} unchanged, skipping`);
return null;
}
}
}
// Upsert to database
await skillQueries.upsert(database, {
id: skillId,
name: analysis.skill.metadata.name,
description: analysis.skill.metadata.description,
githubOwner: source.owner,
githubRepo: source.repo,
skillPath: source.path,
branch: source.branch || content.repoMeta.defaultBranch,
sourceFormat,
version: analysis.skill.metadata.version,
license: analysis.skill.metadata.license || content.repoMeta.license,
author: analysis.skill.metadata.author,
homepage: analysis.skill.metadata.homepage,
compatibility: analysis.skill.metadata.compatibility,
triggers: analysis.skill.metadata.triggers,
githubStars: content.repoMeta.stars,
githubForks: content.repoMeta.forks,
repoCreatedAt: new Date(content.repoMeta.createdAt),
securityScore: analysis.security.score,
securityStatus: analysis.security.status,
qualityScore: analysis.quality.overall,
qualityDetails: {
documentation: analysis.quality.documentation,
maintenance: analysis.quality.maintenance,
popularity: analysis.quality.popularity,
factors: analysis.quality.factors,
},
contentHash: analysis.meta.contentHash,
rawContent: content.skillMd,
indexedAt: new Date(),
});
// Sync to Meilisearch (optional - continues even if fails)
await syncSkillToMeilisearch({
id: skillId,
name: analysis.skill.metadata.name,
description: analysis.skill.metadata.description,
githubOwner: source.owner,
githubRepo: source.repo,
compatibility: analysis.skill.metadata.compatibility,
githubStars: content.repoMeta.stars,
securityScore: analysis.security.score,
indexedAt: new Date(),
});
// Check for matching add-requests and mark as indexed
try {
const matchingRequests = await addRequestQueries.findApprovedByRepo(
database,
source.owner,
source.repo
);
for (const request of matchingRequests) {
await addRequestQueries.updateStatus(database, request.id, {
status: 'indexed',
indexedSkillId: skillId,
});
// Send email notification
const user = await userQueries.getById(database, request.userId);
if (user?.email) {
const locale = (user.preferredLocale === 'fa' ? 'fa' : 'en') as 'en' | 'fa';
await sendSkillIndexedEmail(
user.email,
locale,
{
skillId,
skillName: analysis.skill.metadata.name,
repositoryUrl: `https://github.com/${source.owner}/${source.repo}`,
}
).catch((err: unknown) => {
console.warn(`[Indexer] Failed to send indexed email for ${skillId}:`, err);
});
}
}
} catch (error) {
console.warn(`[Indexer] Failed to check add-requests for ${skillId}:`, error);
}
// Link skill to categories based on keywords
try {
const categories = await categoryQueries.linkSkillToCategories(
database,
skillId,
analysis.skill.metadata.name,
analysis.skill.metadata.description || ''
);
console.log(` -> Categories: [${categories.join(', ')}]`);
} catch (error) {
console.warn(` -> Failed to link categories:`, error);
}
console.log(`Indexed: ${skillId} [${sourceFormat}] (security: ${analysis.security.score}, quality: ${analysis.quality.overall})`);
return skillId;
}