Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/tomes --skill run-test명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | run-test |
| description | > Use when this capability is needed. |
Use this skill when you need to validate JETLS changes with tests or decide which test command to run.
When you changed a specific component, run the component-specific test instead of the full test suite.
Use this standard form:
julia --startup-file=no --project=test -e 'using Test; @testset "test_XXX" include("test/test_XXX.jl")'
Notes:
--startup-file=no avoids loading unnecessary startup utilities.--project=test enables JETLS_TEST_MODE for proper test execution.For faster iteration on a specific @testset,
use TestRunner.jl
when testrunner --help succeeds:
testrunner --project=test test/test_XXX.jl "testset_name"
TestRunner.jl is still experimental, but it is reliable enough to try first
when the target @testset is clear. If it fails in a way that looks specific
to TestRunner.jl, fall back to running the test file standalone.
Pkg.test() takes about 3.5 minutes as of June 2026. Avoid it unless:
In the final response, report the exact test command you ran and whether it passed, failed, or timed out. If you skipped tests, explain why.
Source: aviatesk/JETLS.jl — distributed by TomeVault.