@kenkaiiii/ggcoder 4.3.80 → 4.3.81
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.
|
@@ -6,7 +6,17 @@ interface FooterProps {
|
|
|
6
6
|
thinkingEnabled?: boolean;
|
|
7
7
|
planMode?: boolean;
|
|
8
8
|
exitPending?: boolean;
|
|
9
|
+
/** Hide the plan-mode toggle entirely (for products that don't have plan mode). */
|
|
10
|
+
hidePlan?: boolean;
|
|
11
|
+
/** Optional left-side status string (e.g. "Connected · DaVinci Resolve"). */
|
|
12
|
+
statusLabel?: string;
|
|
13
|
+
/** Color for the status label. */
|
|
14
|
+
statusColor?: string;
|
|
15
|
+
/** Hide the cwd label (for products where the working directory isn't useful). */
|
|
16
|
+
hideCwd?: boolean;
|
|
17
|
+
/** Hide the git branch label. */
|
|
18
|
+
hideGitBranch?: boolean;
|
|
9
19
|
}
|
|
10
|
-
export declare function Footer({ model, tokensIn, cwd, gitBranch, thinkingEnabled, planMode, exitPending, }: FooterProps): import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export declare function Footer({ model, tokensIn, cwd, gitBranch, thinkingEnabled, planMode, exitPending, hidePlan, statusLabel, statusColor, hideCwd, hideGitBranch, }: FooterProps): import("react/jsx-runtime").JSX.Element;
|
|
11
21
|
export {};
|
|
12
22
|
//# sourceMappingURL=Footer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Footer.d.ts","sourceRoot":"","sources":["../../../src/ui/components/Footer.tsx"],"names":[],"mappings":"AAOA,UAAU,WAAW;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Footer.d.ts","sourceRoot":"","sources":["../../../src/ui/components/Footer.tsx"],"names":[],"mappings":"AAOA,UAAU,WAAW;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,mFAAmF;IACnF,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,6EAA6E;IAC7E,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kCAAkC;IAClC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kFAAkF;IAClF,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,iCAAiC;IACjC,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAgCD,wBAAgB,MAAM,CAAC,EACrB,KAAK,EACL,QAAQ,EACR,GAAG,EACH,SAAS,EACT,eAAe,EACf,QAAQ,EACR,WAAW,EACX,QAAQ,EACR,WAAW,EACX,WAAW,EACX,OAAO,EACP,aAAa,GACd,EAAE,WAAW,2CA+Kb"}
|
|
@@ -34,7 +34,7 @@ function getContextColor(pct, theme) {
|
|
|
34
34
|
return theme.warning;
|
|
35
35
|
return theme.success;
|
|
36
36
|
}
|
|
37
|
-
export function Footer({ model, tokensIn, cwd, gitBranch, thinkingEnabled, planMode, exitPending, }) {
|
|
37
|
+
export function Footer({ model, tokensIn, cwd, gitBranch, thinkingEnabled, planMode, exitPending, hidePlan, statusLabel, statusColor, hideCwd, hideGitBranch, }) {
|
|
38
38
|
const theme = useTheme();
|
|
39
39
|
const { columns } = useTerminalSize();
|
|
40
40
|
// Show only the current directory name
|
|
@@ -64,6 +64,7 @@ export function Footer({ model, tokensIn, cwd, gitBranch, thinkingEnabled, planM
|
|
|
64
64
|
// Plan/Thinking labels
|
|
65
65
|
const planText = planMode ? "Plan on" : "Plan off";
|
|
66
66
|
const thinkingText = thinkingEnabled ? "Thinking on" : "Thinking off";
|
|
67
|
+
const showPlan = !hidePlan;
|
|
67
68
|
// Calculate whether everything fits on one line
|
|
68
69
|
const leftLen = displayPath.length + 2 + (gitBranch ? gitBranch.length + 5 : 0);
|
|
69
70
|
const rightLen = barWidth +
|
|
@@ -72,8 +73,7 @@ export function Footer({ model, tokensIn, cwd, gitBranch, thinkingEnabled, planM
|
|
|
72
73
|
1 +
|
|
73
74
|
3 +
|
|
74
75
|
modelName.length +
|
|
75
|
-
3 +
|
|
76
|
-
planText.length +
|
|
76
|
+
(showPlan ? 3 + planText.length : 0) +
|
|
77
77
|
3 +
|
|
78
78
|
thinkingText.length;
|
|
79
79
|
const availableWidth = columns - 2;
|
|
@@ -83,14 +83,28 @@ export function Footer({ model, tokensIn, cwd, gitBranch, thinkingEnabled, planM
|
|
|
83
83
|
? "\u2026" + displayPath.slice(displayPath.length - maxPath + 1)
|
|
84
84
|
: displayPath;
|
|
85
85
|
// Shared right-side content
|
|
86
|
-
const rightContent = (_jsxs(_Fragment, { children: [_jsx(Text, { children: barChars }), _jsxs(Text, { color: contextColor, children: [" ", contextPct, "%"] }), sep, _jsx(Text, { color: theme.primary, bold: true, children: modelName }), sep, _jsx(Text, { color: planMode ? theme.planPrimary : theme.textDim, children: planText }), sep, _jsx(Text, { color: thinkingEnabled ? theme.accent : theme.textDim, children: thinkingText })] }));
|
|
86
|
+
const rightContent = (_jsxs(_Fragment, { children: [_jsx(Text, { children: barChars }), _jsxs(Text, { color: contextColor, children: [" ", contextPct, "%"] }), sep, _jsx(Text, { color: theme.primary, bold: true, children: modelName }), showPlan ? (_jsxs(_Fragment, { children: [sep, _jsx(Text, { color: planMode ? theme.planPrimary : theme.textDim, children: planText })] })) : null, sep, _jsx(Text, { color: thinkingEnabled ? theme.accent : theme.textDim, children: thinkingText })] }));
|
|
87
87
|
if (exitPending) {
|
|
88
88
|
return (_jsx(Box, { paddingLeft: 1, paddingRight: 1, width: columns, children: _jsx(Text, { color: theme.warning, children: "Press Ctrl+C again to exit" }) }));
|
|
89
89
|
}
|
|
90
|
+
const showCwd = !hideCwd;
|
|
91
|
+
const showGitBranch = !hideGitBranch && !!gitBranch;
|
|
92
|
+
// First-rendered left chunk: track if we've started the line with the cwd
|
|
93
|
+
// so we know when to insert separators.
|
|
94
|
+
const leftHasContent = showCwd || showGitBranch || !!statusLabel;
|
|
95
|
+
// Sep helper that only renders if there's already content before it.
|
|
96
|
+
let leftStarted = false;
|
|
97
|
+
const renderLeftSep = (key) => {
|
|
98
|
+
if (!leftStarted) {
|
|
99
|
+
leftStarted = true;
|
|
100
|
+
return null;
|
|
101
|
+
}
|
|
102
|
+
return _jsx(React.Fragment, { children: sep }, key);
|
|
103
|
+
};
|
|
90
104
|
if (fitsOnOneLine) {
|
|
91
|
-
return (_jsxs(Box, { paddingLeft: 1, paddingRight: 1, width: columns, children: [_jsxs(Box, { flexGrow: 1, children: [_jsx(Text, { color: theme.textDim, children: truncPath }),
|
|
105
|
+
return (_jsxs(Box, { paddingLeft: 1, paddingRight: 1, width: columns, children: [_jsxs(Box, { flexGrow: 1, children: [showCwd && (_jsxs(_Fragment, { children: [renderLeftSep("sep-cwd"), _jsx(Text, { color: theme.textDim, children: truncPath })] })), showGitBranch && (_jsxs(_Fragment, { children: [renderLeftSep("sep-git"), _jsxs(Text, { color: theme.secondary, children: ["\u2387 ", gitBranch] })] })), statusLabel && (_jsxs(_Fragment, { children: [renderLeftSep("sep-status"), _jsx(Text, { color: statusColor ?? theme.text, children: statusLabel })] }))] }), _jsx(Box, { flexShrink: 0, children: rightContent })] }));
|
|
92
106
|
}
|
|
93
107
|
// Two-line layout
|
|
94
|
-
return (_jsxs(Box, { flexDirection: "column", paddingLeft: 1, paddingRight: 1, width: columns, children: [_jsxs(Box, { children: [_jsx(Text, { color: theme.textDim, wrap: "truncate", children: truncPath }),
|
|
108
|
+
return (_jsxs(Box, { flexDirection: "column", paddingLeft: 1, paddingRight: 1, width: columns, children: [leftHasContent && (_jsxs(Box, { children: [showCwd && (_jsx(Text, { color: theme.textDim, wrap: "truncate", children: truncPath })), showGitBranch && (_jsxs(_Fragment, { children: [showCwd ? sep : null, _jsxs(Text, { color: theme.secondary, wrap: "truncate", children: ["\u2387 ", gitBranch] })] })), statusLabel && (_jsxs(_Fragment, { children: [showCwd || showGitBranch ? sep : null, _jsx(Text, { color: statusColor ?? theme.text, wrap: "truncate", children: statusLabel })] }))] })), _jsx(Box, { children: rightContent })] }));
|
|
95
109
|
}
|
|
96
110
|
//# sourceMappingURL=Footer.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Footer.js","sourceRoot":"","sources":["../../../src/ui/components/Footer.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC7C,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAC9D,OAAO,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;
|
|
1
|
+
{"version":3,"file":"Footer.js","sourceRoot":"","sources":["../../../src/ui/components/Footer.tsx"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kenkaiiii/ggcoder",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.81",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI coding agent with OAuth authentication for Anthropic and OpenAI",
|
|
6
6
|
"license": "MIT",
|
|
@@ -66,10 +66,10 @@
|
|
|
66
66
|
"string-width": "^8.2.0",
|
|
67
67
|
"wrap-ansi": "^10.0.0",
|
|
68
68
|
"zod": "^4.3.6",
|
|
69
|
-
"@kenkaiiii/gg-agent": "4.3.
|
|
69
|
+
"@kenkaiiii/gg-agent": "4.3.81",
|
|
70
|
+
"@kenkaiiii/gg-ai": "4.3.81",
|
|
70
71
|
"@kenkaiiii/ggcoder-eyes": "0.1.2",
|
|
71
|
-
"@kenkaiiii/gg-pixel": "4.3.
|
|
72
|
-
"@kenkaiiii/gg-ai": "4.3.80"
|
|
72
|
+
"@kenkaiiii/gg-pixel": "4.3.81"
|
|
73
73
|
},
|
|
74
74
|
"optionalDependencies": {
|
|
75
75
|
"@huggingface/transformers": "^3.6.0",
|