> ## 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 Claude

> Aria runs inside Claude Desktop and Claude Code through the official Patchline plugin — a progressive release-planning workflow grounded in your real catalog, audience, and release context.

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>;
};

If you live in **Claude** — Desktop or Claude Code — Aria comes to you.
The official Patchline plugin wraps Aria's tools with a
**progressive-interview workflow** for music release planning: Claude
asks the right questions, drafts each phase, and saves outputs back to
your Patchline workspace.

<TierBadge tier="all" />   Free to install.

## What you get on Claude

* **The full Aria tool surface** — catalog, roster, releases, playlists,
  smart links, music data — callable inside Claude.
* **A guided release workflow** — lifecycle-phase skills
  (`/aria:start`, `/aria:release-plan`, `/aria:rollout`, …) that walk a
  project from idea to launch.
* **Grounded answers** — every response is backed by your real Patchline
  data, not Claude's training memory.

## Install

One command in Claude Code:

```bash theme={null}
/plugin marketplace add Patchline-AI/aria
/plugin install aria@patchline-ai
```

Then authenticate with `/mcp` and start a project with `/aria:start`.

**Full setup, slash-command reference, and the lifecycle workflow →
[Claude plugin](/for-agents/claude-plugin).**

## Same Aria, everywhere else

* [Aria on the Web App](/aria/web-app) — the full dashboard
* [Aria on Slack](/aria/slack) — chat with Aria in your team channels
* [Aria via MCP](/aria/mcp) — raw tool access for Cursor, Codex, VS Code

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