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

# Competencies & Skills

> Competency frameworks, skill profiles, and assessments — understand what's expected and where you stand.

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="Competencies" />

## What are competencies?

**Competencies** are the behavioral and technical capabilities your organization values — things like "Communication", "Leadership", "Technical Problem Solving", or "Customer Focus".

Your admin defines the competency framework. Each competency has level descriptions that describe what "good" looks like at different stages of your career.

***

## How competencies are organized

| Concept                 | What it is                                | Example                                                                                            |
| ----------------------- | ----------------------------------------- | -------------------------------------------------------------------------------------------------- |
| **Competency Category** | A grouping of related competencies        | "Technical Skills", "Soft Skills", "Leadership"                                                    |
| **Competency**          | A specific capability                     | "Communication", "Data Analysis"                                                                   |
| **Levels**              | Descriptions of proficiency at each stage | Level 1: "Communicates clearly in writing" → Level 4: "Influences org-wide communication strategy" |

Each competency has **two sets of level descriptions**:

* **Individual Contributor** — what's expected for IC roles
* **Managerial** — what's expected for people-leadership roles

This means the same competency ("Communication") has different expectations depending on whether you're on an IC or management track.

***

## Skills

**Skills** are more granular than competencies — specific abilities you can develop. Skills are:

* Linked to competencies (e.g. "Public Speaking" skill under "Communication" competency)
* Linked to positions (each career path position lists required skills)
* Tracked with levels (1–5) in your goals

When you add skills to a goal, you set a target level and track your progress over time.

***

## Assessments

Your organization may use competency assessments to evaluate where you stand:

**Self-assessment:**

* You rate yourself on each competency relevant to your role
* Helps identify your own strengths and development areas

**Manager assessment:**

* Your manager evaluates you on the same competencies
* Provides an external perspective on your performance

Assessment results help identify gaps between where you are and where your position (or target position) expects you to be. These gaps feed into your [Personal Development Plan](/development/personal-development-plan).

<InternalNote>
  Competency evaluations stored in `UserCompetencyLevelEvaluation` model. Fields: `userId`, `competencyId`, `level`, `levelType` (IC/managerial), `value` (rating), `evaluationTimestamp`. Feature flags: `CAN_SEE_COMPETENCIES` (default 99 = admin-only), `CAN_SEE_COMPETENCIES_LEVELS` (default 1 = all users), `CAN_SEE_MANAGER_EVALUATION` (default 9), `CAN_SEE_MANAGER_SKILLS_EVALUATION` (default 99). Most orgs need admin to explicitly enable competency features.
</InternalNote>

***

## How it all connects

```
Competency Framework (admin-defined)
└── Competency Categories
    └── Competencies (with IC + Managerial levels)
        └── Skills (with target levels)
            └── Linked to Positions (Career Paths)
                └── Feeds into Goals & PDP
```

* **Career Paths** define which competencies and skills each position requires
* **Goals** let you target specific skills and track levels
* **PDP** shows you what to develop based on your position's requirements
* **Assessments** reveal gaps between current and expected levels
