Gemini AI를 사용하여 GitHub 인기 저장소를 자동으로 주간 튜토리얼로 생성 및 WordPress에 게시
중급
이것은Content Creation, Multimodal AI분야의자동화 워크플로우로, 9개의 노드를 포함합니다.주로 Code, SplitOut, EmailSend, Wordpress, HttpRequest 등의 노드를 사용하며. GitHub 인기 저장소를 자동으로 주간 튜토리얼로 생성하여 WordPress에 게시 (Gemini AI 사용)
사전 요구사항
- •대상 API의 인증 정보가 필요할 수 있음
- •Google Gemini API Key
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"meta": {
"instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc"
},
"nodes": [
{
"id": "a821ae55-bb91-4a7b-9962-2cbe3c83ead9",
"name": "Sticky Note",
"type": "n8n-nodes-base.stickyNote",
"position": [
-128,
-208
],
"parameters": {
"width": 380,
"height": 440,
"content": "## Weekly Tutorial Generator\n\n**What it does:**\n\n**Author: David Olusola**\n- Scans GitHub for trending repos every Monday\n- Creates comprehensive tutorials based on hot projects\n- Generates step-by-step guides with code examples\n- Saves as drafts + emails you notifications\n\n**Setup Required:**\n1. Configure WordPress credentials\n2. Set up email credentials for notifications\n3. Optionally add GitHub token for higher API limits\n\n**Perfect for:**\n- Developer blogs\n- Programming education sites\n- Staying current with trending technologies\n- Building tutorial content library"
},
"typeVersion": 1,
"Google Gemini Chat Model": {
"ai_languageModel": [
[
{
"node": "AI Tutorial Generator",
"type": "ai_languageModel",
"index": 0
}
]
]
}
},
{
"id": "8c8478b1-b8dd-486e-890b-06fc4653832b",
"name": "매주 월요일 오전 10시",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
16,
80
],
"parameters": {
"rule": {
"interval": [
{
"field": "cronExpression",
"expression": "0 10 * * 1"
}
]
}
},
"typeVersion": 1.2
},
{
"id": "0fa5dbc6-78a8-4bf7-858a-b1789f2933ff",
"name": "인기 저장소 가져오기",
"type": "n8n-nodes-base.httpRequest",
"position": [
240,
80
],
"parameters": {
"url": "https://api.github.com/search/repositories",
"options": {}
},
"typeVersion": 4.1
},
{
"id": "24c45e82-449d-42c7-a9b3-23a3771890ca",
"name": "AI 튜토리얼 생성기",
"type": "@n8n/n8n-nodes-langchain.agent",
"position": [
688,
80
],
"parameters": {
"options": {
"systemMessage": "You are a technical tutorial writer. Based on the provided GitHub repository information, create a comprehensive tutorial that teaches developers how to build something similar or use this technology. Include: 1) Introduction and overview, 2) Prerequisites, 3) Step-by-step implementation guide with code examples, 4) Best practices, 5) Common pitfalls to avoid, 6) Next steps and resources. Make it beginner-friendly but technically accurate. Format with proper markdown including code blocks."
}
},
"typeVersion": 2.2
},
{
"id": "428f39bc-ee5a-4a98-b15d-cb432eb67261",
"name": "Google Gemini Chat Model",
"type": "@n8n/n8n-nodes-langchain.lmChatGoogleGemini",
"position": [
768,
304
],
"parameters": {
"options": {}
},
"credentials": {
"googlePalmApi": {
"id": "wNw45YZvXXpeocJ2",
"name": "TST API"
}
},
"typeVersion": 1
},
{
"id": "f7e650f7-ec34-4aa3-b534-8232dff02270",
"name": "튜토리얼 게시물 생성",
"type": "n8n-nodes-base.wordpress",
"position": [
1264,
80
],
"parameters": {
"title": "=Tutorial: Building with {{$json.name}} - {{$json.language}} Guide",
"additionalFields": {
"tags": [
"tutorial",
"{{$json.language}}",
"development",
"guide",
"{{$json.name}}"
],
"status": "draft",
"content": "",
"categories": [
"Tutorials",
"Programming",
"{{$json.language}}"
]
}
},
"typeVersion": 1
},
{
"id": "3b9f51a2-c4c0-49f5-b12c-161ec09754f7",
"name": "관리자에게 알림",
"type": "n8n-nodes-base.emailSend",
"position": [
1488,
80
],
"webhookId": "721daf9a-7dd8-4cbb-a480-19c08487d65a",
"parameters": {
"options": {},
"subject": "=New Tutorial Draft Created: {{$json.name}}"
},
"credentials": {
"smtp": {
"id": "0xVva6dyyi5SuxBe",
"name": "SMTP account"
}
},
"typeVersion": 2
},
{
"id": "b7eb9512-221d-4347-83cb-ed37e9342672",
"name": "저장소 항목 분할",
"type": "n8n-nodes-base.splitOut",
"position": [
464,
80
],
"parameters": {
"options": {}
},
"typeVersion": 1
},
{
"id": "5c38943d-e55a-490e-90e5-be4154243db3",
"name": "AI 튜토리얼 결과물 파싱",
"type": "n8n-nodes-base.code",
"position": [
1040,
80
],
"parameters": {
"jsCode": "const items = $input.all();\n\nreturn items.map(item => {\n // Parse the AI tutorial output\n let aiOutput = item.json.output;\n \n // Remove markdown code blocks if present\n aiOutput = aiOutput.replace(/```json\\s*/, '').replace(/```\\s*$/, '');\n \n // Try to parse as JSON, fallback to using the content directly\n let parsedOutput;\n try {\n parsedOutput = JSON.parse(aiOutput.trim());\n } catch (e) {\n // If not JSON, treat as plain markdown content\n parsedOutput = {\n title: `Tutorial: Building with ${item.json.name} - ${item.json.language} Guide`,\n content: aiOutput\n };\n }\n \n return {\n json: {\n title: parsedOutput.title || `Tutorial: Building with ${item.json.name} - ${item.json.language} Guide`,\n content: parsedOutput.content || aiOutput,\n repoName: item.json.name,\n language: item.json.language,\n description: item.json.description,\n url: item.json.html_url,\n stars: item.json.stargazers_count\n }\n };\n});"
},
"typeVersion": 2
}
],
"pinData": {},
"connections": {
"0fa5dbc6-78a8-4bf7-858a-b1789f2933ff": {
"main": [
[
{
"node": "b7eb9512-221d-4347-83cb-ed37e9342672",
"type": "main",
"index": 0
}
]
]
},
"8c8478b1-b8dd-486e-890b-06fc4653832b": {
"main": [
[
{
"node": "0fa5dbc6-78a8-4bf7-858a-b1789f2933ff",
"type": "main",
"index": 0
}
]
]
},
"f7e650f7-ec34-4aa3-b534-8232dff02270": {
"main": [
[
{
"node": "3b9f51a2-c4c0-49f5-b12c-161ec09754f7",
"type": "main",
"index": 0
}
]
]
},
"24c45e82-449d-42c7-a9b3-23a3771890ca": {
"main": [
[
{
"node": "5c38943d-e55a-490e-90e5-be4154243db3",
"type": "main",
"index": 0
}
]
]
},
"b7eb9512-221d-4347-83cb-ed37e9342672": {
"main": [
[
{
"node": "24c45e82-449d-42c7-a9b3-23a3771890ca",
"type": "main",
"index": 0
}
]
]
},
"428f39bc-ee5a-4a98-b15d-cb432eb67261": {
"ai_languageModel": [
[
{
"node": "24c45e82-449d-42c7-a9b3-23a3771890ca",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"5c38943d-e55a-490e-90e5-be4154243db3": {
"main": [
[
{
"node": "f7e650f7-ec34-4aa3-b534-8232dff02270",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 콘텐츠 제작, 멀티모달 AI
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
NewsAPI 및 Google Gemini를 사용한 기술 뉴스 블로그 기사 자동 생성 및 WordPress에 게시
NewsAPI 및 Google Gemini를 사용하여 기술 뉴스 블로그 게시물 자동 생성 및 WordPress에 게시
Code
Wordpress
Http Request
+
Code
Wordpress
Http Request
9 노드David Olusola
콘텐츠 제작
Gemini AI 및 Blotato를 사용한 WordPress 기사 소셜 미디어 자동 게시
Gemini AI 및 Blotato를 사용하여 WordPress 기사를 소셜 미디어에 자동 게시
If
Code
Split Out
+
If
Code
Split Out
11 노드David Olusola
소셜 미디어
Gemini를 사용하여 WordPress에서 AI로운 주간 이메일 소식 생성
Gemini를 사용하여 WordPress에서 AI로운 주간 이메일 소식지 생성
If
Code
Email Send
+
If
Code
Email Send
8 노드David Olusola
소셜 미디어
콘텐츠생성기 v3
AI驱动블로그자동화:사용GPT-4생성并게시SEO기사至WordPress및Twitter
If
Set
Code
+
If
Set
Code
144 노드Jay Emp0
콘텐츠 제작
GPT-5와 fal.ai 이미지를 사용한 키워드에서 WordPress까지 자동화 SEO 블로그 프로세스
GPT-5 및 fal.ai 이미지를 사용한 키워드 to WordPress SEO 블로그 프로세스 자동화
Set
Code
Wait
+
Set
Code
Wait
96 노드Paul
콘텐츠 제작
WordPress 블로그 자동화 프로페셔널 에디션(심층 연구) v2.1 마켓
GPT-4o, Perplexity AI 및 다국어 지원을 사용한 SEO 최적화 블로그 생성 자동화
If
Set
Xml
+
If
Set
Xml
125 노드Daniel Ng
콘텐츠 제작
워크플로우 정보
난이도
중급
노드 수9
카테고리2
노드 유형9
저자
David Olusola
@dae221I help ambitious businesses eliminate operational bottlenecks and scale faster with AI automation. My clients typically see 40-60% efficiency gains within 90 days. Currently accepting 3 new projects this quarter - david@daexai.com
외부 링크
n8n.io에서 보기 →
이 워크플로우 공유