You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 🚀 Nov 07, 2025: Release MS-Agent v1.4.0, which includes the following updates:
65
68
- 🔥 We present [**MS-Agent Skills**](projects/agent_skills/README.md), an **Implementation** of [Anthropic-Agent-Skills](https://docs.claude.com/en/docs/agents-and-tools/agent-skills) Protocol.
66
69
- 🔥 Add [Docs](https://ms-agent-en.readthedocs.io/en) and [中文文档](https://ms-agent.readthedocs.io/zh-cn)
67
70
- 🔥 Support Sandbox Framework [ms-enclave](https://github.com/modelscope/ms-enclave)
68
71
69
72
* 🚀 Sep 22, 2025: Release MS-Agent v1.3.0, which includes the following updates:
70
-
- 🔥 Support [Code Scratch](projects/code_scratch/README.md)
73
+
- 🔥 Support [Code Scratch](projects/code_genesis/README.md)
71
74
- Support `Memory` for building agents with long-term and short-term memory
72
75
- Enhance the DeepResearch workflow
73
76
- Support RAY for accelerating document information extraction
@@ -408,7 +411,7 @@ This project provides a framework for **Code Scratch**, enabling agents to auton
408
411
Generate a complete ai workspace homepage with the following command:
409
412
410
413
```shell
411
-
PYTHONPATH=. openai_api_key=your-api-key openai_base_url=your-api-url python ms_agent/cli/cli.py run --config projects/code_scratch --query 'Build a comprehensive AI workspace homepage' --trust_remote_code true
414
+
PYTHONPATH=. openai_api_key=your-api-key openai_base_url=your-api-url python ms_agent/cli/cli.py run --config projects/code_genesis --query 'Build a comprehensive AI workspace homepage' --trust_remote_code true
412
415
```
413
416
414
417
The generated code will be output to the `output` folder in the current directory.
@@ -418,7 +421,7 @@ The generated code will be output to the `output` folder in the current director
418
421
- **Coding Phase**: Execute coding tasks in intelligent file groups → Generate complete code structure
@@ -546,7 +549,7 @@ We are committed to continuously improving and expanding the MS-Agent framework
546
549
- [ ] Improve stabilises
547
550
- [ ] **Multimodal Agentic Search** – Supporting large-scale multimodal document retrieval and generation of search results combining text and images.
548
551
- [ ] Enhanced **Agent Skills** – Providing a richer set of predefined skills and tools to expand agent capabilities and enabling multi-skill collaboration for complex task execution.
549
-
- [ ] **Agent-Workstation** - An unified WebUI with one-click local deployment support with combining all agent capabilities of MS-Agent, such as AgentChat, MCP, AgentSkills, DeepResearch, DocResearch, CodeScratch, etc.
552
+
- [ ] **Agent-Workstation** - An unified WebUI with one-click local deployment support with combining all agent capabilities of MS-Agent, such as AgentChat, MCP, AgentSkills, DeepResearch, DocResearch, CodeGenesis, etc.
Copy file name to clipboardExpand all lines: docs/en/Components/Config.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,9 @@
1
+
---
2
+
slug: Config
3
+
title: Config & Parameters
4
+
description: Ms-Agent Configuration & Parameters
5
+
---
6
+
1
7
# Config
2
8
3
9
MS-Agent uses a yaml file for configuration management, typically named `agent.yaml`, which allows different scenarios to read different configuration files. The specific fields contained in this file are:
@@ -98,7 +104,7 @@ tools:
98
104
- map_geo
99
105
```
100
106
101
-
For the complete list of supported tools and custom tools, please refer to [here](./工具.md)
107
+
For the complete list of supported tools and custom tools, please refer to [here](./Tools.md)
Copy file name to clipboardExpand all lines: docs/en/Components/LLMAgent.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,9 @@
1
+
---
2
+
slug: LLMAgent
3
+
title: LLMAgent for basic usage
4
+
description: Ms-Agent LLMAgent for basic usage
5
+
---
6
+
1
7
# LLM Agent
2
8
3
9
The basic agent class in MS-Agent is [LLMAgent](https://github.com/modelscope/ms-agent/blob/main/ms_agent/agent/llm_agent.py). MS-Agent's conversational capabilities and tool invocation are all handled through this class. The diagram is as follows:
@@ -81,4 +87,4 @@ In this case, agent.yaml will use your custom agent class instead of loading the
81
87
82
88
1. A basic agent.yaml: https://www.modelscope.cn/models/ms-agent/simple_agent
83
89
2. Agent with external code: https://www.modelscope.cn/models/ms-agent/simple_agent_code
84
-
3. Using callbacks to complete complex workflows: https://github.com/modelscope/ms-agent/tree/main/projects/code_scratch
90
+
3. Using callbacks to complete complex workflows: https://github.com/modelscope/ms-agent/tree/main/projects/code_genesis
Copy file name to clipboardExpand all lines: docs/en/Components/SupportedModels.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,9 @@
1
+
---
2
+
slug: SupportedModels
3
+
title: Supported Models
4
+
description: Ms-Agent Supported Models
5
+
---
6
+
1
7
# Supported Models
2
8
3
9
MS-Agent supports large model APIs with the standard OpenAI interface. In addition, to facilitate usage by different model providers, it also provides distinct configuration keys in YAML.
Copy file name to clipboardExpand all lines: docs/en/Components/Workflow.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,14 @@
1
+
---
2
+
slug: Workflow
3
+
title: Workflow
4
+
description: Ms-Agent Workflow
5
+
---
6
+
1
7
# Workflow
2
8
3
9
MS-Agent supports workflow execution. Workflows are also configured by yaml files. Workflows are composed of different Agents to complete more complex tasks. Currently, MS-Agent's workflow supports two types of Agents:
4
10
5
-
- LLMAgent: This Agent is introduced in [Basic Agent](./Basic%20Agent.md), which is a basic Agent loop that integrates LLM reasoning
11
+
- LLMAgent: This Agent is introduced in [Basic Agent](./LLMAgent.md), which is a basic Agent loop that integrates LLM reasoning
6
12
- CodeAgent: Contains only a run method, which is a pure code execution process that can provide custom code implementation
Copy file name to clipboardExpand all lines: docs/en/GetStarted/Introduction.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,17 @@
1
+
---
2
+
slug: Introduction
3
+
title: Introduction
4
+
description: Ms-Agent Introduction
5
+
---
6
+
1
7
# Quick Start
2
8
3
9
MS-Agent is the official Agent framework launched by the ModelScope community. This framework is committed to using a clear and simple universal capability framework to solve proprietary problems in several domains.
4
10
5
11
Currently, the domains we are exploring include:
6
12
7
13
- DeepResearch: Generate in-depth research reports in the scientific research field
8
-
-CodeScratch: Generate runnable software project code from requirements
14
+
-CodeGenesis: Generate runnable software project code from requirements
9
15
- General domain: MS-Agent adapts to general LLM conversation scenarios and is compatible with MCP tool calling
10
16
11
17
MS-Agent is also the backend agent framework for [mcp-playground](https://modelscope.cn/mcp/playground) on the ModelScope official website. If developers are interested in the above domains, or hope to learn Agent technology principles and conduct secondary development, welcome to use MS-Agent.
@@ -56,4 +62,4 @@ The above two examples have the same effect and both can conduct multi-turn conv
56
62
57
63
- A [more comprehensive example](https://github.com/modelscope/ms-agent/tree/main/examples)
0 commit comments