Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ Add the following dependency to your `pom.xml`:
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>spring-boot-starter-runtime-a2a</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>

<!-- Add AgentScope Agent adapter dependency -->
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-agentscope</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>spring-boot-starter-runtime-a2a</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>

<!-- Add AgentScope Agent adapter dependency -->
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-agentscope</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion agents/agentscope/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-core</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>

<dependency>
Expand Down
6 changes: 6 additions & 0 deletions cookbook/en/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## v1.0.1

### Fixed
- Fixed cross domain configuration issue using AgentApp
- Added read-write zero copy mounting support for sandbox file systems

## v1.0.0

AgentScope Runtime Java v1.0 builds upon a solid foundation of efficient agent deployment and secure sandbox execution, introducing a unified "Agent as API" development experience that covers the complete agent lifecycle from local development to production deployment, and extends support for more sandbox types, protocol compatibility, and a richer built-in toolset.
Expand Down
6 changes: 6 additions & 0 deletions cookbook/zh/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## v1.0.1

### Fixed
- 修复了使用 AgentApp 的跨域配置问题
- 为沙箱文件系统添加了可读写的零拷贝挂载支持

## v1.0.0

AgentScope Runtime Java v1.0 在高效智能体部署与安全沙箱执行的坚实基础上,推出了统一的 “Agent 作为 API” 开发体验,覆盖完整智能体从本地开发到生产部署的生命周期,并扩展了更多沙箱类型、协议兼容性与更丰富的内置工具集。
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>

<artifactId>agentscope-runtime-core</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<packaging>jar</packaging>
<name>AgentScope Runtime Core</name>
<description>Java Implementation for AgentScope Runtime</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ public ContainerModel createFromPool(SandboxType sandboxType, String userID, Str
requestData.put("labels", labels);
Object result = remoteHttpClient.makeRequest(
RequestMethod.POST,
"/createFromPool",
"/sandbox/createFromPool",
requestData,
"data"
);
Expand Down Expand Up @@ -383,7 +383,7 @@ public ContainerModel createContainer(SandboxType sandboxType, String mountDir,
requestData.put("labels", labels);
Object result = remoteHttpClient.makeRequest(
RequestMethod.POST,
"/createContainer",
"/sandbox/createContainer",
requestData,
"data"
);
Expand Down Expand Up @@ -666,7 +666,7 @@ public void startSandbox(SandboxType sandboxType, String userID, String sessionI
requestData.put("sessionID", sessionID);
remoteHttpClient.makeRequest(
RequestMethod.POST,
"/startSandbox",
"/sandbox/startSandbox",
requestData,
"data"
);
Expand Down Expand Up @@ -701,7 +701,7 @@ public void stopSandbox(SandboxType sandboxType, String userID, String sessionID
requestData.put("sessionID", sessionID);
remoteHttpClient.makeRequest(
RequestMethod.POST,
"/stopSandbox",
"/sandbox/stopSandbox",
requestData,
"data"
);
Expand Down Expand Up @@ -796,7 +796,7 @@ public String getSandboxStatus(SandboxType sandboxType, String userID, String se
requestData.put("sessionID", sessionID);
Object result = remoteHttpClient.makeRequest(
RequestMethod.POST,
"/getSandboxStatus",
"/sandbox/getSandboxStatus",
requestData,
"data"
);
Expand Down Expand Up @@ -844,7 +844,7 @@ public ContainerModel getInfo(String identity) {
requestData.put("identity", identity);
Object result = remoteHttpClient.makeRequest(
RequestMethod.POST,
"/getInfo",
"/sandbox/getInfo",
requestData,
"data"
);
Expand Down Expand Up @@ -900,7 +900,7 @@ public boolean release(String identity) {
requestData.put("identity", identity);
Object result = remoteHttpClient.makeRequest(
RequestMethod.POST,
"/release",
"/sandbox/release",
requestData,
"data"
);
Expand Down Expand Up @@ -1086,7 +1086,7 @@ public Map<String, Object> listTools(String sandboxId, String userId, String ses
requestData.put("toolType", toolType);
Object result = remoteHttpClient.makeRequest(
RequestMethod.POST,
"/listTools",
"/sandbox/listTools",
requestData,
"data"
);
Expand Down Expand Up @@ -1118,7 +1118,7 @@ public String callTool(String sandboxId, String userId, String sessionId, String
requestData.put("arguments", arguments);
Object result = remoteHttpClient.makeRequest(
RequestMethod.POST,
"/callTool",
"/sandbox/callTool",
requestData,
"data"
);
Expand Down Expand Up @@ -1146,7 +1146,7 @@ public Map<String, Object> addMcpServers(String sandboxId, String userId, String
requestData.put("overwrite", overwrite);
Object result = remoteHttpClient.makeRequest(
RequestMethod.POST,
"/addMcpServers",
"/sandbox/addMcpServers",
requestData,
"data"
);
Expand Down
2 changes: 1 addition & 1 deletion examples/browser_use_fullstack_runtime/backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<groupId>io.agentscope</groupId>
<artifactId>browser-agent-backend</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<name>Example::Browser Use Backend</name>
<description>Java backend for AgentScope browser use demo</description>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<groupId>io.agentscope</groupId>
<artifactId>agentscope_use_example</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<name>Example::AgentScope Basic</name>
<description>Java backend for AgentScope Basic Usage</description>

Expand All @@ -44,13 +44,13 @@
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-agentscope</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>

<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-web</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
<!-- Logging -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<groupId>io.agentscope</groupId>
<artifactId>custom_sandbox_example</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<name>Example::AgentScope Basic</name>
<description>Java backend for AgentScope Basic Usage</description>

Expand All @@ -44,13 +44,13 @@
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-agentscope</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>

<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-web</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>

<!-- Logging -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime</artifactId>
<version>1.0.0</version>
<relativePath>../../../pom.xml</relativePath>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.0</version>
<relativePath/>
</parent>

<artifactId>agentscope_use_rocketmq_client_example</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 1999-2025 Alibaba Group Holding Ltd.
* Copyright 2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime</artifactId>
<version>1.0.0</version>
<relativePath>../../../pom.xml</relativePath>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.0</version>
<relativePath/>
</parent>

<artifactId>agentscope_use_rocketmq_server_example</artifactId>
Expand All @@ -38,13 +38,13 @@
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-agentscope</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>

<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-web</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>

<!-- Logging -->
Expand Down
4 changes: 2 additions & 2 deletions examples/simple_sandbox_tool_example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<groupId>com.example</groupId>
<artifactId>agentscope-examples-simple</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<name>AgentScope Spring MVC Demo</name>
<description>AgentScope simple sample project using Spring MVC</description>

Expand Down Expand Up @@ -43,7 +43,7 @@
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-agentscope</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions examples/structured_sandbox_tool_example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<groupId>com.example</groupId>
<artifactId>agentscope-examples-structured</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<name>AgentScope Spring MVC Demo</name>
<description>AgentScope sample project using Spring MVC</description>

Expand Down Expand Up @@ -43,7 +43,7 @@
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-agentscope</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion maven_plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</parent>

<artifactId>deployer-maven-plugin</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<packaging>maven-plugin</packaging>

<name>AgentScope Deployer Maven Plugin</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
</scm>

<properties>
<revision>1.0.0</revision>
<revision>1.0.1</revision>

<a2a-sdk.version>0.3.2.Final</a2a-sdk.version>
<spring-boot.version>3.4.5</spring-boot.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@


@RestController
@RequestMapping("/")
@RequestMapping("/sandbox")
public class SandboxManagerController {

private static final Logger logger = Logger.getLogger(SandboxManagerController.class.getName());
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* Copyright 2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package io.agentscope.runtime.protocol.a2a;

import java.nio.charset.StandardCharsets;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* Copyright 2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package io.agentscope.runtime.protocol.a2a.controller;

import java.nio.charset.StandardCharsets;
Expand Down
Loading