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

# Aria on Slack

> Chat with Aria from your team's Slack. Briefings, release prompts, and deliveries run in-thread — so your whole team can act on your catalog, roster, and releases without leaving Slack.

export const TierBadge = ({tier}) => {
  const styles = {
    free: {
      label: "Free",
      color: "#A1A1AA"
    },
    starter: {
      label: "Starter+",
      color: "#00E6E2"
    },
    pro: {
      label: "Pro+",
      color: "#0068FF"
    },
    scale: {
      label: "Scale+",
      color: "#7A5BFF"
    },
    enterprise: {
      label: "Enterprise",
      color: "#FF7A59"
    },
    all: {
      label: "All plans",
      color: "#22C55E"
    }
  };
  const t = styles[tier?.toLowerCase()] ?? styles.all;
  return <span style={{
    display: "inline-flex",
    alignItems: "center",
    gap: "4px",
    padding: "2px 10px",
    borderRadius: "999px",
    border: `1px solid ${t.color}40`,
    background: `${t.color}1A`,
    color: t.color,
    fontSize: "12px",
    fontWeight: 600,
    fontFamily: "var(--font-family-mono)",
    verticalAlign: "middle"
  }}>
      {t.label}
    </span>;
};

export const AICallout = ({page}) => {
  const slug = page ?? "";
  const mdUrl = `https://docs.patchline.ai${slug}.md`;
  return <div style={{
    marginTop: "32px",
    padding: "16px 20px",
    borderRadius: "12px",
    border: "1px solid rgba(0,230,226,0.25)",
    background: "linear-gradient(135deg, rgba(0,230,226,0.08), rgba(0,104,255,0.05))",
    color: "inherit",
    fontSize: "14px",
    lineHeight: 1.6
  }}>
      <strong style={{
    display: "block",
    marginBottom: "6px",
    color: "#00E6E2"
  }}>
        For AI agents reading this page
      </strong>
      The canonical machine-readable version of this page is at{" "}
      <a href={mdUrl}>
        <code>{mdUrl}</code>
      </a>
      . For product actions, connect to{" "}
      <code>www.patchline.ai/api/mcp/v1</code>
      {" "}and call MCP <code>tools/list</code> for the current tool schema.
      Rules for navigating these docs:{" "}
      <a href="https://docs.patchline.ai/AGENTS.md">
        <code>docs.patchline.ai/AGENTS.md</code>
      </a>
      .
    </div>;
};

Aria on Slack brings the assistant into your team's channels. Ask Aria
a question, request a briefing, or kick off a release prompt — and the
answer comes back **in-thread**, grounded in the same catalog, roster,
and release data as the web app.

<TierBadge tier="all" />   Generally available.

## Why Slack

The web app is where one person runs the operation. **Slack is where a
team does.** When your manager, label contact, or collaborators already
live in Slack, Aria meets them there:

* **Briefings in-thread** — drop a daily or release briefing into the
  channel the team already watches.
* **Release prompts** — *"what's the status of the Sleeper rollout?"* —
  answered where the team is talking about it.
* **Deliveries in-thread** — pitch drafts, summaries, and reports land
  in the conversation, not a separate tab.

It's the same grounded Aria — it acts on your real data and never
invents an ISRC, a stream count, or a curator name.

## Getting started

<Steps>
  <Step title="Authenticate">
    Connect your Slack workspace to Patchline by authenticating — a
    standard approve step. No tokens to copy, no config files to edit.
  </Step>

  <Step title="Aria installs as a Slack app">
    Once you approve, Aria shows up as an app in your Slack workspace.
  </Step>

  <Step title="Talk to Aria">
    Two ways to use it:

    * **Mention `@Aria`** in any channel to ask it something in the flow
      of the conversation.
    * **Open the dedicated Aria space** in Slack's **Apps** section for a
      focused one-on-one with Aria.
  </Step>
</Steps>

It's the same grounded Aria as the web app — same catalog, same roster.

## Same Aria, everywhere else

* [Aria on the Web App](/aria/web-app) — the full dashboard
* [Aria on Claude](/aria/claude) — Aria inside Claude Desktop + Code
* [Aria via MCP](/aria/mcp) — Aria's tools in Cursor, Codex, VS Code

## Related pages

* [Aria overview](/aria/overview) — what Aria is
* [Use cases](/aria/prompts) — prompts that work
* [Connectors](/integrations/overview) — other tools Aria reaches into

<AICallout page="/aria/slack" />
