원클릭으로
marketing-pipeline-automation
Automated AI content pipeline from research to video generation using Claude, OpenAI, and Remotion
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Automated AI content pipeline from research to video generation using Claude, OpenAI, and Remotion
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Agent-driven marketing studio that generates complete launch asset suites (logo reveals, demos, launch videos, social clips, OG assets) from one /marketing command
ScrapeBox Ultimate SEO Automation toolkit for large-scale search optimization, backlink analysis, rank tracking, and link building workflows on Windows.
SEO automation toolkit for backlink analysis, link building, rank tracking, and large-scale search optimization workflows on Windows
Comprehensive SEO automation toolkit for link building, backlink analysis, rank tracking, and large-scale search optimization workflows on Windows.
SEO automation toolkit for link building, backlink analysis, rank tracking, and large-scale search optimization workflows
Large-scale SEO automation toolkit for backlink analysis, link building, keyword harvesting, and rank tracking workflows on Windows.
| name | marketing-pipeline-automation |
| description | Automated AI content pipeline from research to video generation using Claude, OpenAI, and Remotion |
| triggers | ["how do I automate content creation with AI","help me set up the marketing pipeline project","generate video content from text automatically","crawl news and create content with Claude","automate research to video workflow","build AI content generation pipeline","create automated marketing content system","set up remotion video rendering for content"] |
Skill by ara.so — Marketing Skills collection.
This skill enables AI coding agents to help developers use the Ultimate AI Content Pipeline - an automated system that takes a keyword and produces complete content pieces including research, written articles, and rendered videos. The pipeline integrates Claude 3, OpenAI, web scraping, and Remotion for video generation.
The Marketing Pipeline automates the entire content creation workflow:
# Node.js 18+ required
node --version
# Clone the repository
git clone https://github.com/pennydinh/marketing-pineline-share.git
cd marketing-pineline-share
# Install dependencies
npm install
# or
yarn install
Create a .env.local file in the project root:
# AI APIs
OPENAI_API_KEY=
ANTHROPIC_API_KEY=
# Web Scraping
RAPIDAPI_KEY=
# Database (optional)
DATABASE_URL=
# Remotion (for video rendering)
REMOTION_LICENSE_KEY=
# Application
NEXT_PUBLIC_APP_URL=http://localhost:3000
// Start the Next.js development server
npm run dev
// or
yarn dev
// Access at http://localhost:3000
marketing-pineline-share/
├── app/ # Next.js app directory
├── components/ # React components
├── lib/ # Core utilities
│ ├── ai/ # AI integrations
│ ├── scraper/ # Web scraping modules
│ └── video/ # Remotion video generation
├── remotion/ # Video templates
└── public/ # Static assets
// lib/scraper/news-crawler.ts
import { fetchNewsFromSources } from '@/lib/scraper/news-crawler';
interface NewsSource {
name: string;
url: string;
selector: string;
}
async function gatherResearch(keyword: string) {
const sources: NewsSource[] = [
{ name: 'TechCrunch', url: 'https://techcrunch.com', selector: '.post-block' },
{ name: 'a16z', url: 'https://a16z.com/posts', selector: '.article' }
];
const results = await fetchNewsFromSources(keyword, sources, {
timeRange: '24h',
maxResults: 20
});
return results;
}
// Usage
const research = await gatherResearch('AI automation');
console.log(research.articles); // Array of crawled articles
// lib/ai/content-generator.ts
import Anthropic from '@anthropic-ai/sdk';
import OpenAI from 'openai';
const anthropic = new Anthropic({
apiKey: process.env.ANTHROPIC_API_KEY,
});
const openai = new OpenAI({
apiKey: process.env.OPENAI_API_KEY,
});
interface ContentRequest {
keyword: string;
format: 'toplist' | 'pov' | 'case-study' | 'how-to';
language: 'en' | 'vi';
tone: 'expert' | 'friendly' | 'humorous';
researchData: any[];
}
async function generateContentWithClaude(request: ContentRequest) {
const prompt = buildPrompt(request);
const message = await anthropic.messages.create({
model: 'claude-3-5-sonnet-20241022',
max_tokens: 4096,
messages: [{
role: 'user',
content: prompt
}]
});
return message.content[0].text;
}
async function generateContentWithOpenAI(request: ContentRequest) {
const prompt = buildPrompt(request);
const completion = await openai.chat.completions.create({
model: 'gpt-4-turbo-preview',
messages: [
{ role: 'system', content: 'You are an expert content creator.' },
{ role: 'user', content: prompt }
],
max_tokens: 4096
});
return completion.choices[0].message.content;
}
function buildPrompt(request: ContentRequest): string {
const { keyword, format, language, tone, researchData } = request;
return `
Create a ${format} article about "${keyword}" in ${language}.
Tone: ${tone}
Based on this research data: ${JSON.stringify(researchData)}
Requirements:
- Include data-backed insights
- Use recent statistics (last 24h)
- Format for ${language === 'vi' ? 'Vietnamese' : 'English'} audience
- Optimize for SEO
`;
}
// lib/video/render-video.ts
import { bundle } from '@remotion/bundler';
import { renderMedia, selectComposition } from '@remotion/renderer';
import path from 'path';
interface VideoConfig {
title: string;
content: string[];
style: 'infographic' | 'text-animation' | 'slideshow';
platform: 'reels' | 'tiktok' | 'shorts';
}
async function renderContentVideo(config: VideoConfig) {
const { title, content, style, platform } = config;
// Platform-specific dimensions
const dimensions = {
reels: { width: 1080, height: 1920 },
tiktok: { width: 1080, height: 1920 },
shorts: { width: 1080, height: 1920 }
};
const { width, height } = dimensions[platform];
// Bundle Remotion project
const bundleLocation = await bundle({
entryPoint: path.join(process.cwd(), 'remotion/index.ts'),
webpackOverride: (config) => config,
});
// Select composition
const composition = await selectComposition({
serveUrl: bundleLocation,
id: style,
inputProps: {
title,
content,
width,
height
}
});
// Render video
const outputPath = path.join(process.cwd(), 'public/videos', `${Date.now()}.mp4`);
await renderMedia({
composition,
serveUrl: bundleLocation,
codec: 'h264',
outputLocation: outputPath,
inputProps: {
title,
content
}
});
return outputPath;
}
// remotion/compositions/Infographic.tsx
import { AbsoluteFill, useCurrentFrame, useVideoConfig, interpolate } from 'remotion';
interface InfographicProps {
title: string;
content: string[];
}
export const Infographic: React.FC<InfographicProps> = ({ title, content }) => {
const frame = useCurrentFrame();
const { fps, durationInFrames } = useVideoConfig();
const titleOpacity = interpolate(
frame,
[0, 30],
[0, 1],
{ extrapolateRight: 'clamp' }
);
const titleScale = interpolate(
frame,
[0, 30],
[0.8, 1],
{ extrapolateRight: 'clamp' }
);
return (
<AbsoluteFill style={{ backgroundColor: '#1a1a1a' }}>
<div style={{
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
padding: '40px',
height: '100%'
}}>
<h1 style={{
color: 'white',
fontSize: '72px',
fontWeight: 'bold',
textAlign: 'center',
opacity: titleOpacity,
transform: `scale(${titleScale})`
}}>
{title}
</h1>
<div style={{ marginTop: '60px' }}>
{content.map((item, index) => {
const itemFrame = 40 + (index * 20);
const itemOpacity = interpolate(
frame,
[itemFrame, itemFrame + 15],
[0, 1],
{ extrapolateRight: 'clamp' }
);
return (
<p key={index} style={{
color: '#ffffff',
fontSize: '36px',
marginBottom: '30px',
opacity: itemOpacity
}}>
{item}
</p>
);
})}
</div>
</div>
</AbsoluteFill>
);
};
// app/api/generate-content/route.ts
import { NextRequest, NextResponse } from 'next/server';
import { gatherResearch } from '@/lib/scraper/news-crawler';
import { generateContentWithClaude } from '@/lib/ai/content-generator';
import { renderContentVideo } from '@/lib/video/render-video';
export async function POST(request: NextRequest) {
try {
const { keyword, format, language, platform } = await request.json();
// Step 1: Research
console.log('🔍 Gathering research...');
const research = await gatherResearch(keyword);
// Step 2: Generate content
console.log('✍️ Generating content...');
const content = await generateContentWithClaude({
keyword,
format,
language,
tone: 'expert',
researchData: research.articles
});
// Parse content into video-friendly format
const contentLines = content.split('\n').filter(line => line.trim());
// Step 3: Render video
console.log('🎬 Rendering video...');
const videoPath = await renderContentVideo({
title: keyword,
content: contentLines.slice(0, 5), // First 5 key points
style: 'infographic',
platform
});
return NextResponse.json({
success: true,
data: {
content,
videoUrl: videoPath.replace(process.cwd() + '/public', '')
}
});
} catch (error) {
console.error('Pipeline error:', error);
return NextResponse.json(
{ success: false, error: error.message },
{ status: 500 }
);
}
}
// components/ContentPipeline.tsx
'use client';
import { useState } from 'react';
export function ContentPipeline() {
const [keyword, setKeyword] = useState('');
const [loading, setLoading] = useState(false);
const [result, setResult] = useState<any>(null);
const handleGenerate = async () => {
setLoading(true);
try {
const response = await fetch('/api/generate-content', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
keyword,
format: 'toplist',
language: 'vi',
platform: 'reels'
})
});
const data = await response.json();
setResult(data);
} catch (error) {
console.error('Error:', error);
} finally {
setLoading(false);
}
};
return (
<div className="max-w-4xl mx-auto p-6">
<h1 className="text-3xl font-bold mb-6">AI Content Pipeline</h1>
<div className="space-y-4">
<input
type="text"
value={keyword}
onChange={(e) => setKeyword(e.target.value)}
placeholder="Enter keyword (e.g., 'AI automation')"
className="w-full px-4 py-2 border rounded"
/>
<button
onClick={handleGenerate}
disabled={loading || !keyword}
className="px-6 py-2 bg-blue-600 text-white rounded disabled:opacity-50"
>
{loading ? 'Generating...' : 'Generate Content'}
</button>
{result && (
<div className="mt-6 space-y-4">
<div className="p-4 bg-gray-50 rounded">
<h3 className="font-bold mb-2">Generated Content:</h3>
<p className="whitespace-pre-wrap">{result.data.content}</p>
</div>
{result.data.videoUrl && (
<div>
<h3 className="font-bold mb-2">Generated Video:</h3>
<video src={result.data.videoUrl} controls className="w-full" />
</div>
)}
</div>
)}
</div>
</div>
);
}
// config/ai-config.ts
export const AI_CONFIG = {
primaryModel: 'claude', // or 'openai'
models: {
claude: {
model: 'claude-3-5-sonnet-20241022',
maxTokens: 4096
},
openai: {
model: 'gpt-4-turbo-preview',
maxTokens: 4096
}
}
};
// config/scraper-config.ts
export const SCRAPER_CONFIG = {
sources: [
{ name: 'TechCrunch', url: 'https://techcrunch.com', enabled: true },
{ name: 'a16z', url: 'https://a16z.com/posts', enabled: true },
{ name: 'Twitter', url: 'https://twitter.com', enabled: false } // Requires auth
],
timeRange: '24h',
maxArticles: 20,
timeout: 30000
};
// config/video-config.ts
export const VIDEO_CONFIG = {
defaultStyle: 'infographic',
fps: 30,
platforms: {
reels: { width: 1080, height: 1920, duration: 30 },
tiktok: { width: 1080, height: 1920, duration: 60 },
shorts: { width: 1080, height: 1920, duration: 60 }
}
};
async function generateBatchContent(keywords: string[]) {
const results = await Promise.all(
keywords.map(async (keyword) => {
const research = await gatherResearch(keyword);
const content = await generateContentWithClaude({
keyword,
format: 'toplist',
language: 'vi',
tone: 'expert',
researchData: research.articles
});
return { keyword, content };
})
);
return results;
}
async function generateMultiLanguage(keyword: string) {
const research = await gatherResearch(keyword);
const [english, vietnamese] = await Promise.all([
generateContentWithClaude({
keyword,
format: 'toplist',
language: 'en',
tone: 'expert',
researchData: research.articles
}),
generateContentWithClaude({
keyword,
format: 'toplist',
language: 'vi',
tone: 'expert',
researchData: research.articles
})
]);
return { english, vietnamese };
}
// lib/utils/rate-limiter.ts
class RateLimiter {
private queue: Promise<any> = Promise.resolve();
async throttle<T>(fn: () => Promise<T>, delay: number = 1000): Promise<T> {
this.queue = this.queue.then(() =>
new Promise(resolve => setTimeout(resolve, delay))
);
await this.queue;
return fn();
}
}
const limiter = new RateLimiter();
// Usage
const content = await limiter.throttle(() =>
generateContentWithClaude(request)
);
# Increase Node.js memory limit
NODE_OPTIONS="--max-old-space-size=4096" npm run dev
// Add user agent rotation
const USER_AGENTS = [
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36'
];
function getRandomUserAgent() {
return USER_AGENTS[Math.floor(Math.random() * USER_AGENTS.length)];
}
// Check .env.local exists
if (!process.env.OPENAI_API_KEY) {
throw new Error('OPENAI_API_KEY not found in environment variables');
}
# Development
npm run dev # Start dev server
npm run build # Build for production
npm run start # Start production server
# Remotion
npm run remotion # Open Remotion studio
npm run render # Render video compositions
# Testing
npm run test # Run tests
npm run lint # Run linter