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

chatdevchatdev 搜索

Agent Skill

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

总安装

9,066

周安装

374

GitHub Stars

公开资料未说明

下载量

2,962
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install chatdev

简介

通过本地 API 调用 ChatDev 能力单元,支持数据可视化等专业工作流程。

  • 适合在 OpenClaw 中执行特定领域任务如 CSV 分析或多步骤推理时使用。
  • 通过 clawhub 安装,默认监听端口 6400,需确保防火墙放行。
  • 安装前建议确认本地服务启动状态与资源占用情况。
  • 注意该技能依赖外部进程运行,稳定性受宿主环境影响较大。

SKILL.md

name
chatdev
description
Invoke ChatDev ability units (workflows) via local API (port 6400). Use when the user needs specialized agent workflows like data visualization (from CSV), or when they mention "ChatDev", "ability units", or "workflows" at http://127.0.0.1:6400.

ChatDev Ability Units

Ability units represent capability units. You can browse what's available, inspect required args, run them, or upload new ones. Use these endpoints when you need to invoke a predefined ability unit (e.g., paper review, data visualization) via the local API.

Run ability units via the local API and return final_message from the JSON response.

API endpoints

1) Browse ability units

  • Method: GET
  • URL: http://127.0.0.1:6400/api/workflows
  • Example:
  curl --noproxy 127.0.0.1 -v http://127.0.0.1:6400/api/workflows

2) Get ability unit raw content

  • Method: GET
  • URL: http://127.0.0.1:6400/api/workflows/<filename>/get
  • Purpose: fetch the raw YAML content for an ability unit file.
  • Example:
  curl --noproxy 127.0.0.1 -v \
    http://127.0.0.1:6400/api/workflows/test.yaml/get

3) Get ability unit args

  • Method: GET
  • URL: http://127.0.0.1:6400/api/workflows/<ability_unit>.yaml/args
  • Purpose: fetch input parameter schema for an ability unit.
  • Example:
  curl --noproxy 127.0.0.1 -v -X GET \
    http://127.0.0.1:6400/api/workflows/test.yaml/args

4) Run ability unit

  • Method: POST
  • URL: http://127.0.0.1:6400/api/workflow/run
  • Content-Type: application/json
  • SSE support: set Accept: text/event-stream to stream events (started, log,

completed, error). Omit the header to get the normal JSON response.

  • Output: parse JSON and return final_message. If missing, report failure and

include any error fields. After you get output_dir, move it to your working directory.

  • Available ability units:

1) Paper Review - yaml_file: yaml_instance/paper_review.yaml - task_prompt: arXiv URL/ID or paper title. - Purpose: fetch content and deliver technical + writing reviews. - Example:

    curl --noproxy 127.0.0.1 -v -X POST http://127.0.0.1:6400/api/workflow/run \
      -H "Content-Type: application/json" \
      -H "Accept: text/event-stream" \
      -d '{
        "yaml_file": "yaml_instance/paper_review.yaml",
        "task_prompt": "https://arxiv.org/abs/1706.03762"
      }'

2) Data Visualization - yaml_file: yaml_instance/data_visualization_basic.yaml - task_prompt: dataset description + analysis goals. - attachments: absolute paths to CSV files. - Purpose: profile, clean, plan 4-6 charts, iterate visualizations. - Example:

    curl --noproxy 127.0.0.1 -v -X POST http://127.0.0.1:6400/api/workflow/run \
      -H "Content-Type: application/json" \
      -d '{
        "yaml_file": "yaml_instance/data_visualization_basic.yaml",
        "task_prompt": "please analyze and visualize the data",
         "attachments": ["/Users/yufan/Projects/bugfix/ChatDev/sample_sales.csv"]
      }'

5) Upload ability unit

  • Method: POST
  • URL: http://127.0.0.1:6400/api/workflows/upload/content
  • Content-Type: application/json
  • Format notes: filename should end with .yaml; content must be a valid YAML

string that includes version, vars, and a graph with id, start, nodes, and edges (as in the example).

  • Tip: if uploads keep failing with format errors, call the "get ability unit raw content" endpoint to inspect

an existing ability unit's structure and copy its format.

  • Example:
  curl --noproxy 127.0.0.1 -v -X POST \
    http://127.0.0.1:6400/api/workflows/upload/content \
    -H "Content-Type: application/json" \
    -d @- <<'EOF'
  {
    "filename": "test.yaml",
    "content": "version: 0.4.0\
vars: {}\
graph:\
  id: paper_review\
  description: Three agents collaboratively review academic papers from different perspectives. Input can be an arxiv URL or paper title.\
  is_majority_voting: false\
  start:\
    - Paper Fetcher\
  nodes:\
    - id: Paper Fetcher\
      type: agent\
      config:\
        name: gpt-4o\
        provider: openai\
        role: |\
          You are a paper content fetcher.\
        base_url: ${BASE_URL}\
        api_key: ${API_KEY}\
      description: Fetches paper content from arxiv\
      context_window: 0\
  edges: []"
  }
  EOF

6) Update ability unit

  • Method: PUT
  • URL: http://127.0.0.1:6400/api/workflows/<filename>/update
  • Content-Type: application/json
  • Format notes: same payload as upload (filename + YAML content string).
  • Example:
  curl --noproxy 127.0.0.1 -v -X PUT \
    http://127.0.0.1:6400/api/workflows/test.yaml/update \
    -H "Content-Type: application/json" \
    -d @- <<'EOF'
  {
    "filename": "test.yaml",
    "content": "version: 0.4.0\
vars: {}\
graph:\
  id: paper_review\
  description: Update example.\
  is_majority_voting: false\
  start:\
    - Paper Fetcher\
  nodes:\
    - id: Paper Fetcher\
      type: agent\
      config:\
        name: gpt-4o\
        provider: openai\
        role: |\
          You are a paper content fetcher.\
        base_url: ${BASE_URL}\
        api_key: ${API_KEY}\
      description: Fetches paper content from arxiv\
      context_window: 0\
  edges: []"
  }
  EOF

7) Rename ability unit

  • Method: POST
  • URL: http://127.0.0.1:6400/api/workflows/<filename>/rename
  • Content-Type: application/json
  • Body: { "new_filename": "new_name.yaml" }
  • Example:
  curl --noproxy 127.0.0.1 -v -X POST \
    http://127.0.0.1:6400/api/workflows/test.yaml/rename \
    -H "Content-Type: application/json" \
    -d '{"new_filename":"renamed.yaml"}'

8) Copy ability unit

  • Method: POST
  • URL: http://127.0.0.1:6400/api/workflows/<filename>/copy
  • Content-Type: application/json
  • Body: { "new_filename": "copy.yaml" }
  • Example:
  curl --noproxy 127.0.0.1 -v -X POST \
    http://127.0.0.1:6400/api/workflows/test.yaml/copy \
    -H "Content-Type: application/json" \
    -d '{"new_filename":"test-copy.yaml"}'

9) Delete ability unit

  • Method: DELETE
  • URL: http://127.0.0.1:6400/api/workflows/<filename>/delete
  • Example:
  curl --noproxy 127.0.0.1 -v -X DELETE \
    http://127.0.0.1:6400/api/workflows/test.yaml/delete

10) List local tools (function_calling)

  • Method: GET
  • URL: http://127.0.0.1:6400/api/tools/local
  • Example:
  curl --noproxy 127.0.0.1 -X GET http://127.0.0.1:6400/api/tools/local

Tools hot updates

Local function tools are managed via the same backend (port 6400).

Endpoints:

  • List local tools: GET http://127.0.0.1:6400/api/tools/local
  • Create/overwrite local tool file: POST http://127.0.0.1:6400/api/tools/local

Create example:

curl --noproxy 127.0.0.1 -X POST http://127.0.0.1:6400/api/tools/local \
  -H "Content-Type: application/json" \
  -d '{
    "filename": "add.py",
    "content": "def add(a: int, b: int) -> dict:\
    return {\"result\": a + b}\
",
    "overwrite": true
  }'

YAML example (local function_calling):

tooling:
  - type: function
    config:
      tools:
        - name: add

Common scenarios and tool suggestions

  • If the agent needs to search the web, use web_search.
  • If the agent needs to fetch a URL's content, use read_webpage_content.
  • If the agent needs to inspect local files, use describe_available_files and list_directory.
  • If the agent needs to read a file snippet, use read_text_file_snippet or read_file_segment.
  • If the agent needs to write output files, use save_file.

Advanced Workflow Templates

Below are advanced YAML templates you can copy and adapt. They cover debate loops, subgraph reuse, conditional edges, and selective payload routing.

1) Two-Agent Debate Loop with Judge Stop Criteria

version: 0.4.0
vars: {}
graph:
  id: debate_loop
  description: Two agents debate until the judge outputs "Verdict: STOP".
  is_majority_voting: false
  start:
    - Topic
  nodes:
    - id: Topic
      type: passthrough
      config: {}
    - id: Pro
      type: agent
      config:
        provider: openai
        base_url: ${BASE_URL}
        api_key: ${API_KEY}
        name: gpt-4o
        role: |
          You are the PRO debater. Respond with arguments and counterpoints.
    - id: Con
      type: agent
      config:
        provider: openai
        base_url: ${BASE_URL}
        api_key: ${API_KEY}
        name: gpt-4o
        role: |
          You are the CON debater. Respond with arguments and counterpoints.
    - id: Judge
      type: agent
      config:
        provider: openai
        base_url: ${BASE_URL}
        api_key: ${API_KEY}
        name: gpt-4o
        role: |
          Evaluate the debate. Output:
          Score: <0-1>
          Notes: <brief>
          Verdict: CONTINUE|STOP
    - id: Final
      type: agent
      config:
        provider: openai
        base_url: ${BASE_URL}
        api_key: ${API_KEY}
        name: gpt-4o
        role: |
          Produce the final summary of the debate and recommendation.
  edges:
    - from: Topic
      to: Pro
      keep_message: true
    - from: Topic
      to: Con
      keep_message: true
    - from: Pro
      to: Judge
    - from: Con
      to: Judge
    - from: Judge
      to: Pro
      condition: need_reflection_loop
    - from: Judge
      to: Con
      condition: need_reflection_loop
    - from: Judge
      to: Final
      condition: should_stop_loop

2) Subgraph Reuse + Selective Payload Passing

version: 0.4.0
vars: {}
graph:
  id: parent_with_subgraph
  description: Uses a subgraph and only forwards the "Summary" section.
  start:
    - Request
  nodes:
    - id: Request
      type: passthrough
      config: {}
    - id: ResearchSubgraph
      type: subgraph
      config:
        type: file
        config:
          path: "subgraphs/deep_research_executor_sub.yaml"
    - id: Writer
      type: agent
      config:
        provider: openai
        base_url: ${BASE_URL}
        api_key: ${API_KEY}
        name: gpt-4o
        role: |
          Write the final report using only the provided Summary.
  edges:
    - from: Request
      to: ResearchSubgraph
      keep_message: true
    - from: ResearchSubgraph
      to: Writer
      process:
        type: regex_extract
        config:
          pattern: "Summary:\\s*(.*)"
          group: 1
          multiline: true
          dotall: true
          on_no_match: pass

3) Conditional Routing + Minimal Payload

version: 0.4.0
vars: {}
graph:
  id: router_with_conditions
  description: Route to different nodes based on tags; forward only CONTENT block.
  start:
    - Router
  nodes:
    - id: Router
      type: agent
      config:
        provider: openai
        base_url: ${BASE_URL}
        api_key: ${API_KEY}
        name: gpt-4o
        role: |
          Decide the route. Output exactly:
          ROUTE: QA|REPORT
          CONTENT: <payload to forward>
    - id: QA
      type: agent
      config:
        provider: openai
        base_url: ${BASE_URL}
        api_key: ${API_KEY}
        name: gpt-4o
        role: |
          Answer the question concisely.
    - id: REPORT
      type: agent
      config:
        provider: openai
        base_url: ${BASE_URL}
        api_key: ${API_KEY}
        name: gpt-4o
        role: |
          Write a structured report.
  edges:
    - from: Router
      to: QA
      condition:
        type: keyword
        config:
          any: ["ROUTE: QA"]
      process:
        type: regex_extract
        config:
          pattern: "CONTENT:\\s*(.*)"
          group: 1
          dotall: true
          on_no_match: drop
    - from: Router
      to: REPORT
      condition:
        type: keyword
        config:
          any: ["ROUTE: REPORT"]
      process:
        type: regex_extract
        config:
          pattern: "CONTENT:\\s*(.*)"
          group: 1
          dotall: true
          on_no_match: drop

Tips

  • Any workflow YAML can be used as a subgraph to compose more complex tasks, including existing ability units/workflows. Example:
  - id: Research Subgraph
    type: subgraph
    config:
      type: file
      config:
        path: "yaml_instance/deep_research_v1.yaml"
  • Ensure that all generated artifacts are output to your workspace file paths whenever possible
  • Ensure that all agents’ roles are concise, sophisticated, and equipped with sufficient tools

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.27%
按下载量换算2,466

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills