clearInvokedSkillsForAgent method

void clearInvokedSkillsForAgent(
  1. String agentId
)

Clear invoked skills for a specific agent.

Implementation

void clearInvokedSkillsForAgent(String agentId) {
  // In the full implementation this would be scoped by agent ID.
  _invokedSkills.clear();
}