AI駆動のInstagramコンテンツ再利用
中級
これは自動化ワークフローで、15個のノードを含みます。主にSet, HttpRequest, GoogleSheets, ManualTrigger, SplitInBatchesなどのノードを使用。 AIを活用したInstagramコンテンツの再利用で、OpenAI GPT-4OとPerplexityの研究を統合
前提条件
- •ターゲットAPIの認証情報が必要な場合あり
- •Google Sheets API認証情報
- •OpenAI API Key
カテゴリー
-
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"meta": {
"instanceId": "73e3c0fd395bfd0d194601f37f29fe40e0317103ab5899d92df39eaef2eb4c87",
"templateCredsSetupCompleted": true
},
"nodes": [
{
"id": "802db012-446f-4573-b6bd-b71039a073e1",
"name": "「ワークフローを実行」クリック時",
"type": "n8n-nodes-base.manualTrigger",
"position": [
1232,
2960
],
"parameters": {},
"typeVersion": 1
},
{
"id": "06a7a587-1c0f-4745-a338-5224e9f46fda",
"name": "instagramユーザーの投稿を取得1",
"type": "n8n-nodes-scrape-creators.scrapeCreators",
"position": [
2016,
2976
],
"parameters": {
"limit": 1,
"handle": "={{ $json['Instagram Handles'] }}",
"operation": "getInstagramUserPosts",
"requestOptions": {}
},
"credentials": {
"scrapeCreatorsApi": {
"id": "499fH7jAxvGPHHnE",
"name": "Scrape Creators account"
}
},
"typeVersion": 1
},
{
"id": "3a275a3e-2ecf-4a34-843d-925851cb0ee0",
"name": "フィールドを編集",
"type": "n8n-nodes-base.set",
"position": [
2192,
2976
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "d43ea994-eb0c-4634-a0d7-9626329e0500",
"name": "items[0].video_versions[0].url",
"type": "string",
"value": "={{ $json.items[0].video_versions[0].url }}"
},
{
"id": "6b19de57-7cb0-4ad0-a310-75be63b1d2f2",
"name": "items[0].video_versions[2].url",
"type": "string",
"value": "={{ $json.items[0].video_versions[2].url }}"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "ffff935e-28d5-4c0b-acaf-55793a35eba4",
"name": "フィルター&提案を生成",
"type": "@n8n/n8n-nodes-langchain.openAi",
"onError": "continueRegularOutput",
"position": [
2784,
2976
],
"parameters": {
"modelId": {
"__rl": true,
"mode": "list",
"value": "gpt-4o",
"cachedResultName": "GPT-4O"
},
"options": {},
"messages": {
"values": [
{
"role": "system",
"content": "You are a helpful, intelligent admin assistant."
},
{
"content": "I run an AI & automation Instagram channel. I'm looking through news archives to find mentions of tools that I can repurpose into content for my channel.\n\nYour task is to take as input a transcript of a news archive, and then determine if the transcription is about a tool, a technology, or AI.\n\nIf so, you'll identify the tools, then write a list of step-by-step instructions to use the tool easily (ideally for free or for low cost), and one suggestion on exactly how to make this content more palatable to an AI automation audience.\n\nReturn your output in JSON using this format:\n\n{\n \"verdict\":\"true or false\",\n \"tools\":[\"list\",\"of\",\"tools\",\"or\",\"resources\"],\n \"stepByStep\":\"Detailed instructions on how to use the tool(s).\",\n \"suggestion\":\"Comprehensive, in-depth suggestions on how to make this content more interesting and palatable to my audience (AI automation).\",\n \"searchPrompt\":\"A short search prompt we'll use to look up the service. Write it like '{toolName}, the {typeOfTool}'\"\n}\n\nIf verdict is \"false\", leave the rest of the fields empty."
},
{
"content": "={\"transcript\":\"{{ $json.text }}\"}"
}
]
},
"jsonOutput": true
},
"credentials": {
"openAiApi": {
"id": "kcZxf0FA03D9xVdd",
"name": "Sycorda"
}
},
"retryOnFail": true,
"typeVersion": 1.6
},
{
"id": "cd8a1d86-d417-4f4e-a24a-71db9a3660aa",
"name": "動画をダウンロード",
"type": "n8n-nodes-base.httpRequest",
"onError": "continueRegularOutput",
"position": [
2400,
2976
],
"parameters": {
"url": "={{ $json.items[0].video_versions[0].url }}",
"options": {}
},
"typeVersion": 4.2
},
{
"id": "889524af-327d-40d1-9fc0-d8755710b04d",
"name": "動画を文字起こし",
"type": "@n8n/n8n-nodes-langchain.openAi",
"onError": "continueRegularOutput",
"position": [
2592,
2976
],
"parameters": {
"options": {},
"resource": "audio",
"operation": "transcribe"
},
"credentials": {
"openAiApi": {
"id": "kcZxf0FA03D9xVdd",
"name": "Sycorda"
}
},
"retryOnFail": true,
"typeVersion": 1.6
},
{
"id": "3cc5eb2c-763a-44d3-a639-319879706fa8",
"name": "Perplexityで検索",
"type": "n8n-nodes-base.httpRequest",
"onError": "continueRegularOutput",
"position": [
3136,
2976
],
"parameters": {
"url": "https://api.perplexity.ai/chat/completions",
"method": "POST",
"options": {
"redirect": {
"redirect": {}
}
},
"jsonBody": "={\n \"model\": \"sonar-pro\",\n \"messages\": [\n {\n \"role\": \"system\",\n \"content\": \"Be precise and concise.\"\n },\n {\n \"role\": \"user\",\n \"content\": \"Tell me three interesting (peculiar) things about {{ $json.message.content.searchPrompt }}\"\n }\n ]\n}",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "accept",
"value": "application/json"
},
{
"name": "Authorization",
"value": "Bearer API KEY"
}
]
}
},
"retryOnFail": true,
"typeVersion": 4.2
},
{
"id": "7a164120-7e6b-4785-bd3b-1df7e688b5cd",
"name": "新しいスクリプトを作成",
"type": "@n8n/n8n-nodes-langchain.openAi",
"onError": "continueErrorOutput",
"position": [
3344,
2976
],
"parameters": {
"modelId": {
"__rl": true,
"mode": "list",
"value": "gpt-4o",
"cachedResultName": "GPT-4O"
},
"options": {
"temperature": 0.7
},
"messages": {
"values": [
{
"role": "system",
"content": "You are a helpful, intelligent writing assistant."
},
{
"content": "I run an AI & automation Instagram channel.\n\nMy editors would like to make a new video. They've found an interesting tool or technology, compiled a step-by-step guide on how to use it, done some searching on the Internet to find some interesting things about it, wrote a rough draft about it, and we also had our chief editor write concrete suggestions for how to make the content better.\n\nYour task is to take as input all of these things, and then write a new, high quality script for us to feature.\n\nReturn your output in JSON using this format:\n\n{\n \"script\":\"Your script goes here (~100 words).\n}\n\nRules:\n- Use a casual, spartan tone of voice. No frills. Be straightforward, and don't use poetic language.\n- End the script with a call to action like \"Want {thing}? Just comment {keyword} and I'll send it straight to your DMs\",\n- Add newlines as \\n between sentences."
},
{
"content": "={\n \"toolNames\":\"Speechma\",\n \"roughDraftScript\":\"Hey there. So, I just wanted to let you know about a AI text-to-speech generator that has recently become available. It’s doesn’t cost anything at all.\\n\\nIt has a lot of voices! And the best part is you don’t need to sign up for an account in order to use it.\\n\\nThe process is really simple, too. You just go the site and type whatever you want converted into speech. There are lots of voices as well.\\n\\nIf this sounds interesting to you, I’d highly recommend giving it a try for yourself. Just leave a comment saying \"texttospeech,\" and I’ll make sure to send you the link so you can check it out firsthand.\",\n \"perplexityOutput\": \"Here are three interesting things about Speechma, the AI text-to-speech tool:\\n\\n1. Speechma offers over 400 premium AI voices for text-to-speech conversion, allowing users to find the perfect voice for any project[1].\\n\\n2. The platform provides unlimited free usage with no restrictions on the number of conversions, which is unusual for a premium text-to-speech service[1].\\n\\n3. Speechma grants users commercial rights to use the generated audio for any purpose, including YouTube videos, TikTok content, and business presentations[1].\",\n \"stepByStepGuide\":\"1. Visit the Speechma website.\\n2. Enter or paste your text into the provided text box.\\n3. Browse through the available 400+ voices and select one that fits your needs.\\n4. Choose the desired language from the 60 supported options.\\n5. Click the 'Generate' button to create your AI-generated speech.\\n6. Download or use your AI-generated speech as needed for projects like YouTube videos or TikToks.\",\n \"suggestionsForImprovement\":\"Create a short tutorial video showing how to use Speechma, emphasizing its free nature and ease of use. Highlight its unlimited features and vast voice selection. Consider doing a voice comparison test using Speechma versus other popular tools. Discuss potential use cases such as content creation for social media, especially focusing on platforms like Instagram and TikTok, highlighting the benefit of rapid content creation using AI automation.\"\n}"
},
{
"role": "assistant",
"content": "={\n \"script\":\"Hey—there’s a completely new AI text to speech generator that’s just as good as ElevenLabs, but FREE.\\nIt allows you to choose from over 400 voices, it supports 60 languages, and it’s all completely unlimited with no signup required.\\nJust head over to this website\\nPaste your text\\nChoose one of the voices\\nAnd click generate\\nThat’s it! Your AI speech is now ready to use.\\nYou can use this voice for YouTube videos, TikToks, or whatever you like.\\nSo go try it yourself.\\nJust Comment \"speech\" and I’ll share the link with you.\"\n}"
},
{
"content": "={\n \"toolNames\":\"{{ $('Filter & Generate Suggestions').item.json.message.content.tools.join() }}\",\n \"roughDraftScript\":\"{{ $('Transcribe Video').all().first().json.text }}\",\n \"perplexityOutput\": \"{{ $json.choices[0].message.content }}\",\n \"stepByStepGuide\":\"{{ $('Filter & Generate Suggestions').item.json.message.content.stepByStep }}\",\n \"suggestionsForImprovement\":\"{{ $('Filter & Generate Suggestions').item.json.message.content.suggestion }}\"\n}"
}
]
},
"jsonOutput": true
},
"credentials": {
"openAiApi": {
"id": "kcZxf0FA03D9xVdd",
"name": "Sycorda"
}
},
"retryOnFail": true,
"typeVersion": 1.6
},
{
"id": "daf8f870-433b-4190-812f-a13f3d62ea75",
"name": "アイテムをループ",
"type": "n8n-nodes-base.splitInBatches",
"position": [
1744,
2960
],
"parameters": {
"options": {}
},
"typeVersion": 3
},
{
"id": "1600e14f-230d-473f-af0f-5319d0f833d0",
"name": "シートの行を取得1",
"type": "n8n-nodes-base.googleSheets",
"position": [
1456,
2960
],
"parameters": {
"options": {},
"sheetName": {
"__rl": true,
"mode": "list",
"value": 1977263029,
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1tH-0MOe-Y_BsB3coqtFhhmZVHmchD0jTH8A3w1he3o8/edit#gid=1977263029",
"cachedResultName": "profiles"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1tH-0MOe-Y_BsB3coqtFhhmZVHmchD0jTH8A3w1he3o8",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1tH-0MOe-Y_BsB3coqtFhhmZVHmchD0jTH8A3w1he3o8/edit?usp=drivesdk",
"cachedResultName": "Insta profiles for Phantom"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "GK3DNFmawp2s2qCA",
"name": "Google Sheets account"
}
},
"typeVersion": 4.7
},
{
"id": "055b4ff9-ab28-4ef9-bf38-84694cb9d66e",
"name": "エントリーを更新2",
"type": "n8n-nodes-base.googleSheets",
"onError": "continueRegularOutput",
"position": [
3856,
2960
],
"parameters": {
"columns": {
"value": {
"id": "={{ $('Get an instagram user s posts1').item.json.items[0].id }}",
"caption": "={{ $('Get an instagram user s posts1').item.json.items[0].caption.text }}",
"Duration": "={{ $('Get an instagram user s posts1').item.json.items[0].image_versions2.scrubber_spritesheet_info_candidates.default.video_length }}",
"videoUrl": "={{ $('Get an instagram user s posts1').item.json.items[0].video_versions[0].url }}",
"Username ": "={{ $('Get row(s) in sheet1').item.json['Instagram Handles'] }}",
"timeStamp": "={{ new Date($('Get an instagram user s posts1').item.json.items[0].caption.created_at * 1000).toISOString() }}\n",
"likesCount": "={{ $('Get an instagram user s posts1').item.json.items[0].like_count }}",
"commentcount": "={{ $('Get an instagram user s posts1').item.json.items[0].comment_count }}",
"original Script": "={{ $('Transcribe Video').item.json.text }}",
"videoViewsCount": "={{ $('Get an instagram user s posts1').item.json.items[0].play_count }}",
"rewritten Script": "={{ $json.message.content.script }}"
},
"schema": [
{
"id": "id",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "id",
"defaultMatch": true,
"canBeUsedToMatch": true
},
{
"id": "timeStamp",
"type": "string",
"display": true,
"required": false,
"displayName": "timeStamp",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "caption",
"type": "string",
"display": true,
"required": false,
"displayName": "caption",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "url",
"type": "string",
"display": true,
"removed": true,
"required": false,
"displayName": "url",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "commentcount",
"type": "string",
"display": true,
"required": false,
"displayName": "commentcount",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "videoUrl",
"type": "string",
"display": true,
"required": false,
"displayName": "videoUrl",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "likesCount",
"type": "string",
"display": true,
"required": false,
"displayName": "likesCount",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "videoViewsCount",
"type": "string",
"display": true,
"required": false,
"displayName": "videoViewsCount",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Username ",
"type": "string",
"display": true,
"required": false,
"displayName": "Username ",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Duration",
"type": "string",
"display": true,
"required": false,
"displayName": "Duration",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "original Script",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "original Script",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "rewritten Script",
"type": "string",
"display": true,
"required": false,
"displayName": "rewritten Script",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "style",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "style",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Updated",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Updated",
"defaultMatch": false,
"canBeUsedToMatch": true
}
],
"mappingMode": "defineBelow",
"matchingColumns": [
"id"
],
"attemptToConvertTypes": false,
"convertFieldsToString": false
},
"options": {},
"operation": "appendOrUpdate",
"sheetName": {
"__rl": true,
"mode": "list",
"value": 375581874,
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1tH-0MOe-Y_BsB3coqtFhhmZVHmchD0jTH8A3w1he3o8/edit#gid=375581874",
"cachedResultName": "pahtom output"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1tH-0MOe-Y_BsB3coqtFhhmZVHmchD0jTH8A3w1he3o8",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1tH-0MOe-Y_BsB3coqtFhhmZVHmchD0jTH8A3w1he3o8/edit?usp=drivesdk",
"cachedResultName": "Insta profiles for Phantom"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "GK3DNFmawp2s2qCA",
"name": "Google Sheets account"
}
},
"retryOnFail": true,
"typeVersion": 4.5
},
{
"id": "cf5a12ed-50a5-4b50-acd0-eb3559923d0a",
"name": "付箋",
"type": "n8n-nodes-base.stickyNote",
"position": [
1520,
2608
],
"parameters": {
"width": 496,
"height": 304,
"content": "STEP 1: Data Input & Video Retrieval\nThis section pulls Instagram profiles from a Google Sheet and fetches their latest video posts for content analysis and repurposing.\n\nKey Components:\n* Manual Trigger - Initiates the workflow execution on demand\n* Google Sheets Reader - Retrieves Instagram handles from the \"profiles\" sheet\n* Loop Over Items - Processes each Instagram profile in batches\n* Scrape Creators API - Fetches the most recent Instagram post/video for each handle\n* Edit Fields - Extracts video URLs from the Instagram post data\n"
},
"typeVersion": 1
},
{
"id": "92b863bc-2148-4ee2-8fad-f25f50115a67",
"name": "付箋1",
"type": "n8n-nodes-base.stickyNote",
"position": [
2208,
2688
],
"parameters": {
"width": 496,
"height": 240,
"content": "STEP 2: Video Processing & AI Transcription\nThis section downloads Instagram videos and converts them to text using OpenAI's Whisper transcription model for content analysis.\n\nKey Components:\n* Download Video - Fetches the video file from Instagram's CDN\n* Transcribe Video - Uses OpenAI Whisper to convert video audio to text transcript\n* Error Handling - Continues workflow even if download or transcription fails\n"
},
"typeVersion": 1
},
{
"id": "865a30e2-c990-4c8b-8580-cd334dcc47c0",
"name": "付箋2",
"type": "n8n-nodes-base.stickyNote",
"position": [
2864,
2672
],
"parameters": {
"width": 576,
"height": 256,
"content": "STEP 3: AI Content Analysis & Enhancement\nThis section uses multiple AI models to analyze transcripts, filter relevant content, research tools mentioned, and generate optimized scripts for repurposing.\n\nKey Components:\n* Filter & Generate Suggestions (GPT-4O) - Analyzes transcripts to identify AI/automation tools and creates step-by-step guides\n* Search Perplexity - Performs web research to find interesting facts about identified tools\n* Write New Script (GPT-4O) - Generates polished, engaging scripts optimized for Instagram audience with CTAs\n"
},
"typeVersion": 1
},
{
"id": "5e0e63b4-efde-41d9-bf77-c25d6b33a7cd",
"name": "付箋3",
"type": "n8n-nodes-base.stickyNote",
"position": [
3632,
2688
],
"parameters": {
"width": 448,
"height": 240,
"content": "STEP 4: Data Storage & Loop Management\nThis section saves all processed data back to Google Sheets and manages the batch processing loop for multiple profiles.\n\nKey Components:\n* Update Entries - Writes video metadata, original transcripts, and rewritten scripts to \"phantom output\" sheet\n* Loop Return - Sends execution back to process the next Instagram profile\n* Error Handling - Ensures data is saved even if some steps fail"
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"3a275a3e-2ecf-4a34-843d-925851cb0ee0": {
"main": [
[
{
"node": "cd8a1d86-d417-4f4e-a24a-71db9a3660aa",
"type": "main",
"index": 0
}
]
]
},
"cd8a1d86-d417-4f4e-a24a-71db9a3660aa": {
"main": [
[
{
"node": "889524af-327d-40d1-9fc0-d8755710b04d",
"type": "main",
"index": 0
}
]
]
},
"daf8f870-433b-4190-812f-a13f3d62ea75": {
"main": [
[],
[
{
"node": "06a7a587-1c0f-4745-a338-5224e9f46fda",
"type": "main",
"index": 0
}
]
]
},
"055b4ff9-ab28-4ef9-bf38-84694cb9d66e": {
"main": [
[
{
"node": "daf8f870-433b-4190-812f-a13f3d62ea75",
"type": "main",
"index": 0
}
]
]
},
"889524af-327d-40d1-9fc0-d8755710b04d": {
"main": [
[
{
"node": "ffff935e-28d5-4c0b-acaf-55793a35eba4",
"type": "main",
"index": 0
}
]
]
},
"7a164120-7e6b-4785-bd3b-1df7e688b5cd": {
"main": [
[
{
"node": "055b4ff9-ab28-4ef9-bf38-84694cb9d66e",
"type": "main",
"index": 0
}
]
]
},
"3cc5eb2c-763a-44d3-a639-319879706fa8": {
"main": [
[
{
"node": "7a164120-7e6b-4785-bd3b-1df7e688b5cd",
"type": "main",
"index": 0
}
]
]
},
"1600e14f-230d-473f-af0f-5319d0f833d0": {
"main": [
[
{
"node": "daf8f870-433b-4190-812f-a13f3d62ea75",
"type": "main",
"index": 0
}
]
]
},
"ffff935e-28d5-4c0b-acaf-55793a35eba4": {
"main": [
[
{
"node": "3cc5eb2c-763a-44d3-a639-319879706fa8",
"type": "main",
"index": 0
}
]
]
},
"06a7a587-1c0f-4745-a338-5224e9f46fda": {
"main": [
[
{
"node": "3a275a3e-2ecf-4a34-843d-925851cb0ee0",
"type": "main",
"index": 0
}
]
]
},
"802db012-446f-4573-b6bd-b71039a073e1": {
"main": [
[
{
"node": "1600e14f-230d-473f-af0f-5319d0f833d0",
"type": "main",
"index": 0
}
]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
AI生成WordPress記事要約ブロック
WordPress記事のAI生成要約ブロック
If
Set
Slack
+
If
Set
Slack
32 ノードDataki
人工知能
Facebookページコメント管理ボット:返信、削除、利用制限、通知
AI駆動のFacebookコメント管理:自動返信、削除、利用制限、通知
If
Set
Code
+
If
Set
Code
59 ノードSpaGreen Creative
ソーシャルメディア
Printifyの自動化 - タイトルと説明を更新 - AlexK1919
GPT-4o-miniによるPrintify向け自動SEO製品タイトル・説明生成
If
Set
Code
+
If
Set
Code
26 ノードAmit Mehta
コンテンツ作成
カスタムカールドメールアイスブレイカージェネレーター
ApolloリードスクレイピングとGPT-4.1を使ってパーソナライズされた冷メールを自動化
Set
Code
Slack
+
Set
Code
Slack
24 ノードRichard Besier
リード獲得
OpenAI、ElevenLabs、Fal.ai を使用した動画・パ odcast・ASM R向けのウイルス性コンテンツ自動作成
OpenAI、ElevenLabs、そして Fal.ai を使って動画、ポッドキャスト、ASMR に向けたウイルスのコンテンツ作成を自動化
Set
Code
Wait
+
Set
Code
Wait
97 ノードAdam Crafts
コンテンツ作成
GPT-5 nanoとYoast SEOでWordPress SEO最適化を自動化
GPT-5 nanoとYoast SEOを使って、WordPressのSEO最適化を自動化
Set
Code
Gmail
+
Set
Code
Gmail
35 ノードOriol Seguí
その他
ワークフロー情報
難易度
中級
ノード数15
カテゴリー-
ノードタイプ8
作成者
Hassan
@sycordaAI Automation Strategist. I build AI agents that increase your revenue while reducing costs.
外部リンク
n8n.ioで表示 →
このワークフローを共有