소스 정보
- 저장소
- ARM-software/lavatube
- 최근 소스 활동
- 2026년 8월 2일 22:43
- 감지된 SKILL.md 언어
- 영어
- 스타
- 9
- 포크
- 5
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ARM-software/lavatube --skill validate-hardcoded명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | validate-hardcoded |
| description | Validate our hardcoded commands against code generated variants |
| metadata | {"short-description":"Validate lavatube's hardcoded command implementations to see if we missed anything"} |
tmpdir=$(mktemp -d /tmp/validate_hardcoded.XXXXXX)
cp generated/read_auto.cpp generated/read_auto.h \
generated/write_auto.cpp generated/write_auto.h \
generated/struct_read_auto.cpp generated/struct_write_auto.cpp \
"$tmpdir"/
Code diffs can now be created with eg diff -u "$tmpdir/write_auto.cpp" generated/write_auto.cpp.
3. In scripts/vkconfig.py set the lists hardcoded, hardcoded_write, hardcoded_read to empty (or if
a specific command is requested for validation, simply remove this command from the list).
4. In scripts/util.py set the variable bypass_checks to True
5. Rerun the script scripts/lava.py. This will generate code generated variants of these hardcoded commands.
6. Revert the changes made to the above scripts.
7. In scripts/vkconfig.py, for each command in the lists hardcoded, hardcoded_write, hardcoded_read
compare their hardcoded implementation in src/hardcode_read.cpp and src/hardcode_write with their
autogenerated variants in the generated/ folder. Assume that the hardcoded variant is older, and look for
things it may be missing compared to generated variant. It is hardcoded because we want to deviate from the
behaviour of this particular command, but we want it still to be a well-behaved member of the same family of
commands. So behaviour common to all commands should still be present, such as callbacks for replay and thaw
calls for capture.
8. Rerun scripts/lava.py to restore everything back to normal.
Diagnose physical Android device USB link speed, USB 2 vs. USB 3 negotiation, udev permissions, and cable/port bottlenecks
Run or debug lavatube's Android emulator capture workflow, especially tests/android_emulator_trace.sh, emulator setup, Android layer ABI selection, and verifying android traces.
Validate the lavatube documentation