You already coach people through change.
Now let AI help you do it at scale.

You're about to learn how to build real software — tools that save you hours every week, impress your clients, and open doors to an entirely new career path. No coding experience required.

Running your own fitness business? Managing client programs? Building workout plans from scratch? Those are real skills — project management, client communication, creative problem-solving. You're more ready for tech than you think.

Get Started

Getting Set Up

Everything you need to start building. Takes about 10 minutes. This looks intimidating, but you only do it once — after this, you just type claude and start building.

1

Sign Up for Claude Pro

Use this referral link to sign up and get a free trial of Claude Pro. Pro includes Claude Code and gives you access to Opus, the most capable model. This is all you need to pay for — no separate API keys or billing.

2

Install Node.js

Download the LTS version (the big green button) from nodejs.org. Run the installer and accept all defaults. This gives you the tools needed to install Claude Code.

3

Install Git

Git is a tool that lets you download code and track changes. Claude Code needs it to work properly.

Open Terminal (search for it in Spotlight, or find it in Applications > Utilities) and type:

xcode-select --install

Click "Install" when prompted. This installs Git along with other tools Claude Code needs.

Download from git-scm.com and run the installer with all defaults. Git also includes Git Bash, which gives you a proper terminal.

4

Install uv (Python Package Manager)

uv is a fast Python package manager you'll need for Level 2+ projects. It replaces pip and conda — it's faster and simpler.

curl -LsSf https://astral.sh/uv/install.sh | sh
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
5

Install Claude Code

Open your terminal and run:

npm install -g @anthropic-ai/claude-code

If you get a permission error, try: sudo npm install -g @anthropic-ai/claude-code and enter your Mac password.

npm install -g @anthropic-ai/claude-code

If you get a permission error, right-click PowerShell and choose "Run as administrator," then try again.

6

Log In and Verify

Run claude in your terminal. It will open your browser to log in with your Claude Pro account. Once logged in, you're good to go.

claude
7

Set Opus as Your Default Model

Always use Opus. It's the most capable model and gets things right the first time. Sonnet is cheaper but tends to go in circles on anything complex. Set Opus as your default:

claude config set model claude-opus-4-6

Or type /model inside Claude Code and select Opus.

Full documentation: Claude Code Docs

Troubleshooting

"not recognized" when I run npm or claude

This usually means Node.js didn't get added to your PATH. Close your terminal completely, reopen it, and try again. If it still doesn't work, uninstall Node.js, restart your computer, then reinstall it.

Permission denied during npm install

Mac: Try adding sudo before the command: sudo npm install -g @anthropic-ai/claude-code and enter your password.

PC: Right-click PowerShell in the Start menu and choose "Run as administrator." Then run the install command again.

Browser login isn't working / "Authentication error"

Make sure you signed up for Claude Pro at claude.ai (not just a free account). If the browser doesn't open automatically, copy the URL from the terminal and paste it into your browser. If you're still stuck, try running claude logout then claude again to restart the login flow.

Claude Code is taking a long time

This is normal. Claude Code thinks carefully about your request, reads files, writes code, and tests it — all before responding. Complex tasks can take a few minutes. Be patient and let it work. If it seems truly stuck (5+ minutes with no progress), you can press Ctrl+C to cancel and try rephrasing your request.

uv command not found

Close your terminal and reopen it after installing uv. If it still doesn't work, try the manual install from docs.astral.sh/uv.

I don't know how to open Terminal (Mac)

Press Cmd + Space to open Spotlight, type "Terminal", and hit Enter. Or go to Applications > Utilities > Terminal. It's a text-based window where you type commands — think of it like texting your computer.

Still stuck?

Text or call: (775) 393-9865

Or check the Claude Code docs and Anthropic Discord community.

Your First Project

Learn to work with Claude Code using your actual workout spreadsheets. No coding — just conversation.

Why Claude Code? (Not Just Another Chatbot)

You may have used AI chatbots like Gemini or ChatGPT before. Claude Code is different — here's why:

  • It lives on your computer. Claude Code runs in your terminal and can see, read, and edit your actual files. Gemini and ChatGPT live in a browser tab — they can't touch anything on your machine.
  • It does the work, not just talks about it. Ask Claude Code to add a column to your spreadsheet and it actually does it — saves the file, done. With a chatbot, you'd get instructions to do it yourself.
  • It remembers your project. Claude Code reads all the files in your folder, so it knows what you're working on. No need to copy-paste data into a chat window.
  • It's a building tool, not just an answer tool. You can use it to create files, organize data, write documents, and eventually build real software — all by having a conversation.

Think of it this way: Gemini is like texting a smart friend for advice. Claude Code is like having that smart friend sitting next to you at your computer, doing the work with you.

Terminal Basics (Don't Panic)

The terminal is like texting your computer. You type a command, press Enter, and it does something. That's it. Here's what you need to know:

How to open the terminal:

  • Mac: Press Cmd + Space, type "Terminal", press Enter
  • PC: Press the Windows key, type "PowerShell", press Enter

Three commands you'll use constantly:

cdGo to a folder. "cd" means "change directory." Think of it like walking into a room.

Mac: cd ~/Desktop/my-project  •  PC: cd %USERPROFILE%\Desktop\my-project

Mac: ls  •  PC: dirSee what's in the folder. Like opening a gym bag and looking inside.

claudeStart Claude Code. This is the only "app" you need to run. Same on Mac and PC.

If you see something confusing in the terminal, don't worry — just type your next command. Nothing you type here can break your computer.

Get Started in 5 Minutes

1

Create a project folder

Create a new folder on your Desktop called workout-data. You can do this the normal way (right-click → New Folder) or in the terminal:

mkdir ~/Desktop/workout-data
mkdir %USERPROFILE%\Desktop\workout-data
2

Drop in a spreadsheet

Export a workout spreadsheet from Google Sheets:

  1. Open your Google Sheet
  2. Click File → Download → Microsoft Excel (.xlsx)
  3. Save it (or move it) into your workout-data folder

Use .xlsx, not .csv — .xlsx keeps your column headings and formatting intact.

Don't have a spreadsheet handy? No problem — you can skip this step and Claude Code will help you create a sample one.

3

Open the folder in terminal

cd ~/Desktop/workout-data
cd %USERPROFILE%\Desktop\workout-data
4

Start Claude Code

claude

That's it. You're in. Now just start talking to it.

5

Switch to the Best Model (One-Time Setup)

Claude Code defaults to a fast model, but the best results come from Opus — the smartest version of Claude. Type this inside Claude Code:

/model opus

You only need to do this once. Claude Code will remember your choice for future sessions. Opus is slower but gives much better answers — like choosing between a quick summary and a thorough analysis.

Your First Conversation

Claude Code is like a really smart assistant that can read and edit your files. Here are things to try — just type them in and press Enter:

Hi! Can you tell me what files are in this folder?

Start simple. See what it says.

Can you read the workout.xlsx file and tell me what's in it?

It'll describe your data — columns, rows, client names, exercises.

Can you add a column called "Muscle Group" to the spreadsheet?

Now you're making changes. It'll save the updated file for you.

Can you sort the exercises by muscle group and save it as a new file?

Each request builds on the last. You're having a conversation, not writing code.

Follow-Up Questions to Try

The real skill is the back-and-forth. When Claude Code does something, you can always:

  • "That's not quite what I meant — can you [explain what you actually wanted]?"
  • "Can you undo that last change?"
  • "What else could you do with this data?"
  • "Can you explain what you just did?"
  • "Can you calculate the average weight for each exercise?"
  • "Can you write a progress summary for this client that I could text them?"

You don't need to get it right on the first try. Tell Claude Code what you want, see what it does, then adjust. That's exactly how professionals use AI tools.

Saving Context for Next Time

Want Claude Code to remember your preferences? Create a file called CONTEXT.md in your project folder. Claude Code reads it automatically every time you start a session.

You can ask Claude Code to create it for you:

Can you create a CONTEXT.md file? Here's what to put in it: I'm a personal trainer. I track workouts in Google Sheets. My columns are usually Date, Exercise, Sets, Reps, Weight (lbs), and Notes. I have three clients: Sarah (Mon/Wed/Fri strength), Jake (Tue/Thu cardio), and Lisa (Mon/Wed rehab). Always save changes to a new file so I don't lose the original.

Next time you run claude in that folder, it'll already know your setup. Update the file anytime your preferences change.

When You're Stuck

  • Ask Claude Code: "I'm confused, can you explain what just happened?"
  • Type /help inside Claude Code to see available commands
  • Copy-paste error messages and ask "what does this mean?"
  • If the terminal looks frozen, Claude Code is probably still thinking — give it a minute
  • To exit Claude Code, type /exit or press Ctrl+C

Still stuck?

Text or call Jason: (775) 393-9865

Tips for Working with Claude Code

Be patient. Claude Code reads your files, thinks about the problem, and sometimes runs commands — all before responding. A complex request can take a minute or two. Let it cook.

Be specific. Instead of "clean up my spreadsheet," try "sort the exercises alphabetically, add a Muscle Group column, and save it as a new file called workout-organized.xlsx." The more detail you give, the better the result.

Iterate in small steps. Ask for one thing at a time. Review it. Then ask for the next thing. This gives you better results and lets you catch issues early.

Use the best model. If you haven't already, type /model opus inside Claude Code. Opus is the smartest version of Claude — slower but much better at understanding what you need and getting it right the first time.

Other Starter Projects

Once you're comfortable with Claude Code, try these next:

Client Progress Dashboard Level 1

Track client progress with visual charts and graphs — strength gains, body comp, consistency.

AI Workout Planner Level 2

A tool that generates personalized workout plans for your clients using AI.

AI Client Check-in Writer Level 2

Generate personalized check-in messages for all your clients at once.

Advanced: Clone the starter project repo (optional)

If you're comfortable with git, you can clone the full starter project repo. It includes pre-written instructions that guide Claude Code through each project:

  1. git clone https://github.com/jabelk/ai-career-launchpad.git
  2. cd ai-career-launchpad/starter-projects/client-workout-adapter
  3. claude

Claude Code reads the project's CLAUDE.md file automatically and walks you through everything step by step.

Learn more:

Starting a New Project

Every new project gets its own folder. Here's the pattern.

The Three-Step Pattern

Every time you want to build something new, follow these steps:

  1. Create a new folder for your project: mkdir my-new-project
  2. Navigate into it: cd my-new-project
  3. Start Claude Code: claude

That's it. Describe what you want, and Claude Code builds it in that folder.

Important: Don't keep building everything in your first project's folder. Each project gets its own directory. This keeps your work organized and lets Claude Code focus on one thing at a time.

Spec-Driven Development

Before you build, write down what you want. This one habit will make you 10x more effective.

People who build great things don't just start — they write a plan first. It's called a "spec" (short for specification). Think of it like writing a workout program before a training session. You wouldn't just wing it with a client — same idea here.

Here's a simple template you can copy and paste into any project:

## What I Want to Build [One sentence describing your project] ## Who Is It For [Me / my clients / my business / other trainers] ## What It Should Do - [Feature 1] - [Feature 2] - [Feature 3] ## What "Done" Looks Like [How will I know it's finished and working?]

Example for a warm-up routine generator:

## What I Want to Build A tool that generates warm-up routines based on what muscles we're training today. ## Who Is It For Me — to quickly create warm-ups for clients instead of doing it from memory. ## What It Should Do - Ask what body parts we're training (legs, upper body, full body) - Generate a 5-10 minute warm-up with specific exercises - Include mobility work, activation exercises, and dynamic stretches - Show reps/duration for each exercise ## What "Done" Looks Like I can select "Leg Day" and get a complete warm-up routine I can follow with a client.

Save this as a file called spec.md in your project folder. When you start Claude Code, it will read the spec and know exactly what to build.

Set Up Spec Kit Tooling

Want even more structure? Install GitHub Spec Kit — it adds slash commands to Claude Code for creating specs, plans, and tasks automatically. Run this in your project folder:

uvx --from git+https://github.com/github/spec-kit.git specify init my-project

Say yes to the prompts and it will set everything up. Important: If you run this from inside Claude Code, you need to exit Claude Code (/exit) and reopen it for the new slash commands to load. Then you can use /speckit.specify, /speckit.plan, and more to structure your projects like a pro.

Learn More About SDD

SDD Practical Guide — The full guide to spec-driven development.

GitHub Spec Kit — GitHub's official SDD toolkit.

Learning Path

Practical skills for working with Claude Code, plus courses and certifications when you're ready to go deeper.

Practical Skill: Prompting 101

The most important skill in AI isn't coding — it's communicating clearly. Here's how to talk to Claude Code effectively:

  • Be specific. "Sort my spreadsheet by date" is better than "organize this." The more detail, the better the result.
  • One thing at a time. Don't ask for 5 changes at once. Ask for one, review it, then ask for the next.
  • Give context. "I'm a personal trainer and this spreadsheet tracks my client Sarah's workouts" helps Claude Code give you relevant answers.
  • Iterate. If the result isn't right, say what's wrong: "That's close, but I wanted it sorted newest-first, not oldest-first."
  • Ask questions. "What else could you do with this data?" or "Can you explain what you just did?" — Claude Code is happy to explain.

Practical Skill: File & Folder Basics

A quick cheat sheet for navigating your computer in the terminal:

CommandWhat It DoesMac ExamplePC Example
cd [folder]Go to a foldercd ~/Desktop/workout-datacd %USERPROFILE%\Desktop\workout-data
cd ..Go up one foldercd .. (same on both)
List filesSee what's in a folderlsdir
mkdir [name]Create a new foldermkdir my-project (same on both)
Show where you arePrint current folderpwdcd (with no folder name)

Pro tip: If you ever get lost, type pwd (Mac) or cd by itself (PC) to see where you are, then cd ~/Desktop (Mac) or cd %USERPROFILE%\Desktop (PC) to get back to familiar ground.

Practical Skill: Saving Your Work

When Claude Code creates or edits files, they're saved in whatever folder you're working in. Here's what to know:

  • Files stay where they are. If you're in your workout-data folder on the Desktop, new files show up there. Open that folder in Finder (Mac) or File Explorer (PC) to see them.
  • Always save changes to new files. Tell Claude Code "save this as workout-updated.xlsx" so your original is untouched.
  • Back up your work. Copy your project folder to Google Drive, a USB drive, or anywhere you keep important files.
  • One project per folder. Don't put everything in one folder. Create a new folder for each new project.

Practical Skill: Context Files

Context files are notes you leave for Claude Code so it remembers things about you and your work. Two types:

  • CONTEXT.md — Put this in your project folder. It tells Claude Code about your clients, preferences, and how you like things organized. Claude Code reads it automatically when you start a session.
  • CLAUDE.md — Instructions that tell Claude Code how to behave in a project. Think of it like a training manual for your AI assistant. The starter projects already have these.

You can ask Claude Code to create either one: "Can you create a CONTEXT.md with my client info and preferences?"

Watch: Quick AI Overview

The Way We Use AI Will Completely Change in 2026

Cole Medin — A quick overview of where AI is headed and why now is the time to start.

~16 min Watch

ACE AI Bootcamp

American Council on Exercise — AI training specifically for fitness professionals. Counts toward CECs.

Course Info

Free Certifications

Structured, self-paced courses you can do on your own schedule. All free (some require a short financial aid application).

UMD AI & Career Empowerment — Free, 10 modules, from the University of Maryland Smith School of Business. Over 37K enrolled. Great starting point for anyone new to AI concepts.

Google AI Essentials — The most popular Coursera course ever. Free with financial aid (150-word application).

Google AI Professional Certificate — 7 courses + capstone, hands-on with Gemini. Free with financial aid or .edu email.

Google Career Certificates — IT Support, Data Analytics, UX Design — all no-experience, free with financial aid.

Project Ideas

9 projects organized by difficulty. Start with Level 1 and work your way up. Every project connects to your fitness business.

Level 1 Zero Code Knowledge — Claude Code Does Everything

Client Workout Adapter

Practice working with Claude Code using your real workout spreadsheets. Read, edit, reorganize, and analyze .xlsx files through conversation.

Your first project — learn to use Claude Code with data you already understand.

Claude CodeSpreadsheetsPrompting

Client Progress Dashboard

Visual charts showing client progress over time — strength gains, body comp, workout consistency. Powered by Chart.js.

Nothing motivates a client like seeing their squat numbers going up on a chart.

HTMLCSSJavaScriptChart.js

HIIT Timer & Workout Display

A full-screen workout timer with exercise names, work/rest intervals, and round tracking. Perfect for group classes or personal sessions.

Replace the phone timer with a pro-looking workout display.

HTMLCSSJavaScript

Level 2 AI-Powered Tools — Claude Code Builds It, You Direct It

AI Workout Planner

Describe a client's goals, experience, and equipment — get a complete, personalized workout program generated by AI.

Like having a junior trainer draft programs for you to review.

Claude CodeAI PromptingAutomation

AI Client Check-in Writer

Enter a few bullet points about a client's week, get a warm, personalized check-in message ready to text or email.

Saves hours on weekly client communication.

Claude CodeAI PromptingContent Generation

AI Nutrition Guide Generator

Generate basic nutrition guidelines tailored to a client's goals, preferences, and dietary restrictions. Not a meal plan — a guide.

Clients always ask about nutrition. Give them a solid starting point.

Claude CodeAI PromptingContent Generation

Level 3 Business Automation — Let AI Handle the Repetitive Stuff

AI Client Onboarding System

An AI-powered flow that collects new client info (goals, history, availability, injuries), generates an initial assessment, and drafts their first program.

Automate the most time-consuming part of getting a new client started.

Claude CodeAutomationWorkflow Design

Client Communication Pipeline

Automated workflows that send workout reminders, check-in messages, and progress summaries on a schedule. No manual messaging.

Automate your entire client communication workflow.

n8nAI ToolsSchedulingAutomation

AI Coaching Dashboard

A dashboard combining client data, progress charts, AI-generated insights, and communication tools in one place. Claude Code builds it; you design it.

Your all-in-one command center for managing your fitness business.

Claude CodeData VisualizationAI Tools

Jobs & Salary Ranges

Real roles, real pay, real links. No degree required for any of these. Your edge: sales experience + fitness domain knowledge + AI skills. LA-focused because that's where you're headed.

Start Earning Now (Side Income While Learning)

These companies hire AI trainers and evaluators. Your fitness domain expertise commands premium rates — they specifically need people who know health and wellness.

Opportunity Pay Why You Link
DataAnnotation.tech $20-40/hr Fitness domain expertise = premium rates Apply
Outlier AI $15-50/hr Health/wellness knowledge valued Apply
Scale AI ~$30/hr Remote AI training, flexible hours Apply
Digital Products (Canva + AI) $500-5K/mo Sell workout templates, meal guides on Etsy/Gumroad
AI-Enhanced Coaching Premium rates Use AI tools to offer personalized programming at scale

DataAnnotation.tech

$20-40/hr

Fitness domain expertise = premium rates

Outlier AI

$15-50/hr

Health/wellness knowledge valued

Scale AI

~$30/hr

Remote AI training, flexible hours

Digital Products

$500-5K/mo

Sell workout templates, meal guides on Etsy/Gumroad using Canva + AI

AI-Enhanced Coaching

Premium rates

Use AI tools to offer personalized programming at scale

3-6 Month Target (Your Sales & Fitness Background + AI Skills)

These roles lean on what you already have — sales experience, client relationships, fitness domain knowledge — and get a boost from AI skills. You're not competing with engineers. You're the person who understands the customer AND the technology.

Role Salary Range Job Links
Health/Wellness Tech Sales (BDR/SDR) $50K-$80K + commission Indeed (LA) · LinkedIn
Customer Success Manager (Health Tech) $64K-$107K Indeed · LinkedIn (LA)
Corporate Wellness Program Manager $67K-$118K Indeed (LA) · ZipRecruiter · LinkedIn
AI-Augmented Online Coaching (Your Business) $80K-$150K+ Salary Data · Guide

Health/Wellness Tech Sales (BDR/SDR)

$50K-$80K + commission

Your sales experience + fitness domain = you speak the buyer's language. AI skills help you prospect and personalize outreach at scale.

Customer Success Manager (Health Tech)

$64K-$107K

Client relationship management IS this role. You've been doing it with training clients for years — same skill, bigger stage.

Corporate Wellness Program Manager

$67K-$118K

Design fitness programs, motivate people, track outcomes — but inside a company. Your most natural lateral move.

AI-Augmented Online Coaching

$80K-$150K+

Scale Kinesio Fitness with AI — auto-generate programs, client check-ins, and content. Go from trading hours for dollars to building a real business.

6-12 Month Target (B2B Roles Where You're the Bridge)

These roles pay more because they need someone who understands both the fitness industry AND technology. Most tech people don't know fitness. Most fitness people don't know tech. You'll know both.

Role Salary Range Job Links
Account Executive (Wellness/Fitness Tech) $80K-$140K OTE Indeed (CA) · LinkedIn
Solutions Consultant (Wellness SaaS) $90K-$150K Indeed · LinkedIn
Wellness Tech Partnership Manager $85K-$130K Indeed · LinkedIn
Wellness Technology Product Manager $100K-$170K Indeed · LinkedIn

Account Executive (Wellness/Fitness Tech)

$80K-$140K OTE

Full sales cycle at a health tech company. You understand the buyer (gyms, studios, trainers) because you ARE one. AI skills help you demo products and personalize proposals.

Solutions Consultant (Wellness SaaS)

$90K-$150K

Bridge between the sales team and the product. You demo the software, understand client needs, and translate fitness workflows into tech solutions.

Wellness Tech Partnership Manager

$85K-$130K

Build relationships between fitness brands and tech platforms. Your industry network + AI skills = you can speak both languages.

Wellness Technology Product Manager

$100K-$170K

The stretch goal. You know what trainers need, what clients want, and how AI can connect the two. Companies like Tonal, EGYM, and Hyperice need exactly this.

LA Wellness Tech Companies (Your Future Employers)

LA is the wellness tech capital. These companies are building the future of fitness — and they need people who understand both the industry and AI.

Company What They Do Why You Fit Link
Headspace Meditation & mindfulness app Wellness coaching background Careers
Hyperice Recovery tech & connected devices Recovery is part of your training toolkit Careers
EGYM / Fred Fitness Smart fitness equipment You use gym equipment every day Careers
Xponential Fitness Franchise fitness brands (Club Pilates, CycleBar) Fitness industry insider knowledge Careers
Tonal AI-powered strength training Strength training is your expertise Careers
Therabody Recovery & wellness devices (Theragun) You use these products with clients Careers

Headspace

Meditation & mindfulness app — Wellness coaching background is a perfect fit

Hyperice

Recovery tech & connected devices — Recovery is part of your training toolkit

EGYM / Fred Fitness

Smart fitness equipment — You use gym equipment every day

Xponential Fitness

Franchise fitness brands (Club Pilates, CycleBar) — Fitness industry insider

Tonal

AI-powered strength training — Strength training is your expertise

Therabody

Recovery & wellness devices (Theragun) — You use these products with clients

Companies That Don't Require Degrees

Google, Apple, IBM, Tesla, Amazon, Microsoft, Bank of America — all have officially dropped 4-year degree requirements for certain roles.

Skills-based hires are 30% more productive in their first six months. — McKinsey

Building Your Professional Profile

Your LinkedIn is your storefront. Here's how to position yourself as someone who bridges fitness expertise and AI technology.

What Hiring Managers Want to See

  • Business results — client retention rates, revenue growth, programs you've designed
  • AI tool proficiency — show you use AI to automate workflows, analyze data, and create content
  • Industry certifications — ACE, NASM, Google AI Essentials, or any of the certs listed below
  • Case studies — "I used AI tools to cut my client onboarding time by 50%" is more powerful than any code repo
  • Content — LinkedIn posts, short videos, or articles showing how you apply AI to fitness workflows

5 Things That Make Your Profile Stand Out

These prove you can bridge the gap between wellness expertise and technology.

AI-Enhanced Client Results

Document how you used AI tools to improve your training business — faster program design, personalized check-ins at scale, data-driven progress tracking.

Workflow Automation Examples

Show that you've automated repetitive tasks: client scheduling, check-in messages, data cleanup. Hiring managers love people who find efficiencies.

Industry + Tech Certifications

Stack fitness certs (ACE, NASM) with AI/tech certs (Google AI Essentials, HubSpot). The combo is rare and valuable.

Client Testimonials & Metrics

Real results speak louder than resumes. Retention rates, client count, revenue — these prove you can manage relationships and deliver outcomes.

Thought Leadership Content

LinkedIn posts or short videos about AI in fitness. "How I use AI to write personalized check-ins for 20 clients in 10 minutes" — that kind of content gets noticed by recruiters.

Skills to List on LinkedIn

AI Tools (Claude, ChatGPT) Sales & Business Development Client Relationship Management Wellness Program Design Data Analysis Workflow Automation Content Creation Customer Success Fitness Industry

Apprenticeships & Training

Structured programs that get you hired. Most are free or paid to attend.

UMD AI & Career Empowerment

University of Maryland Smith School of Business
  • Completely free
  • 10 self-paced modules
  • AI fundamentals + career applications
  • Great starting point for non-technical learners
Enroll Free

Google AI Essentials Certificate

Google via Coursera
  • No prerequisites
  • Free with financial aid (150-word app)
  • Most popular Coursera course ever
Enroll

ACE AI Bootcamp

American Council on Exercise
  • AI training for fitness professionals
  • Counts toward continuing education credits
  • Industry-recognized
Learn More

HubSpot Sales & Marketing Certifications

HubSpot Academy
  • Completely free
  • Sales, CRM, content marketing tracks
  • Industry-recognized credentials
  • Great for B2B sales and customer success roles
Browse Courses

Salesforce Trailhead

Salesforce
  • Free, self-paced learning
  • CRM and sales operations skills
  • Badges and certifications employers recognize
  • Many wellness tech companies use Salesforce
Start Learning

Google Career Certificates

Google via Coursera
  • Project Management, Data Analytics, Digital Marketing
  • No experience required
  • Free with financial aid
  • Google hires directly from this program
Explore