oh-my-customcodex 0.5.1 → 0.5.2

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.
Files changed (40) hide show
  1. package/README.md +2 -2
  2. package/dist/cli/index.js +168 -13
  3. package/dist/index.js +150 -8
  4. package/package.json +1 -1
  5. package/templates/.claude/agents/qa-engineer.md +7 -0
  6. package/templates/.claude/hooks/hooks.json +28 -0
  7. package/templates/.claude/hooks/scripts/agent-capability-precheck.sh +99 -0
  8. package/templates/.claude/hooks/scripts/agent-mode-guard.sh +14 -3
  9. package/templates/.claude/hooks/scripts/git-delegation-guard.sh +14 -5
  10. package/templates/.claude/hooks/scripts/plugin-cache-check.sh +42 -0
  11. package/templates/.claude/hooks/scripts/session-reflection.sh +106 -0
  12. package/templates/.claude/output-styles/korean-engineer.md +4 -0
  13. package/templates/.claude/rules/MUST-agent-identification.md +50 -22
  14. package/templates/.claude/rules/MUST-agent-teams.md +6 -2
  15. package/templates/.claude/rules/MUST-completion-verification.md +11 -0
  16. package/templates/.claude/rules/MUST-continuous-improvement.md +15 -1
  17. package/templates/.claude/rules/MUST-intent-transparency.md +29 -0
  18. package/templates/.claude/rules/MUST-language-policy.md +7 -0
  19. package/templates/.claude/rules/MUST-orchestrator-coordination.md +62 -0
  20. package/templates/.claude/rules/MUST-tool-identification.md +19 -0
  21. package/templates/.claude/rules/SHOULD-memory-integration.md +7 -2
  22. package/templates/.claude/skills/systematic-debugging/SKILL.md +44 -0
  23. package/templates/.claude/skills/systematic-debugging/phases/amplification-detection.md +25 -0
  24. package/templates/.claude/skills/systematic-debugging/phases/fault-injection.md +31 -0
  25. package/templates/.claude/skills/systematic-debugging/phases/retry-cache-timeout-audit.md +27 -0
  26. package/templates/.claude/skills/systematic-debugging/phases/timeline-correlation.md +26 -0
  27. package/templates/.claude/statusline.sh +40 -9
  28. package/templates/AGENTS.md.en +1 -1
  29. package/templates/AGENTS.md.ko +1 -1
  30. package/templates/CLAUDE.md +1 -1
  31. package/templates/CLAUDE.md.en +1 -1
  32. package/templates/CLAUDE.md.ko +1 -1
  33. package/templates/README.md +4 -4
  34. package/templates/guides/agent-teams/troubleshooting.md +53 -0
  35. package/templates/guides/autonomous-challenge-lessons/README.md +43 -0
  36. package/templates/guides/claude-code/15-version-compatibility.md +51 -0
  37. package/templates/guides/claude-code-tracking.md +51 -0
  38. package/templates/guides/index.yaml +12 -0
  39. package/templates/manifest.json +3 -3
  40. package/templates/tests/tsconfig.json +7 -0
@@ -1,11 +1,11 @@
1
1
  {
2
- "version": "0.5.1",
2
+ "version": "0.5.2",
3
3
  "requiresCC": ">=2.1.121",
4
4
  "claudeCode": {
5
5
  "minimumVersion": "2.1.121",
6
6
  "protectedPathBypassVersion": "2.1.126"
7
7
  },
8
- "lastUpdated": "2026-05-19T00:00:00.000Z",
8
+ "lastUpdated": "2026-05-20T00:00:00.000Z",
9
9
  "components": [
10
10
  {
11
11
  "name": "rules",
@@ -29,7 +29,7 @@
29
29
  "name": "guides",
30
30
  "path": "guides",
31
31
  "description": "Reference documentation",
32
- "files": 48
32
+ "files": 50
33
33
  },
34
34
  {
35
35
  "name": "hooks",
@@ -0,0 +1,7 @@
1
+ {
2
+ "extends": "../tsconfig.json",
3
+ "compilerOptions": {
4
+ "types": ["bun-types"]
5
+ },
6
+ "include": ["**/*.ts"]
7
+ }