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
@@ -36,6 +36,7 @@ MS-Agent is a lightweight framework designed to empower agents with autonomous e
36
36
-**Multi-Agent for general purpose**: Chat with agent with tool-calling capabilities based on MCP.
37
37
-**Deep Research**: To enable advanced capabilities for autonomous exploration and complex task execution.
38
38
-**Code Generation**: Supports code generation tasks with artifacts.
39
+
-**Agent Skills**: Implementation of [Anthropic-Agent-Skills](https://docs.claude.com/en/docs/agents-and-tools/agent-skills) Protocol.
39
40
-**Lightweight and Extensible**: Easy to extend and customize for various applications.
40
41
41
42
@@ -47,26 +48,32 @@ MS-Agent is a lightweight framework designed to empower agents with autonomous e
47
48
48
49
49
50
## 🎉 News
50
-
* 🚀Sep 22, 2025: Release MS-Agent v1.3.0, which includes the following updates:
51
+
52
+
* 🚀 Nov 07, 2025: Release MS-Agent v1.4.0, which includes the following updates:
53
+
- 🔥 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.
54
+
- 🔥 Add [Docs](https://ms-agent-en.readthedocs.io/en) and [中文文档](https://ms-agent.readthedocs.io/zh-cn)
55
+
- 🔥 Support Sandbox Framework [ms-enclave](https://github.com/modelscope/ms-enclave)
56
+
57
+
* 🚀 Sep 22, 2025: Release MS-Agent v1.3.0, which includes the following updates:
51
58
- 🔥 Support [Code Scratch](projects/code_scratch/README.md)
52
59
- Support `Memory` for building agents with long-term and short-term memory
53
60
- Enhance the DeepResearch workflow
54
61
- Support RAY for accelerating document information extraction
55
62
- Support Anthropic API format for LLMs
56
63
57
-
* 🚀Aug 28, 2025: Release MS-Agent v1.2.0, which includes the following updates:
64
+
* 🚀Aug 28, 2025: Release MS-Agent v1.2.0, which includes the following updates:
58
65
- DocResearch now supports pushing to `ModelScope`、`HuggingFace`、`GitHub` for easy sharing of research reports. Refer to [Doc Research](projects/doc_research/README.md) for more details.
59
66
- DocResearch now supports exporting the Markdown report to `HTML`、`PDF`、`PPTX` and `DOCX` formats, refer to [Doc Research](projects/doc_research/README.md) for more details.
60
67
- DocResearch now supports `TXT` file processing and file preprocessing, refer to [Doc Research](projects/doc_research/README.md) for more details.
61
68
62
-
* 🚀July 31, 2025: Release MS-Agent v1.1.0, which includes the following updates:
69
+
* 🚀July 31, 2025: Release MS-Agent v1.1.0, which includes the following updates:
63
70
- 🔥 Support [Doc Research](projects/doc_research/README.md), demo: [DocResearchStudio](https://modelscope.cn/studios/ms-agent/DocResearch)
64
71
- Add `General Web Search Engine` for Agentic Insight (DeepResearch)
65
72
- Add `Max Continuous Runs` for Agent chat with MCP.
66
73
67
-
* 🚀July 18, 2025: Release MS-Agent v1.0.0, improve the experience of Agent chat with MCP, and update the readme for [Agentic Insight](projects/deep_research/README.md).
74
+
* 🚀July 18, 2025: Release MS-Agent v1.0.0, improve the experience of Agent chat with MCP, and update the readme for [Agentic Insight](projects/deep_research/README.md).
68
75
69
-
* 🚀July 16, 2025: Release MS-Agent v1.0.0rc0, which includes the following updates:
76
+
* 🚀July 16, 2025: Release MS-Agent v1.0.0rc0, which includes the following updates:
70
77
- Support for Agent chat with MCP (Model Context Protocol)
71
78
- Support for Deep Research (Agentic Insight), refer to: [Report_Demo](projects/deep_research/examples/task_20250617a/report.md), [Script_Demo](projects/deep_research/run.py)
72
79
- Support for [MCP-Playground](https://modelscope.cn/mcp/playground)
@@ -138,7 +145,7 @@ pip install -e .
138
145
139
146
## Quickstart
140
147
141
-
### Agent chat
148
+
### Agent Chat
142
149
This project supports interaction with models via the MCP (Model Context Protocol). Below is a complete example showing
143
150
how to configure and run an LLMAgent with MCP support.
144
151
@@ -239,6 +246,59 @@ asyncio.run(main())
239
246
240
247
</details>
241
248
249
+
250
+
### Agent Skills
251
+
252
+
**MS-Agent Skills** is an **Implementation** of the [**Anthropic-Agent-Skills**](https://docs.claude.com/en/docs/agents-and-tools/agent-skills) protocol, enabling agents to autonomously explore and execute complex tasks by leveraging predefined or custom "skills".
253
+
254
+
255
+
#### Key Features
256
+
257
+
- 📜 **Standard Skill Protocol**: Fully compatible with the [Anthropic Skills](https://github.com/anthropics/skills) protocol
258
+
- 🧠 **Heuristic Context Loading**: Loads only necessary context—such as `References`, `Resources`, and `Scripts` on demand
259
+
- 🤖 **Autonomous Execution**: Agents autonomously analyze, plan, and decide which scripts and resources to execute based on skill definitions
260
+
- 🔍 **Skill Management**: Supports batch loading of skills and can automatically retrieve and discover relevant skills based on user input
261
+
- 🛡️ **Code Execution Environment**: Optional local direct code execution or secure sandboxed execution via [**ms-enclave**](https://github.com/modelscope/ms-enclave), with automatic dependency installation and environment isolation
262
+
- 📁 **Multi-file Type Support**: Supports documentation, scripts, and resource files
263
+
- 🧩 **Extensible Design**: The skill data structure is modularized, with implementations such as `SkillSchema` and `SkillContext` provided for easy extension and customization
264
+
265
+
266
+
#### Quick Start
267
+
268
+
> 💡 Note:
269
+
> 1. Before running the following examples, ensure that you have set the `OPENAI_API_KEY` and `OPENAI_BASE_URL` environment variables to access the required model APIs.
270
+
> 2. Agent Skills requires ms-agent >= 1.4.0
271
+
272
+
273
+
**Installation**:
274
+
275
+
```shell
276
+
pip install ms-agent
277
+
```
278
+
279
+
**Usage**:
280
+
281
+
> This example demonstrates how to configure and run an Agent Skill that generates generative art code based on p5.js flow fields.
282
+
283
+
284
+
Refer to: [Run Skills](projects/agent_skills/run.py)
For more details, please refer to [Deep Research](projects/deep_research/README.md).
283
345
284
346
<br>
@@ -352,10 +414,30 @@ For more details, refer to [Code Scratch](projects/code_scratch/README.md).
352
414
353
415
1. A news collection agent [ms-agent/newspaper](https://www.modelscope.cn/models/ms-agent/newspaper/summary)
354
416
417
+
418
+
## Roadmap
419
+
420
+
We are committed to continuously improving and expanding the MS-Agent framework to push the boundaries of large models and AI agents. Our future roadmap includes:
421
+
422
+
- [x] **Anthropic Agent Skills** - Full support for the [Anthropic-Agent-Skills](https://docs.claude.com/en/docs/agents-and-tools/agent-skills) protocol, enabling agents to autonomously explore and execute complex tasks using predefined or custom "skills".
423
+
- [ ] **FinResearch** – A financial deep-research agent dedicated to in-depth analysis and research in the finance domain.
424
+
- [ ] **Multimodal Agentic Search** – Supporting large-scale multimodal document retrieval and generation of search results combining text and images.
425
+
- [ ] 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.
426
+
- [ ] **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.
427
+
428
+
355
429
## License
356
430
357
431
This project is licensed under the [Apache License (Version 2.0)](https://github.com/modelscope/modelscope/blob/master/LICENSE).
358
432
359
433
## Star History
360
434
361
435
[](https://star-history.com/#modelscope/modelscope-agent&Date)
436
+
437
+
438
+
---
439
+
440
+
<p align="center">
441
+
<em> ❤️ Thanks for visiting ✨ MS-Agent !</em><br><br>
0 commit comments