Stats
Actions
Tags
From dalykit
DalyKit 분석 환경 점검 및 의존성 설치. 트리거: "dalykit:doctor", "dalykit:doctor install", "환경 점검", "의존성 설치".
How this skill is triggered — by the user, by Claude, or both
Slash command
/dalykit:doctorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> 프로젝트의 Python 실행 환경과 DalyKit 의존성을 점검하고, 필요 시 설치한다.
프로젝트의 Python 실행 환경과 DalyKit 의존성을 점검하고, 필요 시 설치한다.
dalykit:doctor ← 현재 분석 환경 점검
dalykit:doctor install ← requirements.txt 기준 의존성 설치/업데이트
dalykit/ 폴더가 존재해야 한다dalykit/config/domain.md와 dalykit/config/requirements.txt가 있어야 한다dalykit:init을 먼저 실행하세요." 안내 후 종료dalykit/config/domain.md를 읽어 ## 실행 환경의 가상환경 이름 값을 확인한다conda run -n {env} --no-capture-output python으로 설정한다python3pythonvenv를 활성화한 상태로 Claude Code를 실행했다면, 현재 세션 Python이 그 venv 인터프리터를 그대로 사용한다dalykit/config/requirements.txt를 읽는다pip --version 확인dalykit:doctor install 호출 시:
현재 사용 중인 Python 명령으로 아래를 실행한다
python -m pip install -r dalykit/config/requirements.txt
conda 환경 이름이 있으면 아래 형태를 사용한다
conda run -n {env} --no-capture-output python -m pip install -r dalykit/config/requirements.txt
설치 완료 후 2단계 점검을 다시 실행해 누락 패키지를 재확인한다
venv를 활성화한 상태라면:
npx claudepluginhub taehyunan-99/dalykit --plugin dalykitGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.