Skip to content

Commit aa66c15

Browse files
add agent skills in readme
1 parent e347ba0 commit aa66c15

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,40 @@ asyncio.run(main())
268268
</details>
269269
270270
271+
### Agent Skills
272+
273+
The **MS-Agent Skill Module** is **Implementation** of [Anthropic-Agent-Skills](https://platform.claude.com/docs/en/agents-and-tools/agent-skills) Protocol.
274+
275+
#### 🔍 Intelligent Skill Retrieval
276+
- **Hybrid Search**: Combines FAISS dense retrieval with BM25 sparse retrieval
277+
- **LLM-based Filtering**: Uses LLM to filter and validate skill relevance
278+
- **Query Analysis**: Automatically determines if skills are needed for a query
279+
280+
#### 📊 DAG-based Execution
281+
- **Dependency Management**: Builds execution DAG based on skill dependencies
282+
- **Parallel Execution**: Runs independent skills concurrently
283+
- **Input/Output Linking**: Automatically passes outputs between dependent skills
284+
285+
#### 🧠 Progressive Skill Analysis
286+
- **Two-phase Analysis**: Plan first, then load resources
287+
- **Incremental Loading**: Only loads required scripts/references/resources
288+
- **Context Optimization**: Minimizes token usage while maximizing understanding
289+
- **Auto Bug Fixing**: Analyzes errors and attempts automatic fixes
290+
291+
#### 🔒 Secure Execution Environment
292+
- **Docker Sandbox**: Isolated execution using [ms-enclave](https://github.com/modelscope/ms-enclave) containers
293+
- **Local Execution**: Controlled local execution with RCE prevention
294+
- **Security Checks**: Pattern-based detection of dangerous code
295+
296+
#### 🔄 Self-Reflection & Retry
297+
- **Error Analysis**: LLM-based analysis of execution failures
298+
- **Auto-Fix**: Attempts to fix code based on error messages
299+
- **Configurable Retries**: Up to N retry attempts with fixes
300+
301+
302+
For more details, please refer to [**MS-Agent Skills**](ms_agent/skill/README.md).
303+
304+
271305
### Agentic Insight
272306
273307
#### - Lightweight, Efficient, and Extensible Multi-modal Deep Research Framework

0 commit comments

Comments
 (0)