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

# Sales & Business Development

> The sales course for Thread: pitch AI-powered service, quote with Super Magic, and hand off won deals cleanly — plus a starter kit and deal-cycle ritual.

export const ByRoleProgress = () => {
  useEffect(() => {
    const KEY = "thread-onboarding-completed";
    const TEAL = "#00B398";
    const BASE = "/start-here/roles/";
    const DONE_ICON = '<svg class="thread-rc-doneicon size-4" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#00B398" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">' + '<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"/>' + '<polyline points="22 4 12 14.01 9 11.01"/></svg>';
    const COURSES = [{
      slug: "technician",
      steps: ["why-thread", "get-around-inbox", "day-one-setup", "daily-workflows", "ai-toolkit", "notifications-and-customers"]
    }, {
      slug: "dispatcher",
      steps: ["why-dispatch-in-thread", "read-the-board", "assign-and-schedule", "ai-for-dispatch"]
    }, {
      slug: "service-ops-manager",
      steps: ["set-up-the-desk", "sla-and-dispatch", "analytics-and-qa", "roll-out-and-adopt"]
    }, {
      slug: "csm-account-manager",
      steps: ["client-intelligence-and-health", "qbrs-and-reporting", "retention-and-expansion"]
    }, {
      slug: "security-compliance-owner",
      steps: ["security-work-in-thread", "data-and-compliance", "security-runbooks"]
    }, {
      slug: "sales-business-development",
      steps: ["the-ai-service-pitch", "quote-and-handoff"]
    }, {
      slug: "msp-owner-leadership",
      steps: ["the-rollout", "outcomes-and-analytics", "scale-ai-service"]
    }, {
      slug: "automation-engineer",
      steps: ["flows-and-intents", "thread-mcp-and-api", "build-with-super-magic"]
    }];
    const COURSE_SLUGS = new Set(COURSES.map(c => c.slug));
    const readLocal = () => {
      try {
        return JSON.parse(localStorage.getItem(KEY) || "[]");
      } catch (e) {
        return [];
      }
    };
    const isDone = (done, id) => done.includes(id);
    const decorate = () => {
      const done = readLocal();
      const scope = document.getElementById("sidebar-content") || document;
      const links = [...scope.querySelectorAll('a[href*="' + BASE + '"]')].filter(a => !a.closest("main"));
      links.forEach(a => {
        const m = (a.getAttribute("href") || "").match(/\/start-here\/roles\/([^/?#]+)\/([^/?#]+)/);
        if (!m) return;
        if (!COURSE_SLUGS.has(m[1])) return;
        const id = m[1] + "/" + m[2];
        const d = isDone(done, id);
        const has = a.querySelector(".thread-rc-check");
        if (d && !has) {
          const s = document.createElement("span");
          s.className = "thread-rc-check";
          s.textContent = "✓ ";
          s.style.color = TEAL;
          s.style.fontWeight = "700";
          a.insertBefore(s, a.firstChild);
        } else if (!d && has) {
          has.remove();
        }
      });
      COURSES.forEach(course => {
        const li = scope.querySelector('li[id="' + BASE + course.slug + '"]');
        if (!li) return;
        const row = li.querySelector(":scope > button") || li.querySelector(":scope > a") || li.firstElementChild;
        if (!row) return;
        const nameSpan = [...row.querySelectorAll("span")].find(s => s.textContent.trim() && !s.classList.contains("thread-rc-coursecheck"));
        if (!nameSpan) return;
        const allDone = course.steps.length > 0 && course.steps.every(s => isDone(done, course.slug + "/" + s));
        const has = nameSpan.querySelector(".thread-rc-coursecheck");
        if (allDone && !has) {
          const s = document.createElement("span");
          s.className = "thread-rc-coursecheck";
          s.setAttribute("aria-hidden", "true");
          s.style.display = "inline-flex";
          s.style.alignItems = "center";
          s.style.verticalAlign = "-0.2em";
          s.style.marginRight = "0.35em";
          s.innerHTML = DONE_ICON;
          nameSpan.insertBefore(s, nameSpan.firstChild);
        } else if (!allDone && has) {
          has.remove();
        }
      });
    };
    decorate();
    const iv = setInterval(decorate, 600);
    window.addEventListener("thread-onboarding-updated", decorate);
    window.addEventListener("storage", decorate);
    return () => {
      clearInterval(iv);
      window.removeEventListener("thread-onboarding-updated", decorate);
      window.removeEventListener("storage", decorate);
    };
  }, []);
  return null;
};

<ByRoleProgress />

You win the business. Your differentiator is no longer just price and response time — it's the service experience itself: chat-first support, an AI Triage Agent that answers 24/7, Voice AI that never sends a client to voicemail, and Super Magic doing the busywork behind the desk. This is your course: two short lessons that turn Thread into your pitch, your quoting engine, and a clean handoff into delivery.

## The course

Work these in order — the first arms the pitch, the second closes and routes the deal. Ten minutes gets you selling AI-powered service with confidence.

<Steps>
  <Step title="The AI-service pitch">
    What customers actually see — chat-first, after-hours coverage — and the four products that anchor the story. [Start here →](/start-here/roles/sales-business-development/the-ai-service-pitch)
  </Step>

  <Step title="Quote & hand off">
    Use the Skill Library to quote, scope a SOW, mine tickets for expansion, and route won deals into delivery. [Read →](/start-here/roles/sales-business-development/quote-and-handoff)
  </Step>
</Steps>

## Your starter kit

The [Skill Library](/skill-library/overview) has a dedicated [Sales & Quoting](/skill-library/sales-and-quoting/overview) set. These four run from Super Magic — press **`⌘K`** in Inbox and search the skill name to launch any of them on the ticket in front of you.

<CardGroup cols={2}>
  <Card title="Quote Preparation" icon="file-invoice-dollar" href="/skill-library/sales-and-quoting/quote-preparation">
    Structured options (good/better/best, 1-year vs 3-year) with explicit assumptions, ready for the sales owner to price.
  </Card>

  <Card title="SOW Drafting" icon="file-signature" href="/skill-library/sales-and-quoting/sow-drafting">
    A brief scope of work from the ticket — deliverables, assumptions, exclusions, and a T\&M-vs-fixed recommendation.
  </Card>

  <Card title="Tickets to Opportunities" icon="arrow-trend-up" href="/skill-library/sales-and-quoting/tickets-to-opportunities">
    Mine recent tickets for expansion signals — refresh, growth, absorbed out-of-scope work — into a per-client report.
  </Card>

  <Card title="Sales Handoff Routing" icon="share-from-square" href="/skill-library/sales-and-quoting/sales-handoff-routing">
    Move a purchase, renewal, or pricing ticket to the sales board and the account owner with a clean summary.
  </Card>
</CardGroup>

<Card title="Browse all Sales & Business Development skills" icon="tags" href="/skill-library/by-role/sales-business-development">
  Every Super Magic skill tagged for your role — quoting, proposals, and turning service work into opportunities.
</Card>

## Your deal-cycle ritual

No morning-huddle skill for sales — the ritual is a loop you run per deal, not per day. Make it muscle memory:

* **Before every pitch**, open [Customer value messaging](/get-started/talking-to-customers-about-ai-powered-support-thread-customer-value-messaging) and lead with outcomes, not features.
* **When a quote is asked for**, run **Quote Preparation** on the ticket — don't build options in a spreadsheet from scratch.
* **When work is project-shaped**, run **SOW Drafting** before you price it, so assumptions and exclusions are on paper.
* **When a "support" ticket is really a buying signal**, run **Sales Handoff Routing** — never let a purchase ask die on the service board.
* **Before every renewal or QBR**, run **Tickets to Opportunities** on the client so you walk in knowing where the expansion is.

## Pro tips & FAQ

<AccordionGroup>
  <Accordion title="What's the one-line pitch for AI-powered service?">
    Clients get instant, chat-first support in the tools they already live in — with an AI agent answering 24/7 and Voice AI catching every call — and your desk resolves faster with less busywork. You're selling a better experience *and* a more scalable desk. See [The AI-service pitch](/start-here/roles/sales-business-development/the-ai-service-pitch).
  </Accordion>

  <Accordion title="Can I show a prospect a live demo?">
    Yes — [Messenger](/messenger/configurations-in-messenger) is the in-Teams/Slack chat experience clients love, and it demos in seconds. Pair it with the [Triage Agent](/ai-agents/getting-started-with-triage-agent) story so they see a request answered instantly, not just a chat box.
  </Accordion>

  <Accordion title="Do these skills send anything to the client?">
    No. Every Sales & Quoting skill is a **draft** — quotes, SOWs, and handoff notes are prepared for the sales owner to verify and send. Nothing money-facing leaves the building without a human. That guardrail is deliberate; lean on it when you promise a client "let me get you real numbers."
  </Accordion>

  <Accordion title="Who owns pricing and contract terms?">
    The sales owner, always. The skills structure the options and surface the assumptions; they never invent discounts, SKUs, or commit multi-year pricing. Term and renewal claims about an existing agreement need the agreement evidence — the skills flag those for you to confirm.
  </Accordion>

  <Accordion title="Where does a won deal go next?">
    Into delivery. Use **Sales Handoff Routing** to move the ticket to the right board and put the account owner on it with a summary, so the client never repeats themselves. [Quote & hand off](/start-here/roles/sales-business-development/quote-and-handoff) walks the full path.
  </Accordion>
</AccordionGroup>


## Related topics

- [Sales & Business Development](/skill-library/by-role/sales-business-development.md)
- [Sales Handoff Routing](/skill-library/sales-and-quoting/sales-handoff-routing.md)
- [SOW Drafting](/skill-library/sales-and-quoting/sow-drafting.md)
