毎朝のカンツー啓発文言をSlackチャンネルへ配信

初級

これはPersonal Productivity, Multimodal AI分野の自動化ワークフローで、5個のノードを含みます。主にCode, Cron, Slack, HttpRequestなどのノードを使用。 ZenQuotesからの毎日の励志名言をSlackチャンネルに送信

前提条件
  • Slack Bot Token または Webhook URL
  • ターゲットAPIの認証情報が必要な場合あり
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
  "meta": {
    "instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc"
  },
  "nodes": [
    {
      "id": "b57d7fea-fd4d-417b-bad6-7d28d1968c6f",
      "name": "セットアップ手順",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        0,
        0
      ],
      "parameters": {
        "width": 280,
        "height": 200,
        "content": "⭐ **SETUP REQUIRED:**\n\n1. **Connect Slack App:**\n   - Create Slack app at api.slack.com\n   - Add OAuth scopes: chat:write, channels:read\n   - Install to workspace\n\n2. **Configure Channel:**\n   - Update channel in 'Send to Slack' node\n   - Default: #general\n\n3. **Timezone:**\n   - Workflow set to America/New_York\n   - Change in workflow settings if needed\n\n✨ Uses FREE ZenQuotes.io API - no key needed!"
      },
      "typeVersion": 1
    },
    {
      "id": "279ead2e-17c7-4e58-8d27-40b6de24e969",
      "name": "毎日8時トリガー",
      "type": "n8n-nodes-base.cron",
      "position": [
        0,
        224
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "03ed9013-fc5c-4ce7-834b-1ae8f2274834",
      "name": "ランダム名言取得",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        208,
        224
      ],
      "parameters": {
        "url": "https://zenquotes.io/api/random",
        "options": {}
      },
      "typeVersion": 4.1
    },
    {
      "id": "114fc429-738a-41b7-95a6-06ccbae822b2",
      "name": "Slack向け名言フォーマット",
      "type": "n8n-nodes-base.code",
      "position": [
        400,
        224
      ],
      "parameters": {
        "jsCode": "// Normalize quote data from API response\nconst response = $input.first().json;\nconst quoteData = Array.isArray(response) ? response[0] : response;\n\n// Format the motivational message\nconst formattedQuote = {\n  text: `🌟 *Daily Motivation* 🌟\\n\\n\"${quoteData.q || quoteData.quote || 'Stay positive and keep moving forward!'}\"\\n\\n— ${quoteData.a || quoteData.author || 'Unknown'}`,\n  channel: '#general', // Change to your preferred channel\n  username: 'MotivationBot',\n  icon_emoji: ':star2:',\n  raw_quote: quoteData.q || quoteData.quote,\n  raw_author: quoteData.a || quoteData.author\n};\n\nconsole.log('Formatted Quote:', formattedQuote);\n\nreturn {\n  json: formattedQuote\n};"
      },
      "typeVersion": 2
    },
    {
      "id": "a8598192-0075-4ea1-b1a0-8ac2ff7755d1",
      "name": "Slackへ送信",
      "type": "n8n-nodes-base.slack",
      "position": [
        608,
        224
      ],
      "webhookId": "00724f92-9755-4dd9-b88e-f6e0b5ad01b0",
      "parameters": {
        "text": "={{ $json.text }}",
        "select": "channel",
        "channelId": {
          "__rl": true,
          "mode": "name",
          "value": "general"
        },
        "otherOptions": {},
        "authentication": "oAuth2"
      },
      "typeVersion": 2.1
    }
  ],
  "pinData": {},
  "connections": {
    "279ead2e-17c7-4e58-8d27-40b6de24e969": {
      "main": [
        [
          {
            "node": "03ed9013-fc5c-4ce7-834b-1ae8f2274834",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "03ed9013-fc5c-4ce7-834b-1ae8f2274834": {
      "main": [
        [
          {
            "node": "114fc429-738a-41b7-95a6-06ccbae822b2",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "114fc429-738a-41b7-95a6-06ccbae822b2": {
      "main": [
        [
          {
            "node": "a8598192-0075-4ea1-b1a0-8ac2ff7755d1",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
よくある質問

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

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

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

初級 - 個人の生産性, マルチモーダルAI

有料ですか?

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

関連ワークフロー

ビットコインとイーサリアムの下落アラート(Telegram、Slack、SMS)
Telegram、Slack、SMS 経由でビットコインとイーサリアムの下落アラートを送信
If
Code
Slack
+
If
Code
Slack
8 ノードDavid Olusola
仮想通貨取引
Qwen3-VL-8B-Thinking旅行計画ツール
Skyscanner、Booking.com、Gmailを活用したAI最適化旅行行程生成システム
Set
Code
Gmail
+
Set
Code
Gmail
18 ノードCheng Siong Chin
個人の生産性
NewsAPIとGoogle Geminiを使用してテクノロジーニュースブログ記事を自動生成し、WordPressに公開
NewsAPIとGoogle Geminiを使用して自動のにテクノロジーニュースブログ記事を生成し、WordPressに投稿
Code
Wordpress
Http Request
+
Code
Wordpress
Http Request
9 ノードDavid Olusola
コンテンツ作成
Zoom の録画を Google ドライブに保存し、Airtable にメーティング記録を加える
Zoom 録画を Google ドライブに自動保存し、Airtable でメッセージを記録
Code
Webhook
Airtable
+
Code
Webhook
Airtable
7 ノードDavid Olusola
ファイル管理
Zoomの録画をGPT-4で自動要約し、Slackとメールに送信
Zoom録画をGPT-4で自動要約してSlackとメールに送信
Code
Gmail
Slack
+
Code
Gmail
Slack
6 ノードDavid Olusola
AI要約
Gemini AIでGitHubの人気リポジトリから週次のチュートリアルを自動生成し、WordPressに投稿
Gemini AI を使って GitHub 人気リポジトリから週次チュートリアルを自動生成し WordPress に投稿
Code
Split Out
Email Send
+
Code
Split Out
Email Send
9 ノードDavid Olusola
コンテンツ作成
ワークフロー情報
難易度
初級
ノード数5
カテゴリー2
ノードタイプ5
難易度説明

n8n初心者向け、1-5ノードのシンプルなワークフロー

作成者
David Olusola

David Olusola

@dae221

I 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で表示

このワークフローを共有

カテゴリー

カテゴリー: 34