feat: 完善标准 Skill 包底座

- 标准化 SKILL.md、资源模型、校验规则与安全限额

- 支持流式内容存储和单、多 Skill ZIP 双向编解码
This commit is contained in:
2026-07-27 18:53:24 +08:00
parent 6fa93bd671
commit c48d9a9da6
53 changed files with 7809 additions and 666 deletions

14
pom.xml
View File

@@ -46,6 +46,8 @@
<kotlin.version>1.8.22</kotlin.version>
<opentelemetry.version>1.51.0</opentelemetry.version>
<agentscope.version>1.0.12</agentscope.version>
<snakeyaml.version>2.6</snakeyaml.version>
<commons-compress.version>1.28.0</commons-compress.version>
</properties>
@@ -114,6 +116,18 @@
<version>${junit.version}</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>${snakeyaml.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>${commons-compress.version}</version>
</dependency>
<!--easy-agents dependency management-->
<dependency>
<groupId>com.easyagents</groupId>