@kolisachint/hoocode-agent 0.5.4 → 0.5.5

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.
@@ -0,0 +1,96 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/kolisachint/hoocode/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
3
+ "name": "colorsafe-dark",
4
+ "description": "Low vision + color blindness: Okabe-Ito hues on dark, no red/green pairs",
5
+ "vars": {
6
+ "white": "#f2f2f2",
7
+ "paleGray": "#e6e6e6",
8
+ "gray": "#cccccc",
9
+ "dimGray": "#b6b6b6",
10
+ "sky": "#7fd3f7",
11
+ "blue": "#9db8ff",
12
+ "bluishGreen": "#4fd6b0",
13
+ "yellow": "#f2e26b",
14
+ "orange": "#ffbe5c",
15
+ "vermillion": "#ff9a70",
16
+ "purple": "#f0a3d0",
17
+ "selectedBg": "#212630",
18
+ "userMsgBg": "#14171c",
19
+ "customMsgBg": "#171520",
20
+ "toolPendingBg": "#12151a",
21
+ "toolSuccessBg": "#0f1a17",
22
+ "toolErrorBg": "#1c1512"
23
+ },
24
+ "colors": {
25
+ "accent": "sky",
26
+ "border": "blue",
27
+ "borderAccent": "sky",
28
+ "borderMuted": "dimGray",
29
+ "success": "bluishGreen",
30
+ "error": "vermillion",
31
+ "warning": "yellow",
32
+ "muted": "gray",
33
+ "dim": "dimGray",
34
+ "text": "white",
35
+ "thinkingText": "gray",
36
+
37
+ "selectedBg": "selectedBg",
38
+ "userMessageBg": "userMsgBg",
39
+ "userMessageText": "white",
40
+ "customMessageBg": "customMsgBg",
41
+ "customMessageText": "white",
42
+ "customMessageLabel": "purple",
43
+ "toolPendingBg": "toolPendingBg",
44
+ "toolSuccessBg": "toolSuccessBg",
45
+ "toolErrorBg": "toolErrorBg",
46
+ "toolTitle": "white",
47
+ "toolOutput": "gray",
48
+
49
+ "mdHeading": "yellow",
50
+ "mdLink": "blue",
51
+ "mdLinkUrl": "dimGray",
52
+ "mdCode": "sky",
53
+ "mdCodeBlock": "paleGray",
54
+ "mdCodeBlockBorder": "dimGray",
55
+ "mdQuote": "gray",
56
+ "mdQuoteBorder": "orange",
57
+ "mdHr": "dimGray",
58
+ "mdListBullet": "sky",
59
+
60
+ "toolDiffAdded": "bluishGreen",
61
+ "toolDiffRemoved": "vermillion",
62
+ "toolDiffContext": "dimGray",
63
+
64
+ "syntaxComment": "dimGray",
65
+ "syntaxKeyword": "blue",
66
+ "syntaxFunction": "yellow",
67
+ "syntaxVariable": "sky",
68
+ "syntaxString": "bluishGreen",
69
+ "syntaxNumber": "orange",
70
+ "syntaxType": "purple",
71
+ "syntaxOperator": "paleGray",
72
+ "syntaxPunctuation": "paleGray",
73
+
74
+ "thinkingOff": "dimGray",
75
+ "thinkingMinimal": "gray",
76
+ "thinkingLow": "blue",
77
+ "thinkingMedium": "sky",
78
+ "thinkingHigh": "orange",
79
+ "thinkingXhigh": "purple",
80
+
81
+ "bashMode": "bluishGreen",
82
+
83
+ "agent1": "sky",
84
+ "agent2": "purple",
85
+ "agent3": "orange",
86
+ "agent4": "bluishGreen",
87
+ "agent5": "blue",
88
+ "agent6": "yellow",
89
+ "mcp": "purple"
90
+ },
91
+ "export": {
92
+ "pageBg": "#0d0f12",
93
+ "cardBg": "#14171c",
94
+ "infoBg": "#1d1a0e"
95
+ }
96
+ }
@@ -0,0 +1,96 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/kolisachint/hoocode/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
3
+ "name": "colorsafe-light",
4
+ "description": "Low vision + color blindness: Okabe-Ito hues on white, no red/green pairs",
5
+ "vars": {
6
+ "ink": "#101010",
7
+ "inkSoft": "#242424",
8
+ "gray": "#3d3d3d",
9
+ "dimGray": "#454545",
10
+ "sky": "#0c4868",
11
+ "blue": "#00446e",
12
+ "bluishGreen": "#004c3a",
13
+ "olive": "#4a4200",
14
+ "orange": "#543c00",
15
+ "vermillion": "#703000",
16
+ "purple": "#73245a",
17
+ "selectedBg": "#dfe6f2",
18
+ "userMsgBg": "#f2f3f5",
19
+ "customMsgBg": "#f5f0f4",
20
+ "toolPendingBg": "#f4f5f7",
21
+ "toolSuccessBg": "#edf5f2",
22
+ "toolErrorBg": "#f9f0ea"
23
+ },
24
+ "colors": {
25
+ "accent": "sky",
26
+ "border": "blue",
27
+ "borderAccent": "sky",
28
+ "borderMuted": "dimGray",
29
+ "success": "bluishGreen",
30
+ "error": "vermillion",
31
+ "warning": "olive",
32
+ "muted": "gray",
33
+ "dim": "dimGray",
34
+ "text": "ink",
35
+ "thinkingText": "gray",
36
+
37
+ "selectedBg": "selectedBg",
38
+ "userMessageBg": "userMsgBg",
39
+ "userMessageText": "ink",
40
+ "customMessageBg": "customMsgBg",
41
+ "customMessageText": "ink",
42
+ "customMessageLabel": "purple",
43
+ "toolPendingBg": "toolPendingBg",
44
+ "toolSuccessBg": "toolSuccessBg",
45
+ "toolErrorBg": "toolErrorBg",
46
+ "toolTitle": "ink",
47
+ "toolOutput": "gray",
48
+
49
+ "mdHeading": "olive",
50
+ "mdLink": "blue",
51
+ "mdLinkUrl": "dimGray",
52
+ "mdCode": "sky",
53
+ "mdCodeBlock": "inkSoft",
54
+ "mdCodeBlockBorder": "dimGray",
55
+ "mdQuote": "gray",
56
+ "mdQuoteBorder": "orange",
57
+ "mdHr": "dimGray",
58
+ "mdListBullet": "sky",
59
+
60
+ "toolDiffAdded": "bluishGreen",
61
+ "toolDiffRemoved": "vermillion",
62
+ "toolDiffContext": "dimGray",
63
+
64
+ "syntaxComment": "dimGray",
65
+ "syntaxKeyword": "blue",
66
+ "syntaxFunction": "olive",
67
+ "syntaxVariable": "sky",
68
+ "syntaxString": "bluishGreen",
69
+ "syntaxNumber": "orange",
70
+ "syntaxType": "purple",
71
+ "syntaxOperator": "inkSoft",
72
+ "syntaxPunctuation": "inkSoft",
73
+
74
+ "thinkingOff": "dimGray",
75
+ "thinkingMinimal": "gray",
76
+ "thinkingLow": "blue",
77
+ "thinkingMedium": "sky",
78
+ "thinkingHigh": "orange",
79
+ "thinkingXhigh": "purple",
80
+
81
+ "bashMode": "bluishGreen",
82
+
83
+ "agent1": "sky",
84
+ "agent2": "purple",
85
+ "agent3": "orange",
86
+ "agent4": "bluishGreen",
87
+ "agent5": "blue",
88
+ "agent6": "vermillion",
89
+ "mcp": "purple"
90
+ },
91
+ "export": {
92
+ "pageBg": "#ffffff",
93
+ "cardBg": "#f7f8fa",
94
+ "infoBg": "#fdf3d6"
95
+ }
96
+ }
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "$schema": "https://raw.githubusercontent.com/kolisachint/hoocode/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
3
3
  "name": "dark",
4
+ "description": "Default dark theme",
4
5
  "vars": {
5
6
  "cyan": "#00d7ff",
6
7
  "blue": "#5f87ff",
@@ -0,0 +1,100 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/kolisachint/hoocode/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
3
+ "name": "high-contrast-dark",
4
+ "description": "Low vision: maximum contrast on black, bright saturated hues",
5
+ "vars": {
6
+ "white": "#ffffff",
7
+ "paleGray": "#e0e0e0",
8
+ "gray": "#d0d0d0",
9
+ "dimGray": "#b5b5b5",
10
+ "cyan": "#00e5ff",
11
+ "blue": "#82b1ff",
12
+ "green": "#69f0ae",
13
+ "red": "#ff958c",
14
+ "amber": "#ffd740",
15
+ "orange": "#ffab40",
16
+ "purple": "#ee90fc",
17
+ "pink": "#ff8fb5",
18
+ "lilac": "#c9a9ff",
19
+ "mint": "#80deea",
20
+ "lime": "#9ccc65",
21
+ "selectedBg": "#212121",
22
+ "userMsgBg": "#121212",
23
+ "customMsgBg": "#141018",
24
+ "toolPendingBg": "#101010",
25
+ "toolSuccessBg": "#0a1410",
26
+ "toolErrorBg": "#170e0e"
27
+ },
28
+ "colors": {
29
+ "accent": "cyan",
30
+ "border": "blue",
31
+ "borderAccent": "cyan",
32
+ "borderMuted": "dimGray",
33
+ "success": "green",
34
+ "error": "red",
35
+ "warning": "amber",
36
+ "muted": "gray",
37
+ "dim": "dimGray",
38
+ "text": "white",
39
+ "thinkingText": "gray",
40
+
41
+ "selectedBg": "selectedBg",
42
+ "userMessageBg": "userMsgBg",
43
+ "userMessageText": "white",
44
+ "customMessageBg": "customMsgBg",
45
+ "customMessageText": "white",
46
+ "customMessageLabel": "purple",
47
+ "toolPendingBg": "toolPendingBg",
48
+ "toolSuccessBg": "toolSuccessBg",
49
+ "toolErrorBg": "toolErrorBg",
50
+ "toolTitle": "white",
51
+ "toolOutput": "gray",
52
+
53
+ "mdHeading": "amber",
54
+ "mdLink": "blue",
55
+ "mdLinkUrl": "dimGray",
56
+ "mdCode": "cyan",
57
+ "mdCodeBlock": "paleGray",
58
+ "mdCodeBlockBorder": "dimGray",
59
+ "mdQuote": "gray",
60
+ "mdQuoteBorder": "orange",
61
+ "mdHr": "dimGray",
62
+ "mdListBullet": "cyan",
63
+
64
+ "toolDiffAdded": "green",
65
+ "toolDiffRemoved": "red",
66
+ "toolDiffContext": "dimGray",
67
+
68
+ "syntaxComment": "lime",
69
+ "syntaxKeyword": "blue",
70
+ "syntaxFunction": "#ffe082",
71
+ "syntaxVariable": "#b3e5fc",
72
+ "syntaxString": "#ffab91",
73
+ "syntaxNumber": "lilac",
74
+ "syntaxType": "mint",
75
+ "syntaxOperator": "paleGray",
76
+ "syntaxPunctuation": "paleGray",
77
+
78
+ "thinkingOff": "dimGray",
79
+ "thinkingMinimal": "gray",
80
+ "thinkingLow": "blue",
81
+ "thinkingMedium": "cyan",
82
+ "thinkingHigh": "orange",
83
+ "thinkingXhigh": "purple",
84
+
85
+ "bashMode": "green",
86
+
87
+ "agent1": "cyan",
88
+ "agent2": "purple",
89
+ "agent3": "orange",
90
+ "agent4": "pink",
91
+ "agent5": "green",
92
+ "agent6": "blue",
93
+ "mcp": "#e0b0ff"
94
+ },
95
+ "export": {
96
+ "pageBg": "#000000",
97
+ "cardBg": "#121212",
98
+ "infoBg": "#1c1608"
99
+ }
100
+ }
@@ -0,0 +1,97 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/kolisachint/hoocode/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
3
+ "name": "high-contrast-light",
4
+ "description": "Low vision: maximum contrast on white, deep saturated hues",
5
+ "vars": {
6
+ "ink": "#000000",
7
+ "inkSoft": "#1a1a1a",
8
+ "gray": "#3d3d3d",
9
+ "dimGray": "#454545",
10
+ "blue": "#0b3d91",
11
+ "teal": "#00474a",
12
+ "green": "#14521a",
13
+ "red": "#8c0016",
14
+ "amber": "#5c3f00",
15
+ "purple": "#5b2a86",
16
+ "orange": "#7a3300",
17
+ "magenta": "#7a1a5f",
18
+ "selectedBg": "#dde6f5",
19
+ "userMsgBg": "#f2f2f2",
20
+ "customMsgBg": "#f4f0fa",
21
+ "toolPendingBg": "#f5f5f7",
22
+ "toolSuccessBg": "#eff7ef",
23
+ "toolErrorBg": "#fdefef"
24
+ },
25
+ "colors": {
26
+ "accent": "teal",
27
+ "border": "blue",
28
+ "borderAccent": "teal",
29
+ "borderMuted": "dimGray",
30
+ "success": "green",
31
+ "error": "red",
32
+ "warning": "amber",
33
+ "muted": "gray",
34
+ "dim": "dimGray",
35
+ "text": "ink",
36
+ "thinkingText": "gray",
37
+
38
+ "selectedBg": "selectedBg",
39
+ "userMessageBg": "userMsgBg",
40
+ "userMessageText": "ink",
41
+ "customMessageBg": "customMsgBg",
42
+ "customMessageText": "ink",
43
+ "customMessageLabel": "purple",
44
+ "toolPendingBg": "toolPendingBg",
45
+ "toolSuccessBg": "toolSuccessBg",
46
+ "toolErrorBg": "toolErrorBg",
47
+ "toolTitle": "ink",
48
+ "toolOutput": "gray",
49
+
50
+ "mdHeading": "amber",
51
+ "mdLink": "blue",
52
+ "mdLinkUrl": "dimGray",
53
+ "mdCode": "teal",
54
+ "mdCodeBlock": "inkSoft",
55
+ "mdCodeBlockBorder": "dimGray",
56
+ "mdQuote": "gray",
57
+ "mdQuoteBorder": "orange",
58
+ "mdHr": "dimGray",
59
+ "mdListBullet": "teal",
60
+
61
+ "toolDiffAdded": "green",
62
+ "toolDiffRemoved": "red",
63
+ "toolDiffContext": "dimGray",
64
+
65
+ "syntaxComment": "green",
66
+ "syntaxKeyword": "blue",
67
+ "syntaxFunction": "orange",
68
+ "syntaxVariable": "magenta",
69
+ "syntaxString": "red",
70
+ "syntaxNumber": "purple",
71
+ "syntaxType": "teal",
72
+ "syntaxOperator": "inkSoft",
73
+ "syntaxPunctuation": "inkSoft",
74
+
75
+ "thinkingOff": "dimGray",
76
+ "thinkingMinimal": "gray",
77
+ "thinkingLow": "blue",
78
+ "thinkingMedium": "teal",
79
+ "thinkingHigh": "orange",
80
+ "thinkingXhigh": "purple",
81
+
82
+ "bashMode": "green",
83
+
84
+ "agent1": "teal",
85
+ "agent2": "purple",
86
+ "agent3": "orange",
87
+ "agent4": "magenta",
88
+ "agent5": "green",
89
+ "agent6": "blue",
90
+ "mcp": "magenta"
91
+ },
92
+ "export": {
93
+ "pageBg": "#ffffff",
94
+ "cardBg": "#f7f7f7",
95
+ "infoBg": "#fff6d6"
96
+ }
97
+ }
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "$schema": "https://raw.githubusercontent.com/kolisachint/hoocode/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
3
3
  "name": "light",
4
+ "description": "Default light theme",
4
5
  "vars": {
5
6
  "teal": "#0e857a",
6
7
  "blue": "#547da7",
@@ -16,6 +16,10 @@
16
16
  "type": "string",
17
17
  "description": "Theme name"
18
18
  },
19
+ "description": {
20
+ "type": "string",
21
+ "description": "One-line summary shown next to the name in the theme picker"
22
+ },
19
23
  "vars": {
20
24
  "type": "object",
21
25
  "description": "Reusable color variables",
@@ -41,6 +41,12 @@ export declare class Theme {
41
41
  getBashModeBorderColor(): (str: string) => string;
42
42
  }
43
43
  export declare function getAvailableThemes(): string[];
44
+ /**
45
+ * One-line description from a theme file, shown next to the name in the theme
46
+ * picker. Undefined for themes that don't declare one, and for themes
47
+ * registered as instances by extensions.
48
+ */
49
+ export declare function getThemeDescription(name: string): string | undefined;
44
50
  export interface ThemeInfo {
45
51
  name: string;
46
52
  path: string | undefined;