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

# Expert & Shared Goals

> View and manage goals where you're assigned as an expert or learning buddy.

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 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 module="Development" />

## Expert view

When someone selects you as an **expert** (mentor) on their goal, you can view and support their progress from the **Expert** tab in My Development.

***

## What you can do as an expert

| Action                | Description                                            |
| --------------------- | ------------------------------------------------------ |
| **View goal details** | See the goal's action items, skills, and progress      |
| **Track progress**    | Monitor the learner's advancement                      |
| **Leave notes**       | Provide guidance and feedback                          |
| **Accept or decline** | When invited, choose whether to take on the mentorship |

***

## Learning buddies

If you're assigned as a **learning buddy**, you can also see and collaborate on the goal. Learning buddies are peers who support each other's development — they have view access to the shared goal.

<RelatedPages
  pages={[
{ href: "/development/goals", title: "Goals" },
{ href: "/development/my-development", title: "My Development" },
]}
/>
