update_agent_name
Rename an agent to a new role using the required 'Long Name:shortname' format. Assign agents updated identities as they evolve.
Instructions
Update an agent's name using the new naming convention.
Usage Examples: // Update an agent's name update_agent_name({ agentId: "DW1", newName: "Documentation Writer:dw1" })
// Change to a different role update_agent_name({ agentId: "ta1", newName: "Test Automation Engineer:tae1" })
Name Format Requirements:
Must include both long name and short name
Format: "Long Name:shortname"
Example: "Backend Developer:bd1"
Short names should be 2-4 characters
This allows agents to be reassigned to different roles as they grow and evolve.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agentId | Yes | Agent ID to update | |
| newName | Yes | New name in format "Long Name:shortname" |