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

# Settings & Customization

> Admin Tab 4 — profiles, skills, providers, notifications, AI settings, text & labels.

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 RoleBadge = ({roles = []}) => {
  const colorMap = {
    Admin: "yellow",
    Manager: "blue",
    Learner: "green",
    "Co-editor": "purple"
  };
  return <>
      {roles.map(role => <span key={role}><Badge color={colorMap[role] || "gray"} size="sm" shape="pill">{role}</Badge>{" "}</span>)}
    </>;
};

<RoleBadge roles={["Admin", "Manager"]} />

## Overview

**Admin → Settings** (`/admin/4`) is the platform configuration hub. Managers have limited access; most sections require Admin role.

<img src="https://mintcdn.com/juno-76d1c392/-AQSIshOsZKDG7IK/images/admin/tab4-settings.png?fit=max&auto=format&n=-AQSIshOsZKDG7IK&q=85&s=15aea3ada2438a9200c6b363b6f587ad" alt="Settings — Skills Management" width="1280" height="800" data-path="images/admin/tab4-settings.png" />

***

## Sub-tabs

### Profiles

Define job profiles for your organization:

* Create role/position profiles
* Link required competencies to profiles
* Used for career path mapping and PDP generation

### Skills management

Define your organization's skills taxonomy:

* Create skill categories and individual skills
* Define skill levels (e.g., Beginner → Expert)
* Link skills to positions and competencies

### Providers

Manage external content provider integrations:

* Connect providers (Udemy, Coursera, LinkedIn, Pluralsight, etc.)
* Configure API credentials
* Manage custom websites (if enabled)

### Company levels

Define organizational levels for career mapping:

* Set level hierarchy (IC levels, management levels)
* Used in career paths and competency frameworks

<Note>
  Requires `CAN_SEE_NEW_SKILL_LEVELS` feature flag.
</Note>

### Competencies

Manage competency frameworks:

* Create competency categories and individual competencies
* Define assessment criteria
* Link to feedback cycles and career paths

<Note>
  Requires `CAN_SEE_COMPETENCIES` feature flag.
</Note>

### Notifications

Configure system notification settings:

* Email templates and delivery settings
* Notification channel preferences (email, Slack, Teams, SMS)
* Due date reminder configuration

<Note>
  Requires `CAN_SEE_NOTIFICATIONS_TAB_ADMIN` feature flag.
</Note>

### Events settings

Configure event-related platform settings:

* Default event settings
* Calendar integration options
* Session registration policies

### AI settings

<RoleBadge roles={["Admin"]} />

Configure the Juno assistant and AI features:

* External app integrations (Google Calendar, Drive, JIRA)
* AI model settings
* Supervisor agent configuration

<Note>
  Requires Admin role (level 5+) and AI features to be enabled.
</Note>

See also: [AI Settings](/admin/ai-settings) for detailed configuration.

### Text & labels

Customize the text users see throughout Juno:

* **Sidebar navigation** — rename menu items
* **Tab labels** — customize tab names
* **Academy labels** — rename "Company Academy", "Catalog", etc.
* **Career Growth text** — customize career path terminology
* **Goal creation text** — customize AI prompts

Supports multiple languages. Includes AI-powered translation for quick multi-language setup. Reset any customization to defaults at any time.

<Note>
  Requires `useCanCustomizePlatformText` feature flag.
</Note>

<RelatedPages
  pages={[
{ href: "/admin/admin-overview", title: "Admin Overview" },
{ href: "/admin/ai-settings", title: "AI Settings (detailed)" },
{ href: "/admin/roles-and-security", title: "Security" },
{ href: "/development/competencies-and-skills", title: "Competencies (learner view)" },
]}
/>
