You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: web/src/content/agents/customizing-agents.mdx
+1-22Lines changed: 1 addition & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,28 +21,7 @@ Create specialized agents from scratch using TypeScript files in the `.agents/`
21
21
22
22
Agents adapt to your specific workflow and project needs.
23
23
24
-
Keep in mind you'll get the most value from agents if you treat them as context window managers. Design them to orchestrate and sequence work so the right files, facts, and decisions are in scope at each step. Break tasks into steps and build agents around controlling that flow — instead of trying to replicate human specialties.
| When to use | Complex multi-file changes needing coordination | Precise validation or localized refactors |
37
-
</MarkdownTable>
38
-
39
-
Design checklist (use this to shape agents around task breakdown and context control):
40
-
- Define the end state: what must be true when done?
41
-
- List concrete steps; group them into phases (plan → edit → verify)
42
-
- For each step: what files/data must be in context? how will you prove success?
43
-
- Decide which steps spawn subagents (reviewer, researcher, fixer) vs. inline logic
44
-
- Capture state and checkpoints so you can resume/recover deterministically
45
-
- Prefer small, surgical diffs; verify before moving to the next phase
24
+
Keep in mind you'll get the most value from agents if you treat them as context window managers. Design them to orchestrate and sequence work so the right files, facts, and decisions are in scope at each step. Break tasks into steps and build agents around controlling that flow instead of trying to replicate human specialties.
46
25
47
26
**Tip:** Use specialty reviewers as spawnable subagents that your context-manager agent calls at the right time in the workflow.
0 commit comments