Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计提醒

clawflowclawflow 搜索

Agent Skill

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

总安装

51,293

周安装

2,055

GitHub Stars

公开资料未说明

下载量

16,604
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:clawflow(clawflow 搜索)
来源仓库:https://github.com/srikanth235/clawflow
安装命令:
openclaw skills install clawflow
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install clawflow

简介

clawflow 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它通过 OpenClaw 的消息传递和递归任务 DAG 实现多代理协作协议,适用于协调工作场景。
  • 通过 clawhub 安装,命令为 openclaw skills install clawflow,建议结合原始 README 核验具体用法。
  • 安装前需确认权限范围和维护状态,注意可能触发联网、命令执行或文件读写操作。
  • clawflow 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
clawflow
description
>

Clawflow

A protocol for OpenClaw agents collaborating through messages and recursive task DAGs.

Mental model: Think of a consulting firm. Anyone can receive a project. If they can do it alone, they do. If it's too big, they break it into pieces, hand each piece to a colleague, collect the results, and synthesise. Those colleagues might do the same. There are no fixed "managers" and "workers." Every agent speaks the same protocol.

When to Read References

  • Message formats, task file structure, status codes → references/schemas.md
  • The decision loop every agent runs → references/agent-loop.md
  • DAG decomposition, context passing, synthesis → references/coordinating.md

Core Principles

  1. One protocol, fluid roles — every agent is structurally identical. Any agent can

execute work directly *or* decompose and delegate. The role emerges from the task.

  1. OpenClaw is the backbone — agent identity comes from openclaw.json config,

peer discovery from openclaw agents list, and message transport from openclaw agent --agent <id> --message "...". No custom identity or peer files.

  1. Recursive DAGs — an agent that delegates becomes a coordinator for that sub-DAG.

Its parent doesn't know or care. DAGs nest naturally.

  1. Workspace = working memory — each agent's OpenClaw workspace is its private

scratchpad. Task state lives in workspace files. No agent reads another's workspace.


How It Works

Agent A receives a task
  → Can I do this alone?
     YES → Execute, reply with results
     NO  → Decompose into sub-DAG
           → Dispatch subtasks to Agents B, C via openclaw agent
           → Agent B receives its subtask
              → Can I do this alone?
                 YES → Execute, reply to A
                 NO  → Decompose further, dispatch to D, E...
           → Agent C executes, replies to A
           → A collects all replies, synthesises, replies to *its* parent

Every level looks the same. An agent at any depth follows the same loop.


Integration with OpenClaw

Agent Identity

Comes from the OpenClaw configuration. Do NOT create custom identity files.

  • Config source: openclaw.jsonagents.list[].id, agents.list[].identity
  • Workspace source: IDENTITY.md in the agent's workspace root
  • Read with: openclaw agents list or from injected bootstrap context

Each agent already knows who it is — its id, name, emoji, and theme are injected into the session context on every turn via the workspace bootstrap files (IDENTITY.md, SOUL.md, AGENTS.md).

Peer Discovery

Discover available agents from OpenClaw configuration. Do NOT maintain a separate peers file.

# List all configured agents
openclaw agents list

# The config defines them:
# agents.list[].id        → agent identifier (used in --agent flag)
# agents.list[].workspace → their workspace path
# agents.list[].model     → their model

An agent's subagents.allowAgents config controls which agents it can delegate to. ["*"] means it can reach any agent.

Sending Tasks to Peers

Use the OpenClaw CLI to send a task message to another agent:

# Send a task to a specific agent
openclaw agent --agent data-extractor --message "Extract Q3 sales from sales.csv"

# The receiving agent gets this in its session, processes it,
# and the response comes back through the same mechanism

For structured task dispatch with metadata, write the task message to a file and reference it:

openclaw agent --agent data-extractor \
  --message "$(cat workspace/tasks/task-abc/dispatch-st-extract.md)"

Workspace Layout for Clawflow

Each agent uses its existing OpenClaw workspace. Clawflow adds a tasks/ directory:

<agent-workspace>/                   ← OpenClaw workspace root
  IDENTITY.md                        ← Agent identity (OpenClaw-managed)
  AGENTS.md                          ← Operating instructions (OpenClaw-managed)
  SOUL.md                            ← Persona (OpenClaw-managed)
  mailbox/                           ← Agent-level message log (all tasks)
    inbox/                           ← Incoming messages before processing
    outbox/                          ← Outgoing messages (dispatches + replies sent)
    archive/                         ← Processed messages (durable audit trail)
  tasks/                             ← Clawflow working directory
    {task-id}/
      task.md                        ← DAG definition + progress + results
  skills/
    clawflow/                        ← This skill
      SKILL.md
      ...

Clawflow adds two top-level directories to the workspace:

  • mailbox/ — agent-level message log, independent of any task. Every message

the agent sends or receives is logged here. inbox/ holds unprocessed arrivals, outbox/ logs what was sent, archive/ holds processed messages. This is the durable audit trail — OpenClaw session history compacts over time, the mailbox doesn't.

  • tasks/ — one subdirectory per task with a task.md tracking DAG state, subtask

results, and the final synthesised output.


The Agent Loop

When an agent receives a task (via openclaw agent --message):

1. Parse the message
2. Is it a TASK from a parent?
   → Create task.md in workspace/tasks/{task-id}/
   → DECIDE: execute directly or decompose?
     → Direct: do the work, reply with results
     → Decompose: build sub-DAG in task.md, dispatch subtasks via openclaw agent
3. Is it a REPLY from a peer I delegated to?
   → Update sub-DAG in task.md (mark subtask done, store results)
   → Dispatch any newly unblocked subtasks
   → If all subtasks done → synthesise results, reply to parent

Read references/agent-loop.md for the full decision logic and edge cases.


Delegation Decision

When an agent receives a task, it decides: do it myself or delegate?

Execute directly when:

  • The task is within the agent's own capabilities
  • It's simple enough that decomposition adds overhead
  • No relevant peer agents are configured

Decompose and delegate when:

  • The task requires capabilities the agent doesn't have
  • The task has naturally parallel parts
  • The task is large enough that breaking it up reduces complexity

This is a judgment call. The protocol doesn't force it — the agent decides.


DAG Dependency Resolution

When coordinating a sub-DAG, the agent tracks subtask status in task.md:

def get_ready_subtasks(dag):
    """Subtasks whose dependencies are all done and haven't been dispatched yet."""
    return [
        sid for sid, st in dag.subtasks.items()
        if st.status == 'pending'
        and all(dag.subtasks[dep].status == 'done' for dep in st.depends_on)
    ]

Called after every reply. Newly unblocked subtasks get dispatched immediately.


Error Handling (V1)

Fail-fast. No retries, no partial recovery.

ScenarioBehaviour
Peer fails a subtaskAgent marks its own task failed, replies with error to parent
Duplicate messageIdempotency check — skip if task already in-progress or done
Agent crashesTask file in workspace preserves state; restart resumes from task.md

Errors propagate upward. Future versions will add retry and partial recovery.


Implementation Checklist

  1. Verify agent configurationopenclaw agents list to see available agents.
  2. Check subagent permissions — ensure subagents.allowAgents includes target agents.
  3. Implement the agent loop — follow references/agent-loop.md.
  4. Use message templatesscripts/message.py generates structured task/reply messages.
  5. Test a 2-level chain — agent A delegates to B, B executes and replies.
  6. Test fan-out — agent A delegates to B and C in parallel.
  7. Test recursion — agent A → B → C.

Out of Scope (V1)

  • Large result attachments (Google Drive layer)
  • Task retry / partial DAG recovery
  • Agent health checks
  • Progress streaming
  • Cross-agent workspace access (by design, forever)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

96.62%
按下载量换算16,043

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills