oh-my-claudecode 0.2.4 → 0.2.7

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 (89) hide show
  1. package/README.md +103 -4
  2. package/commands/necronomicon-bind.md +45 -82
  3. package/dist/agents/builtin-agents.d.ts.map +1 -1
  4. package/dist/agents/builtin-agents.js +8 -0
  5. package/dist/agents/builtin-agents.js.map +1 -1
  6. package/dist/agents/cthulhu.d.ts.map +1 -1
  7. package/dist/agents/cthulhu.js +11 -0
  8. package/dist/agents/cthulhu.js.map +1 -1
  9. package/dist/agents/dagon.d.ts.map +1 -1
  10. package/dist/agents/dagon.js +13 -0
  11. package/dist/agents/dagon.js.map +1 -1
  12. package/dist/agents/nodens-advanced.d.ts +182 -0
  13. package/dist/agents/nodens-advanced.d.ts.map +1 -0
  14. package/dist/agents/nodens-advanced.js +297 -0
  15. package/dist/agents/nodens-advanced.js.map +1 -0
  16. package/dist/agents/nodens.d.ts +42 -0
  17. package/dist/agents/nodens.d.ts.map +1 -0
  18. package/dist/agents/nodens.js +147 -0
  19. package/dist/agents/nodens.js.map +1 -0
  20. package/dist/agents/shoggoth.d.ts.map +1 -1
  21. package/dist/agents/shoggoth.js +11 -1
  22. package/dist/agents/shoggoth.js.map +1 -1
  23. package/dist/cli/bind.d.ts +24 -0
  24. package/dist/cli/bind.d.ts.map +1 -1
  25. package/dist/cli/bind.js +92 -25
  26. package/dist/cli/bind.js.map +1 -1
  27. package/dist/cli/doctor.d.ts.map +1 -1
  28. package/dist/cli/doctor.js +7 -5
  29. package/dist/cli/doctor.js.map +1 -1
  30. package/dist/cli/index.js +54 -4
  31. package/dist/cli/index.js.map +1 -1
  32. package/dist/cli/version.d.ts +2 -0
  33. package/dist/cli/version.d.ts.map +1 -0
  34. package/dist/cli/version.js +28 -0
  35. package/dist/cli/version.js.map +1 -0
  36. package/dist/config/schema.d.ts +648 -17
  37. package/dist/config/schema.d.ts.map +1 -1
  38. package/dist/config/schema.js +21 -2
  39. package/dist/config/schema.js.map +1 -1
  40. package/dist/features/web-research-background/advanced-patterns.d.ts +44 -0
  41. package/dist/features/web-research-background/advanced-patterns.d.ts.map +1 -0
  42. package/dist/features/web-research-background/advanced-patterns.js +139 -0
  43. package/dist/features/web-research-background/advanced-patterns.js.map +1 -0
  44. package/dist/features/web-research-background/index.d.ts +73 -0
  45. package/dist/features/web-research-background/index.d.ts.map +1 -0
  46. package/dist/features/web-research-background/index.js +131 -0
  47. package/dist/features/web-research-background/index.js.map +1 -0
  48. package/dist/features/yith-archive/functions/opencode-import.d.ts.map +1 -1
  49. package/dist/features/yith-archive/functions/opencode-import.js +129 -90
  50. package/dist/features/yith-archive/functions/opencode-import.js.map +1 -1
  51. package/dist/features/yith-archive/index.d.ts +8 -0
  52. package/dist/features/yith-archive/index.d.ts.map +1 -1
  53. package/dist/features/yith-archive/index.js +1 -0
  54. package/dist/features/yith-archive/index.js.map +1 -1
  55. package/dist/features/yith-archive/types.d.ts +15 -0
  56. package/dist/features/yith-archive/types.d.ts.map +1 -1
  57. package/dist/hooks/design-detector-hook.d.ts +12 -0
  58. package/dist/hooks/design-detector-hook.d.ts.map +1 -0
  59. package/dist/hooks/design-detector-hook.js +42 -0
  60. package/dist/hooks/design-detector-hook.js.map +1 -0
  61. package/dist/hooks/design-detector.d.ts +47 -0
  62. package/dist/hooks/design-detector.d.ts.map +1 -0
  63. package/dist/hooks/design-detector.js +251 -0
  64. package/dist/hooks/design-detector.js.map +1 -0
  65. package/dist/hooks/index.d.ts +3 -0
  66. package/dist/hooks/index.d.ts.map +1 -1
  67. package/dist/hooks/index.js +27 -0
  68. package/dist/hooks/index.js.map +1 -1
  69. package/dist/hooks/web-research-detector.d.ts +58 -0
  70. package/dist/hooks/web-research-detector.d.ts.map +1 -0
  71. package/dist/hooks/web-research-detector.js +205 -0
  72. package/dist/hooks/web-research-detector.js.map +1 -0
  73. package/dist/hooks/web-research-hook.d.ts +12 -0
  74. package/dist/hooks/web-research-hook.d.ts.map +1 -0
  75. package/dist/hooks/web-research-hook.js +43 -0
  76. package/dist/hooks/web-research-hook.js.map +1 -0
  77. package/dist/hooks/yith-capture.d.ts +35 -0
  78. package/dist/hooks/yith-capture.d.ts.map +1 -0
  79. package/dist/hooks/yith-capture.js +113 -0
  80. package/dist/hooks/yith-capture.js.map +1 -0
  81. package/dist/linters/type-safety-ast.d.ts +108 -0
  82. package/dist/linters/type-safety-ast.d.ts.map +1 -0
  83. package/dist/linters/type-safety-ast.js +293 -0
  84. package/dist/linters/type-safety-ast.js.map +1 -0
  85. package/dist/linters/type-safety-linter.d.ts +66 -0
  86. package/dist/linters/type-safety-linter.d.ts.map +1 -0
  87. package/dist/linters/type-safety-linter.js +317 -0
  88. package/dist/linters/type-safety-linter.js.map +1 -0
  89. package/package.json +1 -1
@@ -1,8 +1,8 @@
1
1
  import { z } from "zod";
2
2
  export declare const ClaudeModelSchema: z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>;
3
3
  export type ClaudeModel = z.infer<typeof ClaudeModelSchema>;
4
- /** The 11 Elder God agents */
5
- export declare const BuiltinAgentNameSchema: z.ZodEnum<["cthulhu", "nyarlathotep", "azathoth", "shub-niggurath", "hastur", "yog-sothoth", "dagon", "ithaqua", "tsathoggua", "shoggoth", "the-deep-one"]>;
4
+ /** The 12 Elder God agents */
5
+ export declare const BuiltinAgentNameSchema: z.ZodEnum<["cthulhu", "nyarlathotep", "azathoth", "shub-niggurath", "hastur", "yog-sothoth", "dagon", "ithaqua", "tsathoggua", "shoggoth", "the-deep-one", "nodens"]>;
6
6
  export type BuiltinAgentName = z.infer<typeof BuiltinAgentNameSchema>;
7
7
  export declare const AgentPermissionSchema: z.ZodRecord<z.ZodString, z.ZodEnum<["allow", "deny"]>>;
8
8
  export declare const ThinkingConfigSchema: z.ZodUnion<[z.ZodObject<{
@@ -875,6 +875,77 @@ export declare const AgentOverridesSchema: z.ZodObject<{
875
875
  type: "disabled";
876
876
  } | undefined;
877
877
  }>>;
878
+ nodens: z.ZodOptional<z.ZodObject<{
879
+ model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
880
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
881
+ temperature: z.ZodOptional<z.ZodNumber>;
882
+ top_p: z.ZodOptional<z.ZodNumber>;
883
+ prompt: z.ZodOptional<z.ZodString>;
884
+ prompt_append: z.ZodOptional<z.ZodString>;
885
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
886
+ disable: z.ZodOptional<z.ZodBoolean>;
887
+ description: z.ZodOptional<z.ZodString>;
888
+ mode: z.ZodOptional<z.ZodEnum<["subagent", "primary", "all"]>>;
889
+ color: z.ZodOptional<z.ZodString>;
890
+ permission: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["allow", "deny"]>>>;
891
+ maxTokens: z.ZodOptional<z.ZodNumber>;
892
+ thinking: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
893
+ type: z.ZodLiteral<"enabled">;
894
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
895
+ }, "strip", z.ZodTypeAny, {
896
+ type: "enabled";
897
+ budgetTokens?: number | undefined;
898
+ }, {
899
+ type: "enabled";
900
+ budgetTokens?: number | undefined;
901
+ }>, z.ZodObject<{
902
+ type: z.ZodLiteral<"disabled">;
903
+ }, "strip", z.ZodTypeAny, {
904
+ type: "disabled";
905
+ }, {
906
+ type: "disabled";
907
+ }>]>>;
908
+ }, "strip", z.ZodTypeAny, {
909
+ model?: "claude-opus-4-6" | "claude-sonnet-4-6" | "claude-haiku-4-5" | "opus" | "sonnet" | "haiku" | undefined;
910
+ skills?: string[] | undefined;
911
+ temperature?: number | undefined;
912
+ top_p?: number | undefined;
913
+ prompt?: string | undefined;
914
+ prompt_append?: string | undefined;
915
+ tools?: Record<string, boolean> | undefined;
916
+ disable?: boolean | undefined;
917
+ description?: string | undefined;
918
+ mode?: "subagent" | "primary" | "all" | undefined;
919
+ color?: string | undefined;
920
+ permission?: Record<string, "allow" | "deny"> | undefined;
921
+ maxTokens?: number | undefined;
922
+ thinking?: {
923
+ type: "enabled";
924
+ budgetTokens?: number | undefined;
925
+ } | {
926
+ type: "disabled";
927
+ } | undefined;
928
+ }, {
929
+ model?: "claude-opus-4-6" | "claude-sonnet-4-6" | "claude-haiku-4-5" | "opus" | "sonnet" | "haiku" | undefined;
930
+ skills?: string[] | undefined;
931
+ temperature?: number | undefined;
932
+ top_p?: number | undefined;
933
+ prompt?: string | undefined;
934
+ prompt_append?: string | undefined;
935
+ tools?: Record<string, boolean> | undefined;
936
+ disable?: boolean | undefined;
937
+ description?: string | undefined;
938
+ mode?: "subagent" | "primary" | "all" | undefined;
939
+ color?: string | undefined;
940
+ permission?: Record<string, "allow" | "deny"> | undefined;
941
+ maxTokens?: number | undefined;
942
+ thinking?: {
943
+ type: "enabled";
944
+ budgetTokens?: number | undefined;
945
+ } | {
946
+ type: "disabled";
947
+ } | undefined;
948
+ }>>;
878
949
  }, "strip", z.ZodObject<{
879
950
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
880
951
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1727,6 +1798,77 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1727
1798
  type: "disabled";
1728
1799
  } | undefined;
1729
1800
  }>>;
1801
+ nodens: z.ZodOptional<z.ZodObject<{
1802
+ model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
1803
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1804
+ temperature: z.ZodOptional<z.ZodNumber>;
1805
+ top_p: z.ZodOptional<z.ZodNumber>;
1806
+ prompt: z.ZodOptional<z.ZodString>;
1807
+ prompt_append: z.ZodOptional<z.ZodString>;
1808
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
1809
+ disable: z.ZodOptional<z.ZodBoolean>;
1810
+ description: z.ZodOptional<z.ZodString>;
1811
+ mode: z.ZodOptional<z.ZodEnum<["subagent", "primary", "all"]>>;
1812
+ color: z.ZodOptional<z.ZodString>;
1813
+ permission: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["allow", "deny"]>>>;
1814
+ maxTokens: z.ZodOptional<z.ZodNumber>;
1815
+ thinking: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1816
+ type: z.ZodLiteral<"enabled">;
1817
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
1818
+ }, "strip", z.ZodTypeAny, {
1819
+ type: "enabled";
1820
+ budgetTokens?: number | undefined;
1821
+ }, {
1822
+ type: "enabled";
1823
+ budgetTokens?: number | undefined;
1824
+ }>, z.ZodObject<{
1825
+ type: z.ZodLiteral<"disabled">;
1826
+ }, "strip", z.ZodTypeAny, {
1827
+ type: "disabled";
1828
+ }, {
1829
+ type: "disabled";
1830
+ }>]>>;
1831
+ }, "strip", z.ZodTypeAny, {
1832
+ model?: "claude-opus-4-6" | "claude-sonnet-4-6" | "claude-haiku-4-5" | "opus" | "sonnet" | "haiku" | undefined;
1833
+ skills?: string[] | undefined;
1834
+ temperature?: number | undefined;
1835
+ top_p?: number | undefined;
1836
+ prompt?: string | undefined;
1837
+ prompt_append?: string | undefined;
1838
+ tools?: Record<string, boolean> | undefined;
1839
+ disable?: boolean | undefined;
1840
+ description?: string | undefined;
1841
+ mode?: "subagent" | "primary" | "all" | undefined;
1842
+ color?: string | undefined;
1843
+ permission?: Record<string, "allow" | "deny"> | undefined;
1844
+ maxTokens?: number | undefined;
1845
+ thinking?: {
1846
+ type: "enabled";
1847
+ budgetTokens?: number | undefined;
1848
+ } | {
1849
+ type: "disabled";
1850
+ } | undefined;
1851
+ }, {
1852
+ model?: "claude-opus-4-6" | "claude-sonnet-4-6" | "claude-haiku-4-5" | "opus" | "sonnet" | "haiku" | undefined;
1853
+ skills?: string[] | undefined;
1854
+ temperature?: number | undefined;
1855
+ top_p?: number | undefined;
1856
+ prompt?: string | undefined;
1857
+ prompt_append?: string | undefined;
1858
+ tools?: Record<string, boolean> | undefined;
1859
+ disable?: boolean | undefined;
1860
+ description?: string | undefined;
1861
+ mode?: "subagent" | "primary" | "all" | undefined;
1862
+ color?: string | undefined;
1863
+ permission?: Record<string, "allow" | "deny"> | undefined;
1864
+ maxTokens?: number | undefined;
1865
+ thinking?: {
1866
+ type: "enabled";
1867
+ budgetTokens?: number | undefined;
1868
+ } | {
1869
+ type: "disabled";
1870
+ } | undefined;
1871
+ }>>;
1730
1872
  }, z.ZodObject<{
1731
1873
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
1732
1874
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -2579,6 +2721,77 @@ export declare const AgentOverridesSchema: z.ZodObject<{
2579
2721
  type: "disabled";
2580
2722
  } | undefined;
2581
2723
  }>>;
2724
+ nodens: z.ZodOptional<z.ZodObject<{
2725
+ model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
2726
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2727
+ temperature: z.ZodOptional<z.ZodNumber>;
2728
+ top_p: z.ZodOptional<z.ZodNumber>;
2729
+ prompt: z.ZodOptional<z.ZodString>;
2730
+ prompt_append: z.ZodOptional<z.ZodString>;
2731
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
2732
+ disable: z.ZodOptional<z.ZodBoolean>;
2733
+ description: z.ZodOptional<z.ZodString>;
2734
+ mode: z.ZodOptional<z.ZodEnum<["subagent", "primary", "all"]>>;
2735
+ color: z.ZodOptional<z.ZodString>;
2736
+ permission: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["allow", "deny"]>>>;
2737
+ maxTokens: z.ZodOptional<z.ZodNumber>;
2738
+ thinking: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2739
+ type: z.ZodLiteral<"enabled">;
2740
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
2741
+ }, "strip", z.ZodTypeAny, {
2742
+ type: "enabled";
2743
+ budgetTokens?: number | undefined;
2744
+ }, {
2745
+ type: "enabled";
2746
+ budgetTokens?: number | undefined;
2747
+ }>, z.ZodObject<{
2748
+ type: z.ZodLiteral<"disabled">;
2749
+ }, "strip", z.ZodTypeAny, {
2750
+ type: "disabled";
2751
+ }, {
2752
+ type: "disabled";
2753
+ }>]>>;
2754
+ }, "strip", z.ZodTypeAny, {
2755
+ model?: "claude-opus-4-6" | "claude-sonnet-4-6" | "claude-haiku-4-5" | "opus" | "sonnet" | "haiku" | undefined;
2756
+ skills?: string[] | undefined;
2757
+ temperature?: number | undefined;
2758
+ top_p?: number | undefined;
2759
+ prompt?: string | undefined;
2760
+ prompt_append?: string | undefined;
2761
+ tools?: Record<string, boolean> | undefined;
2762
+ disable?: boolean | undefined;
2763
+ description?: string | undefined;
2764
+ mode?: "subagent" | "primary" | "all" | undefined;
2765
+ color?: string | undefined;
2766
+ permission?: Record<string, "allow" | "deny"> | undefined;
2767
+ maxTokens?: number | undefined;
2768
+ thinking?: {
2769
+ type: "enabled";
2770
+ budgetTokens?: number | undefined;
2771
+ } | {
2772
+ type: "disabled";
2773
+ } | undefined;
2774
+ }, {
2775
+ model?: "claude-opus-4-6" | "claude-sonnet-4-6" | "claude-haiku-4-5" | "opus" | "sonnet" | "haiku" | undefined;
2776
+ skills?: string[] | undefined;
2777
+ temperature?: number | undefined;
2778
+ top_p?: number | undefined;
2779
+ prompt?: string | undefined;
2780
+ prompt_append?: string | undefined;
2781
+ tools?: Record<string, boolean> | undefined;
2782
+ disable?: boolean | undefined;
2783
+ description?: string | undefined;
2784
+ mode?: "subagent" | "primary" | "all" | undefined;
2785
+ color?: string | undefined;
2786
+ permission?: Record<string, "allow" | "deny"> | undefined;
2787
+ maxTokens?: number | undefined;
2788
+ thinking?: {
2789
+ type: "enabled";
2790
+ budgetTokens?: number | undefined;
2791
+ } | {
2792
+ type: "disabled";
2793
+ } | undefined;
2794
+ }>>;
2582
2795
  }, z.ZodObject<{
2583
2796
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
2584
2797
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -2651,7 +2864,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
2651
2864
  } | undefined;
2652
2865
  }>, "strip">>;
2653
2866
  export type AgentOverrides = z.infer<typeof AgentOverridesSchema>;
2654
- export declare const BuiltinCategoryNameSchema: z.ZodEnum<["deep", "quick", "advisor", "explorer", "artisan", "watcher"]>;
2867
+ export declare const BuiltinCategoryNameSchema: z.ZodEnum<["deep", "quick", "advisor", "explorer", "craftsmanship", "watcher"]>;
2655
2868
  export type BuiltinCategoryName = z.infer<typeof BuiltinCategoryNameSchema>;
2656
2869
  export declare const CategoryConfigSchema: z.ZodObject<{
2657
2870
  description: z.ZodOptional<z.ZodString>;
@@ -2754,7 +2967,7 @@ export declare const CategoriesConfigSchema: z.ZodOptional<z.ZodRecord<z.ZodStri
2754
2967
  } | undefined;
2755
2968
  }>>>;
2756
2969
  export type CategoriesConfig = z.infer<typeof CategoriesConfigSchema>;
2757
- export declare const HookNameSchema: z.ZodEnum<["todo-continuation", "elder-loop", "comment-checker", "session-recovery", "background-notification", "context-injector", "write-guard", "bash-read-guard", "keyword-detector", "rules-injector", "cthulhu-auto", "memory-override"]>;
2970
+ export declare const HookNameSchema: z.ZodEnum<["todo-continuation", "elder-loop", "comment-checker", "session-recovery", "background-notification", "context-injector", "write-guard", "bash-read-guard", "keyword-detector", "rules-injector", "cthulhu-auto", "memory-override", "yith-capture", "web-research-detector", "design-detector"]>;
2758
2971
  export type HookName = z.infer<typeof HookNameSchema>;
2759
2972
  export declare const BuiltinCommandNameSchema: z.ZodEnum<["old-ones-init", "elder-loop", "cancel-elder-loop", "invoke-shub", "stop-the-dreaming", "exorcise-ai-slop", "session-handoff"]>;
2760
2973
  export type BuiltinCommandName = z.infer<typeof BuiltinCommandNameSchema>;
@@ -2853,6 +3066,30 @@ export declare const GitKeeperConfigSchema: z.ZodObject<{
2853
3066
  include_co_authored_by?: boolean | undefined;
2854
3067
  git_env_prefix?: string | undefined;
2855
3068
  }>;
3069
+ export declare const WebResearchDetectorConfigSchema: z.ZodObject<{
3070
+ enabled: z.ZodDefault<z.ZodBoolean>;
3071
+ }, "strip", z.ZodTypeAny, {
3072
+ enabled: boolean;
3073
+ }, {
3074
+ enabled?: boolean | undefined;
3075
+ }>;
3076
+ export type WebResearchDetectorConfig = z.infer<typeof WebResearchDetectorConfigSchema>;
3077
+ export declare const TypeSafetyLinterConfigSchema: z.ZodObject<{
3078
+ enabled: z.ZodDefault<z.ZodBoolean>;
3079
+ }, "strip", z.ZodTypeAny, {
3080
+ enabled: boolean;
3081
+ }, {
3082
+ enabled?: boolean | undefined;
3083
+ }>;
3084
+ export type TypeSafetyLinterConfig = z.infer<typeof TypeSafetyLinterConfigSchema>;
3085
+ export declare const FrontendDesignConfigSchema: z.ZodObject<{
3086
+ enabled: z.ZodDefault<z.ZodBoolean>;
3087
+ }, "strip", z.ZodTypeAny, {
3088
+ enabled: boolean;
3089
+ }, {
3090
+ enabled?: boolean | undefined;
3091
+ }>;
3092
+ export type FrontendDesignConfig = z.infer<typeof FrontendDesignConfigSchema>;
2856
3093
  export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
2857
3094
  $schema: z.ZodOptional<z.ZodString>;
2858
3095
  /** Default agent for background runs */
@@ -2864,7 +3101,7 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
2864
3101
  /** Disable specific built-in skills */
2865
3102
  disabled_skills: z.ZodOptional<z.ZodArray<z.ZodEnum<["git-keeper", "playwright", "dev-browser", "dread-reviewer", "slop-purge", "frontend-acolyte"]>, "many">>;
2866
3103
  /** Disable specific lifecycle hooks */
2867
- disabled_hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<["todo-continuation", "elder-loop", "comment-checker", "session-recovery", "background-notification", "context-injector", "write-guard", "bash-read-guard", "keyword-detector", "rules-injector", "cthulhu-auto", "memory-override"]>, "many">>;
3104
+ disabled_hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<["todo-continuation", "elder-loop", "comment-checker", "session-recovery", "background-notification", "context-injector", "write-guard", "bash-read-guard", "keyword-detector", "rules-injector", "cthulhu-auto", "memory-override", "yith-capture", "web-research-detector", "design-detector"]>, "many">>;
2868
3105
  /** Disable specific built-in commands */
2869
3106
  disabled_commands: z.ZodOptional<z.ZodArray<z.ZodEnum<["old-ones-init", "elder-loop", "cancel-elder-loop", "invoke-shub", "stop-the-dreaming", "exorcise-ai-slop", "session-handoff"]>, "many">>;
2870
3107
  /** Disable specific tools by name */
@@ -3655,6 +3892,77 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
3655
3892
  type: "disabled";
3656
3893
  } | undefined;
3657
3894
  }>>;
3895
+ nodens: z.ZodOptional<z.ZodObject<{
3896
+ model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
3897
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3898
+ temperature: z.ZodOptional<z.ZodNumber>;
3899
+ top_p: z.ZodOptional<z.ZodNumber>;
3900
+ prompt: z.ZodOptional<z.ZodString>;
3901
+ prompt_append: z.ZodOptional<z.ZodString>;
3902
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
3903
+ disable: z.ZodOptional<z.ZodBoolean>;
3904
+ description: z.ZodOptional<z.ZodString>;
3905
+ mode: z.ZodOptional<z.ZodEnum<["subagent", "primary", "all"]>>;
3906
+ color: z.ZodOptional<z.ZodString>;
3907
+ permission: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["allow", "deny"]>>>;
3908
+ maxTokens: z.ZodOptional<z.ZodNumber>;
3909
+ thinking: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
3910
+ type: z.ZodLiteral<"enabled">;
3911
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
3912
+ }, "strip", z.ZodTypeAny, {
3913
+ type: "enabled";
3914
+ budgetTokens?: number | undefined;
3915
+ }, {
3916
+ type: "enabled";
3917
+ budgetTokens?: number | undefined;
3918
+ }>, z.ZodObject<{
3919
+ type: z.ZodLiteral<"disabled">;
3920
+ }, "strip", z.ZodTypeAny, {
3921
+ type: "disabled";
3922
+ }, {
3923
+ type: "disabled";
3924
+ }>]>>;
3925
+ }, "strip", z.ZodTypeAny, {
3926
+ model?: "claude-opus-4-6" | "claude-sonnet-4-6" | "claude-haiku-4-5" | "opus" | "sonnet" | "haiku" | undefined;
3927
+ skills?: string[] | undefined;
3928
+ temperature?: number | undefined;
3929
+ top_p?: number | undefined;
3930
+ prompt?: string | undefined;
3931
+ prompt_append?: string | undefined;
3932
+ tools?: Record<string, boolean> | undefined;
3933
+ disable?: boolean | undefined;
3934
+ description?: string | undefined;
3935
+ mode?: "subagent" | "primary" | "all" | undefined;
3936
+ color?: string | undefined;
3937
+ permission?: Record<string, "allow" | "deny"> | undefined;
3938
+ maxTokens?: number | undefined;
3939
+ thinking?: {
3940
+ type: "enabled";
3941
+ budgetTokens?: number | undefined;
3942
+ } | {
3943
+ type: "disabled";
3944
+ } | undefined;
3945
+ }, {
3946
+ model?: "claude-opus-4-6" | "claude-sonnet-4-6" | "claude-haiku-4-5" | "opus" | "sonnet" | "haiku" | undefined;
3947
+ skills?: string[] | undefined;
3948
+ temperature?: number | undefined;
3949
+ top_p?: number | undefined;
3950
+ prompt?: string | undefined;
3951
+ prompt_append?: string | undefined;
3952
+ tools?: Record<string, boolean> | undefined;
3953
+ disable?: boolean | undefined;
3954
+ description?: string | undefined;
3955
+ mode?: "subagent" | "primary" | "all" | undefined;
3956
+ color?: string | undefined;
3957
+ permission?: Record<string, "allow" | "deny"> | undefined;
3958
+ maxTokens?: number | undefined;
3959
+ thinking?: {
3960
+ type: "enabled";
3961
+ budgetTokens?: number | undefined;
3962
+ } | {
3963
+ type: "disabled";
3964
+ } | undefined;
3965
+ }>>;
3658
3966
  }, "strip", z.ZodObject<{
3659
3967
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
3660
3968
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -3797,7 +4105,78 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
3797
4105
  type: "disabled";
3798
4106
  } | undefined;
3799
4107
  }>>;
3800
- nyarlathotep: z.ZodOptional<z.ZodObject<{
4108
+ nyarlathotep: z.ZodOptional<z.ZodObject<{
4109
+ model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
4110
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4111
+ temperature: z.ZodOptional<z.ZodNumber>;
4112
+ top_p: z.ZodOptional<z.ZodNumber>;
4113
+ prompt: z.ZodOptional<z.ZodString>;
4114
+ prompt_append: z.ZodOptional<z.ZodString>;
4115
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
4116
+ disable: z.ZodOptional<z.ZodBoolean>;
4117
+ description: z.ZodOptional<z.ZodString>;
4118
+ mode: z.ZodOptional<z.ZodEnum<["subagent", "primary", "all"]>>;
4119
+ color: z.ZodOptional<z.ZodString>;
4120
+ permission: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["allow", "deny"]>>>;
4121
+ maxTokens: z.ZodOptional<z.ZodNumber>;
4122
+ thinking: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
4123
+ type: z.ZodLiteral<"enabled">;
4124
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
4125
+ }, "strip", z.ZodTypeAny, {
4126
+ type: "enabled";
4127
+ budgetTokens?: number | undefined;
4128
+ }, {
4129
+ type: "enabled";
4130
+ budgetTokens?: number | undefined;
4131
+ }>, z.ZodObject<{
4132
+ type: z.ZodLiteral<"disabled">;
4133
+ }, "strip", z.ZodTypeAny, {
4134
+ type: "disabled";
4135
+ }, {
4136
+ type: "disabled";
4137
+ }>]>>;
4138
+ }, "strip", z.ZodTypeAny, {
4139
+ model?: "claude-opus-4-6" | "claude-sonnet-4-6" | "claude-haiku-4-5" | "opus" | "sonnet" | "haiku" | undefined;
4140
+ skills?: string[] | undefined;
4141
+ temperature?: number | undefined;
4142
+ top_p?: number | undefined;
4143
+ prompt?: string | undefined;
4144
+ prompt_append?: string | undefined;
4145
+ tools?: Record<string, boolean> | undefined;
4146
+ disable?: boolean | undefined;
4147
+ description?: string | undefined;
4148
+ mode?: "subagent" | "primary" | "all" | undefined;
4149
+ color?: string | undefined;
4150
+ permission?: Record<string, "allow" | "deny"> | undefined;
4151
+ maxTokens?: number | undefined;
4152
+ thinking?: {
4153
+ type: "enabled";
4154
+ budgetTokens?: number | undefined;
4155
+ } | {
4156
+ type: "disabled";
4157
+ } | undefined;
4158
+ }, {
4159
+ model?: "claude-opus-4-6" | "claude-sonnet-4-6" | "claude-haiku-4-5" | "opus" | "sonnet" | "haiku" | undefined;
4160
+ skills?: string[] | undefined;
4161
+ temperature?: number | undefined;
4162
+ top_p?: number | undefined;
4163
+ prompt?: string | undefined;
4164
+ prompt_append?: string | undefined;
4165
+ tools?: Record<string, boolean> | undefined;
4166
+ disable?: boolean | undefined;
4167
+ description?: string | undefined;
4168
+ mode?: "subagent" | "primary" | "all" | undefined;
4169
+ color?: string | undefined;
4170
+ permission?: Record<string, "allow" | "deny"> | undefined;
4171
+ maxTokens?: number | undefined;
4172
+ thinking?: {
4173
+ type: "enabled";
4174
+ budgetTokens?: number | undefined;
4175
+ } | {
4176
+ type: "disabled";
4177
+ } | undefined;
4178
+ }>>;
4179
+ azathoth: z.ZodOptional<z.ZodObject<{
3801
4180
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
3802
4181
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3803
4182
  temperature: z.ZodOptional<z.ZodNumber>;
@@ -3868,7 +4247,7 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
3868
4247
  type: "disabled";
3869
4248
  } | undefined;
3870
4249
  }>>;
3871
- azathoth: z.ZodOptional<z.ZodObject<{
4250
+ "shub-niggurath": z.ZodOptional<z.ZodObject<{
3872
4251
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
3873
4252
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3874
4253
  temperature: z.ZodOptional<z.ZodNumber>;
@@ -3939,7 +4318,7 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
3939
4318
  type: "disabled";
3940
4319
  } | undefined;
3941
4320
  }>>;
3942
- "shub-niggurath": z.ZodOptional<z.ZodObject<{
4321
+ hastur: z.ZodOptional<z.ZodObject<{
3943
4322
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
3944
4323
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3945
4324
  temperature: z.ZodOptional<z.ZodNumber>;
@@ -4010,7 +4389,7 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
4010
4389
  type: "disabled";
4011
4390
  } | undefined;
4012
4391
  }>>;
4013
- hastur: z.ZodOptional<z.ZodObject<{
4392
+ "yog-sothoth": z.ZodOptional<z.ZodObject<{
4014
4393
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
4015
4394
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4016
4395
  temperature: z.ZodOptional<z.ZodNumber>;
@@ -4081,7 +4460,7 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
4081
4460
  type: "disabled";
4082
4461
  } | undefined;
4083
4462
  }>>;
4084
- "yog-sothoth": z.ZodOptional<z.ZodObject<{
4463
+ dagon: z.ZodOptional<z.ZodObject<{
4085
4464
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
4086
4465
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4087
4466
  temperature: z.ZodOptional<z.ZodNumber>;
@@ -4152,7 +4531,7 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
4152
4531
  type: "disabled";
4153
4532
  } | undefined;
4154
4533
  }>>;
4155
- dagon: z.ZodOptional<z.ZodObject<{
4534
+ ithaqua: z.ZodOptional<z.ZodObject<{
4156
4535
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
4157
4536
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4158
4537
  temperature: z.ZodOptional<z.ZodNumber>;
@@ -4223,7 +4602,7 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
4223
4602
  type: "disabled";
4224
4603
  } | undefined;
4225
4604
  }>>;
4226
- ithaqua: z.ZodOptional<z.ZodObject<{
4605
+ tsathoggua: z.ZodOptional<z.ZodObject<{
4227
4606
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
4228
4607
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4229
4608
  temperature: z.ZodOptional<z.ZodNumber>;
@@ -4294,7 +4673,7 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
4294
4673
  type: "disabled";
4295
4674
  } | undefined;
4296
4675
  }>>;
4297
- tsathoggua: z.ZodOptional<z.ZodObject<{
4676
+ shoggoth: z.ZodOptional<z.ZodObject<{
4298
4677
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
4299
4678
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4300
4679
  temperature: z.ZodOptional<z.ZodNumber>;
@@ -4365,7 +4744,7 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
4365
4744
  type: "disabled";
4366
4745
  } | undefined;
4367
4746
  }>>;
4368
- shoggoth: z.ZodOptional<z.ZodObject<{
4747
+ "the-deep-one": z.ZodOptional<z.ZodObject<{
4369
4748
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
4370
4749
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4371
4750
  temperature: z.ZodOptional<z.ZodNumber>;
@@ -4436,7 +4815,7 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
4436
4815
  type: "disabled";
4437
4816
  } | undefined;
4438
4817
  }>>;
4439
- "the-deep-one": z.ZodOptional<z.ZodObject<{
4818
+ nodens: z.ZodOptional<z.ZodObject<{
4440
4819
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
4441
4820
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4442
4821
  temperature: z.ZodOptional<z.ZodNumber>;
@@ -5359,6 +5738,77 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
5359
5738
  type: "disabled";
5360
5739
  } | undefined;
5361
5740
  }>>;
5741
+ nodens: z.ZodOptional<z.ZodObject<{
5742
+ model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
5743
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5744
+ temperature: z.ZodOptional<z.ZodNumber>;
5745
+ top_p: z.ZodOptional<z.ZodNumber>;
5746
+ prompt: z.ZodOptional<z.ZodString>;
5747
+ prompt_append: z.ZodOptional<z.ZodString>;
5748
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
5749
+ disable: z.ZodOptional<z.ZodBoolean>;
5750
+ description: z.ZodOptional<z.ZodString>;
5751
+ mode: z.ZodOptional<z.ZodEnum<["subagent", "primary", "all"]>>;
5752
+ color: z.ZodOptional<z.ZodString>;
5753
+ permission: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["allow", "deny"]>>>;
5754
+ maxTokens: z.ZodOptional<z.ZodNumber>;
5755
+ thinking: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
5756
+ type: z.ZodLiteral<"enabled">;
5757
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
5758
+ }, "strip", z.ZodTypeAny, {
5759
+ type: "enabled";
5760
+ budgetTokens?: number | undefined;
5761
+ }, {
5762
+ type: "enabled";
5763
+ budgetTokens?: number | undefined;
5764
+ }>, z.ZodObject<{
5765
+ type: z.ZodLiteral<"disabled">;
5766
+ }, "strip", z.ZodTypeAny, {
5767
+ type: "disabled";
5768
+ }, {
5769
+ type: "disabled";
5770
+ }>]>>;
5771
+ }, "strip", z.ZodTypeAny, {
5772
+ model?: "claude-opus-4-6" | "claude-sonnet-4-6" | "claude-haiku-4-5" | "opus" | "sonnet" | "haiku" | undefined;
5773
+ skills?: string[] | undefined;
5774
+ temperature?: number | undefined;
5775
+ top_p?: number | undefined;
5776
+ prompt?: string | undefined;
5777
+ prompt_append?: string | undefined;
5778
+ tools?: Record<string, boolean> | undefined;
5779
+ disable?: boolean | undefined;
5780
+ description?: string | undefined;
5781
+ mode?: "subagent" | "primary" | "all" | undefined;
5782
+ color?: string | undefined;
5783
+ permission?: Record<string, "allow" | "deny"> | undefined;
5784
+ maxTokens?: number | undefined;
5785
+ thinking?: {
5786
+ type: "enabled";
5787
+ budgetTokens?: number | undefined;
5788
+ } | {
5789
+ type: "disabled";
5790
+ } | undefined;
5791
+ }, {
5792
+ model?: "claude-opus-4-6" | "claude-sonnet-4-6" | "claude-haiku-4-5" | "opus" | "sonnet" | "haiku" | undefined;
5793
+ skills?: string[] | undefined;
5794
+ temperature?: number | undefined;
5795
+ top_p?: number | undefined;
5796
+ prompt?: string | undefined;
5797
+ prompt_append?: string | undefined;
5798
+ tools?: Record<string, boolean> | undefined;
5799
+ disable?: boolean | undefined;
5800
+ description?: string | undefined;
5801
+ mode?: "subagent" | "primary" | "all" | undefined;
5802
+ color?: string | undefined;
5803
+ permission?: Record<string, "allow" | "deny"> | undefined;
5804
+ maxTokens?: number | undefined;
5805
+ thinking?: {
5806
+ type: "enabled";
5807
+ budgetTokens?: number | undefined;
5808
+ } | {
5809
+ type: "disabled";
5810
+ } | undefined;
5811
+ }>>;
5362
5812
  }, z.ZodObject<{
5363
5813
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
5364
5814
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -5571,6 +6021,27 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
5571
6021
  preemptive_compaction?: boolean | undefined;
5572
6022
  dynamic_context_pruning?: boolean | undefined;
5573
6023
  }>>;
6024
+ web_research: z.ZodOptional<z.ZodObject<{
6025
+ enabled: z.ZodDefault<z.ZodBoolean>;
6026
+ }, "strip", z.ZodTypeAny, {
6027
+ enabled: boolean;
6028
+ }, {
6029
+ enabled?: boolean | undefined;
6030
+ }>>;
6031
+ type_safety: z.ZodOptional<z.ZodObject<{
6032
+ enabled: z.ZodDefault<z.ZodBoolean>;
6033
+ }, "strip", z.ZodTypeAny, {
6034
+ enabled: boolean;
6035
+ }, {
6036
+ enabled?: boolean | undefined;
6037
+ }>>;
6038
+ frontend_design: z.ZodOptional<z.ZodObject<{
6039
+ enabled: z.ZodDefault<z.ZodBoolean>;
6040
+ }, "strip", z.ZodTypeAny, {
6041
+ enabled: boolean;
6042
+ }, {
6043
+ enabled?: boolean | undefined;
6044
+ }>>;
5574
6045
  /** Migration tracking — prevents re-applying migrations */
5575
6046
  _migrations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5576
6047
  }, "strip", z.ZodTypeAny, {
@@ -5589,7 +6060,7 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
5589
6060
  disabled_mcps?: ("websearch" | "context7" | "grep_app")[] | undefined;
5590
6061
  disabled_agents?: string[] | undefined;
5591
6062
  disabled_skills?: ("git-keeper" | "playwright" | "dev-browser" | "dread-reviewer" | "slop-purge" | "frontend-acolyte")[] | undefined;
5592
- disabled_hooks?: ("todo-continuation" | "elder-loop" | "comment-checker" | "session-recovery" | "background-notification" | "context-injector" | "write-guard" | "bash-read-guard" | "keyword-detector" | "rules-injector" | "cthulhu-auto" | "memory-override")[] | undefined;
6063
+ disabled_hooks?: ("todo-continuation" | "elder-loop" | "comment-checker" | "session-recovery" | "background-notification" | "context-injector" | "write-guard" | "bash-read-guard" | "keyword-detector" | "rules-injector" | "cthulhu-auto" | "memory-override" | "yith-capture" | "web-research-detector" | "design-detector")[] | undefined;
5593
6064
  disabled_commands?: ("elder-loop" | "old-ones-init" | "cancel-elder-loop" | "invoke-shub" | "stop-the-dreaming" | "exorcise-ai-slop" | "session-handoff")[] | undefined;
5594
6065
  disabled_tools?: string[] | undefined;
5595
6066
  mcp_env_allowlist?: string[] | undefined;
@@ -6375,6 +6846,77 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
6375
6846
  type: "disabled";
6376
6847
  } | undefined;
6377
6848
  }>>;
6849
+ nodens: z.ZodOptional<z.ZodObject<{
6850
+ model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
6851
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6852
+ temperature: z.ZodOptional<z.ZodNumber>;
6853
+ top_p: z.ZodOptional<z.ZodNumber>;
6854
+ prompt: z.ZodOptional<z.ZodString>;
6855
+ prompt_append: z.ZodOptional<z.ZodString>;
6856
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
6857
+ disable: z.ZodOptional<z.ZodBoolean>;
6858
+ description: z.ZodOptional<z.ZodString>;
6859
+ mode: z.ZodOptional<z.ZodEnum<["subagent", "primary", "all"]>>;
6860
+ color: z.ZodOptional<z.ZodString>;
6861
+ permission: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["allow", "deny"]>>>;
6862
+ maxTokens: z.ZodOptional<z.ZodNumber>;
6863
+ thinking: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
6864
+ type: z.ZodLiteral<"enabled">;
6865
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
6866
+ }, "strip", z.ZodTypeAny, {
6867
+ type: "enabled";
6868
+ budgetTokens?: number | undefined;
6869
+ }, {
6870
+ type: "enabled";
6871
+ budgetTokens?: number | undefined;
6872
+ }>, z.ZodObject<{
6873
+ type: z.ZodLiteral<"disabled">;
6874
+ }, "strip", z.ZodTypeAny, {
6875
+ type: "disabled";
6876
+ }, {
6877
+ type: "disabled";
6878
+ }>]>>;
6879
+ }, "strip", z.ZodTypeAny, {
6880
+ model?: "claude-opus-4-6" | "claude-sonnet-4-6" | "claude-haiku-4-5" | "opus" | "sonnet" | "haiku" | undefined;
6881
+ skills?: string[] | undefined;
6882
+ temperature?: number | undefined;
6883
+ top_p?: number | undefined;
6884
+ prompt?: string | undefined;
6885
+ prompt_append?: string | undefined;
6886
+ tools?: Record<string, boolean> | undefined;
6887
+ disable?: boolean | undefined;
6888
+ description?: string | undefined;
6889
+ mode?: "subagent" | "primary" | "all" | undefined;
6890
+ color?: string | undefined;
6891
+ permission?: Record<string, "allow" | "deny"> | undefined;
6892
+ maxTokens?: number | undefined;
6893
+ thinking?: {
6894
+ type: "enabled";
6895
+ budgetTokens?: number | undefined;
6896
+ } | {
6897
+ type: "disabled";
6898
+ } | undefined;
6899
+ }, {
6900
+ model?: "claude-opus-4-6" | "claude-sonnet-4-6" | "claude-haiku-4-5" | "opus" | "sonnet" | "haiku" | undefined;
6901
+ skills?: string[] | undefined;
6902
+ temperature?: number | undefined;
6903
+ top_p?: number | undefined;
6904
+ prompt?: string | undefined;
6905
+ prompt_append?: string | undefined;
6906
+ tools?: Record<string, boolean> | undefined;
6907
+ disable?: boolean | undefined;
6908
+ description?: string | undefined;
6909
+ mode?: "subagent" | "primary" | "all" | undefined;
6910
+ color?: string | undefined;
6911
+ permission?: Record<string, "allow" | "deny"> | undefined;
6912
+ maxTokens?: number | undefined;
6913
+ thinking?: {
6914
+ type: "enabled";
6915
+ budgetTokens?: number | undefined;
6916
+ } | {
6917
+ type: "disabled";
6918
+ } | undefined;
6919
+ }>>;
6378
6920
  }, z.ZodObject<{
6379
6921
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
6380
6922
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -6486,6 +7028,15 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
6486
7028
  preemptive_compaction: boolean;
6487
7029
  dynamic_context_pruning: boolean;
6488
7030
  } | undefined;
7031
+ web_research?: {
7032
+ enabled: boolean;
7033
+ } | undefined;
7034
+ type_safety?: {
7035
+ enabled: boolean;
7036
+ } | undefined;
7037
+ frontend_design?: {
7038
+ enabled: boolean;
7039
+ } | undefined;
6489
7040
  _migrations?: string[] | undefined;
6490
7041
  }, {
6491
7042
  websearch?: {
@@ -6497,7 +7048,7 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
6497
7048
  disabled_mcps?: ("websearch" | "context7" | "grep_app")[] | undefined;
6498
7049
  disabled_agents?: string[] | undefined;
6499
7050
  disabled_skills?: ("git-keeper" | "playwright" | "dev-browser" | "dread-reviewer" | "slop-purge" | "frontend-acolyte")[] | undefined;
6500
- disabled_hooks?: ("todo-continuation" | "elder-loop" | "comment-checker" | "session-recovery" | "background-notification" | "context-injector" | "write-guard" | "bash-read-guard" | "keyword-detector" | "rules-injector" | "cthulhu-auto" | "memory-override")[] | undefined;
7051
+ disabled_hooks?: ("todo-continuation" | "elder-loop" | "comment-checker" | "session-recovery" | "background-notification" | "context-injector" | "write-guard" | "bash-read-guard" | "keyword-detector" | "rules-injector" | "cthulhu-auto" | "memory-override" | "yith-capture" | "web-research-detector" | "design-detector")[] | undefined;
6501
7052
  disabled_commands?: ("elder-loop" | "old-ones-init" | "cancel-elder-loop" | "invoke-shub" | "stop-the-dreaming" | "exorcise-ai-slop" | "session-handoff")[] | undefined;
6502
7053
  disabled_tools?: string[] | undefined;
6503
7054
  mcp_env_allowlist?: string[] | undefined;
@@ -7284,6 +7835,77 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
7284
7835
  type: "disabled";
7285
7836
  } | undefined;
7286
7837
  }>>;
7838
+ nodens: z.ZodOptional<z.ZodObject<{
7839
+ model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
7840
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7841
+ temperature: z.ZodOptional<z.ZodNumber>;
7842
+ top_p: z.ZodOptional<z.ZodNumber>;
7843
+ prompt: z.ZodOptional<z.ZodString>;
7844
+ prompt_append: z.ZodOptional<z.ZodString>;
7845
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
7846
+ disable: z.ZodOptional<z.ZodBoolean>;
7847
+ description: z.ZodOptional<z.ZodString>;
7848
+ mode: z.ZodOptional<z.ZodEnum<["subagent", "primary", "all"]>>;
7849
+ color: z.ZodOptional<z.ZodString>;
7850
+ permission: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<["allow", "deny"]>>>;
7851
+ maxTokens: z.ZodOptional<z.ZodNumber>;
7852
+ thinking: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
7853
+ type: z.ZodLiteral<"enabled">;
7854
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
7855
+ }, "strip", z.ZodTypeAny, {
7856
+ type: "enabled";
7857
+ budgetTokens?: number | undefined;
7858
+ }, {
7859
+ type: "enabled";
7860
+ budgetTokens?: number | undefined;
7861
+ }>, z.ZodObject<{
7862
+ type: z.ZodLiteral<"disabled">;
7863
+ }, "strip", z.ZodTypeAny, {
7864
+ type: "disabled";
7865
+ }, {
7866
+ type: "disabled";
7867
+ }>]>>;
7868
+ }, "strip", z.ZodTypeAny, {
7869
+ model?: "claude-opus-4-6" | "claude-sonnet-4-6" | "claude-haiku-4-5" | "opus" | "sonnet" | "haiku" | undefined;
7870
+ skills?: string[] | undefined;
7871
+ temperature?: number | undefined;
7872
+ top_p?: number | undefined;
7873
+ prompt?: string | undefined;
7874
+ prompt_append?: string | undefined;
7875
+ tools?: Record<string, boolean> | undefined;
7876
+ disable?: boolean | undefined;
7877
+ description?: string | undefined;
7878
+ mode?: "subagent" | "primary" | "all" | undefined;
7879
+ color?: string | undefined;
7880
+ permission?: Record<string, "allow" | "deny"> | undefined;
7881
+ maxTokens?: number | undefined;
7882
+ thinking?: {
7883
+ type: "enabled";
7884
+ budgetTokens?: number | undefined;
7885
+ } | {
7886
+ type: "disabled";
7887
+ } | undefined;
7888
+ }, {
7889
+ model?: "claude-opus-4-6" | "claude-sonnet-4-6" | "claude-haiku-4-5" | "opus" | "sonnet" | "haiku" | undefined;
7890
+ skills?: string[] | undefined;
7891
+ temperature?: number | undefined;
7892
+ top_p?: number | undefined;
7893
+ prompt?: string | undefined;
7894
+ prompt_append?: string | undefined;
7895
+ tools?: Record<string, boolean> | undefined;
7896
+ disable?: boolean | undefined;
7897
+ description?: string | undefined;
7898
+ mode?: "subagent" | "primary" | "all" | undefined;
7899
+ color?: string | undefined;
7900
+ permission?: Record<string, "allow" | "deny"> | undefined;
7901
+ maxTokens?: number | undefined;
7902
+ thinking?: {
7903
+ type: "enabled";
7904
+ budgetTokens?: number | undefined;
7905
+ } | {
7906
+ type: "disabled";
7907
+ } | undefined;
7908
+ }>>;
7287
7909
  }, z.ZodObject<{
7288
7910
  model: z.ZodOptional<z.ZodEnum<["claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "opus", "sonnet", "haiku"]>>;
7289
7911
  skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -7400,6 +8022,15 @@ export declare const OhMyClaudeCodeConfigSchema: z.ZodObject<{
7400
8022
  preemptive_compaction?: boolean | undefined;
7401
8023
  dynamic_context_pruning?: boolean | undefined;
7402
8024
  } | undefined;
8025
+ web_research?: {
8026
+ enabled?: boolean | undefined;
8027
+ } | undefined;
8028
+ type_safety?: {
8029
+ enabled?: boolean | undefined;
8030
+ } | undefined;
8031
+ frontend_design?: {
8032
+ enabled?: boolean | undefined;
8033
+ } | undefined;
7403
8034
  _migrations?: string[] | undefined;
7404
8035
  }>;
7405
8036
  export type OhMyClaudeCodeConfig = z.infer<typeof OhMyClaudeCodeConfigSchema>;