소스 정보
- 저장소
- hoshinoht/forest-link-protocol
- 최근 소스 활동
- 2026년 4월 1일 23:50
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/hoshinoht/forest-link-protocol --skill flash명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | flash |
| description | Build and flash firmware to connected ESP32-S3, then open serial monitor |
This file is both:
/flash operational skill for ClaudeUse this guide when a tester needs to:
sdkconfig.defaultssdkconfig.defaults plus sdkconfig.defaults.relayWhenever a board changes role between exit and relay, delete sdkconfig and rebuild.
This avoids stale configuration leaking from a previous build mode.
esp32s3Expected indicators:
GATEWAYW:OKExpected indicators:
RELAYW:--W:OK = WiFi connected to APW:-- = no AP connection (expected for relay build)Lo P:<n> = LoRa present / ESP-NOW peer count lineN<n> C<h> D<h> = neighbors, control-path hops, data-path hops>> Cloud CMD = recent cloud command receivedUse the in-repo wrapper from flp-node/.
The ./idf wrapper:
~/esp/esp-idf-v5.5.3/export.shsdkconfig on build / freshcd flp-node
./idf build
./idf flash monitor
cd flp-node
./idf relay build
./idf relay flash monitor
# full clean, rebuild, erase flash, then flash
./idf fresh
# relay variant of the same
./idf relay fresh
# specify a port manually
./idf flash -p /dev/cu.usbmodem12301 monitor
./idf relay flash -p /dev/cu.usbmodem12301 monitor
If multiple serial ports are detected, the wrapper will prompt for selection.
Run commands inside ESP-IDF PowerShell or ESP-IDF CMD.
If idf.py is not found, the tester is in the wrong terminal.
cd flp-node
Remove-Item sdkconfig -ErrorAction SilentlyContinue
idf.py -D "SDKCONFIG_DEFAULTS=sdkconfig.defaults" set-target esp32s3
idf.py build
idf.py -p COM3 flash monitor
cd flp-node
Remove-Item sdkconfig -ErrorAction SilentlyContinue
idf.py -D "SDKCONFIG_DEFAULTS=sdkconfig.defaults;sdkconfig.defaults.relay" set-target esp32s3
idf.py build
idf.py -p COM4 flash monitor
Replace COM3 / COM4 with the actual port shown in Device Manager.
Common device names:
/dev/cu.usbmodem*/dev/cu.usbserial*/dev/cu.SLAB*Check Device Manager > Ports (COM & LPT).
Typical labels:
If the port disappears during flash/monitor work, try a different USB cable first.
Recommended tester workflow:
This avoids mixing up ports and addresses later in experiment runs.
After every flash, verify:
FLP-XXXX is recordedDo not move on to experiment testing until these checks pass.
idf.py not foundCause:
Fix:
./idfCapture:
Cause:
Fix:
/dev/cu.*Capture:
could not open portCause:
Fix:
idf.py monitor instancesCause:
sdkconfig was reused from the previous build modeFix:
sdkconfigW:--Cause:
Check:
W:OKCause:
Fix:
Check:
Check:
Do not summarize from memory; capture the full boot log.
Ask the tester for:
When giving this to a tester, ask them to fill in:
When used as a skill, guide the user in this order:
Do not assume the same commands work unchanged across macOS/Linux and Windows.