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
docs(agents): clarify design patterns between context-manager and specialty replicas; add design checklist and usage tips
Why: align agent docs with clarified architecture patterns and provide a practical checklist to guide task breakdown and orchestration.
🤖 Generated with Codebuff
Co-Authored-By: Codebuff <noreply@codebuff.com>
Copy file name to clipboardExpand all lines: web/src/content/agents/customizing-agents.mdx
+21-4Lines changed: 21 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,14 +21,29 @@ 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 see them as a means of managing your context window. Think about how you want to break down tasks and build your agents around that, as opposed to replicating engineering specialties.
25
-
26
-
Comparison: Context managers vs. specialty replicas
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.
0 commit comments