# The Claude Code Plugin Guide for Non-Developers
> How to install and use profession-specific Claude Code plugins — no coding experience required. Step-by-step setup for pharmacists, teachers, attorneys, and 23 more professions.
**Author:** [Alex Lowe](https://theaicareerlab.com/about) — Founder, The AI Career Lab
**Published:** 2026-03-18
**Canonical URL:** https://theaicareerlab.com/blog/claude-code-plugin-guide
**Category:** how-to
**Tags:** Claude Code, plugins, setup guide, getting started
---> **TL;DR.** How to install and use profession-specific Claude Code plugins — no coding experience required. Step-by-step setup for pharmacists, teachers, attorneys, and 23 more professions. Practical walkthrough with prompt structure and the free tool.

Claude Code plugins sound technical, and the name does not help. "Code" suggests you need to be a developer. You do not. Claude Code is a command-line interface for Claude — Anthropic's AI — and plugins are pre-built extensions that add profession-specific commands. Think of them as shortcuts that let you generate polished documentation by typing a single command instead of engineering a prompt from scratch.

This guide walks you through installation, setup, and first use. No coding experience required. No terminal expertise assumed.

## What Claude Code Is

Claude Code is a tool that lets you interact with Claude through your computer's terminal (the text-based interface that every computer has). Instead of using a web browser to chat with an AI, you type commands directly. This is faster, more powerful, and allows for integrations that web interfaces cannot support.

You do not need to write code to use it. You type commands in plain English, and Claude responds with the output you need.

## What Plugins Add

Without plugins, you would need to write detailed prompts every time you want Claude to generate a specific type of document. Plugins eliminate that step. Each plugin comes with pre-configured commands — called slash commands — that are tailored to specific professional tasks.

A [pharmacist plugin](/plugins) gives you commands like `/drug-interaction` and `/prior-auth`. A [teacher plugin](/plugins) gives you `/lesson-plan` and `/rubric`. A [tradesperson plugin](/plugins) gives you `/estimate` and `/scope-of-work`. Each command already contains the prompt engineering, formatting rules, and professional standards for that task.

## Installation: One Command

Open your terminal and run:

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

That installs Claude Code globally on your machine. If you do not have npm installed, you will need to install Node.js first from [nodejs.org](https://nodejs.org) — download the LTS version, run the installer, and then run the command above.

To install a profession-specific plugin, navigate to the [plugins page](/plugins) for your profession and follow the one-line installation command provided there.

## Three Walkthroughs

### Walkthrough 1: Pharmacist Using /drug-interaction

A pharmacist receives a question from a prescriber about combining lisinopril with spironolactone in a patient with moderate renal impairment.

**Step 1:** Open your terminal.

**Step 2:** Type the command:

```
/drug-interaction lisinopril + spironolactone, patient with CKD stage 3, eGFR 42
```

**Step 3:** Claude generates a structured interaction summary covering:
- Mechanism (both agents increase serum potassium via different pathways)
- Clinical significance (high risk of hyperkalemia with reduced renal clearance)
- Monitoring parameters (serum potassium within 1 week, then monthly; renal function panel)
- Recommended action (if combination necessary, start spironolactone at lowest dose with close monitoring)

The output is formatted for clinical documentation and ready to share with the prescribing provider. What would have taken 10-15 minutes of manual research and writing takes under two minutes.

Explore all [pharmacist AI tools](/professions/pharmacist) to see the full command list.

### Walkthrough 2: Teacher Using /lesson-plan

A 7th grade English teacher needs a lesson plan for tomorrow on persuasive writing techniques.

**Step 1:** Open your terminal.

**Step 2:** Type the command:

```
/lesson-plan 7th grade English, persuasive writing techniques, 45 minutes, include peer review activity
```

**Step 3:** Claude generates a complete lesson plan with:
- Learning objectives aligned to Common Core ELA standards
- Warm-up activity (analyze a persuasive advertisement)
- Direct instruction segment (ethos, pathos, logos with examples)
- Guided practice (students draft a persuasive paragraph)
- Peer review activity with structured feedback rubric
- Exit ticket assessment

The plan includes differentiation suggestions for advanced and struggling students. A lesson plan that would take 30-45 minutes to write from scratch is ready in under three minutes.

Explore all [teacher AI tools](/professions/teacher) to see the full command list.

### Walkthrough 3: Tradesperson Using /estimate

An electrician needs to send a professional estimate for a panel upgrade from 100A to 200A service at a residential property.

**Step 1:** Open your terminal.

**Step 2:** Type the command:

```
/estimate 200A panel upgrade, residential, existing 100A panel, 30-circuit panel, include permit and inspection
```

**Step 3:** Claude generates a detailed estimate with:
- Itemized materials list (200A panel, main breaker, copper service entrance cable, grounding components)
- Labor breakdown by task phase
- Permit and inspection line items
- Terms and conditions
- Professional formatting ready to send to the homeowner

No more handwritten estimates or spending evenings typing up job quotes. What takes 20-30 minutes manually is ready in two minutes.

Explore all [tradesperson AI tools](/professions/tradesperson) to see the full command list.

## Addressing the "I Am Not a Developer" Concern

You do not need to be a developer. Here is what you actually need to know:

- **Opening a terminal:** On Mac, search for "Terminal" in Spotlight. On Windows, search for "Command Prompt" or "PowerShell" in the Start menu.
- **Typing a command:** You type text and press Enter. That is it.
- **Reading output:** Claude's responses appear as text in the terminal, the same way they would in a chat window.

If you can type a text message, you can use Claude Code. The terminal is just a different window for typing.

## Tips for Getting the Most Out of Plugins

### Be Specific With Your Inputs

The commands work with minimal input, but more detail produces better output. Instead of `/lesson-plan persuasive writing`, add the grade level, time constraint, and any specific activities you want included.

### Combine Commands

Generate a lesson plan with `/lesson-plan`, then immediately create a matching rubric with `/rubric` using the same topic. The outputs are designed to work together.

### Save and Reuse

Copy outputs that work well and save them as templates. Over time, you build a library of high-quality documents that only need minor customization for each new use.

## Next Steps

Visit the [plugins page](/plugins) to find the plugin for your profession. Installation takes under a minute, and your first generated document will take under two. Browse our [tools catalog](/tools) to preview every command available across all 26 professions before you install.
---

*Canonical version: https://theaicareerlab.com/blog/claude-code-plugin-guide*
*This document is the Markdown companion served for AI crawlers and answer engines. See the canonical URL for the rendered version with navigation, related content, and interactive elements.*