O3 DirectorとGPT-4エキスパートエージェントを使ってマルチチャネルコンテンツの作成

上級

これはContent Creation, Multimodal AI分野の自動化ワークフローで、18個のノードを含みます。主にAgent, AgentTool, ToolThink, ChatTrigger, LmChatOpenAiなどのノードを使用。 O3 DirectorとGPT-4エキスパートエージェントを使ってマルチチャネルコンテンツを作成する

前提条件
  • OpenAI API Key
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
  "meta": {
    "instanceId": "12e6f290a974a1eee154f8d915aade185e90e826260e6aeab8a087ba7386a1bc",
    "templateCredsSetupCompleted": true
  },
  "nodes": [
    {
      "id": "content-chat-trigger",
      "name": "チャットメッセージ受信時",
      "type": "@n8n/n8n-nodes-langchain.chatTrigger",
      "position": [
        -2864,
        -576
      ],
      "webhookId": "content-webhook-id",
      "parameters": {
        "options": {}
      },
      "typeVersion": 1.1
    },
    {
      "id": "content-director-agent",
      "name": "コンテンツディレクターエージェント",
      "type": "@n8n/n8n-nodes-langchain.agent",
      "position": [
        -2640,
        -816
      ],
      "parameters": {
        "options": {}
      },
      "typeVersion": 2.1
    },
    {
      "id": "content-think",
      "name": "思考",
      "type": "@n8n/n8n-nodes-langchain.toolThink",
      "position": [
        -2512,
        -496
      ],
      "parameters": {},
      "typeVersion": 1.1
    },
    {
      "id": "blog-agent",
      "name": "ブログコンテンツ作成者",
      "type": "@n8n/n8n-nodes-langchain.agentTool",
      "position": [
        -2240,
        -96
      ],
      "parameters": {
        "text": "={{ $fromAI('Prompt__User_Message_', ``, 'string') }}",
        "options": {},
        "toolDescription": "call this AI Agent that specializes in blog content writing, long-form articles, editorial content, and thought leadership pieces"
      },
      "typeVersion": 2.2
    },
    {
      "id": "social-agent",
      "name": "ソーシャルメディアコンテンツ作成者",
      "type": "@n8n/n8n-nodes-langchain.agentTool",
      "position": [
        -1280,
        -704
      ],
      "parameters": {
        "text": "={{ $fromAI('Prompt__User_Message_', ``, 'string') }}",
        "options": {},
        "toolDescription": "call this AI Agent that specializes in social media content creation, posts, captions, hashtags, and community engagement content"
      },
      "typeVersion": 2.2
    },
    {
      "id": "video-agent",
      "name": "動画スクリプト作成者",
      "type": "@n8n/n8n-nodes-langchain.agentTool",
      "position": [
        -1840,
        -304
      ],
      "parameters": {
        "text": "={{ $fromAI('Prompt__User_Message_', ``, 'string') }}",
        "options": {},
        "toolDescription": "call this AI Agent that specializes in video script writing, YouTube content, explainer videos, and video marketing scripts"
      },
      "typeVersion": 2.2
    },
    {
      "id": "email-agent",
      "name": "メールニュースレター作成者",
      "type": "@n8n/n8n-nodes-langchain.agentTool",
      "position": [
        -1328,
        -80
      ],
      "parameters": {
        "text": "={{ $fromAI('Prompt__User_Message_', ``, 'string') }}",
        "options": {},
        "toolDescription": "call this AI Agent that specializes in email newsletter writing, campaign creation, nurture sequences, and email marketing content"
      },
      "typeVersion": 2.2
    },
    {
      "id": "website-agent",
      "name": "ウェブサイトコピー専門家",
      "type": "@n8n/n8n-nodes-langchain.agentTool",
      "position": [
        -1744,
        -1024
      ],
      "parameters": {
        "text": "={{ $fromAI('Prompt__User_Message_', ``, 'string') }}",
        "options": {},
        "toolDescription": "call this AI Agent that specializes in website copywriting, landing pages, product descriptions, and conversion-focused content"
      },
      "typeVersion": 2.2
    },
    {
      "id": "strategy-agent",
      "name": "コンテンツ戦略立案者",
      "type": "@n8n/n8n-nodes-langchain.agentTool",
      "position": [
        -1344,
        -1264
      ],
      "parameters": {
        "text": "={{ $fromAI('Prompt__User_Message_', ``, 'string') }}",
        "options": {},
        "toolDescription": "call this AI Agent that specializes in content strategy, editorial calendars, content planning, and brand voice development"
      },
      "typeVersion": 2.2
    },
    {
      "id": "content-director-model",
      "name": "OpenAI Chat Model Content Director",
      "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
      "position": [
        -2672,
        -496
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "o3",
          "cachedResultName": "o3"
        },
        "options": {}
      },
      "credentials": {
        "openAiApi": {
          "id": "YOUR_OPENAI_CREDENTIAL_ID",
          "name": "OpenAI account"
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "blog-model",
      "name": "OpenAI Chat Model1",
      "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
      "position": [
        -2208,
        368
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "gpt-4.1-mini"
        },
        "options": {}
      },
      "credentials": {
        "openAiApi": {
          "id": "YOUR_OPENAI_CREDENTIAL_ID",
          "name": "OpenAI account"
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "social-model",
      "name": "OpenAI Chat Model2",
      "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
      "position": [
        -1312,
        -496
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "gpt-4.1-mini"
        },
        "options": {}
      },
      "credentials": {
        "openAiApi": {
          "id": "YOUR_OPENAI_CREDENTIAL_ID",
          "name": "OpenAI account"
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "video-model",
      "name": "OpenAI Chat Model3",
      "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
      "position": [
        -1824,
        -144
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "gpt-4.1-mini"
        },
        "options": {}
      },
      "credentials": {
        "openAiApi": {
          "id": "YOUR_OPENAI_CREDENTIAL_ID",
          "name": "OpenAI account"
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "email-model",
      "name": "OpenAI Chat Model4",
      "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
      "position": [
        -1328,
        96
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "gpt-4.1-mini"
        },
        "options": {}
      },
      "credentials": {
        "openAiApi": {
          "id": "YOUR_OPENAI_CREDENTIAL_ID",
          "name": "OpenAI account"
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "website-model",
      "name": "OpenAI Chat Model5",
      "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
      "position": [
        -1776,
        -768
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "gpt-4.1-mini"
        },
        "options": {}
      },
      "credentials": {
        "openAiApi": {
          "id": "YOUR_OPENAI_CREDENTIAL_ID",
          "name": "OpenAI account"
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "strategy-model",
      "name": "OpenAI Chat Model6",
      "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
      "position": [
        -1312,
        -944
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "gpt-4.1-mini"
        },
        "options": {}
      },
      "credentials": {
        "openAiApi": {
          "id": "YOUR_OPENAI_CREDENTIAL_ID",
          "name": "OpenAI account"
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "content-header-sticky",
      "name": "付箋ヘッダー",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -3808,
        -880
      ],
      "parameters": {
        "color": 5,
        "width": 580,
        "height": 320,
        "content": "=======================================\n      CONTENT DIRECTOR WITH CONTENT TEAM\n=======================================\nFor any questions or support, please contact:\n    Yaron@nofluff.online\n\nExplore more tips and tutorials here:\n   - YouTube: https://www.youtube.com/@YaronBeen/videos\n   - LinkedIn: https://www.linkedin.com/in/yaronbeen/\n======================================="
      },
      "typeVersion": 1
    },
    {
      "id": "content-main-sticky",
      "name": "付箋メイン",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -3808,
        -544
      ],
      "parameters": {
        "color": 5,
        "width": 740,
        "height": 2500,
        "content": "## ✍️ **CONTENT DIRECTOR WITH CONTENT TEAM - AI WORKFLOW**\n\n**🔥 Powered by OpenAI O3 & GPT-4.1-mini Multi-Agent System**\n\n#ContentMarketing #ContentCreation #n8nWorkflows #OpenAI #DigitalMarketing\n\n---\n\n### 📝 **Overview**\n\nThis multi-agent n8n automation creates a comprehensive content powerhouse. A strategic Content Director agent receives your content requests, analyzes audience needs, and coordinates specialized agents for blog writing, social media, video scripts, email marketing, website copy, and content strategy—delivering cohesive, high-quality content across all channels.\n\n---\n\n### ⚙️ **How It Works**\n\n1. **Chat trigger** receives content requests (e.g., \"Create a complete content campaign for our new SaaS product launch\")\n2. **Content Director** (O3) analyzes audience and determines content strategy\n3. Delegates to specialist agents:\n   - Blog Content Writer\n   - Social Media Content Creator\n   - Video Script Writer\n   - Email Newsletter Writer\n   - Website Copy Specialist\n   - Content Strategist & Planner\n4. Each agent uses **GPT-4.1-mini** for specialized content creation\n5. Results integrated into comprehensive content campaign\n\n---\n\n### 👥 **Meet Your AI Content Team**\n\n| Agent | Purpose | Model | Output |\n|-------|---------|-------|--------|\n| ✍️ **Content Director** | Content strategy & campaign coordination | O3 | Strategic content leadership |\n| 📝 **Blog Writer** | Long-form articles, thought leadership | GPT-4.1-mini | Blog posts & articles |\n| 📱 **Social Media Creator** | Posts, captions, community engagement | GPT-4.1-mini | Social content |\n| 🎬 **Video Script Writer** | YouTube scripts, explainer videos | GPT-4.1-mini | Video scripts |\n| 📧 **Email Writer** | Newsletters, campaigns, sequences | GPT-4.1-mini | Email content |\n| 🌐 **Website Copy** | Landing pages, product descriptions | GPT-4.1-mini | Website copy |\n| 📊 **Content Strategist** | Editorial calendars, planning | GPT-4.1-mini | Content strategies |\n\n---\n\n### 💡 **Use Cases**\n\n- **Product Launches**: Complete content campaigns across all channels\n- **Brand Storytelling**: Consistent narrative across blog, social, and email\n- **Lead Generation**: Content funnels that convert prospects to customers\n- **Thought Leadership**: Industry expertise through articles and videos\n- **Social Engagement**: Community-building content for all platforms\n- **Email Marketing**: Newsletter series and nurture sequences\n\n---\n\n### 💸 **Cost Optimization**\n\n- **O3 for Content Director**: Strategic content decisions only\n- **GPT-4.1-mini for specialists**: 90% cost reduction\n- **Parallel processing**: All content types created simultaneously\n- **Consistent brand voice**: Coordinated messaging across channels\n\n---\n\n### 🏷️ **Tags**\n\n#BlogWriting #SocialMediaContent #VideoScripts #EmailMarketing #WebsiteCopy\n#ContentStrategy #ContentMarketing #BrandStorytelling #DigitalContent #ContentCreation\n#n8n #OpenAI #MultiAgentSystem #ContentAutomation #MarketingContent #ContentTeam"
      },
      "typeVersion": 1
    }
  ],
  "connections": {
    "content-think": {
      "ai_tool": [
        [
          "コンテンツディレクターエージェント",
          "ai_tool",
          0
        ]
      ]
    },
    "blog-model": {
      "ai_languageModel": [
        [
          "ブログコンテンツ作成者",
          "ai_languageModel",
          0
        ]
      ]
    },
    "social-model": {
      "ai_languageModel": [
        [
          "ソーシャルメディアコンテンツ作成者",
          "ai_languageModel",
          0
        ]
      ]
    },
    "video-model": {
      "ai_languageModel": [
        [
          "動画スクリプト作成者",
          "ai_languageModel",
          0
        ]
      ]
    },
    "email-model": {
      "ai_languageModel": [
        [
          "メールニュースレター作成者",
          "ai_languageModel",
          0
        ]
      ]
    },
    "website-model": {
      "ai_languageModel": [
        [
          "ウェブサイトコピー専門家",
          "ai_languageModel",
          0
        ]
      ]
    },
    "strategy-model": {
      "ai_languageModel": [
        [
          "コンテンツ戦略立案者",
          "ai_languageModel",
          0
        ]
      ]
    },
    "blog-agent": {
      "ai_tool": [
        [
          "コンテンツディレクターエージェント",
          "ai_tool",
          0
        ]
      ]
    },
    "video-agent": {
      "ai_tool": [
        [
          "コンテンツディレクターエージェント",
          "ai_tool",
          0
        ]
      ]
    },
    "email-agent": {
      "ai_tool": [
        [
          "コンテンツディレクターエージェント",
          "ai_tool",
          0
        ]
      ]
    },
    "website-agent": {
      "ai_tool": [
        [
          "コンテンツディレクターエージェント",
          "ai_tool",
          0
        ]
      ]
    },
    "content-chat-trigger": {
      "main": [
        [
          "コンテンツディレクターエージェント",
          "main",
          0
        ]
      ]
    },
    "strategy-agent": {
      "ai_tool": [
        [
          "コンテンツディレクターエージェント",
          "ai_tool",
          0
        ]
      ]
    },
    "social-agent": {
      "ai_tool": [
        [
          "コンテンツディレクターエージェント",
          "ai_tool",
          0
        ]
      ]
    },
    "content-director-model": {
      "ai_languageModel": [
        [
          "コンテンツディレクターエージェント",
          "ai_languageModel",
          0
        ]
      ]
    }
  }
}
よくある質問

このワークフローの使い方は?

上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。

このワークフローはどんな場面に適していますか?

上級 - コンテンツ作成, マルチモーダルAI

有料ですか?

このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。

関連ワークフロー

O3およびGPT-4によるマルチエージェントチームによるソーシャルメディア影響力の強化
O3とGPT-4マルチエージェントチームを使用して SNS の影響力を強化する
Agent
Agent Tool
Tool Think
+
Agent
Agent Tool
Tool Think
18 ノードYaron Been
コンテンツ作成
O3 と GPT-4.1-mini のマルチエージェントチームを使って LinkedIn 用のウイルスのコンテンツを作成
O3 との GPT-4.1-mini マルチエージェントチームによるウイルスの LinkedIn コンテンツの作成
Agent
Agent Tool
Tool Think
+
Agent
Agent Tool
Tool Think
18 ノードYaron Been
コンテンツ作成
OpenAI O3およびGPT-4.1-miniを基盤としたAIマーケティングチームの構築、自動化されたコンテンツ作成を実現
OpenAI O3 と GPT-4.1-mini を基にした AI マーケティングチームを構築し、自動コンテンツ作成を実現
Agent
Agent Tool
Tool Think
+
Agent
Agent Tool
Tool Think
18 ノードYaron Been
コンテンツ作成
クリエイティブディレクターエージェントとデザインクリエイティブチーム
OpenAI O3およびGPT-4.1-miniのマルチエージェントチームを使用したデザイン創作社シミュレーション
Agent
Agent Tool
Tool Think
+
Agent
Agent Tool
Tool Think
18 ノードYaron Been
コンテンツ作成
O3 CFOとGPT-4.1-miniを使って財務チームの財務業務を自動化
O3 CFO と GPT-4.1-mini を使って財務チームの業務を自動化する
Agent
Agent Tool
Tool Think
+
Agent
Agent Tool
Tool Think
18 ノードYaron Been
文書抽出
CSOエージェントと販売チーム
OpenAIマルチエージェントチームとCSOオーケストレーションを使って、完全な営業部門を構築
Agent
Agent Tool
Tool Think
+
Agent
Agent Tool
Tool Think
18 ノードYaron Been
顧客管理
ワークフロー情報
難易度
上級
ノード数18
カテゴリー2
ノードタイプ6
難易度説明

上級者向け、16ノード以上の複雑なワークフロー

作成者
Yaron Been

Yaron Been

@yaron-nofluff

Building AI Agents and Automations | Growth Marketer | Entrepreneur | Book Author & Podcast Host If you need any help with Automations, feel free to reach out via linkedin: https://www.linkedin.com/in/yaronbeen/ And check out my Youtube channel: https://www.youtube.com/@YaronBeen/videos

外部リンク
n8n.ioで表示

このワークフローを共有

カテゴリー

カテゴリー: 34