Documentation Index
Fetch the complete documentation index at: https://docs.agentscope.io/llms.txt
Use this file to discover all available pages before exploring further.
Is AgentScope 2.0 compatible with 1.0?
Is AgentScope 2.0 compatible with 1.0?
No. AgentScope 2.0 is a breaking release that introduces a redesigned agent abstraction, a new event system, the workspace and permission systems, and many other new features. APIs are not source-compatible with 1.0, and there is no automatic migration path.We recommend upgrading to 2.0 for all new projects to benefit from the new capabilities. The 1.0 documentation remains available for existing users.
Does AgentScope support sandboxed execution?
Does AgentScope support sandboxed execution?
Yes. The workspace abstraction is AgentScope’s execution environment for agents and ships three implementations —
LocalWorkspace (host filesystem), DockerWorkspace (container), and E2BWorkspace (E2B cloud sandbox) — sharing the same interface so the same agent code runs against any backend. Workspaces also own MCP server lifecycles, skill management, and context offloading.See Workspace for the full overview, including how to plug a workspace into an Agent and the multi-tenant WorkspaceManager.Is there a frontend for AgentScope 2.0?
Is there a frontend for AgentScope 2.0?
Yes, on two layers:
- TypeScript SDK — install with
pnpm install @agentscope-ai/agentscope. It mirrors the PythonMsgandEventtypes so frontend code can consume agent streams without re-implementing the protocol. - Frontend UI — a ready-to-use web app for Agent Service, letting developers exercise their deployed agents without writing any UI code.
Will RAG and long-term memory return in 2.0?
Will RAG and long-term memory return in 2.0?
Yes. Both modules are being ported from 1.0 to the 2.0 architecture and will land in upcoming releases. Track the changelog and GitHub releases for availability.
Are there language bindings other than Python?
Are there language bindings other than Python?
Yes. AgentScope is available in three languages, each with its own repository:
- Python —
agentscope-ai/agentscope(this documentation) - TypeScript —
agentscope-ai/agentscope-typescript - Java —
agentscope-ai/agentscope-java