oh-my-customcode 0.86.0 → 0.86.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 CHANGED
@@ -2301,7 +2301,7 @@ var init_package = __esm(() => {
2301
2301
  workspaces: [
2302
2302
  "packages/*"
2303
2303
  ],
2304
- version: "0.86.0",
2304
+ version: "0.86.1",
2305
2305
  description: "Batteries-included agent harness for Claude Code",
2306
2306
  type: "module",
2307
2307
  bin: {
@@ -2349,7 +2349,7 @@ var init_package = __esm(() => {
2349
2349
  yaml: "^2.8.2"
2350
2350
  },
2351
2351
  devDependencies: {
2352
- "@anthropic-ai/sdk": "^0.82.0",
2352
+ "@anthropic-ai/sdk": "^0.88.0",
2353
2353
  "@biomejs/biome": "^2.3.12",
2354
2354
  "@types/bun": "^1.3.6",
2355
2355
  "@types/js-yaml": "^4.0.9",
package/dist/index.js CHANGED
@@ -1974,7 +1974,7 @@ var package_default = {
1974
1974
  workspaces: [
1975
1975
  "packages/*"
1976
1976
  ],
1977
- version: "0.86.0",
1977
+ version: "0.86.1",
1978
1978
  description: "Batteries-included agent harness for Claude Code",
1979
1979
  type: "module",
1980
1980
  bin: {
@@ -2022,7 +2022,7 @@ var package_default = {
2022
2022
  yaml: "^2.8.2"
2023
2023
  },
2024
2024
  devDependencies: {
2025
- "@anthropic-ai/sdk": "^0.82.0",
2025
+ "@anthropic-ai/sdk": "^0.88.0",
2026
2026
  "@biomejs/biome": "^2.3.12",
2027
2027
  "@types/bun": "^1.3.6",
2028
2028
  "@types/js-yaml": "^4.0.9",
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "workspaces": [
4
4
  "packages/*"
5
5
  ],
6
- "version": "0.86.0",
6
+ "version": "0.86.1",
7
7
  "description": "Batteries-included agent harness for Claude Code",
8
8
  "type": "module",
9
9
  "bin": {
@@ -51,7 +51,7 @@
51
51
  "yaml": "^2.8.2"
52
52
  },
53
53
  "devDependencies": {
54
- "@anthropic-ai/sdk": "^0.82.0",
54
+ "@anthropic-ai/sdk": "^0.88.0",
55
55
  "@biomejs/biome": "^2.3.12",
56
56
  "@types/bun": "^1.3.6",
57
57
  "@types/js-yaml": "^4.0.9",
@@ -453,6 +453,16 @@
453
453
  }
454
454
  ],
455
455
  "description": "Append-only audit log for state-changing tool operations"
456
+ },
457
+ {
458
+ "matcher": "tool == \"Write\" || tool == \"Edit\"",
459
+ "hooks": [
460
+ {
461
+ "type": "command",
462
+ "command": "bash .claude/hooks/skill-count-reminder.sh"
463
+ }
464
+ ],
465
+ "description": "Advisory reminder to sync skill counts in 6 locations when a SKILL.md is created/modified (R021)"
456
466
  }
457
467
  ],
458
468
  "Stop": [
@@ -0,0 +1,34 @@
1
+ #!/usr/bin/env bash
2
+ # skill-count-reminder.sh — Advisory reminder when skills are created/modified
3
+ # Triggered by PostToolUse on Write/Edit targeting .claude/skills/*/SKILL.md
4
+ # R021: Advisory-only, never blocks (always exit 0)
5
+
6
+ set -euo pipefail
7
+
8
+ # Read tool input from stdin
9
+ INPUT=$(cat)
10
+
11
+ # Extract the file path from the tool input
12
+ FILE_PATH=$(echo "$INPUT" | jq -r '.tool_input.file_path // .tool_input.path // ""' 2>/dev/null)
13
+
14
+ # Only trigger for .claude/skills/ paths with SKILL.md
15
+ if [[ "$FILE_PATH" == *".claude/skills/"*"SKILL.md"* ]]; then
16
+ SKILL_NAME=$(echo "$FILE_PATH" | sed 's|.*\.claude/skills/||' | sed 's|/SKILL.md||')
17
+ ACTUAL_COUNT=$(find .claude/skills -name 'SKILL.md' 2>/dev/null | wc -l | tr -d ' ')
18
+
19
+ cat >&2 << EOF
20
+ ─── [Skill Sync Reminder] New/modified skill: ${SKILL_NAME} ───
21
+ Current skill count: ${ACTUAL_COUNT}
22
+
23
+ Update these 6 locations before committing:
24
+ 1. CLAUDE.md → 스킬 (${ACTUAL_COUNT} 디렉토리)
25
+ 2. README.md line ~16 → ${ACTUAL_COUNT} skills
26
+ 3. README.md line ~135 → ### Skills (${ACTUAL_COUNT})
27
+ 4. README.md line ~275 → # ${ACTUAL_COUNT} skill modules
28
+ 5. templates/CLAUDE.md → 스킬 (${ACTUAL_COUNT} 디렉토리)
29
+ 6. templates/.claude/skills/${SKILL_NAME}/SKILL.md → copy file
30
+ ───────────────────────────────────────────────────────
31
+ EOF
32
+ fi
33
+
34
+ exit 0
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.86.0",
2
+ "version": "0.86.1",
3
3
  "lastUpdated": "2026-04-13T00:00:00.000Z",
4
4
  "components": [
5
5
  {