正在学习

2.1 How Claude Understands Code

2.2 Prompt Engineering Basics for Developers

Prompt engineering is the art of communicating with Claude Code in a way that produces accurate, efficient, and reliable results. It’s not about tricking the model—it’s about giving it enough context, clarity, and direction to reason effectively. While Claude Code can interpret natural language remarkably well, the quality of its output always depends on the precision of your input. As a developer, learning to “talk” to Claude is as valuable as learning a new programming language.

When you issue a prompt, Claude doesn’t just look at what you ask—it interprets why you’re asking. It considers the intent, structure, and tone of your message, building a logical pathway to reach an answer. If your question is vague, the reasoning path will also be broad, and the result may feel generic. If your question is specific, Claude narrows its reasoning and focuses on precision. The difference between an excellent and a mediocre response often lies in how well you set up the problem.

The Anatomy of a Good Prompt

A strong Claude Code prompt usually includes three key parts:

  1. Context — The background Claude needs to understand your task (e.g., what language or framework you’re using).
  2. Instruction — What you want Claude to do (e.g., generate, fix, refactor, explain, or test).
  3. Constraint or Expectation — How you want the answer formatted or scoped (e.g., “use async syntax,” “optimize for readability,” or “return only valid Python code”).

Here’s a simple example to illustrate the difference:

Weak Prompt:

“Write a function to handle user authentication.”

Strong Prompt:

“Write a Python function using FastAPI that handles user authentication with JWT tokens.The function should verify credentials, issue tokens that expire in 15 minutes, and return structured JSON responses.Include docstrings and comments explaining each step.”

Claude responds to the strong version with structured, well-documented code that matches your intent precisely. The weak version produces something functional but generic—perhaps lacking error handling or appropriate security measures.

Iterative Prompting

Prompting Claude is not a one-time command—it’s a dialogue. You can refine outputs through follow-up messages like:

“Claude, please refactor the code to use dependency injection instead of hardcoded credentials.”

Claude will reinterpret your original code and adjust accordingly. Iteration is where Claude shines; each revision improves the result’s clarity, performance, or maintainability. This is especially useful for complex tasks like refactoring or architectural design.

When working interactively, treat Claude like a collaborator:

  • Start broad to test understanding.
  • Narrow down instructions as you refine expectations.
  • Ask it to explain its reasoning—this helps validate logic and uncover potential oversights.

The Role of Examples and Counterexamples

Claude learns your intent through pattern recognition, so giving examples or counterexamples inside prompts improves accuracy. For instance:

“Here’s an example of the JSON format I expect. Please match it exactly.”or“Avoid using recursion; use iteration instead.”

Each instruction reduces ambiguity. Claude responds best when the constraints are explicit rather than implied.

Chain-of-Thought Prompts

Claude’s reasoning ability becomes most effective when you encourage it to think step by step—a method called chain-of-thought prompting. This mirrors how human developers plan code logic before typing.For example:

“Before writing the code, list the steps required to create a FastAPI endpoint for user registration. Then generate the complete function implementation.”

Claude first produces a structured outline, verifies logic flow, and then generates the final code. This two-step process yields cleaner, more maintainable output because the reasoning precedes execution.

Prompt Clarity and Model Efficiency

Claude’s context window is vast, but efficiency still matters. Unnecessary details can distract it or increase token cost. A good rule is to include what’s essential for reasoning but exclude what’s obvious.For example:

  • Tell Claude the target framework, language, or API version, but don’t paste entire dependency lists unless relevant.
  • If Claude misinterprets something, restate it explicitly rather than rephrasing vaguely.

A well-crafted prompt can reduce token usage and processing time while improving accuracy—saving both time and cost.

Prompt Quality and Output Comparison

Prompt Type Description Expected Outcome Example
Minimal Too vague, lacks context Generic or incomplete code “Write a function to handle requests.”
Structured Includes context and clear goals Functional, reusable code “Write an Express.js route that validates incoming JSON and returns a 201 response.”
Iterative Builds on previous outputs Refined, production-ready results “Now optimize the route for asynchronous operations.”
Reflective Requests explanation or reasoning Detailed insight into Claude’s thought process “Explain how this code handles concurrency and suggest improvements.”

From Commands to Conversations

Claude Code is most effective when treated not as a compiler, but as a peer reviewer who can discuss, analyze, and rewrite code intelligently. Ask open-ended questions. Request opinions. Challenge its assumptions. When you prompt it conversationally, you activate its reasoning mode, which yields answers with deeper insight and context.

Instead of typing:

“Fix this bug.”

Try:

“Here’s the function that fails. Can you identify the cause, explain why it fails, and suggest two possible fixes—one minimal, one long-term?”

This turns a single task into a learning exchange. Claude won’t just patch the code; it will explain root causes and trade-offs, helping you grow as a developer while maintaining production reliability.

In summary, good prompting is not a mechanical process—it’s communication. The better you articulate goals, constraints, and expectations, the more Claude will behave like a true engineering collaborator. Each prompt is an opportunity to refine your dialogue with the model, developing an intuitive rhythm of request, reasoning, and refinement.

练习题

What is the primary goal of prompt engineering when communicating with Claude Code?

A. To trick the model into generating specific outputs
B. To provide enough context, clarity, and direction for accurate results
C. To make the model generate outputs as quickly as possible
D. To reduce the number of tokens used in the prompt

When Claude interprets a prompt, what factors does it consider to build a logical pathway to an answer?

A. Only the keywords in the prompt
B. The intent, structure, and tone of the message
C. The length of the prompt
D. The time of day the prompt is issued

Which of the following are key parts of a strong Claude Code prompt? (Select all that apply)

A. Context
B. Instruction
C. Constraint or Expectation
D. Emotional appeal

A weak prompt like 'Write a function to handle user authentication' is likely to produce generic or incomplete code because it lacks context and clear goals.

Iterative prompting involves refining outputs through follow-up messages, treating Claude as a ___.

Explain how giving examples or counterexamples inside prompts improves Claude's accuracy.

What is the purpose of chain-of-thought prompting?

A. To make Claude generate code as quickly as possible
B. To encourage Claude to think step by step before generating code
C. To reduce the number of tokens used in the prompt
D. To make Claude generate outputs in a specific format

Claude's context window is unlimited, so efficiency in prompting does not matter.

When Claude misinterprets something, it is better to ___ rather than rephrase vaguely.

Compare the expected outcomes of a minimal prompt versus a structured prompt.

Which of the following are benefits of treating Claude as a conversational collaborator? (Select all that apply)

A. It activates Claude's reasoning mode
B. It yields answers with deeper insight and context
C. It reduces the need for clear prompts
D. It turns a single task into a learning exchange

Which of the following is an example of a reflective prompt?

A. 'Write a function to handle user authentication.'
B. 'Explain how this code handles concurrency and suggest improvements.'
C. 'Write a Python function using FastAPI that handles user authentication with JWT tokens.'
D. 'Now optimize the route for asynchronous operations.'

Iterative prompting is only useful for simple tasks and not for complex tasks like refactoring or architectural design.

When working interactively with Claude, you should start ___ to test understanding.

How does providing examples or counterexamples in prompts help Claude generate more accurate outputs?

When using the Claude API to create a Python function for sorting a list of integers, which of the following prompts demonstrates the best use of the 'Anatomy of a Good Prompt' principles?

A. Write a Python function to sort a list.
B. Create a Python function that sorts a list using bubble sort.
C. Write a Python function that sorts a list of integers using the quicksort algorithm. The function should take a list as input and return a new sorted list. Include docstrings explaining each step.
D. Sort this list: [3, 1, 4, 1, 5, 9, 2, 6].

Which of the following techniques would help improve the quality of responses when working iteratively with Claude through the API? (Select all that apply)

A. Starting with a very vague initial prompt
B. Providing specific examples of expected output format
C. Asking Claude to explain its reasoning after generating code
D. Making each follow-up prompt more specific than the previous one
E. Using only single-word commands in follow-up messages

When making a messages.create API call to Claude, including ___ in your prompt helps the model generate more accurate responses by providing necessary background information.

Explain how you would modify the following weak API prompt to make it stronger according to the principles in this section: 'Write a function to process data.'

登录后解锁笔记、知识点解析、AI 问答

立即登录