/** * GitHub API Import Script for Large-Scale Skill Collection (SMI-860) * * Searches GitHub for Claude-related skills using multiple query strategies: * - topic:claude-skill * - topic:mcp-server * - filename:SKILL.md * - topic:anthropic-skills * * Features: * - Exponential backoff retry for rate limit handling * - Resume support via checkpoint file * - Progress logging * - Output to JSON with metadata * * Usage: * GITHUB_TOKEN=xxx npx tsx packages/core/src/scripts/import-github-skills.ts * * Options: * --resume Resume from last checkpoint * --output Custom output path (default: data/imported-skills.json) */ export * from './types.js'; export * from './utils.js'; export * from './github-client.js'; export * from './checkpoint.js'; export * from './deduplication.js'; export * from './output.js'; export * from './signal-of-intent.js'; //# sourceMappingURL=index.d.ts.map