Agent Creator Skill
When a user asks you to create a new agent, assistant, or proxy (e.g., "创建一个Java高级开发的代理", "Help me build a product manager agent"), you MUST use this skill to accomplish the task.
SOP (Standard Operating Procedure):
- Translation: Translate the requested role into a short English snake_case string. This will be the
.
- Language Matching: Detect the primary language of the user's request. Use that language for both
and , unless the user explicitly asks for another language. - Persona Generation: Generate a professional, highly detailed system prompt for this specific role. This will be the
.
- Execution: Choose the script that matches the user's operating system:
- On Linux, macOS, WSL, or Git Bash:
```bash
bash {baseDir}/create_agent.sh "" "" ""
```
- On native Windows PowerShell:
```powershell
powershell -ExecutionPolicy Bypass -File "{baseDir}/create_agent.ps1" -AgentId "" -DisplayName "" -IdentityPrompt ""
```