paean 0.9.9 → 0.10.1
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.
- package/dist/agent/cli-mode.d.ts.map +1 -1
- package/dist/agent/cli-mode.js +21 -13
- package/dist/agent/cli-mode.js.map +1 -1
- package/dist/agent/completer.d.ts.map +1 -1
- package/dist/agent/completer.js +12 -4
- package/dist/agent/completer.js.map +1 -1
- package/dist/mcp/coding-tools.d.ts +18 -0
- package/dist/mcp/coding-tools.d.ts.map +1 -0
- package/dist/mcp/coding-tools.js +920 -0
- package/dist/mcp/coding-tools.js.map +1 -0
- package/dist/mcp/tools.d.ts.map +1 -1
- package/dist/mcp/tools.js +16 -4
- package/dist/mcp/tools.js.map +1 -1
- package/dist/ui/App.d.ts.map +1 -1
- package/dist/ui/App.js +7 -7
- package/dist/ui/App.js.map +1 -1
- package/dist/ui/ToolCallDisplay.d.ts +1 -1
- package/dist/ui/ToolCallDisplay.d.ts.map +1 -1
- package/dist/ui/ToolCallDisplay.js +102 -27
- package/dist/ui/ToolCallDisplay.js.map +1 -1
- package/dist/ui/components/Header.d.ts +1 -2
- package/dist/ui/components/Header.d.ts.map +1 -1
- package/dist/ui/components/Header.js +17 -19
- package/dist/ui/components/Header.js.map +1 -1
- package/dist/ui/components/InputArea.d.ts.map +1 -1
- package/dist/ui/components/InputArea.js +4 -10
- package/dist/ui/components/InputArea.js.map +1 -1
- package/dist/ui/components/Spinner.d.ts +1 -2
- package/dist/ui/components/Spinner.d.ts.map +1 -1
- package/dist/ui/components/Spinner.js +13 -56
- package/dist/ui/components/Spinner.js.map +1 -1
- package/dist/ui/components/StatusBar.d.ts +13 -0
- package/dist/ui/components/StatusBar.d.ts.map +1 -0
- package/dist/ui/components/StatusBar.js +37 -0
- package/dist/ui/components/StatusBar.js.map +1 -0
- package/dist/ui/components/StreamingText.d.ts +1 -2
- package/dist/ui/components/StreamingText.d.ts.map +1 -1
- package/dist/ui/components/StreamingText.js +6 -22
- package/dist/ui/components/StreamingText.js.map +1 -1
- package/dist/ui/components/ToolCallIndicator.d.ts +22 -19
- package/dist/ui/components/ToolCallIndicator.d.ts.map +1 -1
- package/dist/ui/components/ToolCallIndicator.js +187 -22
- package/dist/ui/components/ToolCallIndicator.js.map +1 -1
- package/dist/ui/components/index.d.ts +1 -0
- package/dist/ui/components/index.d.ts.map +1 -1
- package/dist/ui/components/index.js +1 -0
- package/dist/ui/components/index.js.map +1 -1
- package/dist/ui/hooks/useAgentStream.d.ts.map +1 -1
- package/dist/ui/hooks/useAgentStream.js +17 -6
- package/dist/ui/hooks/useAgentStream.js.map +1 -1
- package/dist/ui/hooks/useCommands.d.ts +12 -1
- package/dist/ui/hooks/useCommands.d.ts.map +1 -1
- package/dist/ui/hooks/useCommands.js +155 -37
- package/dist/ui/hooks/useCommands.js.map +1 -1
- package/dist/ui/theme/ink-theme.d.ts +24 -1
- package/dist/ui/theme/ink-theme.d.ts.map +1 -1
- package/dist/ui/theme/ink-theme.js +47 -24
- package/dist/ui/theme/ink-theme.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* useCommands Hook
|
|
3
3
|
* Handles slash commands for the CLI
|
|
4
|
-
* Includes model switching, compact mode, session management, and
|
|
4
|
+
* Includes model switching, compact mode, session management, stats, and memory
|
|
5
5
|
*/
|
|
6
6
|
import { useCallback, useState, useRef } from 'react';
|
|
7
7
|
export function useCommands(options = {}) {
|
|
@@ -10,9 +10,23 @@ export function useCommands(options = {}) {
|
|
|
10
10
|
const [debugMode, setDebugMode] = useState(false);
|
|
11
11
|
const [compactMode, setCompactMode] = useState(false);
|
|
12
12
|
const [heartbeatMode, setHeartbeatMode] = useState(true);
|
|
13
|
-
//
|
|
14
|
-
const
|
|
15
|
-
|
|
13
|
+
// Session stats tracking
|
|
14
|
+
const statsRef = useRef({
|
|
15
|
+
startedAt: Date.now(),
|
|
16
|
+
messageCount: 0,
|
|
17
|
+
toolCallCount: 0,
|
|
18
|
+
filesModified: new Set(),
|
|
19
|
+
tokensEstimate: 0,
|
|
20
|
+
});
|
|
21
|
+
const trackToolCall = useCallback((toolName, filePath) => {
|
|
22
|
+
statsRef.current.toolCallCount++;
|
|
23
|
+
if (filePath && (toolName === 'paean_edit_file' || toolName === 'paean_write_file')) {
|
|
24
|
+
statsRef.current.filesModified.add(filePath);
|
|
25
|
+
}
|
|
26
|
+
}, []);
|
|
27
|
+
const trackTokens = useCallback((count) => {
|
|
28
|
+
statsRef.current.tokensEstimate += count;
|
|
29
|
+
}, []);
|
|
16
30
|
const COMMANDS = [
|
|
17
31
|
'/exit', '/quit', '/q',
|
|
18
32
|
'/clear', '/cls',
|
|
@@ -23,39 +37,45 @@ export function useCommands(options = {}) {
|
|
|
23
37
|
'/compact',
|
|
24
38
|
'/model',
|
|
25
39
|
'/status',
|
|
40
|
+
'/stats',
|
|
26
41
|
'/history',
|
|
27
42
|
'/gateway',
|
|
28
43
|
'/heartbeat',
|
|
44
|
+
'/memory',
|
|
45
|
+
'/shortcuts',
|
|
46
|
+
'/tools',
|
|
29
47
|
];
|
|
30
48
|
const getHelp = useCallback(() => {
|
|
31
49
|
return `
|
|
32
|
-
|
|
50
|
+
─── Commands ───────────────────────────────────────
|
|
33
51
|
|
|
52
|
+
/help Show this help (/h, /?)
|
|
34
53
|
/exit Exit the chat session (/quit, /q)
|
|
35
54
|
/clear Clear the screen (/cls)
|
|
36
|
-
/
|
|
55
|
+
/compact Toggle compact mode (hide tool details)
|
|
56
|
+
/raw Toggle raw output (no markdown)
|
|
37
57
|
/debug Toggle debug mode
|
|
58
|
+
|
|
59
|
+
─── Info ───────────────────────────────────────────
|
|
60
|
+
|
|
61
|
+
/status Show session status & config
|
|
62
|
+
/stats Show detailed session statistics
|
|
38
63
|
/mcp Show MCP connection status
|
|
39
|
-
/
|
|
40
|
-
/compact Toggle compact mode (hide tool call details)
|
|
64
|
+
/tools List all available local tools
|
|
41
65
|
/model Show current model info
|
|
42
|
-
/
|
|
43
|
-
/history Show
|
|
66
|
+
/memory Show saved memories for this project
|
|
67
|
+
/history Show conversation history commands
|
|
68
|
+
|
|
69
|
+
─── Services ───────────────────────────────────────
|
|
70
|
+
|
|
44
71
|
/gateway Toggle gateway relay on/off
|
|
45
|
-
/heartbeat Toggle cloud
|
|
72
|
+
/heartbeat Toggle cloud task auto-polling
|
|
46
73
|
|
|
47
|
-
|
|
48
|
-
Up/Down Navigate input history
|
|
49
|
-
Left/Right Move cursor within input
|
|
50
|
-
Ctrl+A/E Jump to start/end of line
|
|
51
|
-
Ctrl+U Clear line before cursor
|
|
52
|
-
Ctrl+K Clear line after cursor
|
|
53
|
-
Ctrl+W Delete word before cursor
|
|
54
|
-
Tab Autocomplete commands
|
|
55
|
-
Esc Clear input
|
|
56
|
-
\\+Enter Multi-line continuation
|
|
74
|
+
─── Shortcuts ──────────────────────────────────────
|
|
57
75
|
|
|
58
|
-
|
|
76
|
+
/shortcuts Show all keyboard shortcuts
|
|
77
|
+
|
|
78
|
+
Tip: Type / and press Tab to autocomplete
|
|
59
79
|
`;
|
|
60
80
|
}, []);
|
|
61
81
|
const getMcpStatus = useCallback(() => {
|
|
@@ -130,14 +150,14 @@ export function useCommands(options = {}) {
|
|
|
130
150
|
case '/model':
|
|
131
151
|
return {
|
|
132
152
|
handled: true,
|
|
133
|
-
output: '\n
|
|
153
|
+
output: '\n Model: Paean AI (cloud)\n Selection is handled server-side based on task complexity.\n'
|
|
134
154
|
};
|
|
135
155
|
case '/gateway': {
|
|
136
156
|
const gwStatus = options.serviceStatusRef?.current;
|
|
137
157
|
if (gwStatus?.gatewayOnline) {
|
|
138
158
|
return { handled: true, output: ' Gateway: turning OFF', action: 'toggle-gateway' };
|
|
139
159
|
}
|
|
140
|
-
return { handled: true, output: ' Gateway: turning ON — remote clients
|
|
160
|
+
return { handled: true, output: ' Gateway: turning ON — remote clients can connect', action: 'toggle-gateway' };
|
|
141
161
|
}
|
|
142
162
|
case '/heartbeat': {
|
|
143
163
|
let toggled = false;
|
|
@@ -145,27 +165,32 @@ export function useCommands(options = {}) {
|
|
|
145
165
|
return {
|
|
146
166
|
handled: true,
|
|
147
167
|
output: toggled
|
|
148
|
-
? ' Cloud task polling: ON
|
|
149
|
-
: ' Cloud task polling: OFF
|
|
168
|
+
? ' Cloud task polling: ON (every 5m)'
|
|
169
|
+
: ' Cloud task polling: OFF',
|
|
150
170
|
action: 'toggle-heartbeat'
|
|
151
171
|
};
|
|
152
172
|
}
|
|
153
173
|
case '/status': {
|
|
154
|
-
const
|
|
174
|
+
const s = statsRef.current;
|
|
175
|
+
const elapsed = Date.now() - s.startedAt;
|
|
155
176
|
const mins = Math.floor(elapsed / 60000);
|
|
156
177
|
const secs = Math.floor((elapsed % 60000) / 1000);
|
|
157
178
|
const duration = mins > 0 ? `${mins}m ${secs}s` : `${secs}s`;
|
|
158
179
|
const convId = options.conversationId;
|
|
159
180
|
const svc = options.serviceStatusRef?.current;
|
|
160
|
-
let status = '\n Session Status
|
|
181
|
+
let status = '\n ─── Session Status ─────────────────────\n\n';
|
|
161
182
|
status += ` Duration: ${duration}\n`;
|
|
162
|
-
status += ` Messages: ${
|
|
163
|
-
status += `
|
|
164
|
-
status += `
|
|
165
|
-
status += ` Debug mode: ${debugMode ? 'ON' : 'OFF'}\n`;
|
|
183
|
+
status += ` Messages: ${s.messageCount}\n`;
|
|
184
|
+
status += ` Tool calls: ${s.toolCallCount}\n`;
|
|
185
|
+
status += ` Files modified: ${s.filesModified.size}\n`;
|
|
166
186
|
if (convId) {
|
|
167
187
|
status += ` Conversation: ${convId.substring(0, 8)}...\n`;
|
|
168
188
|
}
|
|
189
|
+
status += ` CWD: ${process.cwd()}\n`;
|
|
190
|
+
status += '\n ─── Config ─────────────────────────────\n\n';
|
|
191
|
+
status += ` Raw mode: ${rawMode ? 'ON' : 'OFF'}\n`;
|
|
192
|
+
status += ` Compact mode: ${compactMode ? 'ON' : 'OFF'}\n`;
|
|
193
|
+
status += ` Debug mode: ${debugMode ? 'ON' : 'OFF'}\n`;
|
|
169
194
|
status += ` MCP servers: ${mcpServers.length}\n`;
|
|
170
195
|
status += ` Gateway: ${svc?.gatewayOnline ? 'online' : 'offline'}`;
|
|
171
196
|
if ((svc?.gatewayCompleted ?? 0) > 0) {
|
|
@@ -176,17 +201,108 @@ export function useCommands(options = {}) {
|
|
|
176
201
|
if (svc?.heartbeatActive && svc?.heartbeatLastPoll) {
|
|
177
202
|
status += ` (last: ${svc.heartbeatLastPoll})`;
|
|
178
203
|
}
|
|
179
|
-
if ((svc?.heartbeatTriggered ?? 0) > 0) {
|
|
180
|
-
status += ` (${svc.heartbeatTriggered} triggered)`;
|
|
181
|
-
}
|
|
182
204
|
status += '\n';
|
|
183
205
|
return { handled: true, output: status };
|
|
184
206
|
}
|
|
207
|
+
case '/stats': {
|
|
208
|
+
const s = statsRef.current;
|
|
209
|
+
const elapsed = Date.now() - s.startedAt;
|
|
210
|
+
const mins = Math.floor(elapsed / 60000);
|
|
211
|
+
const secs = Math.floor((elapsed % 60000) / 1000);
|
|
212
|
+
const duration = mins > 0 ? `${mins}m ${secs}s` : `${secs}s`;
|
|
213
|
+
let out = '\n ─── Session Statistics ─────────────────\n\n';
|
|
214
|
+
out += ` Session duration: ${duration}\n`;
|
|
215
|
+
out += ` Messages sent: ${s.messageCount}\n`;
|
|
216
|
+
out += ` Tool calls made: ${s.toolCallCount}\n`;
|
|
217
|
+
out += ` Files modified: ${s.filesModified.size}\n`;
|
|
218
|
+
if (s.filesModified.size > 0) {
|
|
219
|
+
out += '\n Modified files:\n';
|
|
220
|
+
for (const f of s.filesModified) {
|
|
221
|
+
out += ` ${f}\n`;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
if (s.tokensEstimate > 0) {
|
|
225
|
+
out += `\n Est. tokens: ~${s.tokensEstimate.toLocaleString()}\n`;
|
|
226
|
+
}
|
|
227
|
+
out += '\n';
|
|
228
|
+
return { handled: true, output: out };
|
|
229
|
+
}
|
|
185
230
|
case '/history':
|
|
186
231
|
return {
|
|
187
232
|
handled: true,
|
|
188
233
|
output: '\n Conversation History:\n\n List: paean ls\n Resume: paean resume <id>\n Show: paean show <id>\n Star: paean star <id>\n'
|
|
189
234
|
};
|
|
235
|
+
case '/memory': {
|
|
236
|
+
let out = '\n Loading memories...\n';
|
|
237
|
+
// Synchronous check for memory file
|
|
238
|
+
const memoryPath = `${process.cwd()}/.paean/PAEAN.md`;
|
|
239
|
+
try {
|
|
240
|
+
const fs = require('fs');
|
|
241
|
+
if (fs.existsSync(memoryPath)) {
|
|
242
|
+
const content = fs.readFileSync(memoryPath, 'utf-8');
|
|
243
|
+
const count = (content.match(/^- /gm) || []).length;
|
|
244
|
+
out = `\n ─── Paean Memories (${count}) ─────────────\n Path: ${memoryPath}\n\n`;
|
|
245
|
+
const lines = content.split('\n');
|
|
246
|
+
for (const line of lines) {
|
|
247
|
+
if (line.startsWith('- ')) {
|
|
248
|
+
out += ` ${line}\n`;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
if (count === 0)
|
|
252
|
+
out += ' (no memories saved yet)\n';
|
|
253
|
+
out += '\n Tip: Ask the agent to "remember that..." to save memories\n';
|
|
254
|
+
}
|
|
255
|
+
else {
|
|
256
|
+
out = '\n No memories saved yet.\n Ask the agent to "remember that..." to save facts for future sessions.\n';
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
catch {
|
|
260
|
+
out = '\n No memories saved yet.\n Ask the agent to "remember that..." to save facts for future sessions.\n';
|
|
261
|
+
}
|
|
262
|
+
return { handled: true, output: out };
|
|
263
|
+
}
|
|
264
|
+
case '/shortcuts':
|
|
265
|
+
return {
|
|
266
|
+
handled: true,
|
|
267
|
+
output: `
|
|
268
|
+
─── Keyboard Shortcuts ────────────────────────
|
|
269
|
+
|
|
270
|
+
Navigation
|
|
271
|
+
Up/Down Navigate input history
|
|
272
|
+
Left/Right Move cursor in input
|
|
273
|
+
Ctrl+A Jump to start of line
|
|
274
|
+
Ctrl+E Jump to end of line
|
|
275
|
+
|
|
276
|
+
Editing
|
|
277
|
+
Ctrl+U Clear line before cursor
|
|
278
|
+
Ctrl+K Clear line after cursor
|
|
279
|
+
Ctrl+W Delete word before cursor
|
|
280
|
+
Esc Clear entire input
|
|
281
|
+
\\+Enter Multi-line continuation
|
|
282
|
+
|
|
283
|
+
Commands
|
|
284
|
+
Tab Autocomplete slash commands
|
|
285
|
+
Ctrl+C Abort current request / exit
|
|
286
|
+
Ctrl+C Ctrl+C Force exit (during processing)
|
|
287
|
+
|
|
288
|
+
`
|
|
289
|
+
};
|
|
290
|
+
case '/tools': {
|
|
291
|
+
const totalTools = mcpServers.reduce((sum, s) => sum + (s.tools?.length || 0), 0);
|
|
292
|
+
let out = `\n ─── Available Tools (${totalTools}) ─────────────\n\n`;
|
|
293
|
+
for (const server of mcpServers) {
|
|
294
|
+
const tools = server.tools || [];
|
|
295
|
+
out += ` ${server.name} (${tools.length} tools)\n`;
|
|
296
|
+
for (const tool of tools.slice(0, 30)) {
|
|
297
|
+
out += ` ${tool.name}\n`;
|
|
298
|
+
}
|
|
299
|
+
if (tools.length > 30) {
|
|
300
|
+
out += ` ... and ${tools.length - 30} more\n`;
|
|
301
|
+
}
|
|
302
|
+
out += '\n';
|
|
303
|
+
}
|
|
304
|
+
return { handled: true, output: out };
|
|
305
|
+
}
|
|
190
306
|
default:
|
|
191
307
|
if (baseCmd.startsWith('/')) {
|
|
192
308
|
return {
|
|
@@ -194,8 +310,7 @@ export function useCommands(options = {}) {
|
|
|
194
310
|
output: `\n Unknown command: ${baseCmd}\n Type /help for available commands\n`
|
|
195
311
|
};
|
|
196
312
|
}
|
|
197
|
-
|
|
198
|
-
messageCountRef.current++;
|
|
313
|
+
statsRef.current.messageCount++;
|
|
199
314
|
return { handled: false };
|
|
200
315
|
}
|
|
201
316
|
}, [getHelp, getMcpStatus, mcpServers.length, options.conversationId, rawMode, compactMode, debugMode]);
|
|
@@ -204,10 +319,13 @@ export function useCommands(options = {}) {
|
|
|
204
319
|
debugMode,
|
|
205
320
|
compactMode,
|
|
206
321
|
heartbeatMode,
|
|
322
|
+
sessionStats: statsRef.current,
|
|
207
323
|
handleCommand,
|
|
208
324
|
getHelp,
|
|
209
325
|
getMcpStatus,
|
|
210
326
|
getCompletions,
|
|
327
|
+
trackToolCall,
|
|
328
|
+
trackTokens,
|
|
211
329
|
};
|
|
212
330
|
}
|
|
213
331
|
//# sourceMappingURL=useCommands.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useCommands.js","sourceRoot":"","sources":["../../../src/ui/hooks/useCommands.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"useCommands.js","sourceRoot":"","sources":["../../../src/ui/hooks/useCommands.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,EAAyB,MAAM,OAAO,CAAC;AA6C7E,MAAM,UAAU,WAAW,CAAC,UAA8B,EAAE;IACxD,MAAM,EAAE,UAAU,GAAG,EAAE,EAAE,GAAG,OAAO,CAAC;IAEpC,MAAM,CAAC,OAAO,EAAE,UAAU,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;IAC9C,MAAM,CAAC,SAAS,EAAE,YAAY,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;IAClD,MAAM,CAAC,WAAW,EAAE,cAAc,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;IACtD,MAAM,CAAC,aAAa,EAAE,gBAAgB,CAAC,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC;IAEzD,yBAAyB;IACzB,MAAM,QAAQ,GAAG,MAAM,CAAe;QAClC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE;QACrB,YAAY,EAAE,CAAC;QACf,aAAa,EAAE,CAAC;QAChB,aAAa,EAAE,IAAI,GAAG,EAAE;QACxB,cAAc,EAAE,CAAC;KACpB,CAAC,CAAC;IAEH,MAAM,aAAa,GAAG,WAAW,CAAC,CAAC,QAAgB,EAAE,QAAiB,EAAE,EAAE;QACtE,QAAQ,CAAC,OAAO,CAAC,aAAa,EAAE,CAAC;QACjC,IAAI,QAAQ,IAAI,CAAC,QAAQ,KAAK,iBAAiB,IAAI,QAAQ,KAAK,kBAAkB,CAAC,EAAE,CAAC;YAClF,QAAQ,CAAC,OAAO,CAAC,aAAa,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;QACjD,CAAC;IACL,CAAC,EAAE,EAAE,CAAC,CAAC;IAEP,MAAM,WAAW,GAAG,WAAW,CAAC,CAAC,KAAa,EAAE,EAAE;QAC9C,QAAQ,CAAC,OAAO,CAAC,cAAc,IAAI,KAAK,CAAC;IAC7C,CAAC,EAAE,EAAE,CAAC,CAAC;IAEP,MAAM,QAAQ,GAAG;QACb,OAAO,EAAE,OAAO,EAAE,IAAI;QACtB,QAAQ,EAAE,MAAM;QAChB,OAAO,EAAE,IAAI,EAAE,IAAI;QACnB,QAAQ;QACR,MAAM;QACN,MAAM;QACN,UAAU;QACV,QAAQ;QACR,SAAS;QACT,QAAQ;QACR,UAAU;QACV,UAAU;QACV,YAAY;QACZ,SAAS;QACT,YAAY;QACZ,QAAQ;KACX,CAAC;IAEF,MAAM,OAAO,GAAG,WAAW,CAAC,GAAG,EAAE;QAC7B,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8Bd,CAAC;IACE,CAAC,EAAE,EAAE,CAAC,CAAC;IAEP,MAAM,YAAY,GAAG,WAAW,CAAC,GAAG,EAAE;QAClC,IAAI,UAAU,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YAC1B,OAAO,gCAAgC,CAAC;QAC5C,CAAC;QAED,IAAI,MAAM,GAAG,0BAA0B,CAAC;QACxC,KAAK,MAAM,MAAM,IAAI,UAAU,EAAE,CAAC;YAC9B,MAAM,SAAS,GAAG,MAAM,CAAC,KAAK,EAAE,MAAM,IAAI,CAAC,CAAC;YAC5C,MAAM,UAAU,GAAG,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YAC3D,MAAM,IAAI,OAAO,MAAM,CAAC,IAAI,KAAK,SAAS,WAAW,UAAU,KAAK,CAAC;QACzE,CAAC;QAED,MAAM,UAAU,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,KAAK,EAAE,MAAM,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAClF,MAAM,IAAI,gBAAgB,UAAU,iBAAiB,UAAU,CAAC,MAAM,cAAc,CAAC;QACrF,OAAO,MAAM,CAAC;IAClB,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC,CAAC;IAEjB,MAAM,cAAc,GAAG,WAAW,CAAC,CAAC,OAAe,EAAY,EAAE;QAC7D,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC;YAC3B,OAAO,EAAE,CAAC;QACd,CAAC;QACD,MAAM,KAAK,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC;QACpC,OAAO,QAAQ,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;IACzD,CAAC,EAAE,EAAE,CAAC,CAAC;IAEP,MAAM,aAAa,GAAG,WAAW,CAAC,CAAC,KAAa,EAAiB,EAAE;QAC/D,MAAM,KAAK,GAAG,KAAK,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;QACxC,MAAM,OAAO,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;QAEvC,QAAQ,OAAO,EAAE,CAAC;YACd,KAAK,OAAO,CAAC;YACb,KAAK,OAAO,CAAC;YACb,KAAK,IAAI;gBACL,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;YAE7C,KAAK,QAAQ,CAAC;YACd,KAAK,MAAM;gBACP,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC;YAE9C,KAAK,OAAO,CAAC;YACb,KAAK,IAAI,CAAC;YACV,KAAK,IAAI;gBACL,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,EAAE,CAAC;YAEhD,KAAK,QAAQ,CAAC,CAAC,CAAC;gBACZ,IAAI,OAAO,GAAG,KAAK,CAAC;gBACpB,YAAY,CAAC,IAAI,CAAC,EAAE,GAAG,OAAO,GAAG,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;gBACzD,OAAO;oBACH,OAAO,EAAE,IAAI;oBACb,MAAM,EAAE,iBAAiB,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,EAAE;oBACjD,MAAM,EAAE,cAAc;iBACzB,CAAC;YACN,CAAC;YAED,KAAK,MAAM,CAAC,CAAC,CAAC;gBACV,IAAI,OAAO,GAAG,KAAK,CAAC;gBACpB,UAAU,CAAC,IAAI,CAAC,EAAE,GAAG,OAAO,GAAG,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;gBACvD,IAAI,SAAS,GAAG,eAAe,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC;gBACxD,IAAI,OAAO,EAAE,CAAC;oBACV,SAAS,IAAI,gDAAgD,CAAC;gBAClE,CAAC;gBACD,OAAO;oBACH,OAAO,EAAE,IAAI;oBACb,MAAM,EAAE,SAAS;oBACjB,MAAM,EAAE,YAAY;iBACvB,CAAC;YACN,CAAC;YAED,KAAK,UAAU,CAAC,CAAC,CAAC;gBACd,IAAI,OAAO,GAAG,KAAK,CAAC;gBACpB,cAAc,CAAC,IAAI,CAAC,EAAE,GAAG,OAAO,GAAG,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC3D,OAAO;oBACH,OAAO,EAAE,IAAI;oBACb,MAAM,EAAE,mBAAmB,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,GAAG,OAAO,CAAC,CAAC,CAAC,sCAAsC,CAAC,CAAC,CAAC,EAAE,EAAE;oBAC3G,MAAM,EAAE,gBAAgB;iBAC3B,CAAC;YACN,CAAC;YAED,KAAK,MAAM;gBACP,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,YAAY,EAAE,EAAE,CAAC;YAErD,KAAK,QAAQ;gBACT,OAAO;oBACH,OAAO,EAAE,IAAI;oBACb,MAAM,EAAE,6FAA6F;iBACxG,CAAC;YAEN,KAAK,UAAU,CAAC,CAAC,CAAC;gBACd,MAAM,QAAQ,GAAG,OAAO,CAAC,gBAAgB,EAAE,OAAO,CAAC;gBACnD,IAAI,QAAQ,EAAE,aAAa,EAAE,CAAC;oBAC1B,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,wBAAwB,EAAE,MAAM,EAAE,gBAAgB,EAAE,CAAC;gBACzF,CAAC;gBACD,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,oDAAoD,EAAE,MAAM,EAAE,gBAAgB,EAAE,CAAC;YACrH,CAAC;YAED,KAAK,YAAY,CAAC,CAAC,CAAC;gBAChB,IAAI,OAAO,GAAG,KAAK,CAAC;gBACpB,gBAAgB,CAAC,IAAI,CAAC,EAAE,GAAG,OAAO,GAAG,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC7D,OAAO;oBACH,OAAO,EAAE,IAAI;oBACb,MAAM,EAAE,OAAO;wBACX,CAAC,CAAC,qCAAqC;wBACvC,CAAC,CAAC,2BAA2B;oBACjC,MAAM,EAAE,kBAAkB;iBAC7B,CAAC;YACN,CAAC;YAED,KAAK,SAAS,CAAC,CAAC,CAAC;gBACb,MAAM,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC;gBAC3B,MAAM,OAAO,GAAG,IAAI,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,SAAS,CAAC;gBACzC,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,GAAG,KAAK,CAAC,CAAC;gBACzC,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC;gBAClD,MAAM,QAAQ,GAAG,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,KAAK,IAAI,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC;gBAC7D,MAAM,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC;gBACtC,MAAM,GAAG,GAAG,OAAO,CAAC,gBAAgB,EAAE,OAAO,CAAC;gBAE9C,IAAI,MAAM,GAAG,kDAAkD,CAAC;gBAChE,MAAM,IAAI,uBAAuB,QAAQ,IAAI,CAAC;gBAC9C,MAAM,IAAI,uBAAuB,CAAC,CAAC,YAAY,IAAI,CAAC;gBACpD,MAAM,IAAI,uBAAuB,CAAC,CAAC,aAAa,IAAI,CAAC;gBACrD,MAAM,IAAI,uBAAuB,CAAC,CAAC,aAAa,CAAC,IAAI,IAAI,CAAC;gBAC1D,IAAI,MAAM,EAAE,CAAC;oBACT,MAAM,IAAI,uBAAuB,MAAM,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,OAAO,CAAC;gBACnE,CAAC;gBACD,MAAM,IAAI,uBAAuB,OAAO,CAAC,GAAG,EAAE,IAAI,CAAC;gBACnD,MAAM,IAAI,kDAAkD,CAAC;gBAC7D,MAAM,IAAI,uBAAuB,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;gBAC5D,MAAM,IAAI,uBAAuB,WAAW,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;gBAChE,MAAM,IAAI,uBAAuB,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;gBAC9D,MAAM,IAAI,uBAAuB,UAAU,CAAC,MAAM,IAAI,CAAC;gBACvD,MAAM,IAAI,uBAAuB,GAAG,EAAE,aAAa,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC;gBAC7E,IAAI,CAAC,GAAG,EAAE,gBAAgB,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC;oBACnC,MAAM,IAAI,KAAK,GAAI,CAAC,gBAAgB,aAAa,CAAC;gBACtD,CAAC;gBACD,MAAM,IAAI,IAAI,CAAC;gBACf,MAAM,IAAI,uBAAuB,GAAG,EAAE,eAAe,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC;gBACvE,IAAI,GAAG,EAAE,eAAe,IAAI,GAAG,EAAE,iBAAiB,EAAE,CAAC;oBACjD,MAAM,IAAI,WAAW,GAAG,CAAC,iBAAiB,GAAG,CAAC;gBAClD,CAAC;gBACD,MAAM,IAAI,IAAI,CAAC;gBACf,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;YAC7C,CAAC;YAED,KAAK,QAAQ,CAAC,CAAC,CAAC;gBACZ,MAAM,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC;gBAC3B,MAAM,OAAO,GAAG,IAAI,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,SAAS,CAAC;gBACzC,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,GAAG,KAAK,CAAC,CAAC;gBACzC,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC;gBAClD,MAAM,QAAQ,GAAG,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,KAAK,IAAI,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC;gBAE7D,IAAI,GAAG,GAAG,kDAAkD,CAAC;gBAC7D,GAAG,IAAI,0BAA0B,QAAQ,IAAI,CAAC;gBAC9C,GAAG,IAAI,0BAA0B,CAAC,CAAC,YAAY,IAAI,CAAC;gBACpD,GAAG,IAAI,0BAA0B,CAAC,CAAC,aAAa,IAAI,CAAC;gBACrD,GAAG,IAAI,0BAA0B,CAAC,CAAC,aAAa,CAAC,IAAI,IAAI,CAAC;gBAC1D,IAAI,CAAC,CAAC,aAAa,CAAC,IAAI,GAAG,CAAC,EAAE,CAAC;oBAC3B,GAAG,IAAI,yBAAyB,CAAC;oBACjC,KAAK,MAAM,CAAC,IAAI,CAAC,CAAC,aAAa,EAAE,CAAC;wBAC9B,GAAG,IAAI,SAAS,CAAC,IAAI,CAAC;oBAC1B,CAAC;gBACL,CAAC;gBACD,IAAI,CAAC,CAAC,cAAc,GAAG,CAAC,EAAE,CAAC;oBACvB,GAAG,IAAI,6BAA6B,CAAC,CAAC,cAAc,CAAC,cAAc,EAAE,IAAI,CAAC;gBAC9E,CAAC;gBACD,GAAG,IAAI,IAAI,CAAC;gBACZ,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;YAC1C,CAAC;YAED,KAAK,UAAU;gBACX,OAAO;oBACH,OAAO,EAAE,IAAI;oBACb,MAAM,EAAE,8IAA8I;iBACzJ,CAAC;YAEN,KAAK,SAAS,CAAC,CAAC,CAAC;gBACb,IAAI,GAAG,GAAG,2BAA2B,CAAC;gBACtC,oCAAoC;gBACpC,MAAM,UAAU,GAAG,GAAG,OAAO,CAAC,GAAG,EAAE,kBAAkB,CAAC;gBACtD,IAAI,CAAC;oBACD,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;oBACzB,IAAI,EAAE,CAAC,UAAU,CAAC,UAAU,CAAC,EAAE,CAAC;wBAC5B,MAAM,OAAO,GAAG,EAAE,CAAC,YAAY,CAAC,UAAU,EAAE,OAAO,CAAW,CAAC;wBAC/D,MAAM,KAAK,GAAG,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC;wBACpD,GAAG,GAAG,2BAA2B,KAAK,4BAA4B,UAAU,MAAM,CAAC;wBACnF,MAAM,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;wBAClC,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;4BACvB,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC;gCACxB,GAAG,IAAI,OAAO,IAAI,IAAI,CAAC;4BAC3B,CAAC;wBACL,CAAC;wBACD,IAAI,KAAK,KAAK,CAAC;4BAAE,GAAG,IAAI,+BAA+B,CAAC;wBACxD,GAAG,IAAI,iEAAiE,CAAC;oBAC7E,CAAC;yBAAM,CAAC;wBACJ,GAAG,GAAG,wGAAwG,CAAC;oBACnH,CAAC;gBACL,CAAC;gBAAC,MAAM,CAAC;oBACL,GAAG,GAAG,wGAAwG,CAAC;gBACnH,CAAC;gBACD,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;YAC1C,CAAC;YAED,KAAK,YAAY;gBACb,OAAO;oBACH,OAAO,EAAE,IAAI;oBACb,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;CAqB3B;iBACgB,CAAC;YAEN,KAAK,QAAQ,CAAC,CAAC,CAAC;gBACZ,MAAM,UAAU,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,KAAK,EAAE,MAAM,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;gBAClF,IAAI,GAAG,GAAG,4BAA4B,UAAU,qBAAqB,CAAC;gBAEtE,KAAK,MAAM,MAAM,IAAI,UAAU,EAAE,CAAC;oBAC9B,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,IAAI,EAAE,CAAC;oBACjC,GAAG,IAAI,KAAK,MAAM,CAAC,IAAI,KAAK,KAAK,CAAC,MAAM,WAAW,CAAC;oBACpD,KAAK,MAAM,IAAI,IAAI,KAAK,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,CAAC;wBACpC,GAAG,IAAI,OAAO,IAAI,CAAC,IAAI,IAAI,CAAC;oBAChC,CAAC;oBACD,IAAI,KAAK,CAAC,MAAM,GAAG,EAAE,EAAE,CAAC;wBACpB,GAAG,IAAI,eAAe,KAAK,CAAC,MAAM,GAAG,EAAE,SAAS,CAAC;oBACrD,CAAC;oBACD,GAAG,IAAI,IAAI,CAAC;gBAChB,CAAC;gBACD,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;YAC1C,CAAC;YAED;gBACI,IAAI,OAAO,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC;oBAC1B,OAAO;wBACH,OAAO,EAAE,IAAI;wBACb,MAAM,EAAE,wBAAwB,OAAO,yCAAyC;qBACnF,CAAC;gBACN,CAAC;gBAED,QAAQ,CAAC,OAAO,CAAC,YAAY,EAAE,CAAC;gBAChC,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;QAClC,CAAC;IACL,CAAC,EAAE,CAAC,OAAO,EAAE,YAAY,EAAE,UAAU,CAAC,MAAM,EAAE,OAAO,CAAC,cAAc,EAAE,OAAO,EAAE,WAAW,EAAE,SAAS,CAAC,CAAC,CAAC;IAExG,OAAO;QACH,OAAO;QACP,SAAS;QACT,WAAW;QACX,aAAa;QACb,YAAY,EAAE,QAAQ,CAAC,OAAO;QAC9B,aAAa;QACb,OAAO;QACP,YAAY;QACZ,cAAc;QACd,aAAa;QACb,WAAW;KACd,CAAC;AACN,CAAC"}
|
|
@@ -4,12 +4,15 @@
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const COLORS: {
|
|
6
6
|
primary: string;
|
|
7
|
-
|
|
7
|
+
primaryDim: string;
|
|
8
8
|
secondary: string;
|
|
9
9
|
success: string;
|
|
10
10
|
warning: string;
|
|
11
11
|
error: string;
|
|
12
12
|
muted: string;
|
|
13
|
+
border: string;
|
|
14
|
+
diffAdded: string;
|
|
15
|
+
diffRemoved: string;
|
|
13
16
|
};
|
|
14
17
|
export declare const INK_COLORS: {
|
|
15
18
|
primary: "cyan";
|
|
@@ -37,8 +40,28 @@ export declare const SYMBOLS: {
|
|
|
37
40
|
thinking: string;
|
|
38
41
|
sparklet: string;
|
|
39
42
|
bullet: string;
|
|
43
|
+
spinner: string[];
|
|
44
|
+
chevronRight: string;
|
|
45
|
+
chevronDown: string;
|
|
46
|
+
ellipsis: string;
|
|
47
|
+
dash: string;
|
|
48
|
+
vertLine: string;
|
|
49
|
+
cornerTL: string;
|
|
50
|
+
cornerTR: string;
|
|
51
|
+
cornerBL: string;
|
|
52
|
+
cornerBR: string;
|
|
53
|
+
};
|
|
54
|
+
export declare const TOOL_STATUS: {
|
|
55
|
+
readonly SUCCESS: "✓";
|
|
56
|
+
readonly PENDING: "○";
|
|
57
|
+
readonly EXECUTING: "◌";
|
|
58
|
+
readonly ERROR: "✗";
|
|
59
|
+
readonly CANCELED: "–";
|
|
40
60
|
};
|
|
41
61
|
export declare const THINKING_FRAMES: string[];
|
|
42
62
|
export declare const THINKING_MESSAGES: string[];
|
|
43
63
|
export declare const SEPARATOR_CHAR = "\u2500";
|
|
64
|
+
export declare const TOOL_RESULT_MAX_LINES = 12;
|
|
65
|
+
export declare const DIFF_MAX_LINES = 15;
|
|
66
|
+
export declare const SHELL_OUTPUT_MAX_LINES = 10;
|
|
44
67
|
//# sourceMappingURL=ink-theme.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ink-theme.d.ts","sourceRoot":"","sources":["../../../src/ui/theme/ink-theme.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"ink-theme.d.ts","sourceRoot":"","sources":["../../../src/ui/theme/ink-theme.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,eAAO,MAAM,MAAM;;;;;;;;;;;CAWlB,CAAC;AAGF,eAAO,MAAM,UAAU;;;;;;;CAOtB,CAAC;AAGF,MAAM,MAAM,WAAW,GAAG;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,OAAO,CAAA;CAAE,CAAC;AAC7D,eAAO,MAAM,UAAU,EAAE,WAAW,EAAE,EAIrC,CAAC;AAEF,eAAO,MAAM,YAAY,iBAAY,CAAC;AAGtC,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;CAsBnB,CAAC;AAGF,eAAO,MAAM,WAAW;;;;;;CAMd,CAAC;AAGX,eAAO,MAAM,eAAe,UAAuB,CAAC;AAGpD,eAAO,MAAM,iBAAiB,UAQ7B,CAAC;AAGF,eAAO,MAAM,cAAc,WAAM,CAAC;AAGlC,eAAO,MAAM,qBAAqB,KAAK,CAAC;AACxC,eAAO,MAAM,cAAc,KAAK,CAAC;AACjC,eAAO,MAAM,sBAAsB,KAAK,CAAC"}
|
|
@@ -2,17 +2,20 @@
|
|
|
2
2
|
* Ink Theme Configuration
|
|
3
3
|
* Unified theme for Ink components using Paean brand colors
|
|
4
4
|
*/
|
|
5
|
-
// Paean Brand Colors —
|
|
5
|
+
// Paean Brand Colors — hex values for true-color terminals
|
|
6
6
|
export const COLORS = {
|
|
7
|
-
primary: '#
|
|
8
|
-
|
|
9
|
-
secondary: '#8b5cf6', // Violet
|
|
10
|
-
success: '#10b981', // Emerald
|
|
11
|
-
warning: '#f59e0b', // Amber
|
|
7
|
+
primary: '#3DD8EB', // Paean Cyan
|
|
8
|
+
primaryDim: '#007799', // Paean Blue (dimmed)
|
|
9
|
+
secondary: '#8b5cf6', // Violet
|
|
10
|
+
success: '#10b981', // Emerald
|
|
11
|
+
warning: '#f59e0b', // Amber
|
|
12
12
|
error: '#ef4444', // Red
|
|
13
13
|
muted: '#71717a', // Gray
|
|
14
|
+
border: '#333333', // Dark border
|
|
15
|
+
diffAdded: '#1a3a1a', // Diff added bg
|
|
16
|
+
diffRemoved: '#3a1a1a', // Diff removed bg
|
|
14
17
|
};
|
|
15
|
-
// Ink color mappings
|
|
18
|
+
// Ink color mappings (named colors for broader compatibility)
|
|
16
19
|
export const INK_COLORS = {
|
|
17
20
|
primary: 'cyan',
|
|
18
21
|
secondary: 'magenta',
|
|
@@ -26,35 +29,55 @@ export const ASCII_LOGO = [
|
|
|
26
29
|
[{ text: ' │' }, { text: '╭──╮', accent: true }, { text: '│' }],
|
|
27
30
|
[{ text: ' │' }, { text: '╰──╯', accent: true }, { text: '│' }],
|
|
28
31
|
];
|
|
29
|
-
// Compact logo for small screens
|
|
30
32
|
export const COMPACT_LOGO = '∩ Paean';
|
|
31
|
-
// Brand symbols
|
|
33
|
+
// Brand symbols — consistent single-width chars for alignment
|
|
32
34
|
export const SYMBOLS = {
|
|
33
35
|
arch: '∩',
|
|
34
36
|
prompt: '❯',
|
|
35
|
-
success: '
|
|
36
|
-
error: '
|
|
37
|
+
success: '✓',
|
|
38
|
+
error: '✗',
|
|
37
39
|
warning: '⚠',
|
|
38
40
|
info: 'ℹ',
|
|
39
41
|
mcp: '⚡',
|
|
40
|
-
tool: '
|
|
41
|
-
thinking: '
|
|
42
|
-
sparklet: '
|
|
42
|
+
tool: '⚙',
|
|
43
|
+
thinking: '◌',
|
|
44
|
+
sparklet: '✦',
|
|
43
45
|
bullet: '•',
|
|
46
|
+
spinner: ['◐', '◓', '◑', '◒'],
|
|
47
|
+
chevronRight: '›',
|
|
48
|
+
chevronDown: '⌄',
|
|
49
|
+
ellipsis: '…',
|
|
50
|
+
dash: '─',
|
|
51
|
+
vertLine: '│',
|
|
52
|
+
cornerTL: '╭',
|
|
53
|
+
cornerTR: '╮',
|
|
54
|
+
cornerBL: '╰',
|
|
55
|
+
cornerBR: '╯',
|
|
56
|
+
};
|
|
57
|
+
// Tool status symbols — matches gemini-cli's ToolShared pattern
|
|
58
|
+
export const TOOL_STATUS = {
|
|
59
|
+
SUCCESS: '✓',
|
|
60
|
+
PENDING: '○',
|
|
61
|
+
EXECUTING: '◌',
|
|
62
|
+
ERROR: '✗',
|
|
63
|
+
CANCELED: '–',
|
|
44
64
|
};
|
|
45
65
|
// Animation frames for thinking indicator
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
// Rotating thinking messages for better waiting experience
|
|
66
|
+
export const THINKING_FRAMES = ['◐', '◓', '◑', '◒'];
|
|
67
|
+
// Rotating thinking messages
|
|
49
68
|
export const THINKING_MESSAGES = [
|
|
50
|
-
'
|
|
51
|
-
'
|
|
52
|
-
'
|
|
53
|
-
'
|
|
54
|
-
'
|
|
55
|
-
'
|
|
56
|
-
'
|
|
69
|
+
'Analyzing your request…',
|
|
70
|
+
'Understanding context…',
|
|
71
|
+
'Planning the approach…',
|
|
72
|
+
'Gathering thoughts…',
|
|
73
|
+
'Deep thinking…',
|
|
74
|
+
'Considering options…',
|
|
75
|
+
'Almost there…',
|
|
57
76
|
];
|
|
58
77
|
// Separator line character
|
|
59
78
|
export const SEPARATOR_CHAR = '─';
|
|
79
|
+
// Collapsible output limits
|
|
80
|
+
export const TOOL_RESULT_MAX_LINES = 12;
|
|
81
|
+
export const DIFF_MAX_LINES = 15;
|
|
82
|
+
export const SHELL_OUTPUT_MAX_LINES = 10;
|
|
60
83
|
//# sourceMappingURL=ink-theme.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ink-theme.js","sourceRoot":"","sources":["../../../src/ui/theme/ink-theme.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,
|
|
1
|
+
{"version":3,"file":"ink-theme.js","sourceRoot":"","sources":["../../../src/ui/theme/ink-theme.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED