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

# Prompt library

> Every prompt you can run against Introw - from Introw AI in the product, or from Claude, ChatGPT, Slack, Teams, or your CRM - grouped by product area and ready to copy.

export const Tour = ({children}) => {
  const [active, setActive] = useState(0);
  const wrappers = (Array.isArray(children) ? children : [children]).filter(c => c && c.props);
  const frames = wrappers.length === 1 && Array.isArray(wrappers[0].props.children) ? wrappers[0].props.children.filter(c => c && c.props) : [];
  if (frames.length < 2) {
    return <div className="not-prose" data-overview="tour">
        {children}
      </div>;
  }
  const thumb = (frame, index) => <button key={index} type="button" onClick={() => setActive(index)} aria-label={`Frame ${index + 1}`} data-active={index === active ? "true" : "false"} data-index={index + 1}>
      {frame}
    </button>;
  return <div className="not-prose" data-overview="tour">
      <div data-tour="hero">{frames[active] ?? frames[0]}</div>
      <div data-tour="strip">{frames.map((frame, index) => thumb(frame, index))}</div>
    </div>;
};

export const PromptList = ({children, source, href}) => {
  const [copied, setCopied] = useState(null);
  const copy = event => {
    const row = event.target.closest("li");
    if (!row) return;
    const text = row.textContent.trim();
    try {
      navigator.clipboard?.writeText(text);
    } catch {}
    setCopied(text);
    setTimeout(() => setCopied(null), 1600);
  };
  return <div className="not-prose" data-prompts="block">
      <div data-prompts="head">
        <span>{copied ? "Copied" : source}</span>
        {href ? <a href={href} data-prompts="source">
            Read the page
          </a> : null}
      </div>
      <div data-prompts="rows" onClick={copy}>
        {children}
      </div>
    </div>;
};

> Every prompt below runs against your live partner data through one secure toolset.
> Run it in **Introw AI**, the assistant built into Introw, or from your own assistant over [Introw's MCP server](/features/developer/mcp) - Claude, ChatGPT, Gemini, Cursor.
> The surface changes, the prompt does not: the same tools, your own permissions, and every write landing in your CRM.

## Where to run them

<Tour>
  * ![Introw AI, the assistant for your own team, with one-click prompts for a QBR, inactive partners and gold partners and a box to ask anything about the program.](https://assets.introw.io/docs/features/ai/copilot/shots/assistant.png)

    **Introw AI**

    Built into Introw. Nothing to connect: open it and ask.

  * ![Claude charting each partner's revenue goal attainment against the year elapsed and naming the only partner on pace, from live Introw data, labelled Used Introw integration.](https://assets.introw.io/docs/external/claude/conversation.png)

    **Claude**

    A one-click connector, then an OAuth sign-in.

  * ![A ChatGPT conversation answering partner questions from live Introw data, with Introw PRM listed under Sources.](https://assets.introw.io/docs/external/chatgpt/conversation.png)

    **ChatGPT**

    The same server, installed as a ChatGPT connector.

  * ![The MCP connector page with the MCP server URL ready to copy.](https://assets.introw.io/docs/features/developer/mcp/guides/connect-an-mcp-client/steps/02.png)

    **Any MCP client**

    One server URL for Gemini, Cursor and the rest.
</Tour>

[Introw AI](/features/ai/copilot) runs the same toolset the [MCP server](/features/developer/mcp) exposes, so a prompt written for Claude works unchanged inside Introw, and the other way round.
Partners get the same choice: their own assistant through [Partner AI](/features/partner-connect/partner-ai), or the [support agent](/features/ai/partner-support) that answers them in the portal, Slack, Teams, email and WhatsApp.

## How to use this page

<Steps>
  <Step title="Pick your surface">
    Introw AI is already there: open it from the top of Introw and ask. To use your own assistant, connect it once over MCP - see [Connect Claude](/features/developer/mcp/guides/connect-claude), [Connect ChatGPT](/features/developer/mcp/guides/connect-chatgpt), or [Connect an MCP client](/features/developer/mcp/guides/connect-an-mcp-client) for Gemini, Cursor and the rest.
  </Step>

  <Step title="Copy a prompt and edit the specifics">
    Hover a prompt and use the copy button. Swap the partner names, tiers, and time ranges for your own; the phrasing does not have to be exact, the assistant matches on intent.
  </Step>

  <Step title="Approve anything that writes">
    Reads run straight away. Actions that change data follow your capability matrix, so they either execute, wait for approval, or stay blocked. See [Governance and trust](/headless#governance-and-trust).
  </Step>
</Steps>

<Note>
  Prompts are grouped by the product area they act on, and each block links to the page that documents the capability behind it. If a prompt returns nothing, the usual cause is that the feature is not configured yet or your role cannot see the data, not that the assistant misunderstood.
</Note>

## Partners

<PromptList source="Partners overview" href="/features/partners">
  * Which Gold partners haven't registered a deal this quarter?
  * Move Acme up to the Gold tier.
  * Prepare a QBR for my top partner.
</PromptList>

<PromptList source="Journeys" href="/features/partners/journeys">
  * For the three partners who signed this week, create their onboarding tasks and assign the first to each.
  * Which partners are stalled midway through onboarding with no task completed in 14 days?
  * Draft a nudge comment for every partner behind on their activation steps.
  * Show each new partner's onboarding progress - to do, in progress, and done.
  * Advance Acme's lifecycle phase to active now that their onboarding tasks are complete.
</PromptList>

<PromptList source="Partner Management" href="/features/partners/partner-management">
  * Show partners in EMEA with no activity in the last 60 days.
  * Change Acme's partner manager to me.
  * Update Globex's lifecycle phase to active.
</PromptList>

<PromptList source="Partner Onboarding" href="/features/partners/onboarding">
  * Which partners signed in the last 30 days but haven't finished onboarding?
  * Create Acme's next onboarding task, assign it to them, and set it due Friday.
  * Show partners who completed onboarding but haven't registered a deal yet.
  * Mark Acme's onboarding tasks complete and move their lifecycle phase to active.
</PromptList>

<PromptList source="Partner Team" href="/features/partners/team">
  * Who is the champion contact at Acme?
  * Show the partner managers and owners across our partners.
</PromptList>

<PromptList source="Segments" href="/features/partners/segments">
  * List partners in the healthcare vertical with over \$100k in sourced pipeline.
  * Which partners match our top-performer profile?
  * Show partners grouped by tier and country.
</PromptList>

<PromptList source="Tasks" href="/features/partners/tasks">
  * Create an onboarding checklist for Acme - NDA, kickoff call, portal setup - each due next week.
  * Show every overdue partner task across the program, grouped by partner.
  * Mark Acme's certification task done and post a comment congratulating them.
  * Create a task on the Globex deal to send the security questionnaire, assigned to the partner.
  * Which partners have open onboarding tasks with nothing completed in two weeks? Draft a nudge for each.
</PromptList>

<PromptList source="Tiers" href="/features/partners/tiers">
  * List every tier in order with its requirements and benefits.
  * How close is Acme to the next tier based on their goal progress?
  * Which Silver partners now meet the Gold requirements and should be promoted?
  * Promote Acme to Gold and sync the new tier to our CRM.
  * Show all partners grouped by tier and country.
</PromptList>

## Visibility & collaboration

<PromptList source="Visibility & collaboration overview" href="/features/co-selling">
  * Which shared deals are closing this quarter and what stage are they in?
  * Add a comment on the Globex deal asking the rep for next steps.
  * Create a task on the Acme deal to send the security questionnaire.
</PromptList>

<PromptList source="Deal & Lead Registration" href="/features/co-selling/deal-lead-registration">
  * Register a deal or share a lead for Acme without leaving your assistant.
  * Show my pending deal and lead submissions and their status.
</PromptList>

<PromptList source="Shared Pipelines" href="/features/co-selling/shared-pipelines">
  * Show all partner-attributed deals and their current stage.
  * Which shared deals have stalled with no activity in two weeks?
  * Update the amount on the Globex deal to \$95k.
</PromptList>

<PromptList source="Tasks" href="/features/co-selling/tasks">
  * Create a task on the Acme deal to send pricing by Friday, assigned to me.
  * Show open tasks across my shared deals, oldest first.
  * Mark the 'send NDA' task on the Globex deal as done and comment that it's with legal.
  * Reassign the follow-up task on the Globex deal to the partner and set it due Friday.
</PromptList>

## Partner Connect

<PromptList source="Partner Connect overview" href="/features/partner-connect">
  * What do I still need to close to reach the next tier with this vendor?
  * @Introw, share this \$20k deal for me.
  * Register the opportunities from my own CRM that mention the vendor's product.
  * Check my pending commission and the vendor-side status of my deals.
</PromptList>

<PromptList source="Communication Tools" href="/features/partner-connect/communication-tools">
  * @Introw, share this \$20k deal for me.
  * Register the deal we just discussed with the vendor.
  * What's the vendor-side status of our shared deal?
  * Ask the vendor's team to review my registration.
</PromptList>

<PromptList source="Partner AI" href="/features/partner-connect/partner-ai">
  * What do I still need to close to reach the next tier with this vendor?
  * Register the opportunities from my own CRM that mention the vendor's product.
  * Check my pending commission and reconcile it against my own books.
  * What training or certifications do I still need with this vendor?
</PromptList>

<PromptList source="Partner CRM" href="/features/partner-connect/partner-crm">
  * Show the vendor's live status on my open opportunity.
  * Register this deal with the vendor without leaving my CRM.
  * What next steps did the vendor's rep leave on our deal?
</PromptList>

## Referrals

<PromptList source="Referrals overview" href="/features/referrals">
  * Share a lead for Acme: contact [john@acme.com](mailto:john@acme.com), interested in the enterprise plan.
  * Show all shared leads still pending review.
  * What reward is owed on the referral that just closed?
</PromptList>

<PromptList source="Channel Conflict" href="/features/referrals/channel-conflict">
  * Does this referral overlap a deal our direct team already has?
  * Has anyone else referred this account before?
  * Which shared leads conflict with existing pipeline?
</PromptList>

<PromptList source="Deal Progress Updates" href="/features/referrals/deal-updates">
  * What's the latest status on the deal I referred into Acme?
  * Post a comment on my referred deal asking the rep for next steps.
  * Show updates on all the deals I've referred.
</PromptList>

<PromptList source="Lead Sharing" href="/features/referrals/lead-sharing">
  * Share a new lead for Acme with contact [john@acme.com](mailto:john@acme.com).
  * Show the leads I've shared this month and their status.
  * Which of my shared leads have been accepted?
</PromptList>

<PromptList source="Referral Rewards" href="/features/referrals/rewards">
  * What referral reward is owed on Acme's closed deal?
  * How much have I earned in referral rewards this quarter?
  * When is my next referral payout due?
</PromptList>

## Deal Registration

<PromptList source="Deal Registration overview" href="/features/deal-registration">
  * Register a deal for Acme: \$120k ARR, closing end of Q3, contact [jane@acme.com](mailto:jane@acme.com).
  * Show every deal registration pending approval or in channel conflict.
  * Approve the registration from Globex and link it to the existing CRM deal.
</PromptList>

<PromptList source="Channel Conflict" href="/features/deal-registration/channel-conflict">
  * Does this registration conflict with any direct or partner pipeline?
  * Which registrations overlap an existing opportunity?
  * Is Globex already being worked by our direct team?
</PromptList>

<PromptList source="Deal Registration" href="/features/deal-registration/registration">
  * Register a new deal with Globex worth €80k, closing next month.
  * Which registrations are pending, and which overlap our direct pipeline?
  * Accept Acme's registration and link it to the existing HubSpot deal.
</PromptList>

<PromptList source="Multi-tier Attribution" href="/features/deal-registration/multi-tier">
  * Register a deal on behalf of our distributor's sub-reseller.
  * Show registrations submitted through second-tier partners.
  * Which multi-tier registrations are waiting on approval?
</PromptList>

<PromptList source="Shared Pipeline" href="/features/deal-registration/shared-pipeline">
  * Show the partner-attributed deals closing this quarter and their stage.
  * Which registered deals haven't been updated in 30 days?
  * Update the close date on the Globex deal to end of Q3.
</PromptList>

## Engagement

<PromptList source="Engagement overview" href="/features/engagement">
  * What have we announced to partners this quarter?
  * Which partners engaged with our most recent announcement?
  * Find what we have already told partners about our pricing change.
</PromptList>

<PromptList source="Announcements" href="/features/engagement/announcements">
  * Which announcements have partners seen recently?
  * Show partner engagement with our latest announcement.
</PromptList>

<PromptList source="Notifications" href="/features/engagement/notifications">
  * Show recent partner portal activity - comments, visits, and task updates - this week.
  * Which partners have been active in the last 7 days?
</PromptList>

## Partner Portal & Branding

<PromptList source="Partner Portal & Branding overview" href="/features/portal">
  * Show recent partner portal activity - visits, comments, and asset views - this week.
  * Which partners have been most active in the portal this month?
  * List partners in the directory by category and country.
</PromptList>

<PromptList source="Partner Directory" href="/features/portal/partner-directory">
  * List partners in the directory by category and country.
  * Which partners are in the healthcare vertical?
</PromptList>

## Content & Enablement

<PromptList source="Content & Enablement overview" href="/features/content">
  * Which assets are partners viewing most this month?
  * Has Acme opened the latest pricing deck?
</PromptList>

<PromptList source="Asset Hub" href="/features/content/asset-hub">
  * What content has Acme viewed recently?
  * Which assets are getting the most partner engagement?
</PromptList>

<PromptList source="Asset Library" href="/features/content/asset-library">
  * Which assets are partners viewing most?
  * Has Acme downloaded the security whitepaper?
</PromptList>

<PromptList source="Co-branded Assets" href="/features/content/co-branded-assets">
  * Generate a co-branded version of the launch one-pager with our branding
  * Which co-branded assets can I personalize?
</PromptList>

<PromptList source="Through-Channel Marketing (TCMA)" href="/features/content/tcma">
  * What campaign assets can partners launch, and which folders are they in?
  * Find our positioning and messaging material so I can build a partner campaign.
  * Add this co-branded one-pager to the partner library under Campaigns.
</PromptList>

## Courses & Training

<PromptList source="Courses & Training overview" href="/features/courses">
  * List our courses with their settings and whether the SCORM package imported cleanly.
  * Create a course from this SCORM zip and link the partner certification certificate to it.
  * Which certificates do we issue, and which course awards each one?
  * Show course activity for Acme over the last quarter.
  * Enroll Acme's technical contact in the onboarding course and create a task to finish it by Friday.
</PromptList>

<PromptList source="Certificates" href="/features/courses/certificates">
  * Attach our reseller certificate to the sales onboarding course.
  * Which of our courses do not award a certificate yet?
</PromptList>

<PromptList source="Course Authoring" href="/features/courses/authoring">
  * Create a course from this SCORM zip and give it a 30-day due date.
  * Replace the SCORM package on our reseller onboarding course.
  * Set the passing score on our certification course to 80.
</PromptList>

<PromptList source="Enrollments" href="/features/courses/enrollments">
  * Which courses auto-enroll partners, and which are marked required?
  * What is the due date on each of our required courses?
</PromptList>

## Forms

<PromptList source="Forms overview" href="/features/forms">
  * Submit a co-marketing request form for Acme.
  * Show all pending form submissions across every form.
  * Approve Globex's submission and notify them.
</PromptList>

<PromptList source="CRM Automations" href="/features/forms/crm-automations">
  * When Acme submits a lead, does it update the existing company or create a new one?
  * Which fields does the deal-registration form write back to the CRM?
</PromptList>

<PromptList source="Form Builder" href="/features/forms/form-builder">
  * Which forms can I submit for Acme?
  * Start a project submission form for Acme and tell me which fields are required.
</PromptList>

<PromptList source="Sharing & submitting" href="/features/forms/sharing-submitting">
  * Which forms can I submit for Acme, and what are the ways to submit them?
  * Share the deal registration form with Globex as a partner-specific link.
  * Submit a batch of leads for Acme from a CSV.
</PromptList>

<PromptList source="Submissions & Approvals" href="/features/forms/submissions-approvals">
  * Show all pending submissions across every form.
  * Approve Acme's submission and notify them.
  * Return Globex's registration for missing fields.
</PromptList>

## Commissions & SPIFFs

<PromptList source="Commissions & SPIFFs overview" href="/features/commissions">
  * What's our total earned-but-unpaid commission, and what's due to be paid next month?
  * How much commission has Acme earned this quarter, and on which deals?
  * Explain how Acme's commission plan pays out - rates, tiers, and installments.
  * Show the most recent payouts across all partners and their stage.
  * Which partners have the most pipeline commission at stake this quarter?
</PromptList>

<PromptList source="Commission Lines" href="/features/commissions/commission-lines">
  * Show the commission lines generated for Acme this quarter and the deals behind them.
  * What's earned-but-unpaid for Acme right now?
  * Which deals drove the most commission this month across all partners?
  * Break down this quarter's commission by partner.
</PromptList>

<PromptList source="Commission Plans" href="/features/commissions/commission-plans">
  * Explain how Acme's commission plan pays out, including rate tiers and installments.
  * Which commission plans are active, and what source object does each read from?
  * What rate applies to a new-business resale deal versus a renewal?
  * Which partners are on the referral plan versus the reseller plan?
</PromptList>

<PromptList source="Payouts" href="/features/commissions/payouts">
  * Show my most recent payouts and their stage.
  * What commission is due to be paid out next month, and to whom?
  * How much has been paid to Acme year to date?
  * Which payouts are still in review?
</PromptList>

<PromptList source="Settings" href="/features/commissions/settings">
  * How is commission calculated for referrals versus resale?
  * What currency are our commissions reported in?
  * What rate tiers and installments does each active plan use?
</PromptList>

## Market Development Funds

<PromptList source="Market Development Funds overview" href="/features/mdf">
  * How much MDF budget does Acme still have available this quarter?
  * Submit an MDF proposal for Acme: \$5k for a regional field event.
  * Show every MDF proposal and claim still pending approval.
  * What ROI have partners reported against the Q2 fund?
</PromptList>

<PromptList source="Funds & Allocation" href="/features/mdf/funds-allocation">
  * What's our total MDF budget, approved spend, and available balance across all funds?
  * Which partners still have unspent MDF allocation this quarter?
  * When does the Q3 marketing fund expire?
</PromptList>

<PromptList source="Invoices" href="/features/mdf/invoices">
  * Generate the reimbursement statement for Acme's approved claims.
  * Which MDF invoices are approved but not yet paid?
  * Mark Acme's Q2 project paid and notify them.
</PromptList>

<PromptList source="Projects" href="/features/mdf/projects">
  * Submit an MDF proposal for Acme: \$5k for a co-hosted webinar next quarter.
  * Which MDF proposals are still waiting on approval?
  * What did Acme propose to spend their Q3 allocation on?
</PromptList>

<PromptList source="Proof of Expense" href="/features/mdf/claims">
  * Submit an MDF claim for Acme's webinar: \$3.2k with the invoice attached.
  * Show all MDF claims pending approval this month.
  * How much of Acme's approved budget is left after claims?
</PromptList>

<PromptList source="ROI" href="/features/mdf/roi">
  * What ROI have partners reported against the Q2 fund?
  * Which MDF projects sourced the most pipeline this quarter?
  * Show the return on Acme's field-event project.
</PromptList>

## Affiliate

<PromptList source="Affiliate overview" href="/features/affiliate">
  * Which affiliate partners drove conversions this quarter, and how much did each bring in?
  * Show the deals attributed to our affiliate partners and their current stage.
  * What commission is earned but unpaid across our affiliate partners?
  * Which affiliate partners have had no attributed activity in the last 60 days?
</PromptList>

<PromptList source="Campaigns" href="/features/affiliate/campaigns">
  * Show the affiliate conversions still waiting on review.
  * Which conversions were accepted last month, and which partner submitted each one?
  * What commission plan applies to our affiliate partners, and at what rate?
</PromptList>

<PromptList source="Conversion Tracking" href="/features/affiliate/conversion-tracking">
  * List the affiliate conversions recorded this month.
  * Which partner submitted each of last week's conversions?
  * Have any conversions come in from Acme since we installed tracking?
</PromptList>

<PromptList source="Fraud Protection" href="/features/affiliate/fraud-protection">
  * Show the affiliate conversions that were declined, and who submitted them.
  * Are any pending conversions flagged as a potential channel conflict?
  * Decline this conversion and leave the partner a comment explaining why.
</PromptList>

## Reporting & Dashboards

<PromptList source="Reporting & Dashboards overview" href="/features/reporting">
  * Which Gold partners are at risk?
  * How is Acme tracking against its goals this quarter?
  * Prepare a QBR for Acme with pipeline, goals, activity, and commissions.
</PromptList>

<PromptList source="Dashboards" href="/features/reporting/dashboards">
  * Which partners drove the most sourced pipeline this quarter?
  * Show partner-attached revenue broken down by tier.
  * How many deals did partners register this month?
</PromptList>

<PromptList source="Goals & KPIs" href="/features/reporting/goals">
  * How is Acme tracking against its KPIs this quarter?
  * Which partners are behind on their goals?
  * Show goal progress for my top five partners.
</PromptList>

<PromptList source="Partner Analytics" href="/features/reporting/partner-analytics">
  * Which partners have the highest engagement this month?
  * Show partners whose activity has dropped off recently.
  * What's Acme's recent portal and deal activity?
</PromptList>

<PromptList source="Power BI" href="/features/reporting/power-bi">
  * Which Gold partners are at risk?
  * Show partner-attached pipeline broken down by tier this quarter.
  * Which partners' activity has dropped off this month?
</PromptList>

<PromptList source="Report Builder" href="/features/reporting/report-builder">
  * List partners active in the last 30 days with open deals.
  * Build a view of registrations by partner and status.
  * Total the ARR on our partner accounts, broken down by region and tier.
</PromptList>

## AI Agents

<PromptList source="AI Agents overview" href="/features/ai">
  * Answer a partner's question about our MDF claim process.
  * Prep a QBR for Acme from live CRM data.
  * Review this MDF claim against our proof-of-spend rules.
</PromptList>

<PromptList source="AI Announcements" href="/features/ai/announcements">
  * Draft a partner announcement from this release-notes URL.
  * Write a webinar invite for next month's partner enablement session.
  * What should I announce to partners based on our recent updates?
</PromptList>

<PromptList source="AI Approvals" href="/features/ai/approvals">
  * Review this MDF claim against our proof-of-spend rules.
  * Is this deal registration complete enough to approve?
  * Return the submissions that are missing required documents.
</PromptList>

<PromptList source="AI Copilot" href="/features/ai/copilot">
  * Prep a QBR for Acme - pipeline, commissions, and open tasks.
  * Which partners have had no activity in the last 30 days?
  * Who's closest to hitting the next tier, and what do they still need?
</PromptList>

<PromptList source="AI Training" href="/features/ai/training">
  * Create a partner onboarding course from our product one-pager.
  * Add a short quiz to the end of module 2.
  * Draft a certificate for the sales-fundamentals course.
</PromptList>

<PromptList source="Channel Conflict Resolution" href="/features/ai/channel-conflict">
  * Does this new registration conflict with any direct or partner pipeline?
  * Flag registrations that overlap existing opportunities.
  * Is Globex already being worked by our direct team?
</PromptList>

<PromptList source="Deal Coaching" href="/features/ai/deal-coaching">
  * Coach me on the Acme deal: what are the risks and next steps?
  * Which of my deals need attention this week?
  * What should I do to move the Globex deal forward?
</PromptList>

<PromptList source="Knowledge Base" href="/features/ai/knowledge-base">
  * What does our partner agreement say about renewals?
  * Summarize the latest product release notes for partners.
  * Which onboarding docs cover certification?
</PromptList>

<PromptList source="Partner Support Agent" href="/features/ai/partner-support">
  * What's our deal registration process?
  * How do partners request MDF?
  * Where do I find the latest sales deck?
</PromptList>

## Integrations

<PromptList source="Integrations overview" href="/features/integrations">
  * Show Acme's open deals synced from HubSpot.
  * Update a deal property and sync it back to Salesforce.
  * Register a deal for Acme from Slack or your CRM.
</PromptList>

<PromptList source="CRM" href="/features/integrations/crm">
  * Show Acme's open deals from HubSpot with their stage and amount.
  * Update the close date on the Globex deal and sync it to Salesforce.
  * Which CRM deals are linked to partners but have no recent activity?
</PromptList>

<PromptList source="Slack & Teams" href="/features/integrations/chat">
  * Register a deal for Acme from Slack.
  * Ask from Teams which partners haven't registered a deal this quarter.
  * Share a lead with the vendor straight from Slack.
</PromptList>

## Localization

<PromptList source="Localization overview" href="/features/localization">
  * Set Acme's language to French and currency to EUR.
  * Answer this partner's question in Spanish.
</PromptList>

<PromptList source="Multi-currency" href="/features/localization/multi-currency">
  * Set Acme's currency to EUR.
  * Show Acme's commissions in their local currency.
</PromptList>

<PromptList source="Multi-lingual" href="/features/localization/multilingual">
  * Answer this partner's question in Spanish.
  * Set Acme's portal language to German.
</PromptList>

## Access & Security

<PromptList source="Access & Security overview" href="/features/access">
  * Reassign Acme's partner manager to another team member.
  * Who owns each of our partners?
</PromptList>

<PromptList source="Provisioning" href="/features/access/provisioning">
  * Who owns each of our partners?
  * Reassign Acme's partner manager to another team member.
</PromptList>

<PromptList source="Team Management" href="/features/access/team-management">
  * Reassign Acme's partner manager to another team member.
</PromptList>

## Developer Platform

<PromptList source="Developer Platform overview" href="/features/developer">
  * Connect an assistant over MCP and ask which partners are at risk.
  * Register a deal or prepare a QBR from Claude.
  * Give partners their own scoped AI assistant.
</PromptList>

<PromptList source="MCP" href="/features/developer/mcp">
  * Which Gold partners haven't registered a deal this quarter?
  * Show partners in EMEA with no activity in the last 60 days.
  * Prepare a QBR for Acme with pipeline, goals, and commission status.
  * What commission is pending for Acme, and when is the next payout?
  * Register a deal for Acme: contact [john@acme.com](mailto:john@acme.com), \$40k, closing next quarter.
  * Approve the deal registration Globex submitted yesterday.
  * Create a task for Acme to complete their security review, due Friday.
  * Move Acme up to the Gold tier and sync it to our CRM.
</PromptList>

## Beyond single prompts

A prompt is one question or one action. When a motion repeats every week, turn it into a skill: a named play with its own trigger phrases and tool calls that your assistant runs end to end. See the [skill library](/headless/skills) for vendor and partner skills, and the [agentic use cases](/headless/agentic-use-cases/partner-acquisition) for how these motions play out across the partner lifecycle.
