> ## Documentation Index
> Fetch the complete documentation index at: https://docs.replit.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Automation examples

> Real-world automation examples built with Replit Agent using connectors like Linear, Jira, Gmail, Slack, Discord, and more.

export const AiPrompt = ({children}) => {
  return <CodeBlock className="relative block font-sans whitespace-pre-wrap break-words">
      <div className="pr-7">
        {children}
      </div>
    </CodeBlock>;
};

Replit Agent can build full-stack automations that connect your tools, react to events, and run on a schedule — all from a single prompt. Combined with [Connectors](/replitai/integrations) and [Deployments](/category/replit-deployments), you can replace fragile glue code and expensive no-code platforms with real applications you own and control.

## What you can automate

Automations on Replit go beyond simple triggers. Because Agent builds real applications with full code, you can:

* **React to events** from any service with webhook support (Linear, Jira, GitHub, Confluence, Discord, and more)
* **Run on a schedule** with cron-based automations (daily digests, weekly reports, periodic syncing)
* **Chain multiple services** together in a single automation (Jira event triggers an SMS via Twilio, Google Drive file creates a Notion page)
* **Add AI processing** to any workflow — summarize, classify, extract, or generate content using built-in AI integrations
* **Deploy and forget** — automations run 24/7 on Replit's cloud infrastructure with no servers to manage

The key difference from traditional automation platforms: you get the full source code. You can customize logic, add error handling, extend functionality, and version control your automations like any other software project.

## How automations work

Most automations follow a simple pattern:

1. **Trigger** — An event happens (webhook, cron schedule, or API poll)
2. **Process** — Your app receives the event, applies logic, and optionally calls AI for summarization or analysis
3. **Action** — Your app calls another service to send a message, create a record, or update data

Agent handles the entire build process: setting up webhook endpoints, configuring cron schedules, authenticating with services through [Connectors](/replitai/integrations), and deploying your automation.

<Tip>
  To get started, select **Agents & Automations** from the Replit homepage and describe what you want to automate. See the [getting started guide](/core-concepts/agent/agents-and-automations) for a walkthrough.
</Tip>

## Examples by integration

The following are real automations built and running on Replit. Use these as inspiration or as starting prompts for your own automations.

### Project management

<AccordionGroup>
  <Accordion title="Linear: Email notifications for issue comments" icon="diagram-project">
    When a comment is added to a Linear issue assigned to you, receive an email notification so you never miss feedback on your tasks.

    **Services:** Linear, Email

    <AiPrompt>
      When a comment is added to a Linear issue assigned to me, email me
    </AiPrompt>
  </Accordion>

  <Accordion title="Jira: AI-powered email digest for new issues" icon="jira">
    When an issue is created in your Jira workspace, receive an email with an AI-generated summary highlighting the key details and context.

    **Services:** Jira, Email, AI

    <AiPrompt>
      When an issue is created in my workspace, email me with an AI summary
    </AiPrompt>
  </Accordion>

  <Accordion title="Jira + Twilio: SMS alerts for critical issues" icon="message-sms">
    When a critical Jira issue is created, receive an immediate SMS notification via Twilio so you can respond to urgent issues even when away from your desk.

    **Services:** Jira, Twilio

    <AiPrompt>
      When a critical Jira issue is created, send me an SMS via Twilio
    </AiPrompt>

    <Note>
      This automation uses a Jira webhook pointing to your app's webhook URL. Agent sets up the endpoint — you configure the Jira webhook to point to it.
    </Note>
  </Accordion>

  <Accordion title="Asana + Slack: Due date notifications" icon="list-check">
    When an Asana task is assigned to you with a due date this week, automatically send a Slack notification to keep your team informed.

    **Services:** Asana, Slack

    <AiPrompt>
      When an Asana task is assigned to me with a due date this week, send a Slack notification
    </AiPrompt>
  </Accordion>

  <Accordion title="Todoist + Google Sheets: Productivity logging" icon="table">
    When you complete a Todoist task, automatically log it to a Google Sheet to track your productivity over time.

    **Services:** Todoist, Google Sheets

    <AiPrompt>
      When I complete a Todoist task, log it to my productivity Google Sheet
    </AiPrompt>

    <Note>
      This is a cron-based automation that periodically checks for completed tasks and logs them.
    </Note>
  </Accordion>
</AccordionGroup>

### Communication and notifications

<AccordionGroup>
  <Accordion title="Gmail + Google Calendar: Daily motivation and agenda" icon="calendar">
    Every morning at 7am, receive a Gmail email with a motivational quote and your full agenda for the day — a personal briefing to start your morning.

    **Services:** Gmail, Google Calendar

    <AiPrompt>
      Build me an automation that every day at 7am sends me a Gmail email with a motivational quote and my agenda for the day
    </AiPrompt>
  </Accordion>

  <Accordion title="Confluence + Slack: Page update notifications" icon="file-lines">
    When a Confluence page in a specific space is updated, automatically notify your team on Slack so everyone stays in sync on spec changes.

    **Services:** Confluence, Slack

    <AiPrompt>
      When a Confluence page in "Product Specs" is updated, notify the product team on Slack
    </AiPrompt>
  </Accordion>

  <Accordion title="Discord: Welcome DM for new members" icon="discord">
    When a new member joins your Discord server, automatically send them a welcome DM with onboarding resources and getting-started links.

    **Services:** Discord

    <AiPrompt>
      When a new member joins my Discord server, send them a welcome DM with onboarding resources
    </AiPrompt>
  </Accordion>

  <Accordion title="Spotify + Discord: Playlist sharing" icon="spotify">
    When you create a new Spotify playlist, automatically share it to your Discord server so your community discovers your latest music picks.

    **Services:** Spotify, Discord

    <AiPrompt>
      When I create a new Spotify playlist, share it to my Discord server
    </AiPrompt>
  </Accordion>
</AccordionGroup>

### Documents and file management

<AccordionGroup>
  <Accordion title="Google Drive + Notion: Shared document to notes" icon="google-drive">
    When a document is shared with you in Google Drive, automatically create a Notion page with AI-extracted key points and highlights.

    **Services:** Google Drive, Notion, AI

    <AiPrompt>
      When a document is shared with me in Google Drive, create a Notion page with key points
    </AiPrompt>

    <Note>
      This is a cron-based automation that periodically checks for newly shared documents.
    </Note>
  </Accordion>

  <Accordion title="Box: Email highlights for shared documents" icon="box">
    When a document is shared or a note is created in Box, receive an email with AI-generated key highlights so you can quickly assess whether it needs your attention.

    **Services:** Box, Email, AI

    <AiPrompt>
      When a document is shared or a Note is created in Box, email me the key highlights
    </AiPrompt>
  </Accordion>

  <Accordion title="Dropbox: Email summary for shared files" icon="dropbox">
    When a file is shared with you in Dropbox, receive an email summary with key points extracted by AI.

    **Services:** Dropbox, Email, AI

    <AiPrompt>
      When a file is shared with me in Dropbox, email me a summary with key points
    </AiPrompt>

    <Note>
      This is a cron-based automation that periodically checks for newly shared files.
    </Note>
  </Accordion>
</AccordionGroup>

### CRM and customer support

<AccordionGroup>
  <Accordion title="HubSpot: AI insights for new contacts" icon="hubspot">
    When a new contact is created in HubSpot, receive an email with AI-generated insights about the contact to help you prepare for outreach.

    **Services:** HubSpot, Email, AI

    <AiPrompt>
      When a HubSpot contact is created, email me with AI insights
    </AiPrompt>
  </Accordion>

  <Accordion title="Zendesk: Email summary for assigned tickets" icon="ticket">
    When a Zendesk ticket is assigned to you, receive an email summary with the key details so you can prioritize and respond faster.

    **Services:** Zendesk, Email

    <AiPrompt>
      When a ticket is assigned to me, send me an email summary
    </AiPrompt>
  </Accordion>
</AccordionGroup>

## Building your own automations

These examples are starting points. Because Agent builds real applications, you can combine any services and add custom logic:

* **Multi-step workflows**: Chain three or more services together (e.g., Jira issue created → AI summarizes → Slack notification → Google Sheet log)
* **Conditional logic**: Add filters and conditions (e.g., only notify for high-priority issues, only log tasks from specific projects)
* **AI-enhanced processing**: Add summarization, classification, sentiment analysis, or content generation to any automation
* **Custom schedules**: Run automations every hour, every day at a specific time, weekly, or on any cron schedule

<AiPrompt>
  When a high-priority Jira issue is created in the "Backend" project, summarize it with AI, send a Slack notification to #engineering, and log it to a Google Sheet
</AiPrompt>

## Supported services

Automations work with any service available through [Connectors](/replitai/integrations), including:

<CardGroup cols={3}>
  <Card title="Project management" icon="diagram-project">
    Linear, Jira, Asana, Todoist
  </Card>

  <Card title="Communication" icon="comments">
    Slack, Discord, Twilio, Gmail, Outlook
  </Card>

  <Card title="Documents" icon="file">
    Google Drive, Google Docs, Notion, Confluence, Box, Dropbox
  </Card>

  <Card title="CRM & support" icon="building">
    HubSpot, Salesforce, Zendesk
  </Card>

  <Card title="Productivity" icon="table">
    Google Sheets, Google Calendar, Spotify
  </Card>

  <Card title="AI providers" icon="wand-magic-sparkles">
    OpenAI, Anthropic, Gemini, Perplexity
  </Card>
</CardGroup>

You can also connect to any service with a public API by using [external integrations](/replitai/integrations#external-integrations) with API keys.

## Next steps

* [Get started with Agents & Automations](/core-concepts/agent/agents-and-automations) — set up your first automation
* [Browse available Connectors](/replitai/integrations) — see all the services you can connect
* [Learn about Deployments](/category/replit-deployments) — understand how automations run 24/7
* [Explore Agent features](/core-concepts/agent) — see what else Agent can build for you
