Install
openclaw skills install report-generator-adarshGenerates a structured marketing audit report from aggregated data using a single GPT-4.1-mini API call with six predefined sections.
openclaw skills install report-generator-adarshSingle GPT-4.1-mini call that transforms aggregated marketing data into a structured, professional audit report. This is the ONLY AI call in the entire audit pipeline.
interface AuditData {
input: AuditInput;
instagram: InstagramData;
metaAds: MetaAdsData;
keywords: KeywordData;
competitors: CompetitorData;
websiteAudit: WebsiteAuditData;
collectedAt: string;
}
interface MarketingReport {
brand: string;
generatedAt: string;
sections: ReportSections;
rawData: AuditData;
reportMarkdown: string;
}
gpt-4.1-miniOPENAI_API_KEYmax_tokens: 1500, temperature: 0.4## header splittingconst report = await generateMarketingReport(auditData);
console.log(report.reportMarkdown);