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: README.md
+46-1Lines changed: 46 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@ for task in real_world_tasks:
125
125
126
126
## How does Agentic Context Engine (ACE) work?
127
127
128
-
ACE is an implementation **Agentic Context Engineering (ACE)** from the research paper: [Agentic Context Engineering: Evolving Contexts for Self-Improving Language Models](https://arxiv.org/abs/2510.04618)
128
+
ACE is an implementation of **Agentic Context Engineering (ACE)** from the research paper: [Agentic Context Engineering: Evolving Contexts for Self-Improving Language Models](https://arxiv.org/abs/2510.04618)
129
129
130
130
131
131
ACE uses three specialized roles that work together:
@@ -159,6 +159,51 @@ flowchart LR
159
159
160
160
---
161
161
162
+
## How does Agentic Context Engine (ACE) work?
163
+
164
+
ACE uses three specialized roles that work together:
165
+
166
+
1.**🎯 Generator** - Executes tasks using learned strategies from the playbook
167
+
2.**🔍 Reflector** - Analyzes what worked and what didn't after each execution
168
+
3.**📝 Curator** - Updates the playbook with new strategies based on reflection
169
+
170
+
The magic happens in the **Playbook**—a living document of strategies that evolves with experience.
171
+
172
+
### The Learning Loop
173
+
174
+
Task → Execute → Reflect → Curate → Playbook → Better Next Time ↑ │ └──────────────────────────────────────────────────────┘
175
+
176
+
Each execution teaches your agent:
177
+
178
+
-**✅ Successes** → Extract patterns that work
179
+
-**❌ Failures** → Learn what to avoid
180
+
-**🔧 Tool usage** → Discover which tools work best for which tasks
181
+
-**🎯 Edge cases** → Remember rare scenarios and how to handle them
182
+
183
+
**Key innovation:** All learning happens **in context** through incremental updates—no fine-tuning, no training data, and complete transparency into what your agent learned.
0 commit comments