The AI Landscape
What you'll learn
~10 min- Understand what AI CLI tools are and how they differ from chatbots
- Learn the describe → build → review loop that drives agentic coding
- See the four primary tools you'll use in this course
- Choose the learning path that fits your experience level
By the end of this lesson, you’ll understand the basics of how AI CLI tools work, why they matter for your career, and which learning path is right for you. No coding background required — we start from zero.
Why this matters
The workplace is changing. Industry reports suggest that teams using AI tools see meaningful productivity gains, and people who can direct AI agents are increasingly sought after by employers. This isn’t about becoming a programmer — it’s about expanding what you’re capable of. By the end of this course, you’ll have a practical skill that very few people have developed yet.
The elephant in the room
Let’s be direct: AI is changing job markets. Some tasks are being automated. Some roles are shrinking. If you’re feeling anxious about that, you’re paying attention — not overreacting.
But here’s what the headlines miss: your domain expertise is your moat. AI can generate code, summarize reports, and analyze data. It cannot understand your patients, your research questions, your business context, or your users the way you do. The people being displaced aren’t the ones who understand their domain deeply — they’re the ones who can’t adapt their tools.
That’s what you’re doing here. You’re not learning to code. You’re learning to operate new machinery — machinery that amplifies what you already know. The question isn’t whether to adapt, it’s how fast.
That’s a valid reason to be here. Plenty of people in this course are in the same position — scientists watching grants shrink, analysts seeing dashboards auto-generated, developers watching junior roles disappear. Acknowledging the fear is step one. Building the skills to stay relevant is step two. You’re already on step two.
What are AI CLI tools?
In a standard chat window, AI tools have limited direct access to your local project files — you typically need to copy-paste or upload content manually. AI CLI CLI Command Line Interface — a text-based way to control your computer. Learn more → tools are different — they run inside your Terminal Terminal The app/window where you type text commands. Learn more → and work directly with your project files:
- Read your existing code and documents
- Create new files and folders
- Edit multiple files at once
- Run commands, tests, and builds
- Fix errors and try again automatically
You describe what you want in plain English, and the AI builds it right inside your project — no copy-pasting between windows. Because these tools can modify files and run commands, always review proposed changes and use version control (you’ll learn Git in Module 7).
The mental model
Think of your project folder as a workshop. A chatbot is like calling a friend on the phone — they give advice but can’t touch your tools. An AI CLI tool is that friend standing in your workshop, picking up tools and building alongside you.
The core loop: Describe → Build → Review
Every interaction follows the same three-step pattern:
- Describe what you want — you can start in plain English; advanced controls are introduced later.
- The AI builds it — reading your project, writing code, running tests.
- Review and refine — check the result, ask for changes, iterate.
Your primary job is to think clearly, give good instructions, and verify results. Coding skill becomes a force multiplier, but it’s not required to get started.
Anyone can type a question into ChatGPT. Directing an AI agent to build real software takes practice — knowing what to ask for, how to break down problems, and when to course-correct. That’s the skill this course teaches.
See it in action
Here’s what an actual AI CLI session looks like. Scroll through this transcript — a user launches Claude Code and builds a complete contact form through conversation:
Notice what didn’t happen: the user didn’t learn HTML, didn’t install frameworks, didn’t read documentation. They described what they wanted in plain English and refined it with follow-up requests. That’s orchestration. (Use the tool switcher above to see how different tools handle the same task — all four are full agentic coding tools that read, write, and edit files directly.)
AI tools sometimes produce incorrect code, made-up facts, or results that look right but have subtle bugs. This is normal. Always test what the AI builds — run it, click through it, check the output. You don’t need to read every line of code, but you do need to verify the result works. We’ll cover verification strategies in detail starting in Module 8.
You’ll hear a lot of bold claims about AI — including in this course. A healthy habit: when someone cites a statistic or makes a prediction about AI, ask “where did this number come from?” and “is this still current?” AI capabilities and adoption numbers change fast. We’ll flag when information may go stale, and we encourage you to verify claims independently.
The four tools you’ll learn
As of early 2026, these are the leading AI CLI tools. This space moves fast — features and pricing change regularly, so always check the latest documentation.
| Tool | Maker | What makes it special |
|---|---|---|
| Claude Code | Anthropic | Deep codebase understanding, long context, terminal-first |
| Gemini CLI | Open source, generous free tier, up to 1M token context depending on model | |
| Codex CLI | OpenAI | Autonomous task execution, agent-first architecture |
| Copilot CLI | GitHub / Microsoft | GitHub ecosystem integration, free tier with no credit card |
You don’t need to pick just one. Effective orchestrators know which tool to reach for and when.
🧬In Your Field: Biotechclick to expand
Lab scenario: You have RNA-seq results in a CSV and need a heatmap. Instead of wrestling with R/ggplot2 syntax, describe the visualization to an AI CLI tool and get a working first draft — expect some iteration to refine labels, colors, and formatting. Module 12 walks you through bioinformatics tools exactly this way.
📊In Your Field: MIS / Businessclick to expand
Business scenario: Your manager wants a dashboard showing quarterly sales by region. Instead of starting from scratch in Excel, describe the dashboard to an AI CLI tool and get an interactive prototype with charts and filters. For straightforward cases with clean data, this can save hours of work. Module 13 shows you how.
🏛️In Your Field: Government / State Devclick to expand
Government scenario: Your team needs an internal tool to manage consular case intake. Instead of waiting months for IT, describe the tool and get a working prototype for internal review. Production deployment will still require security review and ATO, but you’ll have something to demo quickly. Module 14 covers building internal tools for government environments.
Where you stand right now
AI adoption is still early, but growing quickly. Most people haven’t moved beyond basic chatbot usage — and the number who can direct AI agents to build real software is still very small:
- The majority of people have never used AI tools beyond a casual search
- A growing number use AI regularly for work tasks
- A smaller group uses AI coding assistants like GitHub Copilot
- A tiny fraction uses agentic CLI tools — the most powerful tier
By the end of this course, you’ll be among the early adopters who don’t just use AI, but direct it to build things. That’s a meaningful advantage in any field.
Common first-timer concerns
Use the Symptom → Evidence → Request pattern: describe what you see, paste the error, then ask for a fix.
Key takeaways
- AI CLI tools run in your terminal and can read, create, edit, and run your project files directly
- The core loop is Describe → Build → Review — plain English in, working software out
- Four tools (Claude Code, Gemini CLI, Codex CLI, Copilot CLI) — you’ll learn when to use each
- No coding prerequisite — the skill is clear thinking, not syntax
- You’re joining a small group of early adopters who direct AI agents to build real things
What makes AI CLI tools different from regular AI chatbots like ChatGPT?
Next step: Head to the next lesson to have your first real conversation with an AI tool.