oh-my-customcode 1.0.12 → 1.0.14

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 CHANGED
@@ -241,7 +241,7 @@ var init_package = __esm(() => {
241
241
  workspaces: [
242
242
  "packages/*"
243
243
  ],
244
- version: "1.0.12",
244
+ version: "1.0.14",
245
245
  description: "Batteries-included agent harness for Claude Code",
246
246
  type: "module",
247
247
  bin: {
@@ -294,7 +294,7 @@ var init_package = __esm(() => {
294
294
  "@types/bun": "^1.3.6",
295
295
  "@types/js-yaml": "^4.0.9",
296
296
  "@types/nodemailer": "^8.0.0",
297
- "js-yaml": "^4.1.0",
297
+ "js-yaml": "^5.0.0",
298
298
  nodemailer: "^9.0.1",
299
299
  typescript: "^6.0.2",
300
300
  vitepress: "^1.6.4"
package/dist/index.js CHANGED
@@ -2031,7 +2031,7 @@ var package_default = {
2031
2031
  workspaces: [
2032
2032
  "packages/*"
2033
2033
  ],
2034
- version: "1.0.12",
2034
+ version: "1.0.14",
2035
2035
  description: "Batteries-included agent harness for Claude Code",
2036
2036
  type: "module",
2037
2037
  bin: {
@@ -2084,7 +2084,7 @@ var package_default = {
2084
2084
  "@types/bun": "^1.3.6",
2085
2085
  "@types/js-yaml": "^4.0.9",
2086
2086
  "@types/nodemailer": "^8.0.0",
2087
- "js-yaml": "^4.1.0",
2087
+ "js-yaml": "^5.0.0",
2088
2088
  nodemailer: "^9.0.1",
2089
2089
  typescript: "^6.0.2",
2090
2090
  vitepress: "^1.6.4"
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "workspaces": [
4
4
  "packages/*"
5
5
  ],
6
- "version": "1.0.12",
6
+ "version": "1.0.14",
7
7
  "description": "Batteries-included agent harness for Claude Code",
8
8
  "type": "module",
9
9
  "bin": {
@@ -56,7 +56,7 @@
56
56
  "@types/bun": "^1.3.6",
57
57
  "@types/js-yaml": "^4.0.9",
58
58
  "@types/nodemailer": "^8.0.0",
59
- "js-yaml": "^4.1.0",
59
+ "js-yaml": "^5.0.0",
60
60
  "nodemailer": "^9.0.1",
61
61
  "typescript": "^6.0.2",
62
62
  "vitepress": "^1.6.4"
@@ -108,8 +108,17 @@ Reference issue: #1096.
108
108
  | 사용자 질문 재확인 | YES |
109
109
  | 도구 호출 없는 텍스트 응답 | YES |
110
110
  | 1단어 응답 ("네"/"OK") | YES |
111
+ | **빈 응답 (0단어 turn 종료)** | **금지** — 헤더 누락 이전에 응답 자체가 없음 |
111
112
 
112
- Reference issues: #1188 item #2, #1198 item #2.
113
+ #### 응답 금지 (Empty-Response Prohibition)
114
+
115
+ 도구 결과를 수신한 후 응답 텍스트 없이 turn 을 종료하는 것(빈 응답, "(no content)")은 R007 위반의 극단 케이스다. 1단어 응답에도 헤더가 필수이므로 0단어 응답은 당연히 금지된다. 도구 호출 결과를 받은 직후에는 항상 최소 1줄의 진행 상태(R003 status format)와 R007 헤더를 출력한 뒤 다음 단계로 진행하거나 turn 을 마친다. 작업이 끝났으면 완료 요약을, 계속할 작업이 있으면 다음 단계 announce 를 출력한다 — 어느 경우에도 빈 turn 종료는 허용되지 않는다.
116
+
117
+ | Anti-pattern | Required |
118
+ |--------------|----------|
119
+ | 도구 결과 수신 후 응답 텍스트 없이 turn 종료 ("(no content)") | 최소 1줄 진행 상태 + R007 헤더 출력 후 종료/계속 |
120
+
121
+ Reference issues: #1188 item #2, #1198 item #2, #1409.
113
122
 
114
123
  ### External-Project / Debugging Session Vigilance
115
124
 
@@ -315,15 +315,30 @@ steps:
315
315
  - Previous tag is ahead of source version (e.g., tag v0.136.1, package.json 0.136.0): use next available skip-version (0.136.2)
316
316
 
317
317
  2. Release notes via omcustom-release-notes skill
318
- 3. Delegate to mgr-gitnerd:
319
- - git tag + push
320
- - gh release create
321
- 4. Close milestone
322
- 5. Close verify-ready issues with "Fixed in v{version}"
318
+ 3. Adapt release mechanism to project (determines how steps 3-5 execute):
319
+ - npm project with auto-tag.yml (this repo — release/v* PR pattern):
320
+ a. mgr-gitnerd creates release/v{NEW} branch from develop with the version-bump commit
321
+ b. mgr-gitnerd creates PR: gh pr create --base develop --head release/v{NEW} --title "chore(release): bump to v{NEW}"
322
+ c. mgr-gitnerd merges PR (admin merge required due to branch protection)
323
+ d. DO NOT manually git tag or gh release create.
324
+ auto-tag.yml fires on release/v* PR merge → creates tag → closes linked issues → closes milestone → deletes release branch.
325
+ release.yml fires on the tag → npm publish + GitHub Release creation.
326
+ Milestone close and issue close are handled downstream by auto-tag.yml — do NOT close them manually.
327
+ - Non-npm / no auto-tag.yml:
328
+ mgr-gitnerd: git tag v{NEW} && git push origin v{NEW}
329
+ mgr-gitnerd: gh release create v{NEW} (with release notes)
330
+ Then proceed with items 4-5 below.
331
+
332
+ 4. Close milestone (non-auto-tag projects only — auto-tag.yml handles this for npm+PR projects):
333
+ gh api repos/{owner}/{repo}/milestones/{n} --method PATCH --field state=closed
334
+
335
+ 5. Close verify-ready issues (non-auto-tag projects only — auto-tag.yml handles this for npm+PR projects):
336
+ gh issue close {n} --comment "Fixed in v{version}"
323
337
  Label needs-review issues as "Deferred from v{version}"
324
- 6. Adapt release mechanism to project:
325
- - npm project: PR + merge + npm publish verification
326
- - Non-npm: direct tag on main (trunk-based)
338
+
339
+ 6. npm publish verification (npm projects only):
340
+ After auto-tag.yml + release.yml complete (verified in ci-check step):
341
+ npm view <pkg> version → must equal v{NEW}
327
342
  description: "Git tag + GitHub Release + close milestone/issues (with mandatory version sync verification)"
328
343
  depends_on: deep-verify
329
344
 
@@ -334,11 +349,19 @@ steps:
334
349
  1. Check if .github/workflows/ has CI workflows
335
350
  If NOT: skip with "No CI configured. Skipping." and continue.
336
351
  2. If CI exists:
337
- - gh run list --limit 5
352
+ - gh run list --limit 10
338
353
  - Wait for runs triggered by the new tag/push
339
354
  - If failures: diagnose, fix, re-verify
340
- 3. For npm projects: verify npm publish succeeded (npm view <pkg> version)
341
- 4. Report final CI status.
355
+ 3. For npm projects with auto-tag.yml: MANDATORY additional check:
356
+ gh run list --workflow auto-tag.yml --limit 1 --json conclusion,displayTitle
357
+ → conclusion MUST be "success" before declaring release complete.
358
+ If auto-tag.yml concluded "failure": diagnose root cause. Do NOT retry with manual git tag.
359
+ Common causes:
360
+ - Tag already exists (manual tag pushed before PR merge — fix: remove manual tag from release delegation)
361
+ - Branch naming mismatch (branch not matching release/v* pattern — fix: verify branch name)
362
+ Report: "[ci-check] auto-tag.yml: {conclusion}" as mandatory line in CI status report.
363
+ 4. For npm projects: verify npm publish succeeded (npm view <pkg> version)
364
+ 5. Report final CI status.
342
365
  description: "Post-release CI verification and fix loop"
343
366
  depends_on: release
344
367
 
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.12",
2
+ "version": "1.0.14",
3
3
  "lastUpdated": "2026-05-20T00:00:00.000Z",
4
4
  "omcustomMinClaudeCode": "2.1.121",
5
5
  "omcustomMinClaudeCodeReason": "Sensitive-path direct Write/Edit on .claude/** under bypassPermissions (R010 deprecation, #1101)",
@@ -315,15 +315,30 @@ steps:
315
315
  - Previous tag is ahead of source version (e.g., tag v0.136.1, package.json 0.136.0): use next available skip-version (0.136.2)
316
316
 
317
317
  2. Release notes via omcustom-release-notes skill
318
- 3. Delegate to mgr-gitnerd:
319
- - git tag + push
320
- - gh release create
321
- 4. Close milestone
322
- 5. Close verify-ready issues with "Fixed in v{version}"
318
+ 3. Adapt release mechanism to project (determines how steps 3-5 execute):
319
+ - npm project with auto-tag.yml (this repo — release/v* PR pattern):
320
+ a. mgr-gitnerd creates release/v{NEW} branch from develop with the version-bump commit
321
+ b. mgr-gitnerd creates PR: gh pr create --base develop --head release/v{NEW} --title "chore(release): bump to v{NEW}"
322
+ c. mgr-gitnerd merges PR (admin merge required due to branch protection)
323
+ d. DO NOT manually git tag or gh release create.
324
+ auto-tag.yml fires on release/v* PR merge → creates tag → closes linked issues → closes milestone → deletes release branch.
325
+ release.yml fires on the tag → npm publish + GitHub Release creation.
326
+ Milestone close and issue close are handled downstream by auto-tag.yml — do NOT close them manually.
327
+ - Non-npm / no auto-tag.yml:
328
+ mgr-gitnerd: git tag v{NEW} && git push origin v{NEW}
329
+ mgr-gitnerd: gh release create v{NEW} (with release notes)
330
+ Then proceed with items 4-5 below.
331
+
332
+ 4. Close milestone (non-auto-tag projects only — auto-tag.yml handles this for npm+PR projects):
333
+ gh api repos/{owner}/{repo}/milestones/{n} --method PATCH --field state=closed
334
+
335
+ 5. Close verify-ready issues (non-auto-tag projects only — auto-tag.yml handles this for npm+PR projects):
336
+ gh issue close {n} --comment "Fixed in v{version}"
323
337
  Label needs-review issues as "Deferred from v{version}"
324
- 6. Adapt release mechanism to project:
325
- - npm project: PR + merge + npm publish verification
326
- - Non-npm: direct tag on main (trunk-based)
338
+
339
+ 6. npm publish verification (npm projects only):
340
+ After auto-tag.yml + release.yml complete (verified in ci-check step):
341
+ npm view <pkg> version → must equal v{NEW}
327
342
  description: "Git tag + GitHub Release + close milestone/issues (with mandatory version sync verification)"
328
343
  depends_on: deep-verify
329
344
 
@@ -334,11 +349,19 @@ steps:
334
349
  1. Check if .github/workflows/ has CI workflows
335
350
  If NOT: skip with "No CI configured. Skipping." and continue.
336
351
  2. If CI exists:
337
- - gh run list --limit 5
352
+ - gh run list --limit 10
338
353
  - Wait for runs triggered by the new tag/push
339
354
  - If failures: diagnose, fix, re-verify
340
- 3. For npm projects: verify npm publish succeeded (npm view <pkg> version)
341
- 4. Report final CI status.
355
+ 3. For npm projects with auto-tag.yml: MANDATORY additional check:
356
+ gh run list --workflow auto-tag.yml --limit 1 --json conclusion,displayTitle
357
+ → conclusion MUST be "success" before declaring release complete.
358
+ If auto-tag.yml concluded "failure": diagnose root cause. Do NOT retry with manual git tag.
359
+ Common causes:
360
+ - Tag already exists (manual tag pushed before PR merge — fix: remove manual tag from release delegation)
361
+ - Branch naming mismatch (branch not matching release/v* pattern — fix: verify branch name)
362
+ Report: "[ci-check] auto-tag.yml: {conclusion}" as mandatory line in CI status report.
363
+ 4. For npm projects: verify npm publish succeeded (npm view <pkg> version)
364
+ 5. Report final CI status.
342
365
  description: "Post-release CI verification and fix loop"
343
366
  depends_on: release
344
367