This repository contains the official documentation for AgentScope, a production-ready, multi-agent framework for building LLM-empowered agent applications. The docs site is built with Mintlify.
AgentScope provides a simple yet efficient way to build LLM-empowered agent applications, with built-in support for:
- Multi-agent orchestration
- Multiple model providers (DashScope, Gemini, OpenAI, Anthropic, Ollama)
- Memory (short-term and long-term)
- Tools and RAG
- Observability and evaluation
- Node.js version 19 or higher
Install the Mintlify CLI:
npm i -g mintStart the local development server at the root of this repository (where docs.json is located):
mint devView your local preview at http://localhost:3000.
.
├── basic-concepts/ # Core AgentScope concepts (msg, agent, model, memory, tool)
├── building-blocks/ # Advanced building blocks
├── tutorial/ # Step-by-step tutorials
├── out-of-box-agents/ # Pre-built agents
├── api-reference/ # API documentation
├── observe-and-evaluate/ # Monitoring and evaluation
├── tune-agent/ # Agent tuning guides
├── deploy-and-serve/ # Deployment options
├── essentials/ # Documentation components
├── others/ # FAQ and additional resources
└── docs.json # Mintlify navigation config
When adding or updating documentation:
- Place
.mdxfiles in the appropriate directory - Update
docs.jsonto include new pages in the navigation - Start every page with YAML frontmatter (
titleanddescription) - Follow the writing style guidelines in this repo
- Preview changes locally before submitting a PR
- Dev server not running: Run
mint updateto get the latest CLI version. - Page shows 404: Ensure you are running in the folder containing
docs.json.