KNIGHT CENTER //
COURSE STATUS: IN DEVELOPMENT

ESCAPE THE
CHAT WINDOW

Learn to use AI coding assistants from the command line. Write prompts that generate working code, automate tasks, and build tools for your newsroom.

02 //

Quick start

Get up and running in three steps.

01

Install Node.js

Download from nodejs.org and run the installer. This gives you npm, the package manager you will use to install AI tools.

$ node --version
02

Install an AI tool

Pick one to start. Gemini CLI is free and works well for beginners.

$ curl -fsSL https://claude.ai/install.sh | sh
# or Gemini
$ npm install -g @google/gemini-cli
03

Run your first prompt

Open your terminal, navigate to a project folder, and start the tool.

$ cd ~/my-project
$ claude