Skip to content

Commit 80b98e3

Browse files
committed
fix: 5 处准确性和适用性问题修正
1. cheatsheet 删除 "Esc Esc 回滚 checkpoint" 说明 这个描述在不同 CLI 版本行为不一,无法确定准确含义。 保留 "Esc 打断当前生成" 这条稳定的说明。 2. Aider 示例模型名从 3.5 系列升到 4.5 系列 3.5 是旧版本。统一项目里 13 处引用到当前 4.x 模型。 涉及: cheatsheet / pitfalls/aider / aider/README / templates 3. Copilot 陷阱 7 措辞修正 "静默降级" → "排队或拒绝",更准确反映 Free 版到量后的实际行为。 4. 英文 README 新手推荐从 Trae 改为 Copilot/Cursor Trae 是字节产品,中文界面、国内直连是优势,对国际英文读者 反而是门槛。中文 README 保留 Trae 推荐不变。 5. .lychee.toml 移除两个不确定的 key github_token = "" 和 include_fragments 可能因 lychee 版本 差异报错。移除后依赖默认行为,更稳妥。
1 parent a936311 commit 80b98e3

11 files changed

Lines changed: 22 additions & 28 deletions

File tree

.lychee.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,6 @@ exclude = [
4646
"^https?://qm\\.qq\\.com",
4747
]
4848

49-
# 对私有仓库的 GitHub URL 跳过认证检查(公开仓库不影响)
50-
github_token = ""
51-
52-
# 跳过 fragment(#section)校验,避免跨仓 anchor 误报
53-
include_fragments = false
54-
5549
# 缓存
5650
cache = true
5751
max_cache_age = "1d"

README.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
| You are... | Recommended reading order |
2929
|------------|---------------------------|
30-
| Total newcomer to AI coding | [Cheatsheet](cheatsheet.en.md)[Trae](trae/) (free) → [Prompt Engineering](common/prompting.en.md) |
30+
| Total newcomer to AI coding | [Cheatsheet](cheatsheet.en.md)[Copilot](copilot/) (free tier) or [Cursor](cursor/) (free tier) → [Prompt Engineering](common/prompting.en.md) |
3131
| Frontend / daily coding | [Cursor](cursor/)[Prompt Engineering](common/prompting.en.md)[Scenarios](workflows/scenarios.en.md) |
3232
| Backend / refactoring / big projects | [Claude Code](claude-code/)[Task Decomposition](common/task-decomposition.en.md)[Scenarios](workflows/scenarios.en.md) |
3333
| Migrating from Copilot | [Copilot](copilot/)[Claude Code](claude-code/) (compare) → [Tool Selection](workflows/tool-selection.en.md) |

aider/README.en.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ cd /your/project
3838
aider
3939

4040
# Specify a model
41-
aider --model claude-3-5-sonnet
41+
aider --model claude-sonnet-4-5
4242

4343
# Use DeepSeek (cheaper)
4444
aider --model deepseek/deepseek-chat
@@ -116,7 +116,7 @@ aider --commit-prefix "[ai] "
116116

117117
```bash
118118
# Complex architecture design — use the strongest model
119-
aider --model claude-3-5-sonnet
119+
aider --model claude-sonnet-4-5
120120
/architect Design a microservices split plan
121121

122122
# Daily coding — use a cost-effective model
@@ -136,7 +136,7 @@ aider --model ollama/qwen2.5-coder
136136

137137
```yaml
138138
# .aider.conf.yml
139-
model: claude-3-5-sonnet
139+
model: claude-sonnet-4-5
140140
auto-commits: true
141141
auto-lint: true
142142
auto-test: true

aider/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ cd /your/project
3636
aider
3737

3838
# 指定模型
39-
aider --model claude-3-5-sonnet
39+
aider --model claude-sonnet-4-5
4040

4141
# 用 DeepSeek(便宜)
4242
aider --model deepseek/deepseek-chat
@@ -114,7 +114,7 @@ aider --commit-prefix "[ai] "
114114

115115
```bash
116116
# 复杂架构设计 — 用最强模型
117-
aider --model claude-3-5-sonnet
117+
aider --model claude-sonnet-4-5
118118
/architect 设计微服务拆分方案
119119

120120
# 日常编码 — 用性价比模型
@@ -134,7 +134,7 @@ aider --model ollama/qwen2.5-coder
134134

135135
```yaml
136136
# .aider.conf.yml
137-
model: claude-3-5-sonnet
137+
model: claude-sonnet-4-5
138138
auto-commits: true
139139
auto-lint: true
140140
auto-test: true

aider/templates/aider.conf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# 复制到项目根目录,命名为 .aider.conf.yml
33

44
# 模型配置
5-
model: claude-3-5-sonnet
5+
model: claude-sonnet-4-5
66
# 其他选择:
77
# model: deepseek/deepseek-chat # 便宜,适合日常编码
88
# model: ollama/qwen2.5-coder # 免费,需要本地跑 Ollama

cheatsheet.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ claude -p "task" --output-format json # Headless
7777
# Inside the session
7878
/compact # Compress context
7979
/plan # Enter plan mode
80-
Esc Esc # Roll back to checkpoint
80+
Esc # Interrupt current generation
8181
```
8282

8383
### Cursor
@@ -141,7 +141,7 @@ Steering load modes:
141141
```bash
142142
# Install & run
143143
pip install aider-chat
144-
aider --model claude-3-5-sonnet
144+
aider --model claude-sonnet-4-5
145145
aider --model deepseek/deepseek-chat # Cheap
146146
aider --model ollama/qwen2.5-coder # Free, local
147147

cheatsheet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ claude -p "任务" --output-format json # headless 模式
7575
# 交互中
7676
/compact # 压缩上下文
7777
/plan # 进入 plan 模式
78-
Esc Esc # 回滚到 checkpoint
78+
Esc # 打断当前生成
7979
```
8080

8181
### Cursor
@@ -139,7 +139,7 @@ Steering 加载模式:
139139
```bash
140140
# 安装与启动
141141
pip install aider-chat
142-
aider --model claude-3-5-sonnet
142+
aider --model claude-sonnet-4-5
143143
aider --model deepseek/deepseek-chat # 便宜
144144
aider --model ollama/qwen2.5-coder # 本地免费
145145

pitfalls/aider.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ LLMs vary wildly in instruction-following. Same `/architect design a WebSocket n
8585
Tier in `.aider.conf.yml`:
8686

8787
```yaml
88-
model: claude-3-5-sonnet # Primary
88+
model: claude-sonnet-4-5 # Primary
8989
weak-model: deepseek/deepseek-chat # Weak tasks (commit messages, simple completion)
90-
editor-model: claude-3-5-haiku # Editor-mode completion
90+
editor-model: claude-haiku-4-5 # Editor-mode completion
9191
```
9292
9393
Or switch **by task type**:

pitfalls/aider.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ Aider 只把 `/add` 过的文件真正**读进上下文**。Map 模式会索引
8383
配置分层(`.aider.conf.yml`):
8484

8585
```yaml
86-
model: claude-3-5-sonnet # 主模型
86+
model: claude-sonnet-4-5 # 主模型
8787
weak-model: deepseek/deepseek-chat # 弱任务(commit message、简单补全)
88-
editor-model: claude-3-5-haiku # 编辑器补全
88+
editor-model: claude-haiku-4-5 # 编辑器补全
8989
```
9090
9191
或**按任务类型**切:

pitfalls/copilot.en.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,11 @@ Either standardize IDE team-wide, or accept JetBrains being a step behind.
185185

186186
**Symptom**
187187
- Copilot Free worked fine; one day completion latency spikes
188-
- Chat gets slow, "thinking..." for tens of seconds
189-
- No error, just slow, with dropped quality (like a downgraded model)
188+
- Chat requests queue or get outright rejected ("usage limit reached"-style messages)
189+
- Completions slow down, fewer suggestions
190190

191191
**Cause**
192-
Copilot Free has monthly caps and rate limits. Hitting them triggers **silent degradation**, not an explicit error. Enterprise users may hit org-level quotas similarly.
192+
Copilot Free has monthly completion and Chat quotas. As you approach them you get rate-limited; once exceeded, requests are rejected. The notification in VS Code isn't always prominent, so it's easy to miss. Enterprise users may hit org-level quotas similarly.
193193

194194
**Recovery**
195195
- GitHub Account → Copilot settings to check usage

0 commit comments

Comments
 (0)