Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

claw-esp-expert爪式 ESP 专家

Agent Skill

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

总安装

4,870

周安装

197

GitHub Stars

公开资料未说明

下载量

1,529
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install claw-esp-expert

简介

ESP-IDF 专家型技能:环境检查、examples 导航、GPIO 规则审计与构建诊断。

SKILL.md

name
claw-esp-expert
description
ESP-IDF 专家型技能:环境检查、examples 导航、GPIO 规则审计与构建诊断。
metadata

Claw ESP Expert

Use this skill when the user needs help with ESP-IDF environment checks, example discovery, pin safety review, or build diagnostics.

What this bundle includes

This ClawHub-facing bundle exposes nine stable MVP tools:

  • manage_env
  • explore_demo
  • resolve_component
  • analyze_partitions
  • decode_panic
  • analyze_monitor
  • flash_and_monitor
  • execute_project
  • safe_build

These tools are implemented in the bundled runtime and are invoked through scripts/run-tool.mjs.

Safety contract

  • Treat this skill as a diagnostic-first ESP-IDF expert.
  • Default to check and explain, not silent modification.
  • Do not claim support for fully autonomous repair, deep serial-port management, or HIL automation unless the repository actually implements them.
  • Do not invent additional tools beyond the ones listed in this file.
  • Do not read arbitrary local config files unless the user explicitly asks; the MVP bundle does not require VS Code config scanning.
  • Do not modify project files or system permissions unless the user clearly asks for that action.

Tool contract

manage_env

Purpose:

  • inspect local ESP-IDF availability
  • report $IDF_PATH, common install paths, python/python3, and idf.py availability
  • when explicitly asked, return mirror-aware manual installation guidance instead of running upstream install scripts automatically

Example invocation:

printf '%s' '{"action":"check"}' | node scripts/run-tool.mjs manage_env --stdin

explore_demo

Purpose:

  • inspect local $IDF_PATH/examples
  • find matching demos by keyword
  • read the best matching README.md / README_CN.md
  • summarize hardware requirements and structure

Example invocation:

printf '%s' '{"query":"gpio"}' | node scripts/run-tool.mjs explore_demo --stdin

safe_build

Purpose:

  • run GPIO safety audit before build
  • reject fatal pin conflicts early
  • invoke idf.py build only after the audit passes
  • return structured build diagnostics, including partition overflow, memory overflow, missing headers, component resolution failures, config issues, and link errors

Example invocation:

printf '%s' '{"projectPath":"/path/to/project","chip":"esp32"}' | node scripts/run-tool.mjs safe_build --stdin

analyze_partitions

Purpose:

  • parse partitions.csv from the current ESP-IDF project
  • identify the most likely app partition (factory / ota_0)
  • combine partition table data with overflow logs
  • return a recommended expanded partition size and an updated CSV draft
  • return a structured patch-style before/after suggestion for partitions.csv

Example invocation:

printf '%s' '{"projectPath":"/path/to/project","rawLog":"Part '\''factory'\'' ... overflow 0x20000"}' | node scripts/run-tool.mjs analyze_partitions --stdin

decode_panic

Purpose:

  • parse ESP-IDF panic logs
  • extract exception reason, registers, and backtrace addresses
  • call the correct addr2line tool for Xtensa or RISC-V chips
  • return decoded source locations from the ELF file

Example invocation:

printf '%s' '{"chip":"esp32s3","elfPath":"/path/to/app.elf","log":"Guru Meditation Error..."}' | node scripts/run-tool.mjs decode_panic --stdin

analyze_monitor

Purpose:

  • inspect raw idf.py monitor output
  • detect panic/backtrace markers automatically
  • return the recent log excerpt
  • trigger panic decoding when an ELF path is available

Example invocation:

printf '%s' '{"chip":"esp32s3","elfPath":"/path/to/app.elf","log":"...monitor output..."}' | node scripts/run-tool.mjs analyze_monitor --stdin

flash_and_monitor

Purpose:

  • run idf.py flash monitor
  • capture combined stdout/stderr
  • analyze the resulting monitor log
  • automatically trigger panic decoding when panic markers appear and an ELF path is available
  • return stage status, stage summary, timeout info, recent log tail, and common serial/tool failure categories

Example invocation:

printf '%s' '{"projectPath":"/path/to/project","chip":"esp32s3","port":"/dev/ttyUSB0"}' | node scripts/run-tool.mjs flash_and_monitor --stdin

execute_project

Purpose:

  • run the minimum execution loop for an ESP-IDF project
  • perform hardware audit first
  • build the project
  • then run flash_and_monitor
  • return a single structured result for the whole flow

Example invocation:

printf '%s' '{"projectPath":"/path/to/project","chip":"esp32s3","port":"/dev/ttyUSB0"}' | node scripts/run-tool.mjs execute_project --stdin

resolve_component

Purpose:

  • query the official ESP Component Registry
  • prefer espressif/* when an official component is a strong match
  • suggest the best-matching component from official registry data
  • generate a minimal idf_component.yml dependency snippet
  • optionally merge that dependency into an existing manifest draft
  • return a structured patch-style before/after suggestion for the manifest
  • surface component docs, supported targets, and the matching version

Example invocation:

printf '%s' '{"query":"led_strip","target":"esp32s3"}' | node scripts/run-tool.mjs resolve_component --stdin

Runtime notes

  • manage_env can succeed even when ESP-IDF is not installed, because reporting NOT_FOUND is a valid diagnostic result.
  • manage_env({ action: "install" }) returns manual install guidance; it does not clone repositories or run upstream install scripts inside the skill bundle.
  • resolve_component uses the official ESP Component Registry over the network and should be treated as an explicit online lookup step.
  • decode_panic needs the matching ELF file and a working addr2line binary from the ESP-IDF toolchain.
  • analyze_monitor is still log-driven; it does not open serial ports by itself in this MVP.
  • flash_and_monitor does execute idf.py flash monitor, so the serial port, permissions, and toolchain environment must already be working.
  • safe_build depends on a shell environment where idf.py is executable.
  • The current hardware rules cover esp32, esp32s3, esp32c3, esp32c6, esp32c5, esp32h2, and esp32p4.
  • Common SKU names are normalized to family rules, for example ESP32-C6FH4 -> esp32c6 and ESP32-S3-PICO-1-N8R2 -> esp32s3.
  • Audit results can include file, line, and evidence fields so the host can point back to the exact source location.
  • The pin audit can resolve several common patterns beyond direct literals, including pin_bit_mask, common ..._io_num fields, macro chains, simple assignment aliases, and #define / const gpio_num_t aliases.
  • Pass user-controlled text through stdin JSON, not shell interpolation.

Files

  • scripts/run-tool.mjs — minimal stdin-driven tool runner for ClawHub-safe execution
  • dist/index.js — bundled runtime entry
  • dist/data/soc/*.json — current SoC rules database (esp32, esp32s3, esp32c3, esp32c6, esp32c5, esp32h2, esp32p4)

Out of scope for this MVP bundle

The following ideas are roadmap items, not current bundle guarantees:

  • automatic idf_component.yml maintenance
  • automatic partitions.csv edits
  • deep serial-port management UX
  • HIL automation with pytest-embedded

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.89%
按下载量换算1,329

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install claw-esp-expert 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills