with one click
create-agent
Create a new specialized AI agent with custom prompts and tools
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Create a new specialized AI agent with custom prompts and tools
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Display interactive HTML content, visualizations, dashboards, or games on connected OpenClaw nodes (Mac, iOS, Android). Supports live reloading, remote navigation, JS execution, and canvas snapshots for development, testing, and presentation scenarios.
Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm-installed clawhub CLI.
Execute shell commands and scripts on the user's local machine.
多模态 AI 图片理解工具。将图片发送给支持 vision 的 LLM 模型,获取图片的语义理解和详细描述。可分析截图、设计稿、图表、报错信息等。
Unified memory search and management system for retrieving, storing, and organizing information across daily logs, persistent memory, SOPs, and execution traces. Use this skill to recall past events, manage knowledge bases, update important notes, or filter historical data by tags and time ranges.
智能 OCR 文字提取工具。从图片中识别文字,支持中英文混排、图像预处理(灰度化+二值化提升识别率)、表格结构还原为 Markdown 格式。
| name | create-agent |
| description | Create a new specialized AI agent with custom prompts and tools |
| version | 1.0.0 |
| author | DunCrew Team |
| metadata | {"openclaw":{"emoji":"🔧","primaryEnv":"shell"}} |
| tags | ["agent","automation","create"] |
| inputs | {"agent_name":{"type":"string","required":true,"description":"Name of the new agent"},"purpose":{"type":"string","required":true,"description":"Purpose/description of the agent"},"tools":{"type":"array","required":false,"description":"List of tools the agent should have access to"},"system_prompt":{"type":"string","required":false,"description":"Custom system prompt for the agent"}} |
Create a new specialized AI agent with customized capabilities, prompts, and tool access. This skill helps you define domain-specific agents that can be reused for particular tasks.
Understand the Requirements
Design the Agent Configuration
Create the Agent Definition File
.duncrew/agents/{agent_name}/config.json with:
{
"name": "agent-name",
"description": "Agent description",
"system_prompt": "Custom system prompt...",
"tools": ["tool1", "tool2"],
"temperature": 0.7,
"max_tokens": 4096
}
Add Custom Instructions (Optional)
INSTRUCTIONS.md with detailed guidanceVerify the Agent
Create a Code Review Agent:
Agent Name: code-reviewer
Purpose: Review code for bugs, security issues, and best practices
Tools: search_codebase, search_symbol, read_file
Create a Documentation Agent:
Agent Name: doc-writer
Purpose: Generate and maintain project documentation
Tools: search_codebase, read_file, write_file