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

# The Three Roles of AI

> Use AI as your Assistant, Thinker, and Creator. Know when to switch between them.

export const Quiz = ({question, options, correctIndex, explanation}) => {
  const [selected, setSelected] = useState(null);
  const [showResult, setShowResult] = useState(false);
  const handleSelect = index => {
    if (showResult) return;
    setSelected(index);
    setShowResult(true);
  };
  const isCorrect = selected === correctIndex;
  return <div className="my-8 p-6 rounded-2xl border border-zinc-200 dark:border-zinc-700 bg-gradient-to-br from-zinc-50 to-white dark:from-zinc-900 dark:to-zinc-800 shadow-sm">
      <div className="flex items-center gap-3 mb-4">
        <div className="flex items-center justify-center w-10 h-10 rounded-xl bg-blue-100 dark:bg-blue-900/40">
          <span className="text-xl">📝</span>
        </div>
        <div className="flex flex-col">
          <p className="font-semibold text-zinc-800 dark:text-zinc-100 m-0">Knowledge Check</p>
          <p className="text-xs text-zinc-500 dark:text-zinc-400 mt-0.5 m-0">Select the best answer</p>
      </div>
      </div>
      
      <p className="text-zinc-700 dark:text-zinc-200 font-medium mb-5 text-lg leading-relaxed">{question}</p>
      
      <div className="space-y-3">
        {options.map((option, index) => {
    const isSelected = selected === index;
    const isCorrectOption = index === correctIndex;
    let optionStyles = "border-zinc-200 dark:border-zinc-600 hover:border-blue-400 hover:bg-blue-50 dark:hover:bg-blue-900/20";
    if (showResult) {
      if (isCorrectOption) {
        optionStyles = "border-green-500 bg-green-50 dark:bg-green-900/30";
      } else if (isSelected && !isCorrectOption) {
        optionStyles = "border-red-500 bg-red-50 dark:bg-red-900/30";
      } else {
        optionStyles = "border-zinc-200 dark:border-zinc-700 opacity-60";
      }
    }
    return <button key={index} onClick={() => handleSelect(index)} disabled={showResult} className={`w-full text-left p-4 rounded-xl border-2 transition-all duration-200 ${optionStyles} ${!showResult && 'cursor-pointer'} ${showResult && 'cursor-default'}`}>
              <div className="flex items-start gap-3">
                <div className={`flex-shrink-0 w-6 h-6 rounded-full border-2 flex items-center justify-center text-xs font-bold ${showResult && isCorrectOption ? 'border-green-500 bg-green-500 text-white' : showResult && isSelected && !isCorrectOption ? 'border-red-500 bg-red-500 text-white' : 'border-zinc-300 dark:border-zinc-500 text-zinc-500 dark:text-zinc-400'}`}>
                  {showResult && isCorrectOption ? '✓' : showResult && isSelected ? '✗' : String.fromCharCode(65 + index)}
                </div>
                <span className="text-sm text-zinc-700 dark:text-zinc-200 leading-relaxed">{option}</span>
              </div>
            </button>;
  })}
      </div>
      
      {showResult && <div className={`mt-5 p-4 rounded-xl ${isCorrect ? 'bg-green-100 dark:bg-green-900/40 border border-green-200 dark:border-green-800' : 'bg-amber-100 dark:bg-amber-900/40 border border-amber-200 dark:border-amber-800'}`}>
          <div className="flex items-start gap-3">
            <span className="text-xl">{isCorrect ? '🎉' : '💡'}</span>
            <div className="flex flex-col">
              <p className={`text-sm font-semibold m-0 mb-1 ${isCorrect ? 'text-green-800 dark:text-green-200' : 'text-amber-800 dark:text-amber-200'}`}>
                {isCorrect ? 'Correct!' : 'Not quite right'}
              </p>
              <p className="text-sm text-zinc-600 dark:text-zinc-300 m-0 leading-relaxed">{explanation}</p>
          </div>
          </div>
        </div>}
    </div>;
};

export const FlipCard = ({emoji, image, title, oneLiner, bestFor = [], starterPrompt}) => {
  const [flipped, setFlipped] = useState(false);
  return <div className="relative min-h-[280px] rounded-2xl border border-zinc-200 dark:border-zinc-800 bg-white dark:bg-zinc-900 shadow-sm overflow-hidden">
      <button type="button" onClick={() => setFlipped(!flipped)} className="absolute top-3 right-3 z-10 rounded-full border border-zinc-300 dark:border-zinc-600 bg-white dark:bg-zinc-800 px-3 py-1 text-xs font-medium text-zinc-700 dark:text-zinc-200 hover:bg-zinc-100 dark:hover:bg-zinc-700">
        {flipped ? "← Back" : "Flip →"}
      </button>

      {!flipped && <div className="p-6 pt-12 flex flex-col h-full">
          {image ? <div className="mb-3">
              <img src={image} alt={title} className="w-16 h-16 object-contain" />
            </div> : <div className="text-4xl mb-3">{emoji}</div>}
          <div className="text-xl font-bold text-zinc-900 dark:text-white mb-2">{title}</div>
          <p className="text-zinc-600 dark:text-zinc-300 text-sm">{oneLiner}</p>
          <p className="mt-auto pt-4 text-xs text-zinc-400 dark:text-zinc-500">Click "Flip" to see the starter prompt</p>
        </div>}

      {flipped && <div className="p-6 pt-12 flex flex-col h-full">
          <div className="text-sm font-semibold text-zinc-900 dark:text-white mb-2">Best for:</div>
          <ul className="text-zinc-600 dark:text-zinc-300 text-sm space-y-1 mb-4">
            {bestFor.map((item, i) => <li key={i}>{item}</li>)}
          </ul>
          {starterPrompt && <div>
              <div className="text-sm font-semibold text-zinc-900 dark:text-white mb-2">Starter prompt:</div>
              <div className="rounded-lg bg-zinc-100 dark:bg-zinc-800 p-3 text-sm text-zinc-700 dark:text-zinc-200 whitespace-pre-wrap">{starterPrompt}</div>
            </div>}
          <p className="mt-auto pt-4 text-xs text-zinc-400 dark:text-zinc-500">Click "Back" to return</p>
        </div>}
    </div>;
};

<img src="https://mintcdn.com/pathfindr/I3XbhzOlK6BeuXVO/images/LCWeek2ThinkerAssistantCreator.webp?fit=max&auto=format&n=I3XbhzOlK6BeuXVO&q=85&s=93edba7260ef1ba121550bf15a9f74dd" alt="leadership cohort three roles of AI Pn" noZoom={true} width="1920" height="1080" data-path="images/LCWeek2ThinkerAssistantCreator.webp" />

## Start here: what is your time worth?

Before you open any AI tool, ask yourself one question: is this a task that needs my judgement, or just my time?

As an executive, your highest-value work, the decisions, relationships, and judgement that only you can provide, is worth several hundred dollars an hour. The administrative tasks in your calendar and inbox are worth a fraction of that. AI gives you the chance to permanently reassign the \$15/hr work so you can spend more time on the \$500/hr work.

<Tip>
  Before you use AI for any task, ask: <b>should I be doing this at all?</b> If yes, AI helps you do it faster. If no, AI may be able to own it entirely. That is where the real value sits.
</Tip>

***

## The three roles

Most leaders use AI for one thing and get inconsistent results. The problem is not the tool. It is not knowing which mode to put it in.

<div className="grid gap-4 grid-cols-1 md:grid-cols-3">
  <FlipCard image="https://mintcdn.com/pathfindr/I3XbhzOlK6BeuXVO/images/assistantIcon.webp?fit=max&auto=format&n=I3XbhzOlK6BeuXVO&q=85&s=84490634e74ab5287061758af9c1eb54" title="Assistant" oneLiner="You have got a task. It gets it done." bestFor={["Drafting emails and documents", "Summarising meetings and calls", "Explaining complex material simply"]} starterPrompt="You are my Assistant. Draft a response to the email below. Keep it concise, professional, and direct. Recipient is [name/role]. Tone: [formal/conversational]." width="426" height="426" data-path="images/assistantIcon.webp" />

  <FlipCard image="https://mintcdn.com/pathfindr/vxED2dxssEHZg3yn/images/thinkerIcon.webp?fit=max&auto=format&n=vxED2dxssEHZg3yn&q=85&s=5fbd5406d58970da1c1e7acaba9b26be" title="Thinker" oneLiner="You have got a decision to make. It helps you think it through." bestFor={["Competitive research and analysis", "Scenario planning and risk review", "Stress-testing assumptions"]} starterPrompt="You are my Thinker. Analyse the information below and give me three options with a pros and cons table. Then recommend one and explain why." width="426" height="426" data-path="images/thinkerIcon.webp" />

  <FlipCard image="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/creatorIcon.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=9f9ed2ceb17f361a9dbfbe1a494ca83b" title="Creator" oneLiner="You have got an idea. It builds it into something you can share." bestFor={["Interactive web pages and executive dashboards", "Clickable proposals and visual reports", "Graphics, layouts, and branded presentations"]} starterPrompt="You are my Creator. Using the data and context below, plan a scrollable executive summary web page with colour-coded visuals and clear sections. Then code it. Audience: [who]. Brand colours: [your colours]." width="426" height="426" data-path="images/creatorIcon.webp" />
</div>

<Tip>
  Role + format + word limit = you are 80% of the way to a useful output.
</Tip>

***

## The Assistant role: reclaim your day

The Assistant role is the fastest win available to most executives. It covers work that is important enough to do well but does not need your full attention: drafts, summaries, rewrites, and explanations.

The key is treating AI like a capable new team member in their first week. They are fast and willing, but they need context. Tell them who you are, what you are working on, and what good looks like. Output quality rises sharply when you do.

<CardGroup cols={2}>
  <Card title="Where it saves the most time" icon="clock">
    Email drafts, meeting summaries, document first drafts, and plain-language explanations of dense reports or contracts. Most executives find this alone saves 30 to 45 minutes a day.
  </Card>

  <Card title="Where to stay alert" icon="eye">
    Always review Assistant outputs before sending, especially anything going externally. AI can miss context you have not provided, or get details wrong with confidence. Your review is the quality check.
  </Card>
</CardGroup>

***

## The Thinker role: analyse at scale

The Thinker role is where AI creates genuine advantage for leaders. It is not about speed. It is about depth and breadth of analysis that no individual could replicate alone.

Think about the research that currently sits undone because no one has time to do it properly: competitive landscaping, vendor contract reviews, candidate screening, annual report analysis. The Thinker role handles all of it.

<CardGroup cols={2}>
  <Card title="What Thinker does well" icon="brain">
    Synthesises large volumes of text into clear conclusions. Identifies patterns across multiple documents. Runs structured analysis against a defined framework. Holds an entire document in memory and answers questions against it accurately.
  </Card>

  <Card title="What still needs you" icon="user-tie">
    The right question. The relevant context. A check on the conclusions before they drive decisions. AI does not know what it does not know. A confident-sounding answer is not always a correct one.
  </Card>
</CardGroup>

<Tip>
  For competitive analysis and market research, use ChatGPT's Deep Research mode. It searches across sources, synthesises findings, and produces a structured report. Use the <a href="/leadership-cohort/week-2-meet-your-exec-ai-assistant/challenge">Prompt Builder</a> to structure your brief before you run it.
</Tip>

***

## The Creator role: prototype before you commit

The Creator role has moved furthest and fastest in the last 18 months. AI can now generate images, animate a still photo into video, write and run code, and draft entire presentation decks, all from a plain-language instruction.

For executives, the value is not replacing your creative team. It is the ability to prototype an idea before committing resources. Generate a concept, test how it looks, refine the brief. All before a designer or developer touches it.

<CardGroup cols={2}>
  <Card title="What to use it for" icon="paintbrush">
    Concept visuals and mock social tiles. Video from existing images. Presentation structure and first drafts. Data visualisation from a spreadsheet. These are starting points for your team, not finished products.
  </Card>

  <Card title="Before you publish anything" icon="shield-check">
    Review all Creator outputs against your brand guidelines, legal obligations, and factual accuracy. This applies especially to anything customer-facing or externally distributed.
  </Card>
</CardGroup>

***

## How to structure a prompt: the GEMS format

The biggest driver of poor AI output is an under-specified prompt. GEMS is a four-part format for giving AI the right information upfront, the same way you would brief a team member on a task.

<Steps>
  <Step title="Goal: what do you want it to do?">
    Be specific about the task. Name the role you want AI to take on, for example "Act as a senior strategy consultant", and state the exact output you need. Vague goals produce vague outputs.
  </Step>

  <Step title="Environment: what does it need to know?">
    Provide the relevant background. Include what is in scope, what is out of scope, and any constraints. The more relevant context you provide, the more calibrated the response.
  </Step>

  <Step title="Method: what should the response look like?">
    Specify format, tone, length, and structure. Dot points or prose? Table or narrative? Formal or direct? If you do not specify, AI will guess, and it may guess wrong.
  </Step>

  <Step title="Sources: what should it draw from?">
    Tell AI what to reference: a file you have uploaded, a specific source, or its own knowledge. If you are uploading a document, say so explicitly and name what you want done with it.
  </Step>
</Steps>

<Tip>
  You do not need all four elements every time. For simple tasks, Goal and Environment are usually enough. For high-stakes outputs, a board presentation or client proposal, use all four. The more you invest in the prompt, the less editing you do at the end.
</Tip>

<Card title="See the full prompting guide" icon="arrow-up-right-from-square" href="/participant/promptYourWayToSuccess/theCompleteChatgptPromptingGuide">
  Covers all nine approaches including iterative refinement, scenario planning, chain of thought, compare and contrast, and more. Use it as a reference when you are preparing for a specific task.
</Card>

***

## A prompting approach worth knowing now

There are several approaches that work well for executive tasks. Here is the one that gets the fastest results for most leaders in this cohort.

**Ask AI to play a role before you ask your question.**

Assign AI a specific professional persona at the start of your prompt. This shifts the lens through which it responds and typically produces more specific, contextually relevant output than a generic question.

```
Act as a CFO who has led two successful ASX listings. I am preparing for a board 
conversation about capital allocation. What questions should I expect, and how 
should I frame the growth investment case?
```

This approach works well for preparing for high-stakes conversations, stress-testing your own reasoning, and getting a domain-specific perspective quickly.

<Card title="See more prompt templates" icon="arrow-up-right-from-square" href="/leadership-cohort/week-2-meet-your-exec-ai-assistant/prompt-templates-for-ai-roles">
  Covers three scenarios for each of the thinker, assistant, creator roles we can assign AI. Use it as a reference when you are preparing for a specific task.
</Card>

***

## Giving AI context that carries across sessions

A one-off prompt is the minimum viable use of AI. The real unlock is giving AI context that persists, so it already knows who you are, how you work, and what matters to you.

There are three ways to do this:

<CardGroup cols={3}>
  <Card title="Custom instructions" icon="sliders">
    A standing brief you write once. AI reads it before every conversation. Include your role, your organisation, your communication preferences, and any standing rules.
  </Card>

  <Card title="Memory" icon="database">
    AI tools like ChatGPT can remember facts and preferences across conversations. Over time, the tool builds up a picture of how you work and applies it without being asked.
  </Card>

  <Card title="Connectors" icon="plug">
    Connect AI to your existing tools: SharePoint, Google Drive, Outlook, Teams, and more. This allows AI to access current, organisation-specific information rather than relying only on its training data.
  </Card>
</CardGroup>

<Tip>
  Think of it like onboarding a new team member. You would not expect full performance on day one without briefing them on the context, access, and working style they need. AI is the same.
</Tip>

***

## Putting the roles together in a workflow

The biggest shift for most executives is moving from using AI as a one-off question tool to embedding it in actual workflows. The difference in value is significant.

Here is how the three roles work together on a common executive task: preparing a briefing document from a complex data source.

<Steps>
  <Step title="Thinker: analyse the source material">
    Upload your data, report, or transcript. Ask AI to extract the key insights, identify patterns, and flag anything that warrants attention.
  </Step>

  <Step title="Assistant: draft the document">
    Ask AI to produce a first draft of the briefing using the analysis from step one. Specify the format, audience, and tone.
  </Step>

  <Step title="Assistant: review and refine">
    Return the edited draft to AI and ask it to check for consistency, flag anything missing, and suggest improvements.
  </Step>

  <Step title="You: add your judgement and final sign-off">
    Download the draft and edit it. Add the strategic context, the nuance, and the insights that only you hold. This is the step AI cannot replace.
  </Step>
</Steps>

<Card title="Map your own workflow" icon="arrow-up-right-from-square" href="/leadership-cohort/week-2-meet-your-exec-ai-assistant/challenge">
  Use the Workflow Discovery Tool to identify which role handles which step in one of your own recurring tasks.
</Card>

***

## Quick checkpoint

You are done with this section when you can:

<CardGroup cols={4}>
  <Card title="Name the three roles" icon="circle-check">
    Describe what AI does in each mode and give a real example from your own work
  </Card>

  <Card title="Build a GEMS prompt" icon="circle-check">
    Write a prompt using Goal, Environment, Method, and Source for a task you need to complete this week
  </Card>

  <Card title="Design a workflow" icon="circle-check">
    Map which role handles which step in one of your recurring tasks, and identify where your review sits
  </Card>

  <Card title="Set up context" icon="circle-check">
    Write a custom instruction or add a memory to one of your AI tools so it knows who you are
  </Card>
</CardGroup>

<div className="mt-8" />

<Card title="Ready to apply this?" icon="bolt" href="/leadership-cohort/week-2-meet-your-exec-ai-assistant/challenge">
  Head to the Week 2 Challenge to put the three roles into practice using your own work.
</Card>
