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

# Cassidy University

> Follow a self-paced learning path of short video lessons to understand Cassidy, build your first AI solutions, and manage your workspace.

Follow the learning path in order or choose the lesson that fits what you want to accomplish.

<Note>Open your [Cassidy workspace](https://app.cassidy.ai) in another tab if you want to follow along.</Note>

export const LearningPathLesson = ({title, description, href, thumbnail}) => <a href={href} className="group flex flex-col gap-4 rounded-xl border border-gray-200 p-3 no-underline transition-colors hover:border-blue-400 sm:flex-row sm:items-center dark:border-gray-800 dark:hover:border-blue-500">
    <span className="relative block w-full shrink-0 overflow-hidden rounded-lg bg-gray-100 sm:w-40 dark:bg-gray-900">
      <img src={thumbnail} alt={`${title} video thumbnail`} className="aspect-video w-full object-cover opacity-100 contrast-105 saturate-110" decoding="async" />
      <span className="absolute bottom-2 right-2">
        <span className="flex size-8 items-center justify-center rounded-full bg-white/75 text-xs text-gray-900 shadow-sm backdrop-blur-sm transition-transform group-hover:scale-110">
          ▶
        </span>
      </span>
    </span>
    <span className="min-w-0 flex-1">
      <span className="block font-medium text-gray-950 group-hover:text-blue-600 dark:text-white dark:group-hover:text-blue-400">
        {title}
      </span>
      <span className="mt-1 block text-sm text-gray-500 dark:text-gray-400">{description}</span>
    </span>
  </a>;

## Foundations

Learn the core parts of Cassidy, then build and manage your first practical AI solutions.

<div className="my-5 grid gap-4">
  <LearningPathLesson title="Welcome to Cassidy" description="Tour the platform and see how its core features work together." href="/university/welcome-to-cassidy" thumbnail="/images/university/welcome-to-cassidy.jpg" />

  <LearningPathLesson title="Find your first use case" description="Choose a focused, useful project for your team." href="/university/find-your-first-use-case" thumbnail="/images/university/find-your-first-use-case.jpg" />

  <LearningPathLesson title="Set up your Knowledge Base" description="Give Cassidy relevant company context." href="/university/set-up-your-knowledge-base" thumbnail="/images/university/set-up-your-knowledge-base.jpg" />

  <LearningPathLesson title="Build your first Agent" description="Create an AI teammate for a specific purpose." href="/university/build-your-first-agent" thumbnail="/images/university/build-your-first-agent.jpg" />

  <LearningPathLesson title="Build your first Workflow" description="Automate a repeatable process with triggers and Actions." href="/university/build-your-first-workflow" thumbnail="/images/university/build-your-first-workflow.jpg" />

  <LearningPathLesson title="Set up the Meeting Recorder" description="Capture conversations and turn them into useful follow-up work." href="/university/set-up-meeting-recorder" thumbnail="/images/university/set-up-meeting-recorder.jpg" />

  <LearningPathLesson title="Manage and govern your workspace" description="Organize access, roles, and workspace practices." href="/university/manage-and-govern-your-workspace" thumbnail="/images/university/manage-and-govern-your-workspace.jpg" />
</div>

## Advanced

Choose the right approach for each problem and improve the consistency of your AI results.

<div className="my-5 grid gap-4">
  <LearningPathLesson title="Choose Agents, Workflows, and Skills" description="Use the right Cassidy feature for each kind of work." href="/university/choose-agents-workflows-and-skills" thumbnail="/images/university/choose-agents-workflows-and-skills.jpg" />

  <LearningPathLesson title="Prompt engineering explained" description="Write clearer instructions for more consistent AI results." href="/university/prompt-engineering-explained" thumbnail="/images/university/prompt-engineering-explained.jpg" />
</div>
