Glossary banner
sgharlow sgharlow

Glossary

Development community intermediate

Description

**Terms and Definitions for the Top 100 Claude Code Recipes** This glossary defines technical terms, business acronyms, and file formats used throughout the recipe collection. If you're new to Claude

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

Repository README

This is the README for sgharlow/claude-code-recipes, shared by 5 entries in this directory. It describes the repository, not this entry specifically.

Glossary

**Terms and Definitions for the Top 100 Claude Code Recipes**

This glossary defines technical terms, business acronyms, and file formats used throughout the recipe collection. If you're new to Claude Code or AI tools, start here.


Technical Terms

AI / Artificial Intelligence

Computer systems that can perform tasks typically requiring human intelligence, like understanding language, analyzing data, and generating text.

API (Application Programming Interface)

A way for different software programs to communicate with each other. Some recipes mention APIs when discussing integrations or technical documentation.

CLI (Command Line Interface)

A text-based way to interact with your computer by typing commands instead of clicking buttons. Claude Code runs in a CLI—you type commands and requests, and Claude responds with text.

Claude

Anthropic's AI assistant. Claude powers Claude Code and can help with writing, analysis, coding, and many professional tasks.

Claude Code

Anthropic's command-line tool that lets you use Claude directly from your terminal to work with files on your computer.

Console (Anthropic Console)

A developer-focused platform at console.anthropic.com where you can access Claude's API and pay-as-you-go for usage.

Context

The information Claude has available to understand your request. This includes your conversation history, any files you've shared, and the current prompt. Longer contexts allow Claude to maintain awareness across complex tasks.

Homebrew

A package manager for macOS that makes it easy to install software from the command line. The command `brew install` uses Homebrew.

Markdown

A simple text formatting language used for documentation. Files ending in `.md` are Markdown files. This recipe collection is written in Markdown.

Node.js / npm

Node.js is a platform for running JavaScript outside a web browser. npm (Node Package Manager) is its tool for installing software packages. One Claude Code installation method uses npm.

PATH

An environment variable that tells your computer where to find programs. If you get "command not found" errors, the program might not be in your PATH.

PowerShell

Windows' advanced command-line interface. More powerful than the older Command Prompt (cmd).

Prompt

The text you type to request something from Claude. A well-crafted prompt gets better results. The recipes provide tested prompts for specific tasks.

Terminal

The application where you type commands. On Mac, it's called Terminal. On Windows, you might use PowerShell, Command Prompt, or Windows Terminal.

WSL (Windows Subsystem for Linux)

A feature that lets you run Linux inside Windows. Some tools work better in Linux, so WSL provides that environment without needing a separate computer.


File Formats

.csv (Comma-Separated Values)

A simple spreadsheet format where data is stored as text with commas separating columns. Excel, Google Sheets, and