@agentdao/core
Version:
Core functionality, skills, and ready-made UI components for AgentDAO - Web3 subscriptions, content generation, social media, help support, live chat, RSS fetching, web search, and agent pricing integration
15 lines (14 loc) • 351 B
TypeScript
export interface RssFetcherOptions {
keyword?: string;
after?: string;
limit?: number;
fields?: string[];
urls?: string[];
summarize?: boolean;
enrich?: boolean;
}
export declare class RssFetcherSkill {
parser: any;
constructor(config?: {});
fetchFeed(url: string, options?: RssFetcherOptions): Promise<any>;
}