Scheduling × Communication
Google CalendarSlackAGNT

Automate Google Calendar + Slack

The shared clock your workflows can read and write. Team chat where operations actually surface. Put an agent between them and the hand-off stops being manual: it reads, decides, acts, and shows its work.

Install Meeting Follow-Through → Get AGNT free

Meeting Follow-Through is a ready-made agent built around Google Calendar; point its last step at Slack to finish this hand-off.

Automations teams run

These are not field mappings. An agent reads the Google Calendar side, works out what it means, and only then decides what — if anything — should happen in Slack.

When an event starts or ends in Google Calendar…

…an agent can post a rich channel message in Slack — after reading the context and deciding it should.

When a meeting is created in Google Calendar…

…an agent can DM a teammate in Slack — after reading the context and deciding it should.

When a day begins in Google Calendar…

…an agent can open a thread with findings in Slack — after reading the context and deciding it should.

When a message hits a channel in Slack…

…an agent can create or move events in Google Calendar — with the reasoning recorded in the run’s receipt.

When a keyword or mention fires in Slack…

…an agent can add agendas to invites in Google Calendar — with the reasoning recorded in the run’s receipt.

When a reaction is added in Slack…

…an agent can block focus time in Google Calendar — with the reasoning recorded in the run’s receipt.

The Google Calendar and Slack hand-off, setup template

Start with the google-calendar-api node and the slack-api node. Configure the Google Calendar source payload, the agent input, and the Slack operation. The sequential template does not implement conditional writes or approval by itself.

Google Calendar to Slack: watch google calendar → review source and draft → configure destination in slack TRIGGER google-calendar-new-event Watch Google Calendar Configure activation ACTION agnt-agent Review source and draft Configure inputs ACTION slack-api Configure destination in Slack Configure inputs
Setup template for Google Calendar and Slack; verify data mapping and authorization using test accounts.
Google Calendar → SlackSetup template · configure before activation

This is a schema-checked starting point, not an end-to-end tested automation. Replace every CONFIGURE_ value, choose the operations you intend, connect credentials and map source outputs into later inputs. An edge orders steps; it does not supply a condition, an approval gate or a field mapping. Add and test those controls explicitly before any write. Cloud APIs and model providers may receive data. Keep the workflow inactive until tested with fixtures.

{
  "id": "f2d1b0d8-2d61-444b-ad90-fbb1e266dd6e",
  "name": "Google Calendar → Slack",
  "nodes": [
    {
      "id": "11f62f63-8944-4614-a7fc-cdaf29c82c58",
      "text": "Watch Google Calendar",
      "x": 512,
      "y": 144,
      "isEditing": false,
      "type": "google-calendar-new-event",
      "icon": "connect",
      "category": "trigger",
      "isSelected": false,
      "parameters": {
        "calendarId": "CONFIGURE_CALENDARID"
      },
      "description": "Setup template for Google Calendar New Event. Listen for events created or updated on a Google Calendar and trigger the workflow. Configure credentials, inputs and output mapping before use.",
      "error": null,
      "isActive": false,
      "output": null,
      "outputs": {}
    },
    {
      "id": "8a3d894c-1c04-4207-a5a2-5c55e11b3bfe",
      "text": "Review source and draft",
      "x": 512,
      "y": 336,
      "isEditing": false,
      "type": "agnt-agent",
      "icon": "connect",
      "category": "action",
      "isSelected": false,
      "parameters": {
        "agentId": "CONFIGURE_AGENTID",
        "message": "Read the Google Calendar item. Decide whether it warrants action in Slack, and explain why.\nSource input: CONFIGURE_SOURCE_INPUT. Produce a reviewable draft only; do not take external actions."
      },
      "description": "Setup template for Agent Chat. Chat with an AI agent from your agent library. Select an agent and send messages to interact with it within your workflow. Configure credentials, inputs and output mapping before use.",
      "error": null,
      "isActive": false,
      "output": null,
      "outputs": {}
    },
    {
      "id": "fe5702d2-b531-4082-aa99-4a587bbfe0a0",
      "text": "Configure destination in Slack",
      "x": 512,
      "y": 528,
      "isEditing": false,
      "type": "slack-api",
      "icon": "connect",
      "category": "action",
      "isSelected": false,
      "parameters": {
        "action": "SEND_MESSAGE",
        "channelId": "CONFIGURE_CHANNELID",
        "message": "CONFIGURE_MESSAGE"
      },
      "description": "Setup template for Slack API. Interact with Slack to perform various operations such as sending messages, uploading files, managing reactions, and more. Configure credentials, inputs and output mapping before use.",
      "error": null,
      "isActive": false,
      "output": null,
      "outputs": {}
    }
  ],
  "edges": [
    {
      "id": "248cdd3f-9a61-4941-abf3-8ae485d4fe32",
      "start": {
        "id": "11f62f63-8944-4614-a7fc-cdaf29c82c58",
        "type": "output"
      },
      "end": {
        "id": "8a3d894c-1c04-4207-a5a2-5c55e11b3bfe",
        "type": "input"
      },
      "startX": 800,
      "startY": 168,
      "endX": 512,
      "endY": 360
    },
    {
      "id": "ccd6b7d9-3d3e-41a6-a0d2-9fb1f3b2c5e4",
      "start": {
        "id": "8a3d894c-1c04-4207-a5a2-5c55e11b3bfe",
        "type": "output"
      },
      "end": {
        "id": "fe5702d2-b531-4082-aa99-4a587bbfe0a0",
        "type": "input"
      },
      "startX": 800,
      "startY": 360,
      "endX": 512,
      "endY": 552
    }
  ],
  "zoomLevel": 1,
  "canvasOffsetX": 0,
  "canvasOffsetY": 0,
  "isTinyNodeMode": false
}

Configure Google Calendar New Event

Listen for events created or updated on a Google Calendar and trigger the workflow.

  • calendarId — Calendar ID to monitor (defaults to 'primary') Current example: CONFIGURE_CALENDARID.

Configure Slack API

Interact with Slack to perform various operations such as sending messages, uploading files, managing reactions, and more.

  • action — The action to perform on Slack Current example: SEND_MESSAGE.
  • channelId — The ID of the Slack channel Current example: CONFIGURE_CHANNELID.
  • message — The message to send Current example: CONFIGURE_MESSAGE.

Install Meeting Follow-Through

Meeting Follow-Through is a working agent built around Google Calendar. Install it, point its last step at Slack, and you have this hand-off without building it from an empty canvas.

Runs on your own machine · See what it does

Build it in AGNT

  1. Get AGNT Community Core. Free, local, no sign-up needed to run a workflow.
  2. Add both connections to the vault — Google Calendar takes one OAuth sign-in, Slack takes one OAuth sign-in.
  3. Configure the nodes above, or start from a marketplace workflow and edit it. The agent in the middle is the part worth spending time on.
  4. Run it once with an approval gate in place. The receipt tells you what it read, what it concluded, and what it changed in Slack.

Google Calendar and Slack — common questions

Can I connect Google Calendar to Slack without writing code?

You can build it entirely from the canvas. Authorise Google Calendar with one OAuth sign-in, Slack with one OAuth sign-in, then tell the agent what prep briefings before every meeting should look like once Slack is involved. Code is an option for the unusual cases, never a requirement for the common ones.

How is this different from a field-mapping Google Calendar to Slack automation?

The difference shows up on the messy inputs. A rule chain needs every case enumerated in advance; an agent handles prep briefings before every meeting the way a colleague would — reading the Google Calendar context, judging it, then writing to Slack with the reasoning recorded.

Does my Google Calendar and Slack data leave my machine?

AGNT Community Core is local-first, so there is no vendor middleman holding your Google Calendar or Slack tokens. The runtime talks directly to both services. Choose a local model and the content of what it reads never leaves the machine at all.

What does a Google Calendar and Slack run leave behind?

You get an auditable trail rather than a success flag. It shows the Google Calendar context the agent worked from, the judgment it made about pipe agent findings into the room where decisions happen, and the exact change applied in Slack, with approvals attached where you required them.

Give AI a job. Get the proof.