oh-my-customcode 0.150.1 → 0.151.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/templates/.claude/rules/MUST-completion-verification.md +40 -0
- package/templates/.claude/rules/MUST-sync-verification.md +21 -0
- package/templates/.claude/skills/intent-detection/patterns/agent-triggers.yaml +2 -2
- package/templates/guides/claude-code/15-version-compatibility.md +254 -0
- package/templates/manifest.json +1 -1
package/dist/cli/index.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -73,6 +73,15 @@ Never accept "pre-existing" without direct base-branch evidence. A false "pre-ex
|
|
|
73
73
|
|
|
74
74
|
## Common False Completion Patterns — 8 anti-patterns including "Command executed" without exit code check, "Waiting for manual publish" when CI auto-publishes, "UI changes done" without browser render. See full table via Read tool.
|
|
75
75
|
|
|
76
|
+
### Test-Skip Is Not Completion (#1217 item #5)
|
|
77
|
+
|
|
78
|
+
테스트 실패를 `describe.skip`/`xfail`/`it.skip` + coverage threshold 하향으로 회피하는 것은 완료가 아니다. 근본 원인 분석 없이 그린 빌드를 만드는 회피는 기술 부채를 다음 마이너로 이월시킨다.
|
|
79
|
+
|
|
80
|
+
| 금지 | 필수 |
|
|
81
|
+
|------|------|
|
|
82
|
+
| 실패 테스트 skip + threshold 하향으로 그린 빌드 | 근본 원인 분석 후 수정, 불가 시 명시적 deferral + 이슈 등록 |
|
|
83
|
+
| "다음 버전 TODO" 주석만 남기고 머지 | skip 사유·복구 조건·추적 이슈를 함께 기록 |
|
|
84
|
+
|
|
76
85
|
<!-- DETAIL: Common False Completion Patterns
|
|
77
86
|
|
|
78
87
|
| Pattern | Reality | Fix |
|
|
@@ -131,6 +140,37 @@ Related memory records:
|
|
|
131
140
|
- `feedback_subagent_pre_existing_claims.md` — subagent false-positive pattern
|
|
132
141
|
-->
|
|
133
142
|
|
|
143
|
+
## Interrupt Priority Re-Ordering
|
|
144
|
+
|
|
145
|
+
사용자 인터럽트 / 새 요청 / 룰 위반 지적 동시 수신 시, 사과 한 줄 후 즉시 작업 통합 plan 재정렬. "사과만 짧게 + 기존 흐름 유지" 패턴 금지.
|
|
146
|
+
|
|
147
|
+
| 시나리오 | Required 행동 |
|
|
148
|
+
|---------|--------------|
|
|
149
|
+
| 새 작업 + 룰 위반 지적 동시 | (1) 룰 위반 즉시 수정 (2) 새 작업 통합 plan 제시 (3) 사용자 확인 후 진행 |
|
|
150
|
+
| 인터럽트 후 기존 작업 진행 | 인터럽트 내용 통합 또는 명시적 deferral 후 진행 |
|
|
151
|
+
| "사과만 짧게" | 부족 — plan 재정렬 후속 필수 |
|
|
152
|
+
|
|
153
|
+
Reference issues: #1188 item #8.
|
|
154
|
+
|
|
155
|
+
## Diagnostic Hypothesis Verification
|
|
156
|
+
|
|
157
|
+
진단 단계에서 채택한 가설로 워크플로우/인프라/설정을 **영구 변경하기 전**, 가설을 실제 증거로 검증해야 한다. "그럴듯한 가설"을 검증 없이 영구 변경에 적용하면 잘못된 추정이 영구 부채로 남는다.
|
|
158
|
+
|
|
159
|
+
| 상황 | 금지 | 필수 |
|
|
160
|
+
|------|------|------|
|
|
161
|
+
| 에러 원인 추정 | 첫 가설로 워크플로우/설정 영구 수정 | 가설을 좁은 범위에서 검증 후 변경 |
|
|
162
|
+
| CI/publish 실패 | 추정 기반 우회 커밋 머지 | 에러 메시지/로그로 실제 원인 확정 |
|
|
163
|
+
| 권한/토큰 오류 | 플래그/옵션 변경으로 우회 시도 | 권한 범위·토큰 종류 직접 확인 |
|
|
164
|
+
|
|
165
|
+
### Common Violation (#1217 item #4)
|
|
166
|
+
npm publish E403을 `--provenance` attestation 충돌로 오진단 → release workflow에서 `--provenance` 제거 커밋 머지 → 2차 시도 동일 실패 → 실제 원인은 NPM_TOKEN 권한(Automation token 필요). 잘못된 추정으로 릴리즈 워크플로우를 영구 변경.
|
|
167
|
+
|
|
168
|
+
### Self-Check (영구 변경 전)
|
|
169
|
+
1. 가설을 뒷받침하는 직접 증거(로그/에러 코드/문서)가 있는가?
|
|
170
|
+
2. 비파괴적 방법으로 가설을 검증할 수 있는가?
|
|
171
|
+
3. 변경이 되돌리기 쉬운가? (영구 워크플로우 변경 vs 일회성 시도)
|
|
172
|
+
하나라도 NO면 검증을 먼저 수행한다. 근본 원인 진단은 `superpowers:systematic-debugging` 참조.
|
|
173
|
+
|
|
134
174
|
## Integration
|
|
135
175
|
|
|
136
176
|
| Rule | Interaction |
|
|
@@ -81,6 +81,27 @@ Wiki verification is also enforced by CI (`.github/workflows/wiki-sync.yml`).
|
|
|
81
81
|
|
|
82
82
|
Any change to: agents, agent frontmatter, skills, guides, routing patterns, rules, wiki pages.
|
|
83
83
|
|
|
84
|
+
## Structural Migration Verification
|
|
85
|
+
|
|
86
|
+
디렉토리 재구조화, 템플릿 평탄화(flat templates), 브랜치 전략 변경 등 **구조 마이그레이션** 시, 경로 참조와 파일 존재성 회귀를 사전 검사해야 한다. 표준 5-round 검증이 콘텐츠 정합성에 집중하는 반면, 구조 마이그레이션은 경로·존재성 회귀를 별도로 점검한다.
|
|
87
|
+
|
|
88
|
+
| 마이그레이션 유형 | 검사 항목 |
|
|
89
|
+
|------------------|-----------|
|
|
90
|
+
| 디렉토리 재구조화 | 모든 경로 참조(스크립트, 테스트, CI workflow)가 새 경로로 업데이트되었는가 |
|
|
91
|
+
| 템플릿 평탄화 | validate-docs/sync 스크립트가 새 경로를 참조하는가 |
|
|
92
|
+
| 브랜치 전략 변경 | CI trigger 경로, 파일 git tracked 상태가 일관되는가 |
|
|
93
|
+
| 파일 존재성 | 테스트가 read하는 파일이 CI 체크아웃 환경(clean clone)에 존재(git tracked)하는가 |
|
|
94
|
+
|
|
95
|
+
### Common Violations (#1217 items #2/#3/#7)
|
|
96
|
+
- flat templates 마이그레이션 후 `validate-docs.ts`가 옛 경로 참조 → G1 CI 실패
|
|
97
|
+
- `CLAUDE.md` untracked → strict allowlist `.gitignore`와 결합되어 CI 체크아웃 환경에서 ENOENT
|
|
98
|
+
- release/develop 듀얼 브랜치 전환 시 `verify-template-sync.sh`가 임시 skip 상태로 머지
|
|
99
|
+
|
|
100
|
+
### Self-Check (구조 마이그레이션 커밋 전)
|
|
101
|
+
1. `grep`으로 옛 경로 참조 잔존을 확인했는가?
|
|
102
|
+
2. 테스트가 읽는 파일의 git tracked 상태를 확인했는가? (`git ls-files` 대조)
|
|
103
|
+
3. 임시 skip된 검증 스크립트/테스트가 남아있지 않은가?
|
|
104
|
+
|
|
84
105
|
## Quick Verification Commands — agent/skill/guide/wiki counts via ls/find/wc. See commands via Read tool.
|
|
85
106
|
|
|
86
107
|
<!-- DETAIL: Quick Verification Commands
|
|
@@ -592,14 +592,14 @@ agents:
|
|
|
592
592
|
base_confidence: 85
|
|
593
593
|
routing_rule: "Invoke token-efficiency-audit skill"
|
|
594
594
|
|
|
595
|
-
skill-
|
|
595
|
+
skill-dev-refactor:
|
|
596
596
|
keywords:
|
|
597
597
|
korean: [단순화, 코드 정리, 중복 제거]
|
|
598
598
|
english: [simplify, cleanup, deduplicate, "reduce complexity"]
|
|
599
599
|
file_patterns: []
|
|
600
600
|
supported_actions: [simplify, clean, reduce]
|
|
601
601
|
base_confidence: 75
|
|
602
|
-
routing_rule: "Invoke
|
|
602
|
+
routing_rule: "Invoke dev-refactor skill"
|
|
603
603
|
|
|
604
604
|
# Memory skills
|
|
605
605
|
skill-memory-save:
|
|
@@ -486,6 +486,11 @@ docs/superpowers/plans/**
|
|
|
486
486
|
| v2.1.143 | 직접 변경 불필요. `worktree.bgIsolation: "none"` opt-in 시 파일 소유권 규율 필수. Stop hook 8회 block cap 인지. | P3 follow-up |
|
|
487
487
|
| v2.1.144 | 호환 가능. CLAUDE.md `omcustomMinClaudeCode` v2.1.121 유지. macOS bg session FDA crash fix 확인. | None |
|
|
488
488
|
| v2.1.145 | docs-only. `claude agents --json` HUD 강화, Stop/SubagentStop hook `background_tasks`/`session_crons` 활용, status line GitHub PR 통합 — 별도 follow-up 권장. | P3 follow-up |
|
|
489
|
+
| v2.1.146 | docs-only. `/simplify`→`/code-review` 리네임 + effort level, AskUserQuestion auto-mode normalization, MCP pagination 안정성, `CLAUDE_CODE_SUBAGENT_MODEL` 자식 프로세스 전파 fix. | None |
|
|
490
|
+
| v2.1.147 | `Workflow` 도구(`CLAUDE_CODE_WORKFLOWS=1`) 추가 — /pipeline과 개념 중첩, 통합 검토 후보. `/simplify`→`/code-review` 개명. plugin agent 복수 `Agent()` 타입 fix. | P3 follow-up |
|
|
491
|
+
| v2.1.148 | Bash 도구 exit 127 regression(v2.1.147 도입) 수정 — v2.1.147 사용 시 즉시 업그레이드 권장. | None |
|
|
492
|
+
| v2.1.149 | `/usage` per-category(skills/subagents/plugins/MCP) breakdown, GFM 체크박스 렌더링, worktree sandbox allowlist fix, `find` macOS vnode crash fix. | P3 follow-up |
|
|
493
|
+
| v2.1.150 | 내부 인프라 개선만, 사용자 대면 변경 없음. 조치 불필요. | None |
|
|
489
494
|
|
|
490
495
|
## v2.1.144 (2026-05-19) — 호환성 점검
|
|
491
496
|
|
|
@@ -640,6 +645,250 @@ Agent Teams 멤버 이름에 non-ASCII 문자(한국어 포함)가 포함된 경
|
|
|
640
645
|
|
|
641
646
|
---
|
|
642
647
|
|
|
648
|
+
## v2.1.146 (2026-05-21) — 호환성 점검
|
|
649
|
+
|
|
650
|
+
> Issue: #1205 — Claude Code v2.1.146 compatibility documentation
|
|
651
|
+
|
|
652
|
+
### `/simplify` → `/code-review` 리네임 (+ effort level)
|
|
653
|
+
|
|
654
|
+
기존 `/simplify` 슬래시 커맨드가 `/code-review`로 리네임되었습니다. effort level을 인수로 지정할 수 있습니다 (예: `/code-review high`).
|
|
655
|
+
|
|
656
|
+
**oh-my-customcode 연관**: 내부 `dev-review` 스킬과 명칭이 다르며 충돌 없음. 사용자가 네이티브 `/code-review`와 omcustom `dev-review` 스킬을 혼동하지 않도록 구분 안내가 필요할 수 있습니다 (별도 follow-up 후보). 직접 harness 변경 불필요.
|
|
657
|
+
|
|
658
|
+
### Auto mode `AskUserQuestion` 억제 해제
|
|
659
|
+
|
|
660
|
+
Auto mode에서 user 또는 skill이 명시적으로 요청한 경우 `AskUserQuestion` 호출이 더 이상 억제되지 않습니다.
|
|
661
|
+
|
|
662
|
+
**oh-my-customcode 연관**: R015 intent transparency의 ambiguity-gate 패턴이 정상 작동합니다. 신뢰도 < 70% 구간에서 `AskUserQuestion`을 통한 명시적 확인 요청이 auto mode에서도 동작하므로 R015 오탐(ambiguous routing 무음 처리)이 감소합니다. 호환, 개선.
|
|
663
|
+
|
|
664
|
+
### MCP `resources/list`, `resources/templates/list`, `prompts/list` 페이지네이션 수정
|
|
665
|
+
|
|
666
|
+
1페이지 이후의 항목이 누락되던 버그가 수정되었습니다.
|
|
667
|
+
|
|
668
|
+
**oh-my-customcode 연관**: `ListMcpResourcesTool` 페이지네이션 안정성이 개선됩니다. `claude-mem`, `ontology-rag` 등 R011/R019 MCP 서버에서 리소스 목록이 많은 경우 전체 항목이 정상 조회됩니다. 호환, 개선.
|
|
669
|
+
|
|
670
|
+
### `CLAUDE_CODE_SUBAGENT_MODEL` 자식 프로세스 전파 수정
|
|
671
|
+
|
|
672
|
+
`CLAUDE_CODE_SUBAGENT_MODEL` 환경 변수가 다중 에이전트 세션의 자식 프로세스에 전파되지 않던 버그가 수정되었습니다.
|
|
673
|
+
|
|
674
|
+
**oh-my-customcode 연관**: R010 + R018 Agent Teams 멤버 모델 일관성에 직접 영향. `CLAUDE_CODE_SUBAGENT_MODEL`을 설정한 환경에서 Agent Teams 멤버가 지정 모델을 올바르게 사용하는지 v2.1.146 업그레이드 후 검증 권장. 호환, 검증 권장.
|
|
675
|
+
|
|
676
|
+
### Windows 관련 수정 (macOS 영향 없음)
|
|
677
|
+
|
|
678
|
+
- Windows PowerShell `pwsh` winget/Store 설치 실패 fix (v2.1.124 regression)
|
|
679
|
+
- Windows Terminal background session strobing fix
|
|
680
|
+
- Windows NTFS junction background-job worktree 안전성 개선
|
|
681
|
+
- GNOME Terminal right/middle-click paste fix
|
|
682
|
+
|
|
683
|
+
**oh-my-customcode 연관**: macOS 개발 환경에는 직접 영향 없음.
|
|
684
|
+
|
|
685
|
+
### 기타 수정
|
|
686
|
+
|
|
687
|
+
- `/background` skill-or-custom-slash-only 입력 수용 fix → `/bg` 플로우(R010 Universal bypassPermissions) 개선
|
|
688
|
+
- Backgrounded sessions tool permission "don't ask again" 재요청 fix → R010 bypassPermissions 안정성 개선
|
|
689
|
+
- Auto-updater 상태줄 fail 시 현재 버전 표시 fix → R012 statusline 영향 없음 (별도)
|
|
690
|
+
- Agent SDK 스트리밍 세션 종료 시 uncaught exception fix → agent-sdk-* 플러그인 영향 가능, 모니터 권장
|
|
691
|
+
- `forceLoginOrgUUID`/`forceLoginMethod` managed-settings enforcement fix → R002 직접 영향 없음
|
|
692
|
+
- Auto-updater 일시적 네트워크 실패 retry 개선
|
|
693
|
+
- 대용량 파일 편집 diff 렌더링 성능 개선
|
|
694
|
+
- `/theme` color editor + "New custom theme" Esc 미응답 fix
|
|
695
|
+
|
|
696
|
+
### oh-my-customcode 연관 평가
|
|
697
|
+
|
|
698
|
+
| 변경 | oh-my-customcode 영향 | 조치 |
|
|
699
|
+
|------|----------------------|------|
|
|
700
|
+
| `/simplify` → `/code-review` 리네임 + effort level | 내부 `dev-review` skill과 명칭 다름, 충돌 없음 | 호환, 별도 조치 없음 |
|
|
701
|
+
| Auto mode `AskUserQuestion` 억제 해제 | R015 intent transparency, ambiguity-gate 정상 작동 | 호환, 개선 |
|
|
702
|
+
| MCP 페이지네이션 수정 | `ListMcpResourcesTool` 페이지네이션 안정성 | 호환, 개선 |
|
|
703
|
+
| `CLAUDE_CODE_SUBAGENT_MODEL` 자식 프로세스 전파 fix | R010 + R018 Agent Teams 멤버 모델 일관성 개선 | 호환, 검증 권장 |
|
|
704
|
+
| `/background` 입력 수용 fix | `/bg` 플로우 개선 | 호환, 개선 |
|
|
705
|
+
| Backgrounded sessions permission "don't ask again" fix | R010 bypassPermissions 안정성 | 호환, 개선 |
|
|
706
|
+
| Agent SDK 스트리밍 uncaught exception fix | agent-sdk-* 플러그인 영향 가능 | 호환, 모니터 |
|
|
707
|
+
| Windows/터미널 관련 수정 | macOS 환경 직접 영향 없음 | 호환 |
|
|
708
|
+
|
|
709
|
+
**Action items**:
|
|
710
|
+
- 본 릴리스에서 코드 변경 없음 (docs-only)
|
|
711
|
+
- 후속 follow-up 후보:
|
|
712
|
+
- `CLAUDE_CODE_SUBAGENT_MODEL` 전파 동작 검증 (R018 Agent Teams 멤버 모델 일관성)
|
|
713
|
+
- 외부 `/code-review`와 내부 `dev-review` skill 구분 안내 (CLAUDE.md 또는 dev-review skill 본문)
|
|
714
|
+
- Agent SDK 스트리밍 fix가 agent-sdk-dev 플러그인에 미치는 영향 모니터
|
|
715
|
+
|
|
716
|
+
---
|
|
717
|
+
|
|
718
|
+
## v2.1.147 (2026-05-21) — 호환성 점검
|
|
719
|
+
|
|
720
|
+
> Issue: #1216 — Claude Code v2.1.147 compatibility documentation
|
|
721
|
+
|
|
722
|
+
### `Workflow` 도구 추가 (기본 off)
|
|
723
|
+
|
|
724
|
+
deterministic multi-agent orchestration을 위한 새 `Workflow` 도구가 추가되었습니다. `CLAUDE_CODE_WORKFLOWS=1` 환경 변수로 활성화할 수 있으며, 기본값은 비활성입니다.
|
|
725
|
+
|
|
726
|
+
**oh-my-customcode 연관**: oh-my-customcode `/pipeline` 스킬(workflows/*.yaml 기반)과 개념적으로 중첩됩니다. 향후 네이티브 `Workflow` 도구 통합 검토 후보이나, 현재 기본 off이므로 영향 없음. 호환.
|
|
727
|
+
|
|
728
|
+
### `/simplify` → `/code-review` 개명 (+ effort level, `--comment`)
|
|
729
|
+
|
|
730
|
+
기존 `/simplify` 슬래시 커맨드가 `/code-review`로 개명되었습니다. 선택한 effort 수준으로 correctness 버그를 보고하며(`/code-review high`), `--comment` 플래그로 inline PR 코멘트를 게시할 수 있습니다. 기존 cleanup-and-fix 동작은 제거되었습니다.
|
|
731
|
+
|
|
732
|
+
**oh-my-customcode 연관**: CC 빌트인 `/code-review`와 내부 `dev-review`/`code-review` 스킬의 명칭 혼동 방지 안내가 필요합니다. v2.1.146에서 최초 리네임된 내용의 연속입니다. `.claude/skills/intent-detection/patterns/agent-triggers.yaml`의 `skill-simplify` 라우팅 엔트리는 내부 스킬 라우팅이므로 CC 빌트인 제거와 무관하나, 명명 혼동 방지를 위해 점검이 권장됩니다.
|
|
733
|
+
|
|
734
|
+
### REPL 및 Workflow 도구 샌드박스 강화
|
|
735
|
+
|
|
736
|
+
prototype-pollution 및 thenable 기반 escape에 대한 샌드박스 보안이 강화되었습니다.
|
|
737
|
+
|
|
738
|
+
**oh-my-customcode 연관**: R001 안전 규칙과 정합. 보안 강화이므로 호환, 개선.
|
|
739
|
+
|
|
740
|
+
### plugin agent 복수 `Agent(...)` 타입 fix
|
|
741
|
+
|
|
742
|
+
plugin agents가 `tools:` frontmatter에 복수 `Agent(...)` 타입을 선언 시 마지막 항목만 남기고 나머지를 드롭하던 버그가 수정되었습니다.
|
|
743
|
+
|
|
744
|
+
**oh-my-customcode 연관**: oh-my-customcode 에이전트 frontmatter에서 `tools:`에 복수 Agent() 타입을 선언하는 경우 이전에는 마지막만 인식되었습니다. 영향 점검이 권장됩니다.
|
|
745
|
+
|
|
746
|
+
### hook `if` 조건 매칭 버그 수정
|
|
747
|
+
|
|
748
|
+
hook `if` 조건(예: `PowerShell(git push*)`)이 매칭되지 않던 버그가 수정되었습니다 (`PowerShell(*)`만 동작했음).
|
|
749
|
+
|
|
750
|
+
**oh-my-customcode 연관**: `.claude/hooks/` 내 조건부 hook(`if` 필드 사용)의 정확한 매칭이 보장됩니다. R001 안전 규칙의 stage-blocker hook 신뢰성이 향상됩니다. 호환, 개선.
|
|
751
|
+
|
|
752
|
+
### 기타 수정
|
|
753
|
+
|
|
754
|
+
- auto-updater 개선: transient 네트워크 실패 재시도, OS 에러 코드 보고
|
|
755
|
+
- diff 렌더링 성능 개선
|
|
756
|
+
- prompt history 연속 중복 제거
|
|
757
|
+
- enterprise login 제한 강제 수정
|
|
758
|
+
|
|
759
|
+
**oh-my-customcode 연관**: 일반 안정성 개선. 직접 영향 없음.
|
|
760
|
+
|
|
761
|
+
### oh-my-customcode 연관 평가
|
|
762
|
+
|
|
763
|
+
| 변경 | oh-my-customcode 영향 | 조치 |
|
|
764
|
+
|------|----------------------|------|
|
|
765
|
+
| `Workflow` 도구 추가 (기본 off) | `/pipeline` 스킬과 개념 중첩, 향후 통합 후보 | 호환, follow-up 후보 |
|
|
766
|
+
| `/simplify` → `/code-review` 개명 | 내부 `dev-review` 스킬과 명칭 혼동 주의 | 호환, agent-triggers.yaml 점검 권장 |
|
|
767
|
+
| REPL/Workflow 샌드박스 강화 | R001 보안 강화 | 호환, 개선 |
|
|
768
|
+
| plugin agent 복수 Agent() 타입 fix | frontmatter `tools:` 복수 Agent() 선언 영향 점검 | 호환, 영향 점검 권장 |
|
|
769
|
+
| hook `if` 조건 매칭 fix | stage-blocker hook 신뢰성 향상 | 호환, 개선 |
|
|
770
|
+
| auto-updater / diff / history 개선 | 일반 안정성 | 호환 |
|
|
771
|
+
|
|
772
|
+
**Action items**:
|
|
773
|
+
- 본 릴리스에서 코드 변경 없음 (docs-only)
|
|
774
|
+
- 후속 follow-up 후보:
|
|
775
|
+
1. CC 빌트인 `/code-review`와 내부 `dev-review` skill 구분 안내 보강
|
|
776
|
+
2. `agent-triggers.yaml`의 `skill-simplify` 엔트리 명명 혼동 방지 점검
|
|
777
|
+
3. plugin agent frontmatter `tools:` 복수 Agent() 선언 영향 점검
|
|
778
|
+
4. `Workflow` 도구와 `/pipeline` 스킬 통합 가능성 연구 (중장기)
|
|
779
|
+
|
|
780
|
+
---
|
|
781
|
+
|
|
782
|
+
## v2.1.148 (2026-05-22) — 호환성 점검
|
|
783
|
+
|
|
784
|
+
> Issue: #1218 — Claude Code v2.1.148 compatibility documentation
|
|
785
|
+
|
|
786
|
+
### Bash 도구 exit code 127 regression 수정 (긴급)
|
|
787
|
+
|
|
788
|
+
v2.1.147에서 도입된 regression으로, 일부 사용자에게서 Bash 도구가 모든 명령에 대해 exit code 127을 반환하던 버그가 수정되었습니다.
|
|
789
|
+
|
|
790
|
+
**oh-my-customcode 연관**: Bash 도구를 사용하는 gh, git, 빌드/테스트 명령 등 oh-my-customcode 워크플로우 전반에 영향을 줍니다. v2.1.147을 사용 중이라면 v2.1.148로 즉시 업그레이드가 권장됩니다.
|
|
791
|
+
|
|
792
|
+
### oh-my-customcode 연관 평가
|
|
793
|
+
|
|
794
|
+
| 변경 | oh-my-customcode 영향 | 조치 |
|
|
795
|
+
|------|----------------------|------|
|
|
796
|
+
| Bash exit code 127 regression fix | 모든 Bash 도구 사용 워크플로우 복구 | 즉시 업그레이드 권장 |
|
|
797
|
+
|
|
798
|
+
**Action items**:
|
|
799
|
+
- v2.1.147 사용 중이면 v2.1.148로 즉시 업그레이드
|
|
800
|
+
- 본 릴리스에서 코드 변경 없음 (docs-only)
|
|
801
|
+
|
|
802
|
+
---
|
|
803
|
+
|
|
804
|
+
## v2.1.149 (2026-05-22) — 호환성 점검
|
|
805
|
+
|
|
806
|
+
> Issue: #1219 — Claude Code v2.1.149 compatibility documentation
|
|
807
|
+
|
|
808
|
+
### `/usage` per-category 사용량 분석
|
|
809
|
+
|
|
810
|
+
`/usage`가 limits 사용량 분석을 카테고리별로 표시합니다: skills, subagents, plugins, per-MCP-server 비용 세분화.
|
|
811
|
+
|
|
812
|
+
**oh-my-customcode 연관**: R013 ecomode 토큰 추적, R012 statusline, `token-efficiency-audit` 스킬과 연관됩니다. per-MCP 비용 가시성 덕분에 `claude-mem`, `ontology-rag` 등 R011/R019 MCP 서버의 비용을 모니터링할 수 있습니다. 호환, 개선.
|
|
813
|
+
|
|
814
|
+
### `/diff` 키보드 스크롤 지원
|
|
815
|
+
|
|
816
|
+
`/diff` 상세 뷰에서 키보드 스크롤이 지원됩니다 (arrows, j/k, PgUp/PgDn, Space, Home/End).
|
|
817
|
+
|
|
818
|
+
**oh-my-customcode 연관**: 코드 리뷰 워크플로우의 UX 향상. 직접 harness 변경 불필요.
|
|
819
|
+
|
|
820
|
+
### GFM 체크박스 렌더링
|
|
821
|
+
|
|
822
|
+
Markdown 출력이 GFM task list 체크박스(`- [ ]`/`- [x]`)를 일반 bullet 대신 체크박스로 렌더링합니다.
|
|
823
|
+
|
|
824
|
+
**oh-my-customcode 연관**: 에이전트 작업 목록(`- [ ]`/`- [x]`) 출력 가독성이 향상됩니다. 호환, 개선.
|
|
825
|
+
|
|
826
|
+
### git worktree 샌드박스 write allowlist 수정
|
|
827
|
+
|
|
828
|
+
git worktree에서 sandbox write allowlist가 main repo root 전체 대신 공유 `.git` 디렉토리만 커버하도록 수정되었습니다 (hooks/, config는 deny).
|
|
829
|
+
|
|
830
|
+
**oh-my-customcode 연관**: `EnterWorktree` 사용 시 보안이 강화됩니다. R001 안전 규칙과 정합. 호환, 보안 개선.
|
|
831
|
+
|
|
832
|
+
### Bash `find` macOS 크래시 버그 수정
|
|
833
|
+
|
|
834
|
+
Bash 도구의 `find` 명령이 macOS system file/vnode table을 소진하여 호스트를 크래시시키던 버그가 수정되었습니다.
|
|
835
|
+
|
|
836
|
+
**oh-my-customcode 연관**: Bash 도구로 대형 디렉토리를 탐색하는 oh-my-customcode 워크플로우의 호스트 안정성이 향상됩니다. 중요한 수정이므로 업그레이드가 권장됩니다.
|
|
837
|
+
|
|
838
|
+
### `/ultraplan` 및 remote session 생성 수정
|
|
839
|
+
|
|
840
|
+
작업 트리에 실제 변경이 없을 때 "Could not capture uncommitted changes"로 실패하던 버그가 수정되었습니다.
|
|
841
|
+
|
|
842
|
+
**oh-my-customcode 연관**: `/ultraplan` 및 remote session 기반 워크플로우 안정성이 향상됩니다. 호환, 개선.
|
|
843
|
+
|
|
844
|
+
### 기타 수정
|
|
845
|
+
|
|
846
|
+
- enterprise `allowAllClaudeAiMcps` managed setting 추가
|
|
847
|
+
- PowerShell 권한 우회 수정 (built-in `cd` 함수): macOS 환경 직접 영향 없음
|
|
848
|
+
|
|
849
|
+
**oh-my-customcode 연관**: macOS 개발 환경에는 직접 영향 없음.
|
|
850
|
+
|
|
851
|
+
### oh-my-customcode 연관 평가
|
|
852
|
+
|
|
853
|
+
| 변경 | oh-my-customcode 영향 | 조치 |
|
|
854
|
+
|------|----------------------|------|
|
|
855
|
+
| `/usage` per-category breakdown | R013 ecomode / R012 statusline / MCP 비용 가시성 | 호환, 개선 |
|
|
856
|
+
| `/diff` 키보드 스크롤 | 코드 리뷰 UX 향상 | 호환, 개선 |
|
|
857
|
+
| GFM 체크박스 렌더링 | 에이전트 작업 목록 가독성 향상 | 호환, 개선 |
|
|
858
|
+
| worktree sandbox write allowlist fix | EnterWorktree 보안 강화 | 호환, 보안 개선 |
|
|
859
|
+
| Bash `find` macOS 크래시 fix | 대형 디렉토리 탐색 호스트 안정성 향상 | 업그레이드 권장 |
|
|
860
|
+
| `/ultraplan` 생성 fix | remote session 워크플로우 안정성 | 호환, 개선 |
|
|
861
|
+
| PowerShell `cd` 권한 fix | macOS 영향 없음 | 호환 |
|
|
862
|
+
|
|
863
|
+
**Action items**:
|
|
864
|
+
- 본 릴리스에서 코드 변경 없음 (docs-only)
|
|
865
|
+
- 후속 follow-up 후보:
|
|
866
|
+
1. `/usage` per-MCP-server 비용 데이터를 `token-efficiency-audit` 스킬에 통합 검토
|
|
867
|
+
2. R012 statusline에 per-category usage 표시 강화 검토
|
|
868
|
+
|
|
869
|
+
---
|
|
870
|
+
|
|
871
|
+
## v2.1.150 (2026-05-23) — 호환성 점검
|
|
872
|
+
|
|
873
|
+
> Issue: #1220 — Claude Code v2.1.150 compatibility documentation
|
|
874
|
+
|
|
875
|
+
### 내부 인프라 개선
|
|
876
|
+
|
|
877
|
+
내부 인프라 개선으로, 사용자 대면 변경 사항은 없습니다.
|
|
878
|
+
|
|
879
|
+
**oh-my-customcode 연관**: 코드 및 문서 변경 불필요. 추적 기록용 docs-only 항목입니다.
|
|
880
|
+
|
|
881
|
+
### oh-my-customcode 연관 평가
|
|
882
|
+
|
|
883
|
+
| 변경 | oh-my-customcode 영향 | 조치 |
|
|
884
|
+
|------|----------------------|------|
|
|
885
|
+
| 내부 인프라 개선 | 사용자 대면 변경 없음 | 조치 불필요 |
|
|
886
|
+
|
|
887
|
+
**Action items**:
|
|
888
|
+
- 코드 및 문서 변경 불필요 (추적 기록용 docs-only)
|
|
889
|
+
|
|
890
|
+
---
|
|
891
|
+
|
|
643
892
|
## References
|
|
644
893
|
|
|
645
894
|
- #967 — Claude Code v2.1.117 release note
|
|
@@ -652,6 +901,11 @@ Agent Teams 멤버 이름에 non-ASCII 문자(한국어 포함)가 포함된 경
|
|
|
652
901
|
- #1147 — .gitignore nested .md pattern limitation note
|
|
653
902
|
- #1187 — Claude Code v2.1.144 compatibility documentation
|
|
654
903
|
- #1191 — Claude Code v2.1.145 compatibility documentation
|
|
904
|
+
- #1205 — Claude Code v2.1.146 compatibility documentation
|
|
905
|
+
- #1216 — Claude Code v2.1.147 compatibility documentation
|
|
906
|
+
- #1218 — Claude Code v2.1.148 compatibility documentation
|
|
907
|
+
- #1219 — Claude Code v2.1.149 compatibility documentation
|
|
908
|
+
- #1220 — Claude Code v2.1.150 compatibility documentation
|
|
655
909
|
- `.claude/skills/claude-native/` — auto-generation source
|
|
656
910
|
- `.claude/rules/SHOULD-hud-statusline.md` — R012 statusline integration
|
|
657
911
|
- `.claude/rules/MUST-agent-design.md` — R006 agent frontmatter spec
|
package/templates/manifest.json
CHANGED