Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ public class Developer extends AutonomousAgent {
@Override
public AgentDefinition definition() {
return define()
.goal("Implement features with clean, tested code.")
.goal(
"Implement features with clean, tested code. "
+ "Coordinate with teammates when your work depends on or affects "
+ "their tasks — agree on shared contracts before implementing.")
Comment on lines +15 to +17
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can read better as a multi-line text block

.capability(TaskAcceptance.of(DeveloperTasks.IMPLEMENT))
.tools(new CodeTools());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ public class ProjectLead extends AutonomousAgent {
@Override
public AgentDefinition definition() {
return define()
.goal("Deliver completed software projects with all features implemented and tested.")
.goal(
"Deliver completed software projects with all features implemented and tested. "
+ "Message team members directly when their tasks have dependencies or "
+ "shared interfaces that require coordination before implementation.")
.capability(TaskAcceptance.of(ProjectTasks.PLAN))
.capability(TeamLeadership.of(TeamMember.of(Developer.class).maxInstances(3)));
}
Expand Down
Loading