-
Notifications
You must be signed in to change notification settings - Fork 0
fix: 이식성 잔여 — python3, 개행 경계 순회, 캐시 resolver 정렬 2중 결함 #186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
fe21c7e
580120c
d56e71a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| { | ||
| "name": "ml-toolkit", | ||
| "version": "1.4.3", | ||
| "version": "1.4.4", | ||
| "description": "ML/multimodal development principles, GPU parallel processing, Gradio CV apps, CV notebook generation, interactive CV data exploration" | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| name: ml-toolkit | ||
| version: "1.4.3" | ||
| version: "1.4.4" | ||
| description: "ML/multimodal development principles, GPU parallel processing, Gradio CV apps, CV notebook generation, interactive CV data exploration" | ||
| author: "YoungjaeDev" | ||
| kind: standalone |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -127,7 +127,7 @@ else | |
| SKILL_DIR="$HOME/.hermes/plugins/ml-toolkit/skills/gpu-parallel-pipeline" # Hermes default install | ||
| fi | ||
| [ -d "$SKILL_DIR" ] || { echo "gpu-parallel-pipeline: skill dir not resolved" >&2; exit 1; } | ||
| python "$SKILL_DIR/scripts/check_gpu_memory.py" | ||
| python3 "$SKILL_DIR/scripts/check_gpu_memory.py" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Windows CUDA 환경에서 python.org 설치본처럼 AGENTS.md reference: AGENTS.md:L285-L287 Useful? React with 👍 / 👎. |
||
| ``` | ||
|
|
||
| **Rule of thumb:** | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| name: ppt-yeong-style | ||
| version: "0.9.3" | ||
| version: "0.9.4" | ||
| description: "yeong 스타일 강의·제안 덱 작성 규약 — ppt-master 빌드 엔진 위에 얹는 작성 레이어(엔진 자체가 아님). 스킬 3종: 메인 ppt-yeong-style(미감 시그니처 §0 'Editorial restraint, one committed accent'·md 소스 규약·작성 원칙 16종·밀도 리듬·역할 기반 색·codex-image vs SVG 경계·앱 UI 실물 강제·레버 조합 차별화·윤문·렌더 QA + references/ 6종 + 주입 페이로드) + lecture-deck(강의 덱 운영 — 실습 handouts 생성 규약·프롬프트 카드·placeholder→실캡처 스크린샷 슬롯·리넘버링 4중 동기화·전사 회고 루프·강사 노트 태그 + cc-common 47장 레퍼런스) + deck-review(관점별 리뷰 서브에이전트 4종 audience-fit·story-flow·fact-check·design-qa 병렬 오케스트레이션 + codex:rescue 교차 리뷰, 페르소나는 파라미터). 의존 스킬은 있으면 사용, 없으면 생략 + 설치 제안 문구(ppt-master만 prerequisite-stop). ppt-master로 그냥 'PPT 만들기'와 달리 yeong 규약이 필요할 때." | ||
| author: "YoungjaeDev" | ||
| kind: standalone |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이 블록은 바로 아래에 Windows용 활성화 경로도 제공하지만, 일반적인 Windows Python 설치는
python3.exe대신py -3또는python을 노출하므로 변경된 첫 명령에서 환경 생성이 중단됩니다. macOS의python부재를 해결하면서 Windows 흐름을 회귀시키지 않도록 OS별 명령을 병기하거나 인터프리터를 탐지해 선택하세요.AGENTS.md reference: AGENTS.md:L287-L287
Useful? React with 👍 / 👎.