Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
Help develop, build, flash, and debug ESP32/ESP8266 firmware using Espressif ESP-IDF on Linux/WSL. Use when the user asks about ESP-IDF project setup, configuring targets, menuconfig, building, flashing via esptool/idf.py, serial monitor, partition tables, sdkconfig, troubleshooting build/flash/monitor errors, or automating common idf.py workflows from the command line. --- name: esp-idf-helper description: Help develop, build, flash, and debug ESP32/ESP8266 firmware using Espressif ESP-IDF on Linux/WSL. Use when the user asks about ESP-IDF project setup, configuring targets, menuconfig, building, flashing via esptool/idf.py, serial monitor, partition tables, sdkconfig, troubleshooting build/flash/monitor errors, or automating common idf.py workflows from the command line. --- esp-i
clawhub skill install skills:547895019:esp-idf-helperOverall rank
#62
Adoption
No public adoption signal
Trust
Unknown
Freshness
Feb 25, 2026
Freshness
Last checked Feb 25, 2026
Best For
esp-idf-helper is best for auto workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, CLAWHUB, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
Help develop, build, flash, and debug ESP32/ESP8266 firmware using Espressif ESP-IDF on Linux/WSL. Use when the user asks about ESP-IDF project setup, configuring targets, menuconfig, building, flashing via esptool/idf.py, serial monitor, partition tables, sdkconfig, troubleshooting build/flash/monitor errors, or automating common idf.py workflows from the command line. --- name: esp-idf-helper description: Help develop, build, flash, and debug ESP32/ESP8266 firmware using Espressif ESP-IDF on Linux/WSL. Use when the user asks about ESP-IDF project setup, configuring targets, menuconfig, building, flashing via esptool/idf.py, serial monitor, partition tables, sdkconfig, troubleshooting build/flash/monitor errors, or automating common idf.py workflows from the command line. --- esp-i Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 25, 2026
Vendor
Openclaw
Artifacts
0
Benchmarks
0
Last release
Unpublished
Install & run
clawhub skill install skills:547895019:esp-idf-helperSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Openclaw
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
# 1) Source the ESP-IDF environment (once per terminal session) cd /path/to/esp-idf . ./export.sh # 1.1) Enable ccache to speed up compilation (recommended) export IDF_CCACHE_ENABLE=1 # 2) Go to your project and build cd /path/to/your/project idf.py set-target <target> # Set target chip (once per project) idf.py build # Compile idf.py -p <PORT> -b <BAUD> flash # Flash to device (optional)
bash
# 普通烧录整个固件(带进度)
bash {baseDir}/scripts/flash_with_progress.sh \
--project <PROJECT_DIR> \
--idf <IDF_DIR> \
--port <PORT> \
--mode flash
# 加密烧录 app(带进度)
bash {baseDir}/scripts/flash_with_progress.sh \
--project <PROJECT_DIR> \
--idf <IDF_DIR> \
--port <PORT> \
--mode encrypted-app-flash
# 仅烧录分区表(带进度)
bash {baseDir}/scripts/flash_with_progress.sh \
--project <PROJECT_DIR> \
--idf <IDF_DIR> \
--port <PORT> \
--mode partition-table-flash
# 仅烧录文件系统分区(storage,带进度)
bash {baseDir}/scripts/flash_with_progress.sh \
--project <PROJECT_DIR> \
--idf <IDF_DIR> \
--port <PORT> \
--mode storage-flash
# 指定波特率并关闭自动串口映射重试
bash {baseDir}/scripts/flash_with_progress.sh \
--project <PROJECT_DIR> \
--idf <IDF_DIR> \
--port <PORT> \
--baud 460800 \
--mode flash \
--no-auto-attach
# 串口异常时自动二次重试(默认 retries=2,也可手动指定)
bash {baseDir}/scripts/flash_with_progress.sh \
--project <PROJECT_DIR> \
--idf <IDF_DIR> \
--port <PORT> \
--mode encrypted-app-flash \
--retries 2bash
bash {baseDir}/scripts/run_menuconfig.sh \
--project <PROJECT_DIR> \
--idf <IDF_DIR>powershell
Start-Process powershell -ArgumentList '-NoExit','-Command','wsl.exe -d <DISTRO> --cd / -- bash {baseDir}/scripts/run_menuconfig.sh --project <PROJECT_DIR> --idf <IDF_DIR>'bash
bash {baseDir}/scripts/monitor_auto_attach.sh \
--project <PROJECT_DIR> \
--idf <IDF_DIR> \
--port <PORT> \
--baud <BAUD> \
--keyword "ESP32"bash
cat >/tmp/run_monitor.sh <<'EOF' #!/usr/bin/env bash set -e cd /path/to/your/project source /path/to/esp-idf/export.sh exec idf.py -p <PORT> -b 1152000 monitor EOF chmod +x /tmp/run_monitor.sh
Editorial read
Docs source
CLAWHUB
Editorial quality
ready
Help develop, build, flash, and debug ESP32/ESP8266 firmware using Espressif ESP-IDF on Linux/WSL. Use when the user asks about ESP-IDF project setup, configuring targets, menuconfig, building, flashing via esptool/idf.py, serial monitor, partition tables, sdkconfig, troubleshooting build/flash/monitor errors, or automating common idf.py workflows from the command line. --- name: esp-idf-helper description: Help develop, build, flash, and debug ESP32/ESP8266 firmware using Espressif ESP-IDF on Linux/WSL. Use when the user asks about ESP-IDF project setup, configuring targets, menuconfig, building, flashing via esptool/idf.py, serial monitor, partition tables, sdkconfig, troubleshooting build/flash/monitor errors, or automating common idf.py workflows from the command line. --- esp-i
Provide a repeatable, command-line-first workflow for ESP-IDF development on Linux/WSL: configure → build → flash → monitor → debug/troubleshoot.
# 1) Source the ESP-IDF environment (once per terminal session)
cd /path/to/esp-idf
. ./export.sh
# 1.1) Enable ccache to speed up compilation (recommended)
export IDF_CCACHE_ENABLE=1
# 2) Go to your project and build
cd /path/to/your/project
idf.py set-target <target> # Set target chip (once per project)
idf.py build # Compile
idf.py -p <PORT> -b <BAUD> flash # Flash to device (optional)
idf.py set-target <target> — Set chip target: esp32, esp32s2, esp32s3, esp32c3, esp32p4idf.py menuconfig — Configure project settings (must run in a new terminal window)idf.py build — Build the projectidf.py update-dependencies — Update project component dependenciesidf.py partition-table — Build partition table and print partition entriesidf.py partition-table-flash — Flash partition table to deviceidf.py storage-flash — Flash storage filesystem partitionidf.py size — Show firmware size informationidf.py -p <PORT> -b <BAUD> flash — Flash firmware (default baud: 1152000)idf.py -p <PORT> monitor — Open serial monitoridf.py -p <PORT> -b <BAUD> monitor — Open serial monitor with specific baud (e.g. 1152000)idf.py -p <PORT> -b <BAUD> flash monitor — Flash then monitorbash {baseDir}/scripts/monitor_auto_attach.sh --project <PROJECT_DIR> --idf <IDF_DIR> --port <PORT> --baud <BAUD> — Auto attach serial (usbipd) and retry monitor on open failurebash {baseDir}/scripts/flash_with_progress.sh --project <PROJECT_DIR> --idf <IDF_DIR> --port <PORT> --mode <MODE> — Flash with real-time progress output (supports auto usbipd attach retry, error summary, and second retry)# 普通烧录整个固件(带进度)
bash {baseDir}/scripts/flash_with_progress.sh \
--project <PROJECT_DIR> \
--idf <IDF_DIR> \
--port <PORT> \
--mode flash
# 加密烧录 app(带进度)
bash {baseDir}/scripts/flash_with_progress.sh \
--project <PROJECT_DIR> \
--idf <IDF_DIR> \
--port <PORT> \
--mode encrypted-app-flash
# 仅烧录分区表(带进度)
bash {baseDir}/scripts/flash_with_progress.sh \
--project <PROJECT_DIR> \
--idf <IDF_DIR> \
--port <PORT> \
--mode partition-table-flash
# 仅烧录文件系统分区(storage,带进度)
bash {baseDir}/scripts/flash_with_progress.sh \
--project <PROJECT_DIR> \
--idf <IDF_DIR> \
--port <PORT> \
--mode storage-flash
# 指定波特率并关闭自动串口映射重试
bash {baseDir}/scripts/flash_with_progress.sh \
--project <PROJECT_DIR> \
--idf <IDF_DIR> \
--port <PORT> \
--baud 460800 \
--mode flash \
--no-auto-attach
# 串口异常时自动二次重试(默认 retries=2,也可手动指定)
bash {baseDir}/scripts/flash_with_progress.sh \
--project <PROJECT_DIR> \
--idf <IDF_DIR> \
--port <PORT> \
--mode encrypted-app-flash \
--retries 2
idf.py fullclean — Clean build directory推荐用脚本方式,避免 PowerShell/cmd 引号和 UNC 路径问题。
menuconfig 是 TUI 交互界面,必须在新窗口打开(不要在非交互后台中运行)。
bash {baseDir}/scripts/run_menuconfig.sh \
--project <PROJECT_DIR> \
--idf <IDF_DIR>
Start-Process powershell -ArgumentList '-NoExit','-Command','wsl.exe -d <DISTRO> --cd / -- bash {baseDir}/scripts/run_menuconfig.sh --project <PROJECT_DIR> --idf <IDF_DIR>'
当 idf.py monitor 因串口打开失败(端口不存在/被占用)报错时,可自动执行 usbipd 串口映射脚本并重试一次:
bash {baseDir}/scripts/monitor_auto_attach.sh \
--project <PROJECT_DIR> \
--idf <IDF_DIR> \
--port <PORT> \
--baud <BAUD> \
--keyword "ESP32"
cat >/tmp/run_monitor.sh <<'EOF'
#!/usr/bin/env bash
set -e
cd /path/to/your/project
source /path/to/esp-idf/export.sh
exec idf.py -p <PORT> -b 1152000 monitor
EOF
chmod +x /tmp/run_monitor.sh
Start-Process cmd.exe -WorkingDirectory C:\ -ArgumentList '/k','wsl.exe -d <DISTRO> -- bash /tmp/run_monitor.sh'
说明:
cmd.exe -WorkingDirectory C:\ 可以避免 \\wsl.localhost\... UNC 路径导致工作目录掉到 C:\Windows。Ctrl+]。addr2line (or idf.py monitor built-in) and check partition/sdkconfig.[Errno 11] Could not exclusively lock port <PORT> → serial port is occupied by another process; force release it with:
sudo fuser -k <PORT>
esp32, esp32s2, esp32s3, esp32c3, esp32p4.IDF_PATH / ESPIDF_ROOT).CMakeLists.txt, main/, sdkconfig).<PORT> (e.g. /dev/ttyUSB0, /dev/ttyACM*, or WSL mapped /dev/ttyS*).先在 Windows PowerShell 找到串口号,再在 WSL2 里映射 USB 设备。
在 管理员模式 PowerShell 中执行:
winget install dorssel.usbipd-win
然后查看并映射设备:
# Windows PowerShell:查看 USB 设备与 BUSID
usbipd list
# 将设备挂载到 WSL(每次重新插拔 USB 后都要重新执行)
usbipd attach --wsl --busid=<BUSID>
可直接使用脚本自动选择并挂载串口设备(优先选择 Connected 区域中的 serial 设备,且优先 STATE=Shared):
bash {baseDir}/scripts/usbipd_attach_serial.sh
常用参数:
# 指定 BUSID
bash {baseDir}/scripts/usbipd_attach_serial.sh --busid <BUSID>
# 指定发行版
bash {baseDir}/scripts/usbipd_attach_serial.sh --distro <DISTRO>
# 按关键词筛选设备(如 ESP32 / COMxx / CP210x)
bash {baseDir}/scripts/usbipd_attach_serial.sh --keyword "ESP32"
# 仅预览,不执行
bash {baseDir}/scripts/usbipd_attach_serial.sh --dry-run
说明:
BUSID 可能变化,需要重新 usbipd list 或重新运行自动映射脚本。usbipd attach --wsl --busid=<BUSID>(脚本会自动执行)。ls /dev/ttyUSB* /dev/ttyACM* 2>/dev/null 确认串口节点。在较新的 WSL 版本中,内核采用模块化设计,vhci_hcd(虚拟主机控制器接口)驱动可能不会自动加载。
在 WSL 终端执行:
sudo modprobe vhci_hcd
idf.py create-project <project_name> <project_path>
idf.py create-project-from-example <example_name> <project_path>
直接使用 idf.py 执行加密/非加密应用烧录:
# 加密烧录整个固件 (bootloader + partition table + app)
idf.py -p <PORT> encrypted-flash
# 加密烧录 app 分区
idf.py -p <PORT> encrypted-app-flash
# 非加密烧录 app 分区
idf.py -p <PORT> app-flash
# 非加密烧录整个固件 (bootloader + partition table + app)
idf.py -p <PORT> flash
references/esp-idf-cli.md — concise command patterns + what to paste back when reporting errors.references/idf-py-help.txt — captured idf.py --help output for quick lookup/search.To refresh the help text for your installed ESP-IDF version, run:
scripts/capture_idf_help.shNot used by default.
Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-547895019-esp-idf-helper/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-547895019-esp-idf-helper/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-547895019-esp-idf-helper/trust"
Operational fit
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-547895019-esp-idf-helper/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-547895019-esp-idf-helper/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-547895019-esp-idf-helper/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-547895019-esp-idf-helper/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-547895019-esp-idf-helper/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-547895019-esp-idf-helper/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "CLAWHUB",
"generatedAt": "2026-04-17T00:13:23.886Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "auto",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:auto|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Openclaw",
"href": "https://github.com/openclaw/skills/tree/main/skills/547895019/esp-idf-helper",
"sourceUrl": "https://github.com/openclaw/skills/tree/main/skills/547895019/esp-idf-helper",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/clawhub-skills-547895019-esp-idf-helper/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-547895019-esp-idf-helper/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/clawhub-skills-547895019-esp-idf-helper/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-547895019-esp-idf-helper/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to esp-idf-helper and adjacent AI workflows.