oh-my-customcode 1.0.11 → 1.0.12
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/MAY-optimization.md +4 -0
- package/templates/.claude/rules/MUST-agent-identification.md +14 -0
- package/templates/.claude/rules/MUST-tool-identification.md +12 -0
- package/templates/manifest.json +1 -1
package/dist/cli/index.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -14,6 +14,10 @@
|
|
|
14
14
|
|
|
15
15
|
> **Platform tool variants (#1327 찐빠 #5)**: tool names differ by platform — e.g., macOS lacks GNU `timeout` (use `gtimeout` from coreutils). Confirm platform-specific tool availability before use.
|
|
16
16
|
|
|
17
|
+
> **Sandbox/container tool gaps (#1401 찐빠 #4)**: `curl`, `wget`, `nc` 등 공통 CLI 도구는 샌드박스·컨테이너 환경에서 미설치일 수 있다. HTTP 요청에는 `WebFetch` 도구를 우선 사용하고, CLI 도구 사용 전 `command -v <tool>` 으로 가용성을 사전 확인한다.
|
|
18
|
+
|
|
19
|
+
> **Shell output parsing — use Python, not read/grep (#1401 찐빠 #3)**: adb bounds rect, 좌표쌍, JSON 분할 등 구조화된 출력 파싱은 `read`+`grep -o` 파이프라인 대신 Python (`python3 -c "..."`) 을 사용한다. `read`+`grep -o` 조합은 공백 차이에 취약해 헛값을 산출한다. SSH 원격 `bash -c` 인자에 소괄호 포함 금지 — `ssh host "cmd; cmd2"` 형식 사용.
|
|
20
|
+
|
|
17
21
|
### Capability-Aware Tool Scheduling
|
|
18
22
|
|
|
19
23
|
When dispatching parallel tool calls, consider per-tool capabilities to optimize scheduling:
|
|
@@ -110,3 +110,17 @@ Reference issue: #1096.
|
|
|
110
110
|
| 1단어 응답 ("네"/"OK") | YES |
|
|
111
111
|
|
|
112
112
|
Reference issues: #1188 item #2, #1198 item #2.
|
|
113
|
+
|
|
114
|
+
### External-Project / Debugging Session Vigilance
|
|
115
|
+
|
|
116
|
+
R007 헤더 누락은 외부 프로젝트 디버깅, SSH 진단, 배포 작업 등 기술적 몰입 세션에서 가장 자주 발생한다. 이 규칙은 프로젝트 종류와 무관하게 모든 상황에 적용된다.
|
|
117
|
+
|
|
118
|
+
| 세션 유형 | R007 헤더 |
|
|
119
|
+
|-----------|-----------|
|
|
120
|
+
| oh-my-customcode 작업 | 필수 |
|
|
121
|
+
| 외부 프로젝트 디버깅 | **동일하게 필수** |
|
|
122
|
+
| SSH / 배포 / 인프라 작업 | **동일하게 필수** |
|
|
123
|
+
|
|
124
|
+
기술적 몰입 중 헤더 누락이 반복될 경우 즉시 re-anchor: 다음 응답에 `┌─ Agent:` 풀 헤더를 붙이고 이후 계속 유지한다.
|
|
125
|
+
|
|
126
|
+
Reference issue: #1401.
|
|
@@ -161,3 +161,15 @@ Reference issue: #1096.
|
|
|
161
161
|
```
|
|
162
162
|
|
|
163
163
|
Reference issues: #1188 item #3, #1198 item #3.
|
|
164
|
+
|
|
165
|
+
### External-Project / Debugging Session Vigilance
|
|
166
|
+
|
|
167
|
+
R007 헤더와 마찬가지로, R008 prefix 누락도 외부 프로젝트 디버깅·배포 세션에서 가장 자주 발생한다. R007/R008은 세트로 함께 자가 점검한다.
|
|
168
|
+
|
|
169
|
+
| 세션 유형 | R008 prefix |
|
|
170
|
+
|-----------|-------------|
|
|
171
|
+
| oh-my-customcode 작업 | 필수 |
|
|
172
|
+
| 외부 프로젝트 디버깅 | **동일하게 필수** |
|
|
173
|
+
| SSH / 배포 / 인프라 작업 | **동일하게 필수** |
|
|
174
|
+
|
|
175
|
+
Reference issue: #1401.
|
package/templates/manifest.json
CHANGED