소스 정보
- 저장소
- tuya/tuyaopen-ide-manifests
- 최근 소스 활동
- 2026년 7월 23일 10:31
- 감지된 SKILL.md 언어
- 영어
- 스타
- 2
- 포크
- 5
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tuya/tuyaopen-ide-manifests --skill tuyaos-watchdog명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Build and compile TuyaOpen projects, select build configurations, edit Kconfig options, clean artifacts, and run Linux ELF binaries. Use when the user mentions compiling, building, tos.py build, config choice, menuconfig, Kconfig, build error, or running a project. 项目编译、构建、编译配置、清理编译、编译错误、menuconfig、Kconfig。
Agent-friendly non-blocking serial log capture for TuyaOpen devices. Runs tos.py monitor in the background, writes logs to file, and lets the agent tail or stop it at any time. Use when the agent needs to capture device logs without blocking, run a debug session, or monitor UART output during a build-flash-analyze loop. 后台串口日志、非阻塞监控、设备日志捕获、agent日志分析。
Automated build-flash-monitor-analyze development loop for TuyaOpen devices. Covers log analysis, error patterns, CLI testing, and iterative debugging. Use when the user mentions dev loop, automated testing, log analysis, debug cycle, iterative development, or CI loop. 开发闭环、自动化测试、日志分析、调试循环、迭代开发。
SOC 직업 분류 기준
SKILL.md 표시 중
| name | tuyaos/watchdog |
| description | TuyaOS watchdog via tal_watchdog (demo: os_watchdog). 看门狗、喂狗、tal_watchdog、防死机。 |
| when_to_use | Use when adding / feeding a watchdog on TuyaOS firmware. |
| id | tuyaos-watchdog |
| surfaces | ["embedded"] |
| tags | ["watchdog","tuyaos","tal_watchdog"] |
tal_watchdog)Demo: …/examples/os_watchdog/example_os_watchdog.c
TuyaOS examples use tal_watchdog_*, not the TuyaOpen tkl_watchdog_* card.
#include "tal_watchdog.h"
#include "tal_log.h"
void example_feed_watchdog(void)
{
OPERATE_RET rt = tal_watchdog_refresh();
if (rt != OPRT_OK) {
TAL_PR_ERR("watchdog refresh failed %d", rt);
}
}