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

# Suggestion Chips

> Quick-start chips on the Juno home page that ask the assistant common questions about your work, your team, and your content.

export const RelatedPages = ({pages = []}) => {
  if (pages.length === 0) return null;
  return <>
      <br />
      <strong>Related articles</strong>
      <CardGroup cols={2}>
        {pages.map(page => <Card title={page.title} href={page.href} key={page.href} />)}
      </CardGroup>
    </>;
};

export const VideoWalkthrough = ({src, alt, caption}) => {
  return <Frame caption={caption}>
      <img src={src} alt={alt || caption || "Walkthrough"} />
    </Frame>;
};

export const InternalNote = ({children}) => {
  const [isInternal, setIsInternal] = useState(false);
  useEffect(() => {
    const user = window.__mintlify_user__;
    if (user?.groups?.includes("internal")) setIsInternal(true);
  }, []);
  if (!isInternal) return null;
  return <div className="internal-note">
      <strong className="internal-note-title">🔒 Internal Note</strong>
      <div>{children}</div>
    </div>;
};

export const FeatureAvailability = ({module, feature}) => {
  const label = feature || module;
  return <Info title="Feature availability">
      {label ? <>This feature requires the <strong>{label}</strong> module. </> : <>This feature may not be enabled for your organization. </>}
      If you don't see it in Juno, contact your administrator.
    </Info>;
};

<FeatureAvailability feature="AI Features" />

## What are suggestion chips?

When you open the home page, Juno surfaces **suggestion chips** above the chat input. Each chip is a ready-to-send question for the [Juno assistant](/ai-features/ai-assistant). Select one to get an instant answer instead of typing the prompt yourself.

The chips you see depend on your role (learner, manager, admin) and the modules enabled for your tenant.

***

## Categories

Suggestion chips are grouped into four categories. Use the category pills below the chat to filter:

| Category            | What it's for                                                  |
| ------------------- | -------------------------------------------------------------- |
| **Stay on track**   | Day-to-day tasks: what's due, who's waiting, what you've spent |
| **Insight**         | Team and org-wide trends — spending, completion, engagement    |
| **Build & Improve** | Creating and improving content you own                         |
| **Explore**         | Discovery: browse catalogs, set goals, plan development        |

***

## Stay on track

Personal, near-term questions about your own work and the people you manage.

| Chip                                         | Who sees it | What it asks                                                 |
| -------------------------------------------- | ----------- | ------------------------------------------------------------ |
| What assignments are due soon?               | Learners    | Your open learning items due in the next 30 days             |
| Courses I haven't finished yet               | Learners    | Learning items you've started but not completed              |
| What are my next events?                     | Learners    | Upcoming events in the next 30 days you've RSVP'd to         |
| What are my next action items?               | Learners    | Incomplete action items from your committed goals            |
| How much have I spent on training this year? | Learners    | Your training spending year-to-date, broken down by provider |
| Show my pending vouchers                     | Learners    | Approved purchase requests awaiting purchase or voucher use  |
| Assignments I manage due soon                | Managers    | Team assignments due in the next 14 days, grouped by unit    |
| Processes with deadlines this week           | Managers    | Team learning items due in the next 7 days                   |
| Who hasn't RSVP'd to my events?              | Managers    | Invitees to your upcoming events who haven't responded       |
| Pending purchase requests                    | Managers    | Purchase requests across the org still awaiting approval     |

***

## Insight

Aggregate views for managers and admins — completion rates, spending breakdowns, and engagement signals.

| Chip                                   | Who sees it | What it asks                                                   |
| -------------------------------------- | ----------- | -------------------------------------------------------------- |
| Who hasn't finished content I created? | Managers    | Users behind on units you authored, grouped by unit            |
| Members of my team behind on training  | Managers    | Direct reports with overdue learning, sorted by last activity  |
| Content with no recent engagement      | Managers    | Units you created with no learner activity in the past 90 days |
| Training spending by department        | Admins      | Total training spend this year, grouped by department          |
| Which quizzes have low passing rates?  | Admins      | Quizzes with pass rates below 70%                              |

<Note>
  "Who hasn't finished content I created?" focuses on **content you authored**.
  "Members of my team behind on training" focuses on **the people who report to you** — regardless of who created the assignment. Use the one that matches the question you're trying to answer.
</Note>

***

## Build & Improve

Authoring shortcuts and content-performance prompts for creators.

| Chip                                    | Who sees it         | What it asks                                                    |
| --------------------------------------- | ------------------- | --------------------------------------------------------------- |
| Create a new course                     | Learners (creators) | Opens the course-creation flow                                  |
| My most-completed content this quarter  | Learners (creators) | Content you created ranked by completions in the last 90 days   |
| What content has high dropout rates?    | Managers            | Units with completion rates below 70% and at least 10 assignees |
| Quizzes I created with low pass rates   | Admins              | Your quizzes with pass rates below 70%                          |
| Create a role-specific development plan | Learners            | Generates a development plan for your job title                 |
| Develop my soft skills                  | Learners            | Creates a soft-skills goal for your role and department         |

***

## Explore

Quick links into discovery surfaces — the catalog, your goals, and your calendar. Selecting an Explore chip navigates you to the relevant page instead of opening a chat response.

***

## How chips work

<Steps>
  <Step title="Pick a category">
    Select **Stay on track**, **Insight**, **Build & Improve**, or **Explore** to filter the chips below the chat input.
  </Step>

  <Step title="Select a chip">
    Juno sends the chip's prompt to the assistant on your behalf.
  </Step>

  <Step title="Read the response">
    For data questions, the assistant returns an [inline learning-activities table](/ai-features/ai-assistant#inline-learning-activity-tables). For navigation chips, Juno takes you straight to the destination.
  </Step>

  <Step title="Ask a follow-up">
    Refine the result by typing a follow-up — for example, "filter to the Sales team" or "show only overdue."
  </Step>
</Steps>

***

## I don't see suggestion chips

* **AI features not enabled** — your admin needs to turn on AI features for your organization.
* **Data agent not enabled** — most Stay on track, Insight, and Build & Improve chips require the data agent (`CAN_SEE_DATA_AGENT`).
* **Role-based visibility** — manager and admin chips only appear for users with those roles.
* **Module not active** — chips about budgets, events, or quizzes only appear when the related module is enabled.

<InternalNote>
  Chips are defined in `apps/front/src/features/SupervisorAgent/constants/suggestions.tsx` (`SUPERVISOR_SUGGESTIONS_V2`). Data-backed chips read from `gld_learning_activities` via the Learning Analytics skill; per-chip column specs live in `packages/constants/src/chipColumnSpecs.ts`. Chip IDs in `packages/constants/src/suggestionIds.ts`. Gated by `CAN_SEE_SUPERVISOR_AGENT` and (for data chips) `CAN_SEE_DATA_AGENT`.
</InternalNote>

<RelatedPages
  pages={[
{ href: "/ai-features/ai-assistant", title: "Juno Assistant" },
{ href: "/getting-started/navigating-juno", title: "Navigating Juno" },
]}
/>
