/start-14-5.en
Lesson command
$ npx -y skills add minicoohei/ai-agent-camp --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/start-14-5.en
Context preview
What this command does when you run it.
Lesson command
Command definition
start-14-5.en.mddescription: "Lesson command"
chapter: "courses/aiagent/lesson03-core/module14-article-writing/chapter.yaml"
category: "lesson"
duration: "~30 min"
prerequisites: ["start-14-4"]
level: "intermediate"
tags: ["article", "proofreading"]
nonInteractiveMode: deferred
๐ Lesson 14-5: Proofreading - Proofreading Agent Review
๐ What You'll Do
Welcome to **Lesson 14-5: Proofreading - Proofreading Agent Review**!
| Item | Details | |------|---------| | Goal | Review the article from 5 perspectives using the proofreading agent and apply corrections | | Duration | ~30 min | | Skills Used | proofreading-agent | | Prerequisites | Gemini API key configured, Lesson 14-4 (illustrated draft) complete | | Course Page | Refer to [Module 14: Article Writing](https://ai-agent.camp/en/course/module-14) in parallel |
**Session flow:** 1. Understand the 5 proofreading Sweeps (perspectives) 2. Run all Sweeps with proofreading-agent 3. Review results and apply corrections
By the end of this session, an article draft proofread from 5 perspectives will be complete.
> **๐ก Hint**: If the AI response stops midway, type "please continue" or "it stopped" to resume. Responses may pause depending on the tool, but this is not a malfunction.
---
๐ฏ Readiness Check
First, let's confirm everything is ready.
**AskQuestion settings:**
{
"title": "๐ฏ Pre-Session Check",
"questions": [{
"id": "readiness",
"prompt": "Are you ready?",
"options": [
{"id": "ready", "label": "Ready! Let's start"},
{"id": "check_prereq", "label": "I want to check the prerequisites"},
{"id": "view_html", "label": "I want to see the course page first"},
{"id": "different_lesson", "label": "I want to go to a different lesson"}
]
}]
}(ready โ Proceed to Step 1) (check_prereq โ Run prerequisite check) (view_html โ Show course page path) (different_lesson โ Display module list)
---
๐ Step 1: Understand the 5 Proofreading Sweeps
In Codex, you typically select from choices in chat: "Continue / Review examples / Skip".
**AskQuestion settings example:**
{
"title": "๐ Step 1: Understand the 5 Proofreading Perspectives",
"questions": [{
"id": "step_action",
"prompt": "What would you like to do with this step?",
"options": [
{"id": "practice", "label": "Continue"},
{"id": "review", "label": "Just review examples"},
{"id": "skip", "label": "Skip"}
]
}]
}**Post-selection instructions (example)**: Input:
Explain the 5 Sweeps (review perspectives) used by the proofreading agent.
1. Accuracy Sweep: Accuracy of facts, data, and proper nouns
2. Grammar Sweep: Detection of grammar errors, punctuation, and typos
3. Consistency Sweep: Terminology unification, notation variations, and style consistency
4. Readability Sweep: Sentence length, structural complexity, and overuse of technical terms
5. Structure Sweep: Logical flow, paragraph length, and balance between introduction and conclusion
Explain the specific check items and common flagged patterns for each Sweep.
**Expected result**: Detailed check items for the 5 Sweeps and common flagged examples are explained.
---
๐ Step 2: Run All Sweeps with proofreading-agent
In Codex, you typically select from choices in chat: "Continue / Review examples / Skip".
**AskQuestion settings example:**
{
"title": "๐ Step 2: Run Proofreading",
"questions": [{
"id": "step_action",
"prompt": "What would you like to do with this step?",
"options": [
{"id": "practice", "label": "Continue"},
{"id": "review", "label": "Just review examples"},
{"id": "skip", "label": "Skip"}
]
}]
}**Post-selection instructions (example)**: Input:
Use the proofreading-agent skill to proofread the article draft.
Execution command:
python skills/proofreading-agent/scripts/proofreading_agent.py --input output/article-14-4-with-images.md --output output/article-14-5-review.json
Target file: output/article-14-4-with-images.md
Run all 5 Sweeps:
1. Accuracy Sweep
2. Grammar Sweep
3. Consistency Sweep
4. Readability Sweep
5. Structure Sweep
Output the following for each finding:
- Location (line number and text)
- Issue type (Sweep name)
- Severity (High/Medium/Low)
- Suggested correction
Save the results to output/article-14-5-review.json.
**Expected result**: Proofreading results from all 5 Sweeps are output in JSON format, with all findings listed.
---
๐ Step 3: Review Results and Apply Corrections
In Codex, you typically select from choices in chat to choose the correction method.
**AskQuestion settings example:**
{
"title": "๐ Step 3: Apply Corrections",
"questions": [{
"id": "apply_method",
"prompt": "How would you like to apply corrections?",
"options": [
{"id": "auto_all", "label": "Auto-apply all corrections"},
{"id": "one_by_one", "label": "Review and apply one at a time"},
{"id": "summary_only", "label": "Just review the summary"}
]
}]
}**If "Auto-apply all corrections":** Input:
Apply all findings from output/article-14-5-review.json to the article.
Target file: output/article-14-4-with-images.md
Corrected file: output/article-14-5-proofread.md
Also output a summary of corrections:
- Number of corrections (by Sweep)
- Breakdown by severity
- Main corrections made
**If "Review and apply one at a time":**
Display findings from output/article-14-5-review.json one at a time in order of severity.
Allow choosing "Apply/Skip/Modify correction" for each finding.
**If "Just review the summary":**
Display the summary of proofreading results from output/article-14-5-review.json.
Show the number of findings by Sweep and list only "High" severity findings.
**Expected result**: Proofreading corrections are applied to the article, and the corrected draft is saved.
---
โ ๏ธ Common Issues and Solutions
In Codex, you typically pr
Read more
description: "Lesson command" chapter: "courses/aiagent/lesson03-core/module14-article-writing/chapter.yaml" category: "lesson" duration: "~30 min" prerequisites: ["start-14-4"] level: "intermediate" tags: ["article", "proofreading"] nonInteractiveMode: deferred
๐ Lesson 14-5: Proofreading - Proofreading Agent Review
๐ What You'll Do
Welcome to **Lesson 14-5: Proofreading - Proofreading Agent Review**!
| Item | Details | |------|---------| | Goal | Review the article from 5 perspectives using the proofreading agent and apply corrections | | Duration | ~30 min | | Skills Used | proofreading-agent | | Prerequisites | Gemini API key configured, Lesson 14-4 (illustrated draft) complete | | Course Page | Refer to [Module 14: Article Writing](https://ai-agent.camp/en/course/module-14) in parallel |
**Session flow:** 1. Understand the 5 proofreading Sweeps (perspectives) 2. Run all Sweeps with proofreading-agent 3. Review results and apply corrections
By the end of this session, an article draft proofread from 5 perspectives will be complete.
> **๐ก Hint**: If the AI response stops midway, type "please continue" or "it stopped" to resume. Responses may pause depending on the tool, but this is not a malfunction.
---
๐ฏ Readiness Check
First, let's confirm everything is ready.
**AskQuestion settings:**
{
"title": "๐ฏ Pre-Session Check",
"questions": [{
"id": "readiness",
"prompt": "Are you ready?",
"options": [
{"id": "ready", "label": "Ready! Let's start"},
{"id": "check_prereq", "label": "I want to check the prerequisites"},
{"id": "view_html", "label": "I want to see the course page first"},
{"id": "different_lesson", "label": "I want to go to a different lesson"}
]
}]
}(ready โ Proceed to Step 1) (check_prereq โ Run prerequisite check) (view_html โ Show course page path) (different_lesson โ Display module list)
---
๐ Step 1: Understand the 5 Proofreading Sweeps
In Codex, you typically select from choices in chat: "Continue / Review examples / Skip".
**AskQuestion settings example:**
{
"title": "๐ Step 1: Understand the 5 Proofreading Perspectives",
"questions": [{
"id": "step_action",
"prompt": "What would you like to do with this step?",
"options": [
{"id": "practice", "label": "Continue"},
{"id": "review", "label": "Just review examples"},
{"id": "skip", "label": "Skip"}
]
}]
}**Post-selection instructions (example)**: Input:
Explain the 5 Sweeps (review perspectives) used by the proofreading agent. 1. Accuracy Sweep: Accuracy of facts, data, and proper nouns 2. Grammar Sweep: Detection of grammar errors, punctuation, and typos 3. Consistency Sweep: Terminology unification, notation variations, and style consistency 4. Readability Sweep: Sentence length, structural complexity, and overuse of technical terms 5. Structure Sweep: Logical flow, paragraph length, and balance between introduction and conclusion Explain the specific check items and common flagged patterns for each Sweep.
**Expected result**: Detailed check items for the 5 Sweeps and common flagged examples are explained.
---
๐ Step 2: Run All Sweeps with proofreading-agent
In Codex, you typically select from choices in chat: "Continue / Review examples / Skip".
**AskQuestion settings example:**
{
"title": "๐ Step 2: Run Proofreading",
"questions": [{
"id": "step_action",
"prompt": "What would you like to do with this step?",
"options": [
{"id": "practice", "label": "Continue"},
{"id": "review", "label": "Just review examples"},
{"id": "skip", "label": "Skip"}
]
}]
}**Post-selection instructions (example)**: Input:
Use the proofreading-agent skill to proofread the article draft. Execution command: python skills/proofreading-agent/scripts/proofreading_agent.py --input output/article-14-4-with-images.md --output output/article-14-5-review.json Target file: output/article-14-4-with-images.md Run all 5 Sweeps: 1. Accuracy Sweep 2. Grammar Sweep 3. Consistency Sweep 4. Readability Sweep 5. Structure Sweep Output the following for each finding: - Location (line number and text) - Issue type (Sweep name) - Severity (High/Medium/Low) - Suggested correction Save the results to output/article-14-5-review.json.
**Expected result**: Proofreading results from all 5 Sweeps are output in JSON format, with all findings listed.
---
๐ Step 3: Review Results and Apply Corrections
In Codex, you typically select from choices in chat to choose the correction method.
**AskQuestion settings example:**
{
"title": "๐ Step 3: Apply Corrections",
"questions": [{
"id": "apply_method",
"prompt": "How would you like to apply corrections?",
"options": [
{"id": "auto_all", "label": "Auto-apply all corrections"},
{"id": "one_by_one", "label": "Review and apply one at a time"},
{"id": "summary_only", "label": "Just review the summary"}
]
}]
}**If "Auto-apply all corrections":** Input:
Apply all findings from output/article-14-5-review.json to the article. Target file: output/article-14-4-with-images.md Corrected file: output/article-14-5-proofread.md Also output a summary of corrections: - Number of corrections (by Sweep) - Breakdown by severity - Main corrections made
**If "Review and apply one at a time":**
Display findings from output/article-14-5-review.json one at a time in order of severity. Allow choosing "Apply/Skip/Modify correction" for each finding.
**If "Just review the summary":**
Display the summary of proofreading results from output/article-14-5-review.json. Show the number of findings by Sweep and list only "High" severity findings.
**Expected result**: Proofreading corrections are applied to the article, and the corrected draft is saved.
---
โ ๏ธ Common Issues and Solutions
In Codex, you typically pr
AI Agent Training for Non-Engineers - Complete Guide to Claude Code / Cursor / Codex ### โ ๏ธ Before you clone Official repository (maintained by the authors): Running AI agents from this repo grants them shell, file-write, and external-API permissions on your
Other commands on ai-agent-camp.
- /check-setup.en
Top-level alias โ see lesson/check-setup.en.md for the full body.
Open command - /check-setup.es
Alias de nivel superior โ el cuerpo completo estรก en lesson/check-setup.es.md.
Open command - /check-setup
Top-level alias โ see lesson/check-setup.md for the full body.
Open command - /check-security.en
Lesson command
Open command - /check-security.es
Lesson command
Open command - /check-security
Lesson command
Open command

