Skip to content

Commit 81ce645

Browse files
authored
chore: better awaiter description (#12901)
1 parent 52aa49d commit 81ce645

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

codex-rs/core/src/agent/role.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,13 +190,15 @@ Rules:
190190
(
191191
"awaiter".to_string(),
192192
AgentRoleConfig {
193-
description: Some(r#"Use an `awaiter` agent EVERY TIME you must run a command that might take some time.
193+
description: Some(r#"Use an `awaiter` agent EVERY TIME you must run a command that might take some very long time.
194194
This includes, but not only:
195195
* testing
196196
* monitoring of a long running process
197197
* explicit ask to wait for something
198198
199-
When YOU wait for the `awaiter` agent to be done, use the largest possible timeout."#.to_string()),
199+
When YOU wait for the `awaiter` agent to be done, use the largest possible timeout.
200+
Be patient with the `awaiter`.
201+
Close the awaiter when you're done with it."#.to_string()),
200202
config_file: Some("awaiter.toml".to_string().parse().unwrap_or_default()),
201203
}
202204
)

0 commit comments

Comments
 (0)