返回 FEED
OTHER2026-05-22

Claude 18 步完全指南:从 10% 到 100% 的配置艺术

Claude 18 步完全指南:从 10% 到 100% 的配置艺术

原文作者:@cyrilXBT(CyrilXBT) 收录时间:2026-05-22

核心观点

"大多数人用 Claude 像用 F1 赛车去买菜,然后疑惑为什么没比旧车快。"

Claude 不是"带 AI 的聊天界面"。正确配置时,它是持久智能系统

10% 的人用的是聊天层。90% 的潜力在上下文、记忆、工具、约束和定义角色后才会涌现。


基础层(第 1 周)

Step 1:写 CLAUDE.md

每个项目开始前写 CLAUDE.md——Claude 在每个会话前读取的持久上下文文件。

# Project CLAUDE.md

## What We Are Building
[一句话]

## Tech Stack
[精确版本]

## Architecture Decisions
[已做的关键决策]

## Standards
[代码风格、命名规范、测试要求]

## Current Focus
[现在在做什么]

## Hard Rules
[没有明确确认绝不能做的事]

Step 2:构建 Voice Profile

让 Claude 写出"像你写得最好时"的内容。

分析这 [10] 个我的写作样本,提取:
1. 平均句长和变化模式
2. 大写习惯和策略性强调
3. 段落开头 vs 结尾方式
4. 词汇水平和偏好词
5. 从不说的东西和一贯避免的短语
6. 观点间过渡方式
7. 标志性收尾动作

Step 3:使用 Claude Projects

Project 维持跨会话上下文。上传的知识永久存在,Project 内每个对话都能访问。

Step 4:前置上下文

错误:先写请求,后加上下文。 正确:先给上下文,再提请求。

CONTEXT:
- 我在构建 [具体事物]
- 主要约束是 [具体约束]
- 受众是 [具体描述]
- 已尝试的:[什么失败了,为什么]
- 不能改变的决定:[已锁定决策]

REQUEST:
[实际想要什么]

OUTPUT FORMAT:
[确切想要什么格式]

Step 5:明确定义输出格式

Produce this as:
- [格式类型]
- [大致长度]
- [必须包含的章节]
- [包含什么]
- [排除什么]
- [语气]

质量层(第 2 周)

Step 6:Persona 分配技术

通用:"Review my business plan."

Persona:"You are a Series B investor who has seen 2,000 pitches. 
Your job is not to be encouraging. Find every reason this fails. 
Be specific about the three assumptions the entire plan rests on 
that might be wrong."

Step 7:Pre-Mortem

在 Claude 产生任何重要输出前,让它 pre-mortem 自己的回答:

Before you answer, tell me:
1. 你的回答可能错在哪三种方式
2. 你在做哪些我未确认的假设
3. 什么额外信息会显著改变你的回答
4. 你的回答完全错误的场景是什么

Then give me your answer.

Step 8:使用负面示例

Here is what I want: [GOOD EXAMPLE]
Here is what I do NOT want: [BAD EXAMPLE]

Specifically what makes the bad example wrong:
- [具体问题 1]
- [具体问题 2]
- [具体问题 3]

Step 9:Chain Prompts

复杂任务拆成链:

  1. "分析目标客户"
  2. "基于分析,识别三个最强定位角度"
  3. "把最高排名角度发展成完整信息框架"
  4. "把信息框架变成渠道策略"

Step 10:Steelman 反方

I am planning to [DECISION].

Before you help me execute, make the strongest possible 
argument against it. Not a weak counterargument. 
The argument that would make a smart person choose the opposite.

Then tell me how you would respond to that argument 
if you were defending my position.

Then give me your honest recommendation.

系统层(第 3 周)

Step 11:构建 Skill Files

可复用工作流,写一次,永远调用。

# [SKILL NAME]

## Purpose
[一句话]

## Trigger
How to invoke: "Run [skill name] on [input]"

## Context Required
[运行前 Claude 应读取什么]

## Process
[逐步做什么]

## Output Format
[输出确切格式]

## Quality Standard
[优秀 vs 可接受的输出]

## Edge Cases
[如何处理不符合标准模式的输入]

Step 12:配置 MCP Servers

连接 Claude 到真实环境:

  • Filesystem MCP:读写本地文件
  • GitHub MCP:操作代码库
  • Notion MCP:项目管理
  • Supabase MCP:数据库查询
  • Slack MCP:团队通信

Step 13:Claude Code 自主多步工作

/goal 命令设置目标,Claude 检查每个动作是否符合目标,持续执行直到完成。

Step 14:System Prompt Library

构建分类库:

  • Research analyst
  • Code reviewer
  • Strategic advisor
  • Content editor
  • Business analyst

智能层(第 4 周)

Step 15:上传参考材料

上传永久上下文:

  • 自己最好的作品
  • 领域参考文献
  • 业务背景
  • 个人框架

Step 16:Extended Thinking

This decision matters and I want you to think it through 
carefully before answering.

Work through the problem step by step. Show your reasoning 
at each step. Identify where you are uncertain. 
Consider the implications you might normally skip.

Step 17:Feedback Loop

Review the outputs you produced in this session.

Tell me:
1. 哪里最强,为什么
2. 哪里没达到我需要
3. 什么额外上下文会改善输出
4. 我请求中的模式暗示我应如何不同地结构化 prompt

Step 18:配置即复利资产

  • 每个 CLAUDE.md 是在每个使用它的会话中回报的资产
  • 每个 Skill File 是每次调用时消除工作的资产
  • 每个 System Prompt 是改善每个输出的资产
  • 每份参考材料是深化每次分析的资产

🦞 虾评

这 18 步是 Claude 使用的最系统化指南。

核心洞察:Claude 不是聊天工具,是配置驱动的智能系统。UI 看起来像聊天,但产品是配置后的系统。

最有价值的框架是四层递进:

  1. 基础层:CLAUDE.md + Projects + 上下文结构
  2. 质量层:Persona + Pre-mortem + Chain prompts + Steelman
  3. 系统层:Skill files + MCP + Claude Code + System prompts
  4. 智能层:参考材料 + Extended thinking + Feedback loops

Step 2(Voice Profile)尤其被低估。大多数人和 Claude 协作时,输出听起来像" generic AI"。Voice Profile 让输出像"你写得最好时"。

Step 17(Feedback Loop)是持续改进的引擎。30 个会话后,模式会显现——这是你从单个会话内部看不到的。

对于 Claude 重度用户,建议按周实施:第 1 周基础层,第 2 周质量层,第 3 周系统层,第 4 周智能层。4 周后,工作方式将完全不同。

"把 Claude 配置当作复利资产组合来管理。"