+
Enable for agents
+
+ Installing adds the skill to the company library. Agents can only use it once it is enabled for them.
+
+
{
+ setSelectionTouched(true);
+ setSelectedAgentIds(next);
+ }}
+ showSelectionPreview={false}
+ emptyMessage="No agents in this company support skills yet."
+ isAgentDisabled={(agent) => {
+ const option = agent as AttachAgentOption;
+ return option.required || !option.supportsSkills;
+ }}
+ getDescription={(agent) => {
+ const option = agent as AttachAgentOption;
+ return `${option.adapterType}${option.required ? " · required" : ""}${!option.supportsSkills ? " · skills not supported" : ""}`;
+ }}
+ />
+
+ ) : null}
+