add-search-engine
Installation
SKILL.md
Add Search Engine Skill
When the user requests to add a new AI search engine (e.g., "Integrate Claude 3", "Add Anthropic"), follow these steps:
Steps
-
Create Provider File
- Create
src/infrastructure/search/{provider-name}.provider.ts - Import the
ISearchProviderinterface fromsrc/domain/search/types.ts - Implement all required methods
- Create
-
Provider Template
import { ISearchProvider, SearchOptions, SearchResult } from '../../domain/search/types.js'; import { env } from '../../config/index.js'; export class {ProviderName}Provider implements ISearchProvider { private readonly apiKey: string;