oh-my-codex 0.11.3 → 0.11.6

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 (43) hide show
  1. package/Cargo.lock +5 -5
  2. package/Cargo.toml +3 -1
  3. package/README.md +110 -662
  4. package/dist/cli/__tests__/doctor-team.test.js +34 -0
  5. package/dist/cli/__tests__/doctor-team.test.js.map +1 -1
  6. package/dist/cli/__tests__/team.test.js +22 -0
  7. package/dist/cli/__tests__/team.test.js.map +1 -1
  8. package/dist/cli/doctor.d.ts.map +1 -1
  9. package/dist/cli/doctor.js +4 -5
  10. package/dist/cli/doctor.js.map +1 -1
  11. package/dist/cli/team.d.ts.map +1 -1
  12. package/dist/cli/team.js +2 -0
  13. package/dist/cli/team.js.map +1 -1
  14. package/dist/hooks/__tests__/notify-fallback-watcher.test.js +111 -3
  15. package/dist/hooks/__tests__/notify-fallback-watcher.test.js.map +1 -1
  16. package/dist/hooks/__tests__/notify-hook-team-leader-nudge.test.js +54 -1
  17. package/dist/hooks/__tests__/notify-hook-team-leader-nudge.test.js.map +1 -1
  18. package/dist/scripts/notify-fallback-watcher.js +16 -3
  19. package/dist/scripts/notify-fallback-watcher.js.map +1 -1
  20. package/dist/scripts/notify-hook/team-leader-nudge.d.ts.map +1 -1
  21. package/dist/scripts/notify-hook/team-leader-nudge.js +2 -11
  22. package/dist/scripts/notify-hook/team-leader-nudge.js.map +1 -1
  23. package/dist/team/__tests__/cross-rebase-smoke.test.d.ts +2 -0
  24. package/dist/team/__tests__/cross-rebase-smoke.test.d.ts.map +1 -0
  25. package/dist/team/__tests__/cross-rebase-smoke.test.js +161 -0
  26. package/dist/team/__tests__/cross-rebase-smoke.test.js.map +1 -0
  27. package/dist/team/__tests__/events.test.js +42 -3
  28. package/dist/team/__tests__/events.test.js.map +1 -1
  29. package/dist/team/__tests__/leader-activity.test.d.ts +2 -0
  30. package/dist/team/__tests__/leader-activity.test.d.ts.map +1 -0
  31. package/dist/team/__tests__/leader-activity.test.js +128 -0
  32. package/dist/team/__tests__/leader-activity.test.js.map +1 -0
  33. package/dist/team/contracts.d.ts +1 -1
  34. package/dist/team/contracts.d.ts.map +1 -1
  35. package/dist/team/contracts.js +4 -0
  36. package/dist/team/contracts.js.map +1 -1
  37. package/dist/team/leader-activity.d.ts +14 -0
  38. package/dist/team/leader-activity.d.ts.map +1 -0
  39. package/dist/team/leader-activity.js +137 -0
  40. package/dist/team/leader-activity.js.map +1 -0
  41. package/package.json +2 -1
  42. package/src/scripts/notify-fallback-watcher.ts +18 -3
  43. package/src/scripts/notify-hook/team-leader-nudge.ts +2 -8
package/Cargo.lock CHANGED
@@ -32,11 +32,11 @@ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
32
32
 
33
33
  [[package]]
34
34
  name = "omx-explore-harness"
35
- version = "0.11.3"
35
+ version = "0.11.6"
36
36
 
37
37
  [[package]]
38
38
  name = "omx-mux"
39
- version = "0.11.3"
39
+ version = "0.11.6"
40
40
  dependencies = [
41
41
  "serde",
42
42
  "serde_json",
@@ -44,7 +44,7 @@ dependencies = [
44
44
 
45
45
  [[package]]
46
46
  name = "omx-runtime"
47
- version = "0.11.3"
47
+ version = "0.11.6"
48
48
  dependencies = [
49
49
  "omx-mux",
50
50
  "omx-runtime-core",
@@ -53,7 +53,7 @@ dependencies = [
53
53
 
54
54
  [[package]]
55
55
  name = "omx-runtime-core"
56
- version = "0.11.3"
56
+ version = "0.11.6"
57
57
  dependencies = [
58
58
  "fs2",
59
59
  "serde",
@@ -62,7 +62,7 @@ dependencies = [
62
62
 
63
63
  [[package]]
64
64
  name = "omx-sparkshell"
65
- version = "0.11.3"
65
+ version = "0.11.6"
66
66
 
67
67
  [[package]]
68
68
  name = "proc-macro2"
package/Cargo.toml CHANGED
@@ -9,7 +9,9 @@ members = [
9
9
  resolver = "2"
10
10
 
11
11
  [workspace.package]
12
- version = "0.11.3"
12
+
13
+ version = "0.11.6"
14
+
13
15
  edition = "2021"
14
16
  license = "MIT"
15
17
  repository = "https://github.com/Yeachan-Heo/oh-my-codex"