Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

openclaw-agent-builderOpenClaw Agent 构建器

Agent Skill

openclaw-agent-builder 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,968

周安装

82

GitHub Stars

公开资料未说明

下载量

656
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openclaw-agent-builder(OpenClaw Agent 构建器)
来源仓库:https://github.com/irangareddy/openclaw-essentials
仓库路径:skills/openclaw-agent-builder
安装命令:
npx skills add https://github.com/irangareddy/openclaw-essentials --skill openclaw-agent-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/irangareddy/openclaw-essentials --skill openclaw-agent-builder

简介

openclaw-agent-builder 用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中筛选信息的场景。
  • 通过 npx skills add 命令安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

OpenClaw Agent Builder

Create specialized openclaw agents with complete workspace structure, identity files, and skills.

When to Use

When building a new openclaw agent for a specific purpose:

  • Domain-specific agents (Android dev, SEO, content writing, etc.)
  • Multi-agent routing scenarios
  • Isolated agent personalities
  • Workspace-based AI assistants

Core Concepts

OpenClaw Agent Structure

Each agent = isolated brain with:

  • Workspace: Files (AGENTS.md, SOUL.md, USER.md, IDENTITY.md, TOOLS.md, etc.)
  • State dir: ~/.openclaw/agents/<agentId>/agent (auth, config)
  • Sessions: ~/.openclaw/agents/<agentId>/sessions (chat history)

Workspace Files

Required:

  • AGENTS.md - Operating instructions, memory management, behavior rules
  • SOUL.md - Persona, tone, communication style
  • USER.md - User context and how to address them
  • IDENTITY.md - Agent name, emoji, role, mission
  • TOOLS.md - Tool notes and conventions

Optional:

  • HEARTBEAT.md - Heartbeat checklist (keep short)
  • BOOT.md - Startup checklist when gateway restarts
  • memory/ - Daily memory logs (YYYY-MM-DD.md)
  • MEMORY.md - Curated long-term memory
  • skills/ - Workspace-specific skills

Agent Builder Workflow

1. Ask Questions First

Before building, clarify:

  • Agent purpose: What problem does this agent solve?
  • Domain expertise: What specialized knowledge needed?
  • Communication style: Professional? Casual? Technical?
  • Tools/integrations: APIs, databases, external systems?
  • Skills needed: Custom capabilities or workflows?

2. Create Workspace Structure

# Create agent workspace
mkdir -p ~/.openclaw/workspace-<agent-name>
cd ~/.openclaw/workspace-<agent-name>

# Initialize git (recommended)
git init

3. Build Core Files

IDENTITY.md - Who the agent is:

# IDENTITY.md

## Name
[Agent Name]

## Emoji
[1-2 relevant emojis]

## Role
[Short role description - e.g., "Android spec writer", "SEO optimizer"]

## Mission
[Concise mission statement - what the agent does and why]

SOUL.md - Personality and tone:

# SOUL.md - [Agent Name]

## Who You Are

[Description of expertise, background, strengths]

## Your Expertise

### [Domain 1]
- [Specific skill or knowledge area]
- [Another capability]

### [Domain 2]
- [Capability]

## Your Approach

### [Trait 1 - e.g., Analytical, Pragmatic]
- [How this manifests]

### [Trait 2]
- [Behavior pattern]

## Your Tone

[Communication style - concise/verbose, formal/casual, technical level]

## Your Values

1. **[Value 1]** - [Why it matters]
2. **[Value 2]** - [Explanation]

AGENTS.md - Operating instructions:

# AGENTS.md - [Agent Name]

[Brief agent description and primary role]

## Primary Responsibilities

1. **[Task 1]** - [Description]
2. **[Task 2]** - [Description]

## Workflow

### On User Request: "[Trigger Pattern]"

1. **[Step 1]** [Action description]
   [Details, commands, or sub-steps]

2. **[Step 2]** [Next action]

### On User Request: "[Another Pattern]"

[Workflow steps]

## [Domain-Specific Section - e.g., "iOS Codebase Structure"]

[Relevant context, file paths, patterns]

## [Another Section - e.g., "Translation Guidelines"]

[Reference tables, mappings, rules]

## Memory

- Log [what to track] in `memory/YYYY-MM-DD.md`
- [Memory strategy specific to agent purpose]

## Tools

See `TOOLS.md` for [domain-specific tools or integrations]

## Skills

- **[skill-name]** - [Purpose]
- **[another-skill]** - [Purpose]

USER.md - User context:

# USER.md

## Who You Are

[User description, preferences, context]

## Your Goals

[What user wants to achieve with this agent]

## Communication Preferences

[How user prefers to interact]

TOOLS.md - Tool conventions:

# TOOLS.md

## [Domain] Tools

- **[Tool/API name]**: [Purpose and usage notes]
- **[Another tool]**: [Notes]

## Authentication

[If agent needs API keys, credentials, etc.]

## Conventions

[Domain-specific conventions or patterns]

4. Add Skills (Optional)

Create workspace-specific skills:

mkdir -p skills/<skill-name>

Each skill needs SKILL.md:

---
name: skill-name
description: What the skill does
---

# Skill Name

[Skill documentation following agentskills.io format]

## When to Use

[Trigger conditions]

## Steps

[Detailed workflow]

## Examples

[Usage examples]

5. Setup Memory System

mkdir -p memory
touch memory/$(date +%Y-%m-%d).md

Optional MEMORY.md for curated knowledge:

# MEMORY.md

## [Category]

- [Key fact or pattern]
- [Lesson learned]

## [Another Category]

[Organized knowledge]

6. Register Agent

# Add agent to openclaw
openclaw agents add <agent-name>

# Set workspace path
# Edit ~/.openclaw/openclaw.json:
{
  "agents": {
    "list": [
      {
        "id": "<agent-name>",
        "workspace": "~/.openclaw/workspace-<agent-name>"
      }
    ]
  }
}

7. Add Bindings (Multi-Agent Routing)

Route specific channels/users to this agent:

{
  "bindings": [
    {
      "agentId": "<agent-name>",
      "match": {
        "channel": "whatsapp",
        "peer": { "kind": "direct", "id": "+1234567890" }
      }
    }
  ]
}

Design Principles

Agent Identity

  • Clear purpose: Single, focused responsibility
  • Distinct personality: Unique tone/approach vs other agents
  • Expertise depth: Deep knowledge in specific domain

Communication Style

  • Concise: Default to brevity unless domain requires detail
  • Professional: Match industry standards
  • Actionable: Focus on what to do, not just description

Memory Strategy

  • Daily logs: Track important events/decisions
  • Curated knowledge: Extract patterns into MEMORY.md
  • Context preservation: Save state before /new or /reset

Skill Organization

  • Workspace skills: Agent-specific capabilities
  • Shared skills: Common utilities in ~/.openclaw/skills/
  • Override pattern: Workspace skills override shared/bundled

Example Agents

Android Spec Generator

Purpose: Analyze iOS features, generate Android requirement specs
Style: Concise, technical, requirement-focused
Skills: ios-analyzer, android-spec-generator, github-issue-creator

SEO Expert

Purpose: Content optimization, keyword research, SEO strategy
Style: Data-driven, analytical, actionable
Skills: keyword-research, content-analyzer, competitor-analysis

Content Writer

Purpose: Blog posts, documentation, technical writing
Style: Clear, engaging, audience-aware
Skills: content-planner, seo-writer, editor

Anti-Patterns

Don't:

  • Mix multiple unrelated domains in one agent
  • Create verbose, chatty agents unless purpose requires it
  • Duplicate content across AGENTS.md, SOUL.md, TOOLS.md
  • Store secrets in workspace (use ~/.openclaw/credentials/)

Do:

  • Keep single, clear focus per agent
  • Match communication style to domain norms
  • Organize by responsibility (identity/soul/operations)
  • Use git for workspace backup (private repo)

Testing Agent

# Start gateway with agent
openclaw gateway --agent <agent-name>

# Or use binding to route to agent
openclaw gateway

# Send test message via WhatsApp/Telegram/Discord
# Verify agent responds with expected personality/capability

Maintenance

Update Agent

cd ~/.openclaw/workspace-<agent-name>
git add .
git commit -m "Update [what changed]"
git push

Add New Skill

cd ~/.openclaw/workspace-<agent-name>/skills
mkdir new-skill
# Create SKILL.md

Backup Agent

# Workspace already in git
# Separately backup sessions if needed:
tar -czf sessions-backup.tar.gz ~/.openclaw/agents/<agent-name>/sessions/

Resources

Questions Before Building?

Ask user to clarify:

  1. Agent purpose and scope
  2. Communication style preferences
  3. Required integrations/APIs
  4. Routing strategy (dedicated channel vs shared)
  5. Skill requirements

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.19%
按下载量换算224

Claude

28.28%
按下载量换算186

Cursor

19.09%
按下载量换算125

Gemini CLI

8.61%
按下载量换算56

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills