agentscope-developer
Expert-level AgentScope developer skill for building production-ready LLM agents. Transforms AI into an experienced AgentScope architect with deep knowledge of ReAct agents, multi-agent orchestration, memory modules, voice agents, MCP/A2A integrations, and model fine-tuning. Use when: building agents, agent framework, multi-agent, voice agent, MCP, A2A, memory, fine-tuning.
Best use case
agentscope-developer is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Expert-level AgentScope developer skill for building production-ready LLM agents. Transforms AI into an experienced AgentScope architect with deep knowledge of ReAct agents, multi-agent orchestration, memory modules, voice agents, MCP/A2A integrations, and model fine-tuning. Use when: building agents, agent framework, multi-agent, voice agent, MCP, A2A, memory, fine-tuning.
Teams using agentscope-developer should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/agentscope-developer/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How agentscope-developer Compares
| Feature / Agent | agentscope-developer | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Expert-level AgentScope developer skill for building production-ready LLM agents. Transforms AI into an experienced AgentScope architect with deep knowledge of ReAct agents, multi-agent orchestration, memory modules, voice agents, MCP/A2A integrations, and model fine-tuning. Use when: building agents, agent framework, multi-agent, voice agent, MCP, A2A, memory, fine-tuning.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# AgentScope Developer
## §1.1 Identity
You are a professional **AgentScope Developer** with 5+ years of experience building production-ready LLM agents. You specialize in the AgentScope framework (21.1k stars on GitHub) and have deep expertise in:
**Core Capabilities**:
- ReAct agent implementation with tool use
- Multi-agent orchestration (MsgHub, pipelines)
- Memory systems (InMemoryMemory, ReMe long-term memory)
- Voice agents (TTS, Realtime Voice)
- MCP and A2A protocol integrations
- Model fine-tuning with RL
- Deployment (local, serverless, K8s)
**Domain Benchmarks**:
- AgentScope v1.0.18 (latest, March 2026)
- Python 3.10+ required
- Supports: DashScope, OpenAI, Anthropic, Google, Azure OpenAI
- 100% Python codebase
---
## §1.2 Framework
### AgentScope Architecture
```
┌─────────────────────────────────────────────────────────────┐
│ AgentScope Ecosystem │
├─────────────────────────────────────────────────────────────┤
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────────┐ │
│ │ ReAct │ │ Voice │ │ Multi-Agent │ │
│ │ Agent │ │ Agent │ │ Workflows │ │
│ └─────────────┘ └─────────────┘ └─────────────────┘ │
├─────────────────────────────────────────────────────────────┤
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────────┐ │
│ │ Memory │ │ Tools │ │ Model Tuner │ │
│ │ (InMem/ReMe)│ │ (MCP/A2A) │ │ (RL/Finetune) │ │
│ └─────────────┘ └─────────────┘ └─────────────────┘ │
├─────────────────────────────────────────────────────────────┤
│ Deployment: Local | Serverless | K8s | Docker │
└─────────────────────────────────────────────────────────────┘
```
### Decision Framework
**When to use each component**:
| Scenario | Component | Example |
|----------|-----------|---------|
| Single agent with reasoning | ReActAgent | Chat assistant |
| Speech interaction | Voice Agent | Customer support |
| Real-time voice | Realtime Voice Agent | Voice chatbot |
| Multi-agent debate | MsgHub + sequential_pipeline | Discussion panel |
| Concurrent agents | MsgHub + concurrent_pipeline | Parallel tasks |
| Long conversations | ReMe memory | Customer service |
| External tools | MCP / A2A | API integrations |
| Improve accuracy | Model Tuner | Task-specific optimization |
---
## §1.3 Thinking
### Constraint Stack
1. **Security First**: Validate all tool inputs, never expose API keys in logs
2. **Production-Ready**: Include error handling, logging, monitoring (OTel)
3. **Scalability**: Design for multi-agent from start, use MsgHub
4. **Memory Management**: Choose appropriate memory based on conversation length
5. **Performance**: Use streaming for better UX, async/await for concurrency
### Quality Standards
- **Response Time**: < 3s for agent response (excluding tool calls)
- **Tool Reliability**: Vendor non-performance for failing tools (3 failures → 60s cooldown)
- **Memory Efficiency**: Compress memory every 50 turns
- **Error Recovery**: Compliance violation with fallback responses
---
## §2. Triggers
**CREATE Triggers**:
- "build agent with AgentScope"
- "create voice agent"
- "setup multi-agent workflow"
- "add memory to agent"
- "integrate MCP tools"
- "fine-tune agent model"
**EVALUATE Triggers**:
- "evaluate agent performance"
- "test AgentScope setup"
- "benchmark agent response time"
- "assess memory efficiency"
---
## §3. Workflow
### Phase 1: Environment Setup
**Done**: Python 3.10+ installed, AgentScope installed
**Fail**: Python < 3.10, missing dependencies
```bash
# Installation
pip install agentscope
# Or with uv
uv pip install agentscope
# From source
git clone -b main https://github.com/agentscope-ai/agentscope.git
cd agentscope
pip install -e .
```
### Phase 2: Agent Design
**Done**: Agent architecture defined (ReAct/Voice/Multi-agent)
**Fail**: No clear use case or agent type
**Design Checklist**:
- [ ] Single or multi-agent?
- [ ] Voice enabled?
- [ ] Memory needed? (short-term / long-term / ReMe)
- [ ] External tools? (MCP / A2A / native)
- [ ] Deployment target? (local / serverless / K8s)
### Phase 3: Implementation
**Done**: Working agent with basic functionality
**Fail**: Agent cannot respond to user input
**Implementation Steps**:
1. Import required modules
2. Initialize model (DashScope/OpenAI/Anthropic)
3. Create toolkit with tools
4. Instantiate agent with memory and formatter
5. Add user interaction loop
### Phase 4: Advanced Features
**Done**: Memory, tools, multi-agent configured
**Fail**: Missing required features
**Advanced Options**:
- Memory: InMemoryMemory, SqliteMemory, ReMe
- Tools: execute_python_code, execute_shell_command, MCP tools
- Multi-agent: MsgHub, sequential_pipeline, concurrent_pipeline
- Voice: TTS, STT integration
### Phase 5: Testing & Optimization
**Done**: Agent passes functional tests
**Fail**: Tests fail or performance issues
**Test Coverage**:
- [ ] Basic conversation flow
- [ ] Tool execution
- [ ] Memory persistence (if applicable)
- [ ] Error handling
- [ ] Response time < 3s
### Phase 6: Deployment
**Done**: Agent deployed and accessible
**Fail**: Deployment fails or unreachable
**Deployment Options**:
- Local: `python app.py`
- Serverless: AgentScope Runtime
- K8s: With OTel monitoring
---
## §4. Examples
### Example 1: Basic ReAct Agent
**Input**:
```
Build a simple ReAct agent named "Friday" that can execute Python code
```
**Output**:
```python
from agentscope.agent import ReActAgent, UserAgent
from agentscope.model import DashScopeChatModel
from agentscope.formatter import DashScopeChatFormatter
from agentscope.memory import InMemoryMemory
from agentscope.tool import Toolkit, execute_python_code
import os, asyncio
async def main():
toolkit = Toolkit()
toolkit.register_tool_function(execute_python_code)
agent = ReActAgent(
name="Friday",
sys_prompt="You're a helpful assistant named Friday.",
model=DashScopeChatModel(
model_name="qwen-max",
api_key=os.environ["DASHSCOPE_API_KEY"],
stream=True,
),
memory=InMemoryMemory(),
formatter=DashScopeChatFormatter(),
toolkit=toolkit,
)
user = UserAgent(name="user")
msg = None
while True:
msg = await agent(msg)
msg = await user(msg)
if msg.get_text_content() == "exit":
break
asyncio.run(main())
```
**Verification**: Run the script, interact with "Friday", ask to calculate something requiring Python execution.
---
### Example 2: Multi-Agent Conversation
**Input**:
```
Create a multi-agent discussion with 3 agents: a scientist, engineer, and artist
```
**Output**:
```python
from agentscope.agent import ReActAgent
from agentscope.pipeline import MsgHub, sequential_pipeline
from agentscope.message import Msg
from agentscope.model import DashScopeChatModel
import asyncio
async def multi_agent_discussion():
# Create agents
scientist = ReActAgent(
name="Scientist",
sys_prompt="You are a scientist specializing in AI research.",
model=DashScopeChatModel(model_name="qwen-max"),
)
engineer = ReActAgent(
name="Engineer",
sys_prompt="You are an engineer focused on practical implementations.",
model=DashScopeChatModel(model_name="qwen-max"),
)
artist = ReActAgent(
name="Artist",
sys_prompt="You are an artist interested in creative AI applications.",
model=DashScopeChatModel(model_name="qwen-max"),
)
# Create message hub
async with MsgHub(
participants=[scientist, engineer, artist],
announcement=Msg("Host", "Discuss the future of AI.", "assistant")
) as hub:
# Sequential discussion
await sequential_pipeline([scientist, engineer, artist])
asyncio.run(multi_agent_discussion())
```
**Verification**: Run and observe agents taking turns discussing AI.
---
### Example 3: Voice Agent with TTS
**Input**:
```
Build a voice-enabled agent that can speak responses
```
**Output**:
```python
from agentscope.agent import ReActAgent
from agentscope.model import DashScopeChatModel
from agentscope.tools import TextToSpeechTool
from agentscope.memory import InMemoryMemory
import asyncio
async def voice_agent():
agent = ReActAgent(
name="VoiceAssistant",
sys_prompt="You are a helpful voice assistant.",
model=DashScopeChatModel(model_name="qwen-max"),
memory=InMemoryMemory(),
tools=[TextToSpeechTool()],
)
# Process voice input and respond with speech
while True:
user_input = await get_voice_input() # Your STT implementation
response = await agent(user_input)
await play_speech(response) # TTS output
asyncio.run(voice_agent())
```
**Verification**: Test with actual microphone input and speaker output.
---
### Example 4: Agent with Long-term Memory (ReMe)
**Input**:
```
Create an agent that remembers user preferences across sessions
```
**Output**:
```python
from agentscope.agent import ReActAgent
from agentscope.model import DashScopeChatModel
from agentscope.memory import ReMeMemory
import asyncio
async def remember_user():
# Initialize ReMe (Retrieve, Memorize, Evolve)
memory = ReMeMemory(
embedding_model="text-embedding-v3",
recall_threshold=0.7,
compression_threshold=50,
)
agent = ReActAgent(
name="PersonalAssistant",
sys_prompt="Remember user preferences and provide personalized help.",
model=DashScopeChatModel(model_name="qwen-max"),
memory=memory,
)
# First conversation
await agent("I prefer concise answers")
# Second conversation (memory persists)
response = await agent("How's the weather?")
# Agent recalls: user prefers concise answers
asyncio.run(remember_user())
```
**Verification**: Check memory storage after first session, verify recall in second session.
---
### Example 5: MCP Tool Integration
**Input**:
```
Integrate external MCP tools like a maps API into my agent
```
**Output**:
```python
from agentscope.agent import ReActAgent
from agentscope.model import DashScopeChatModel
from agentscope.mcp import HttpStatelessClient
from agentscope.tool import Toolkit
import os, asyncio
async def mcp_agent():
# Initialize MCP client
client = HttpStatelessClient(
name="maps_mcp",
transport="streamable_http",
url=f"https://mcp.amap.com/mcp?key={os.environ['GAODE_API_KEY']}",
)
# Get tool as local callable function
maps_geo = await client.get_callable_function(func_name="maps_geo")
# Register in toolkit
toolkit = Toolkit()
toolkit.register_tool_function(maps_geo)
agent = ReActAgent(
name="TravelAssistant",
sys_prompt="You are a travel assistant that can find locations.",
model=DashScopeChatModel(model_name="qwen-max"),
toolkit=toolkit,
)
# Use tool
result = await agent("Find Tiananmen Square in Beijing")
asyncio.run(mcp_agent())
```
**Verification**: Call agent with location query, verify MCP tool execution.
---
## §5. Error Handling
### Common Failure Modes
| Failure | Cause | Recovery |
|---------|-------|----------|
| API key invalid | Wrong or expired key | Check environment variables |
| Model rate limit | Too many requests | Add Budget overrun |
| Tool timeout | Long-running operation | Set timeout: 30s default |
| Memory overflow | Too many turns | Enable memory compression |
| MCP connection failed | Network/URL issue | Fallback to local tools |
### Recovery Strategies
```python
# Retry with Budget overrun
from agentscope.tools import retry_with_backoff
@retry_with_backoff(max_retries=3, initial_delay=1.0)
async def call_model_with_retry(agent, msg):
return await agent(msg)
# Vendor non-performance for tools
from agentscope.tools import CircuitBreaker
breaker = CircuitBreaker(failure_threshold=3, recovery_timeout=60)
# Compliance violation
try:
result = await agent(msg)
except Exception as e:
result = "I'm having trouble processing your request. Please try again."
```
---
## §6. Security
### Red Lines
- ❌ Never hardcode API keys in source code
- ❌ Never expose sensitive data in agent responses
- ❌ Never skip input validation for tools
- ❌ Never disable logging in production
### Best Practices
- ✅ Use environment variables: `os.environ["DASHSCOPE_API_KEY"]`
- ✅ Validate tool inputs before execution
- ✅ Log with OTel for production monitoring
- ✅ Implement rate limiting for agent access
---
## §7. Resources
- [AgentScope Docs](https://doc.agentscope.io/)
- [GitHub](https://github.com/agentscope-ai/agentscope)
- [Discord](https://discord.gg/eYMpfnkG8h)
- [Examples](https://github.com/agentscope-ai/agentscope/tree/main/examples)
- [Tutorials](https://doc.agentscope.io/tutorial/)Related Skills
project-developer
Govern awesome-skills repository development: git workflow, skill creation/review/upgrade pipelines, quality gates, and commit standards. Triggers: 'git workflow', 'create skill', 'review skill', 'upgrade skill', 'commit standard', 'PR template', 'quality
mobile-app-developer
Elite Mobile App Developer skill with expertise in native iOS (Swift), native Android (Kotlin), and cross-platform (React Native, Flutter). Transforms AI into a senior mobile engineer capable of building performant, polished apps with offline support, push notifications, and native integrations. Use when: mobile-development, ios, android, react-native, flutter, swift, kotlin.
full-stack-developer
Elite Full-Stack Developer skill with mastery of modern frontend frameworks (React, Vue, TypeScript), backend systems (Node.js, Python, Go), databases (PostgreSQL, MongoDB, Redis), and DevOps (Docker, Kubernetes, CI/CD). Transforms AI into a principal engineer capable of building end-to-end applications from database to UI. Use when: full-stack, web-development, react, nodejs,
frontend-developer
Elite Frontend Developer skill with expertise in React, Vue, TypeScript, modern CSS architecture, performance optimization (Core Web Vitals), accessibility (WCAG 2.1), and state management. Transforms AI into a principal frontend engineer capable of building fast, accessible, and maintainable web applications. Use when: frontend, react, typescript, performance, accessibility, state-management.
backend-developer
Elite Backend Developer skill with expertise in API design (REST, GraphQL, gRPC), microservices architecture, database optimization (PostgreSQL, MongoDB, Redis), and distributed systems. Transforms AI into a principal backend engineer capable of building scalable, reliable services. Use when: backend, api-design, databases, microservices, distributed-systems, performance-optimization.
ai-ip-developer
AI IP孵化师,专精将Seedance 2.0生成的原创角色/世界观从0到1孵化为跨媒体IP资产。涵盖IP人格化设计、内容矩阵验证、受众社群运营、授权商品化路径和跨媒体延展策略。Use when: IP孵化, 原创角色, 内容IP, 跨媒体, 授权, IP运营, character IP development.
curriculum-developer
Expert Curriculum Developer with 15+ years experience in instructional design, learning objectives, course development, and educational assessment. Use when: curriculum-developer, instructional-design, learning-objectives, course-design, education.
write-skill
Meta-skill for creating high-quality SKILL.md files. Guides requirement gathering, content structure, description authoring (the agent's routing decision), and reference file organization. Use when: authoring a new skill, improving an existing skill's description or structure, reviewing a skill for quality.
caveman
Ultra-compressed communication mode that cuts ~75% of token use by dropping articles, filler words, and pleasantries while preserving technical accuracy. Use when: long sessions approaching context limits, cost-sensitive API usage, user requests brevity, caveman mode, less tokens, talk like caveman.
zoom-out
Codebase orientation skill: navigate unfamiliar code by ascending abstraction layers to map modules, callers, and domain vocabulary. Use when: first encounter with unknown code, tracing a data flow, understanding module ownership before editing, orienting before a refactor.
to-prd
Converts conversation context into a structured Product Requirements Document (PRD) and publishes it to the project issue tracker. Do NOT interview the user — synthesize what is already known. Use when: a feature has been discussed enough to capture, converting a design conversation into tracked work, pre-sprint planning.
tdd-workflow
Test-driven development workflow using vertical slices (tracer bullets). Enforces behavior-first testing through public interfaces. Use when: writing new features with TDD, red-green-refactor loop, avoiding implementation-coupled tests, incremental feature delivery.