feat: promote Agent Skills from experimental to stable

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
tanzhenxin 2026-02-06 13:04:08 +08:00
parent 139e621410
commit a4ffc6eb24
28 changed files with 196 additions and 341 deletions

View file

@ -57,10 +57,6 @@ public class TransportOptions implements Cloneable {
* Whether to include partial messages in responses.
*/
private Boolean includePartialMessages;
/**
* Whether to enable skills.
*/
private Boolean skillsEnable;
/**
* Timeout for individual turns.
*/
@ -298,26 +294,6 @@ public class TransportOptions implements Cloneable {
return this;
}
/**
* Gets whether skills are enabled.
*
* @return Whether skills are enabled
*/
public Boolean getSkillsEnable() {
return skillsEnable;
}
/**
* Sets whether skills are enabled.
*
* @param skillsEnable Whether skills are enabled
* @return This instance for method chaining
*/
public TransportOptions setSkillsEnable(Boolean skillsEnable) {
this.skillsEnable = skillsEnable;
return this;
}
/**
* Gets the turn timeout.
*

View file

@ -107,10 +107,6 @@ class TransportOptionsAdapter {
args.add("--include-partial-messages");
}
if (transportOptions.getSkillsEnable() != null && transportOptions.getSkillsEnable()) {
args.add("--experimental-skills");
}
if (StringUtils.isNotBlank(transportOptions.getResumeSessionId())) {
args.add("--resume");
args.add(transportOptions.getResumeSessionId());