xibecode 1.3.11 → 1.3.15
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/acp/acp-server.d.ts +20 -0
- package/dist/acp/acp-server.d.ts.map +1 -0
- package/dist/acp/acp-server.js +545 -0
- package/dist/acp/acp-server.js.map +1 -0
- package/dist/acp/acp-types.d.ts +137 -0
- package/dist/acp/acp-types.d.ts.map +1 -0
- package/dist/acp/acp-types.js +32 -0
- package/dist/acp/acp-types.js.map +1 -0
- package/dist/index.js +17 -3
- package/dist/index.js.map +1 -1
- package/dist/ui/claude-style-chat.d.ts.map +1 -1
- package/dist/ui/claude-style-chat.js +68 -13
- package/dist/ui/claude-style-chat.js.map +1 -1
- package/dist/utils/tui-theme.d.ts +2 -0
- package/dist/utils/tui-theme.d.ts.map +1 -1
- package/dist/utils/tui-theme.js +2 -0
- package/dist/utils/tui-theme.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ACP (Agent Client Protocol) TypeScript types.
|
|
3
|
+
*
|
|
4
|
+
* Implements JSON-RPC 2.0 line-delimited stdio messages for Zed.
|
|
5
|
+
*
|
|
6
|
+
* @module acp-types
|
|
7
|
+
*/
|
|
8
|
+
export interface ACPRequest {
|
|
9
|
+
jsonrpc: "2.0";
|
|
10
|
+
id: number | string;
|
|
11
|
+
method: string;
|
|
12
|
+
params?: unknown;
|
|
13
|
+
}
|
|
14
|
+
export interface ACPResponse {
|
|
15
|
+
jsonrpc: "2.0";
|
|
16
|
+
id: number | string | null;
|
|
17
|
+
result?: unknown;
|
|
18
|
+
error?: ACPError;
|
|
19
|
+
}
|
|
20
|
+
export interface ACPNotification {
|
|
21
|
+
jsonrpc: "2.0";
|
|
22
|
+
method: string;
|
|
23
|
+
params?: unknown;
|
|
24
|
+
}
|
|
25
|
+
export interface ACPError {
|
|
26
|
+
code: number;
|
|
27
|
+
message: string;
|
|
28
|
+
data?: unknown;
|
|
29
|
+
}
|
|
30
|
+
export interface ACPInitializeParams {
|
|
31
|
+
protocolVersion: number;
|
|
32
|
+
clientCapabilities?: unknown;
|
|
33
|
+
clientInfo?: {
|
|
34
|
+
name: string;
|
|
35
|
+
title?: string;
|
|
36
|
+
version: string;
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
export interface ACPInitializeResult {
|
|
40
|
+
protocolVersion: number;
|
|
41
|
+
agentCapabilities: ACPAgentCapabilities;
|
|
42
|
+
agentInfo: {
|
|
43
|
+
name: string;
|
|
44
|
+
title?: string;
|
|
45
|
+
version: string;
|
|
46
|
+
};
|
|
47
|
+
authMethods: unknown[];
|
|
48
|
+
}
|
|
49
|
+
export interface ACPAgentCapabilities {
|
|
50
|
+
loadSession?: boolean;
|
|
51
|
+
promptCapabilities?: {
|
|
52
|
+
image?: boolean;
|
|
53
|
+
audio?: boolean;
|
|
54
|
+
embeddedContext?: boolean;
|
|
55
|
+
};
|
|
56
|
+
mcpCapabilities?: {
|
|
57
|
+
http?: boolean;
|
|
58
|
+
sse?: boolean;
|
|
59
|
+
};
|
|
60
|
+
sessionCapabilities?: {
|
|
61
|
+
close?: Record<string, never>;
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
export interface ACPSessionNewParams {
|
|
65
|
+
cwd: string;
|
|
66
|
+
mcpServers?: unknown[];
|
|
67
|
+
}
|
|
68
|
+
export interface ACPSessionPromptParams {
|
|
69
|
+
sessionId: string;
|
|
70
|
+
prompt: ACPContentBlock[];
|
|
71
|
+
}
|
|
72
|
+
export type ACPContentBlock = {
|
|
73
|
+
type: "text";
|
|
74
|
+
text: string;
|
|
75
|
+
} | {
|
|
76
|
+
type: "resource_link";
|
|
77
|
+
uri: string;
|
|
78
|
+
name?: string;
|
|
79
|
+
mimeType?: string;
|
|
80
|
+
} | {
|
|
81
|
+
type: "resource";
|
|
82
|
+
resource: {
|
|
83
|
+
uri: string;
|
|
84
|
+
mimeType?: string;
|
|
85
|
+
text?: string;
|
|
86
|
+
};
|
|
87
|
+
} | Record<string, unknown>;
|
|
88
|
+
export interface ACPSessionPromptResult {
|
|
89
|
+
stopReason: "end_turn" | "max_tokens" | "max_turn_requests" | "refusal" | "cancelled";
|
|
90
|
+
}
|
|
91
|
+
export interface ACPSessionUpdateParams {
|
|
92
|
+
sessionId: string;
|
|
93
|
+
update: unknown;
|
|
94
|
+
}
|
|
95
|
+
export interface ACPChatParams {
|
|
96
|
+
message: string;
|
|
97
|
+
workspaceRoot?: string;
|
|
98
|
+
messages?: ACPChatMessage[];
|
|
99
|
+
visibleFiles?: string[];
|
|
100
|
+
conversationId?: string;
|
|
101
|
+
}
|
|
102
|
+
export interface ACPChatMessage {
|
|
103
|
+
role: "user" | "assistant" | "system";
|
|
104
|
+
content: string;
|
|
105
|
+
}
|
|
106
|
+
export interface ACPChatResult {
|
|
107
|
+
content: string;
|
|
108
|
+
conversationId?: string;
|
|
109
|
+
}
|
|
110
|
+
export interface ACPChatDeltaParams {
|
|
111
|
+
content: string;
|
|
112
|
+
done?: boolean;
|
|
113
|
+
conversationId?: string;
|
|
114
|
+
}
|
|
115
|
+
export declare const ACP_ERROR_CODES: {
|
|
116
|
+
readonly PARSE_ERROR: -32700;
|
|
117
|
+
readonly INVALID_REQUEST: -32600;
|
|
118
|
+
readonly METHOD_NOT_FOUND: -32601;
|
|
119
|
+
readonly INVALID_PARAMS: -32602;
|
|
120
|
+
readonly INTERNAL_ERROR: -32603;
|
|
121
|
+
readonly AGENT_NOT_READY: -32000;
|
|
122
|
+
readonly AGENT_ERROR: -32001;
|
|
123
|
+
readonly CANCELLED: -32002;
|
|
124
|
+
};
|
|
125
|
+
export declare const ACP_METHODS: {
|
|
126
|
+
readonly INITIALIZE: "initialize";
|
|
127
|
+
readonly SESSION_NEW: "session/new";
|
|
128
|
+
readonly SESSION_PROMPT: "session/prompt";
|
|
129
|
+
readonly SESSION_CANCEL: "session/cancel";
|
|
130
|
+
readonly SESSION_CLOSE: "session/close";
|
|
131
|
+
readonly SESSION_UPDATE: "session/update";
|
|
132
|
+
readonly CHAT: "agent/chat";
|
|
133
|
+
readonly CHAT_DELTA: "agent/chatDelta";
|
|
134
|
+
readonly SHUTDOWN: "shutdown";
|
|
135
|
+
readonly CANCEL: "agent/cancel";
|
|
136
|
+
};
|
|
137
|
+
//# sourceMappingURL=acp-types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"acp-types.d.ts","sourceRoot":"","sources":["../../src/acp/acp-types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ACP (Agent Client Protocol) TypeScript types.
|
|
3
|
+
*
|
|
4
|
+
* Implements JSON-RPC 2.0 line-delimited stdio messages for Zed.
|
|
5
|
+
*
|
|
6
|
+
* @module acp-types
|
|
7
|
+
*/
|
|
8
|
+
// ─── ACP Error Codes ───────────────────────────────────────
|
|
9
|
+
export const ACP_ERROR_CODES = {
|
|
10
|
+
PARSE_ERROR: -32700,
|
|
11
|
+
INVALID_REQUEST: -32600,
|
|
12
|
+
METHOD_NOT_FOUND: -32601,
|
|
13
|
+
INVALID_PARAMS: -32602,
|
|
14
|
+
INTERNAL_ERROR: -32603,
|
|
15
|
+
AGENT_NOT_READY: -32000,
|
|
16
|
+
AGENT_ERROR: -32001,
|
|
17
|
+
CANCELLED: -32002,
|
|
18
|
+
};
|
|
19
|
+
// ─── Method Names ──────────────────────────────────────────
|
|
20
|
+
export const ACP_METHODS = {
|
|
21
|
+
INITIALIZE: "initialize",
|
|
22
|
+
SESSION_NEW: "session/new",
|
|
23
|
+
SESSION_PROMPT: "session/prompt",
|
|
24
|
+
SESSION_CANCEL: "session/cancel",
|
|
25
|
+
SESSION_CLOSE: "session/close",
|
|
26
|
+
SESSION_UPDATE: "session/update",
|
|
27
|
+
CHAT: "agent/chat",
|
|
28
|
+
CHAT_DELTA: "agent/chatDelta",
|
|
29
|
+
SHUTDOWN: "shutdown",
|
|
30
|
+
CANCEL: "agent/cancel",
|
|
31
|
+
};
|
|
32
|
+
//# sourceMappingURL=acp-types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"acp-types.js","sourceRoot":"","sources":["../../src/acp/acp-types.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AA0HH,8DAA8D;AAE9D,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,WAAW,EAAE,CAAC,KAAK;IACnB,eAAe,EAAE,CAAC,KAAK;IACvB,gBAAgB,EAAE,CAAC,KAAK;IACxB,cAAc,EAAE,CAAC,KAAK;IACtB,cAAc,EAAE,CAAC,KAAK;IACtB,eAAe,EAAE,CAAC,KAAK;IACvB,WAAW,EAAE,CAAC,KAAK;IACnB,SAAS,EAAE,CAAC,KAAK;CACT,CAAC;AAEX,8DAA8D;AAE9D,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,UAAU,EAAE,YAAY;IACxB,WAAW,EAAE,aAAa;IAC1B,cAAc,EAAE,gBAAgB;IAChC,cAAc,EAAE,gBAAgB;IAChC,aAAa,EAAE,eAAe;IAC9B,cAAc,EAAE,gBAAgB;IAChC,IAAI,EAAE,YAAY;IAClB,UAAU,EAAE,iBAAiB;IAC7B,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,cAAc;CACd,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -16,6 +16,7 @@ import { whatsNewCommand } from './commands/whats-new.js';
|
|
|
16
16
|
import { resolveSessionBySandboxId } from './utils/cloud-gateway.js';
|
|
17
17
|
import { ConfigManager } from './utils/config.js';
|
|
18
18
|
import { resolveRemoteExecutionConfig } from './utils/remote-execution.js';
|
|
19
|
+
import { startACPServer } from './acp/acp-server.js';
|
|
19
20
|
import dotenv from 'dotenv';
|
|
20
21
|
import { createRequire } from 'module';
|
|
21
22
|
const require = createRequire(import.meta.url);
|
|
@@ -94,7 +95,10 @@ program
|
|
|
94
95
|
.option('--theme <theme>', 'UI theme to use')
|
|
95
96
|
.option('--session <id>', 'Resume a specific chat session by id')
|
|
96
97
|
.option('--plain', 'Disable Ink UI; print line-by-line output (best for copying)', false)
|
|
97
|
-
.action(
|
|
98
|
+
.action((options) => {
|
|
99
|
+
process.env.XIBECODE_SANDBOX_MODE = 'local';
|
|
100
|
+
chatCommand(options);
|
|
101
|
+
});
|
|
98
102
|
const cloudCmd = program
|
|
99
103
|
.command('cloud')
|
|
100
104
|
.description('Interactive chat with E2B cloud execution (forces e2b for this process). With sandbox_full, uploads a tarball of your project first.')
|
|
@@ -161,6 +165,7 @@ resumeCmd
|
|
|
161
165
|
.option('--profile <name>', 'Config profile to use (default: configured default profile)')
|
|
162
166
|
.option('--all', 'Show sessions from all projects, not just the current directory')
|
|
163
167
|
.action((sessionId, options) => {
|
|
168
|
+
process.env.XIBECODE_SANDBOX_MODE = 'local';
|
|
164
169
|
resumeCommand({ session: sessionId, profile: options.profile, all: options.all });
|
|
165
170
|
});
|
|
166
171
|
// Configuration
|
|
@@ -276,8 +281,17 @@ mcpCmd
|
|
|
276
281
|
.command('login')
|
|
277
282
|
.description('Authenticate with Smithery')
|
|
278
283
|
.action(() => mcpCommand('login', []));
|
|
279
|
-
//
|
|
280
|
-
|
|
284
|
+
// If --acp is present, boot as a headless JSON-RPC 2.0 server over stdio.
|
|
285
|
+
const acpArgIdx = process.argv.indexOf('--acp');
|
|
286
|
+
if (acpArgIdx >= 2) {
|
|
287
|
+
const profileIdx = process.argv.indexOf('--profile');
|
|
288
|
+
const profile = profileIdx >= 0 && profileIdx + 1 < process.argv.length
|
|
289
|
+
? process.argv[profileIdx + 1]
|
|
290
|
+
: undefined;
|
|
291
|
+
startACPServer(profile);
|
|
292
|
+
}
|
|
293
|
+
else if (!process.argv.slice(2).length) {
|
|
294
|
+
// Launch chat if no command provided (stay local unless user set a subcommand like `cloud`)
|
|
281
295
|
process.env.XIBECODE_SANDBOX_MODE = 'local';
|
|
282
296
|
chatCommand({});
|
|
283
297
|
}
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,yBAAyB,EAAE,MAAM,0BAA0B,CAAC;AACrE,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAE,4BAA4B,EAAE,MAAM,6BAA6B,CAAC;AAC3E,OAAO,MAAM,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AAEvC,MAAM,OAAO,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAC/C,MAAM,GAAG,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAC;AAEvC,MAAM,CAAC,MAAM,EAAE,CAAC;AAIhB,kFAAkF;AAClF,KAAK,UAAU,6BAA6B,CAAC,SAAiB,EAAE,OAAuB;IACrF,OAAO,CAAC,GAAG,CAAC,qBAAqB,GAAG,KAAK,CAAC;IAC1C,MAAM,MAAM,GAAG,IAAI,aAAa,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;IAClD,MAAM,MAAM,GAAG,4BAA4B,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC;IACnE,IAAI,CAAC,MAAM,EAAE,CAAC;QACZ,MAAM,IAAI,KAAK,CAAC,uEAAuE,CAAC,CAAC;IAC3F,CAAC;IACD,MAAM,QAAQ,GAAG,MAAM,yBAAyB,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;IACpE,OAAO,CAAC,GAAG,CAAC,2BAA2B,GAAG,QAAQ,CAAC,SAAS,CAAC;IAC7D,OAAO,CAAC,GAAG,CAAC,0BAA0B,GAAG,GAAG,CAAC;IAC7C,MAAM,WAAW,CAAC,OAAO,CAAC,CAAC;AAC7B,CAAC;AAED,MAAM,OAAO,GAAG,IAAI,OAAO,EAAE,CAAC;AAE9B,OAAO;KACJ,IAAI,CAAC,UAAU,CAAC;KAChB,WAAW,CAAC,mDAAmD,CAAC;KAChE,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,eAAe,CAAC,CAAC;AAEzC,mBAAmB;AACnB,OAAO;KACJ,OAAO,CAAC,KAAK,CAAC;KACd,WAAW,CAAC,oCAAoC,CAAC;KACjD,QAAQ,CAAC,UAAU,EAAE,+BAA+B,CAAC;KACrD,MAAM,CAAC,mBAAmB,EAAE,uBAAuB,CAAC;KACpD,MAAM,CAAC,qBAAqB,EAAE,iBAAiB,CAAC;KAChD,MAAM,CAAC,kBAAkB,EAAE,6DAA6D,CAAC;KACzF,MAAM,CAAC,eAAe,EAAE,kDAAkD,CAAC;KAC3E,MAAM,CAAC,sBAAsB,EAAE,qBAAqB,CAAC;KACrD,MAAM,CAAC,qBAAqB,EAAE,4BAA4B,CAAC;KAC3D,MAAM,CAAC,uBAAuB,EAAE,uCAAuC,CAAC;KACxE,MAAM,CAAC,+BAA+B,EAAE,iDAAiD,EAAE,KAAK,CAAC;KACjG,MAAM,CAAC,eAAe,EAAE,oBAAoB,EAAE,KAAK,CAAC;KACpD,MAAM,CAAC,oBAAoB,EAAE,0EAA0E,EAAE,QAAQ,CAAC;KAClH,MAAM,CAAC,cAAc,EAAE,wEAAwE,EAAE,KAAK,CAAC;KACvG,MAAM,CAAC,oBAAoB,EAAE,wEAAwE,EAAE,KAAK,CAAC;KAC7G,MAAM,CAAC,WAAW,EAAE,qCAAqC,EAAE,KAAK,CAAC;KACjE,MAAM,CAAC,gBAAgB,EAAE,iCAAiC,EAAE,KAAK,CAAC;KAClE,MAAM,CAAC,mBAAmB,EAAE,oDAAoD,EAAE,KAAK,CAAC;KACxF,MAAM,CAAC,UAAU,CAAC,CAAC;AAEtB,8BAA8B;AAC9B,OAAO;KACJ,OAAO,CAAC,QAAQ,CAAC;KACjB,WAAW,CAAC,wFAAwF,CAAC;KACrG,QAAQ,CAAC,UAAU,EAAE,+BAA+B,CAAC;KACrD,MAAM,CAAC,mBAAmB,EAAE,uBAAuB,CAAC;KACpD,MAAM,CAAC,qBAAqB,EAAE,iBAAiB,CAAC;KAChD,MAAM,CAAC,kBAAkB,EAAE,6DAA6D,CAAC;KACzF,MAAM,CAAC,sBAAsB,EAAE,qBAAqB,CAAC;KACrD,MAAM,CAAC,qBAAqB,EAAE,4BAA4B,CAAC;KAC3D,MAAM,CAAC,uBAAuB,EAAE,uCAAuC,CAAC;KACxE,MAAM,CAAC,+BAA+B,EAAE,iDAAiD,EAAE,KAAK,CAAC;KACjG,MAAM,CAAC,eAAe,EAAE,oBAAoB,EAAE,KAAK,CAAC;KACpD,MAAM,CAAC,oBAAoB,EAAE,0DAA0D,EAAE,QAAQ,CAAC;KAClG,MAAM,CAAC,cAAc,EAAE,mDAAmD,EAAE,KAAK,CAAC;KAClF,MAAM,CAAC,oBAAoB,EAAE,qCAAqC,EAAE,KAAK,CAAC;KAC1E,MAAM,CAAC,iBAAiB,EAAE,4EAA4E,CAAC;KACvG,MAAM,CAAC,iBAAiB,EAAE,kDAAkD,CAAC;KAC7E,MAAM,CAAC,SAAS,EAAE,kBAAkB,EAAE,KAAK,CAAC;KAC5C,MAAM,CAAC,cAAc,EAAE,2CAA2C,EAAE,KAAK,CAAC;KAC1E,MAAM,CAAC,YAAY,CAAC,CAAC;AAExB,mBAAmB;AACnB,OAAO;KACJ,OAAO,CAAC,MAAM,CAAC;KACf,WAAW,CAAC,mCAAmC,CAAC;KAChD,MAAM,CAAC,qBAAqB,EAAE,iBAAiB,CAAC;KAChD,MAAM,CAAC,sBAAsB,EAAE,qBAAqB,CAAC;KACrD,MAAM,CAAC,qBAAqB,EAAE,4BAA4B,CAAC;KAC3D,MAAM,CAAC,kBAAkB,EAAE,6DAA6D,CAAC;KACzF,MAAM,CAAC,uBAAuB,EAAE,uCAAuC,CAAC;KACxE,MAAM,CAAC,oBAAoB,EAAE,8BAA8B,EAAE,QAAQ,CAAC;KACtE,MAAM,CAAC,iBAAiB,EAAE,iBAAiB,CAAC;KAC5C,MAAM,CAAC,gBAAgB,EAAE,sCAAsC,CAAC;KAChE,MAAM,CAAC,SAAS,EAAE,8DAA8D,EAAE,KAAK,CAAC;KACxF,MAAM,CAAC,WAAW,CAAC,CAAC;AAEvB,MAAM,QAAQ,GAAG,OAAO;KACrB,OAAO,CAAC,OAAO,CAAC;KAChB,WAAW,CACV,sIAAsI,CACvI;KACA,MAAM,CAAC,qBAAqB,EAAE,iBAAiB,CAAC;KAChD,MAAM,CAAC,sBAAsB,EAAE,qBAAqB,CAAC;KACrD,MAAM,CAAC,qBAAqB,EAAE,4BAA4B,CAAC;KAC3D,MAAM,CAAC,kBAAkB,EAAE,6DAA6D,CAAC;KACzF,MAAM,CAAC,uBAAuB,EAAE,uCAAuC,CAAC;KACxE,MAAM,CAAC,oBAAoB,EAAE,8BAA8B,EAAE,QAAQ,CAAC;KACtE,MAAM,CAAC,iBAAiB,EAAE,iBAAiB,CAAC;KAC5C,MAAM,CAAC,gBAAgB,EAAE,sCAAsC,CAAC;KAChE,MAAM,CAAC,SAAS,EAAE,8DAA8D,EAAE,KAAK,CAAC;KACxF,MAAM,CAAC,KAAK,EAAE,OAA0C,EAAE,EAAE;IAC3D,OAAO,CAAC,GAAG,CAAC,qBAAqB,GAAG,KAAK,CAAC;IAC1C,MAAM,WAAW,CAAC,OAAO,CAAC,CAAC;AAC7B,CAAC,CAAC,CAAC;AAEL,QAAQ;KACL,OAAO,CAAC,QAAQ,CAAC;KACjB,WAAW,CACV,kJAAkJ,CACnJ;KACA,QAAQ,CAAC,cAAc,EAAE,0BAA0B,CAAC;KACpD,MAAM,CAAC,qBAAqB,EAAE,iBAAiB,CAAC;KAChD,MAAM,CAAC,sBAAsB,EAAE,qBAAqB,CAAC;KACrD,MAAM,CAAC,qBAAqB,EAAE,4BAA4B,CAAC;KAC3D,MAAM,CAAC,kBAAkB,EAAE,6DAA6D,CAAC;KACzF,MAAM,CAAC,uBAAuB,EAAE,uCAAuC,CAAC;KACxE,MAAM,CAAC,oBAAoB,EAAE,8BAA8B,EAAE,QAAQ,CAAC;KACtE,MAAM,CAAC,iBAAiB,EAAE,iBAAiB,CAAC;KAC5C,MAAM,CAAC,SAAS,EAAE,8DAA8D,EAAE,KAAK,CAAC;KACxF,MAAM,CAAC,KAAK,EAAE,SAAiB,EAAE,OAAuB,EAAE,EAAE;IAC3D,MAAM,6BAA6B,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;AAC1D,CAAC,CAAC,CAAC;AAEL,QAAQ;KACL,OAAO,CAAC,MAAM,CAAC;KACf,WAAW,CAAC,iDAAiD,CAAC;KAC9D,MAAM,CAAC,kBAAkB,EAAE,6DAA6D,CAAC;KACzF,MAAM,CAAC,gBAAgB,EAAE,iCAAiC,CAAC;KAC3D,MAAM,CAAC,iBAAiB,EAAE,qEAAqE,CAAC;KAChG,MAAM,CAAC,SAAS,EAAE,oDAAoD,EAAE,KAAK,CAAC;KAC9E,MAAM,CACL,QAAQ,EACR,6GAA6G,EAC7G,KAAK,CACN;KACA,MAAM,CAAC,SAAS,EAAE,yDAAyD,EAAE,KAAK,CAAC;KACnF,MAAM,CAAC,KAAK,EAAE,OAA+C,EAAE,EAAE;IAChE,MAAM,gBAAgB,CAAC,OAAO,CAAC,CAAC;AAClC,CAAC,CAAC,CAAC;AAEL,4FAA4F;AAC5F,MAAM,SAAS,GAAG,OAAO,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;AAE5C,SAAS;KACN,OAAO,CAAC,OAAO,CAAC;KAChB,WAAW,CACV,sIAAsI,CACvI;KACA,QAAQ,CAAC,cAAc,EAAE,0BAA0B,CAAC;KACpD,MAAM,CAAC,qBAAqB,EAAE,iBAAiB,CAAC;KAChD,MAAM,CAAC,sBAAsB,EAAE,qBAAqB,CAAC;KACrD,MAAM,CAAC,qBAAqB,EAAE,4BAA4B,CAAC;KAC3D,MAAM,CAAC,kBAAkB,EAAE,6DAA6D,CAAC;KACzF,MAAM,CAAC,uBAAuB,EAAE,uCAAuC,CAAC;KACxE,MAAM,CAAC,oBAAoB,EAAE,8BAA8B,EAAE,QAAQ,CAAC;KACtE,MAAM,CAAC,iBAAiB,EAAE,iBAAiB,CAAC;KAC5C,MAAM,CAAC,SAAS,EAAE,8DAA8D,EAAE,KAAK,CAAC;KACxF,MAAM,CAAC,KAAK,EAAE,SAAiB,EAAE,OAAuB,EAAE,EAAE;IAC3D,MAAM,6BAA6B,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;AAC1D,CAAC,CAAC,CAAC;AAEL,SAAS;KACN,WAAW,CACV,uMAAuM,CACxM;KACA,QAAQ,CAAC,cAAc,EAAE,gEAAgE,CAAC;KAC1F,MAAM,CAAC,kBAAkB,EAAE,6DAA6D,CAAC;KACzF,MAAM,CAAC,OAAO,EAAE,iEAAiE,CAAC;KAClF,MAAM,CAAC,CAAC,SAA6B,EAAE,OAA4C,EAAE,EAAE;IACtF,aAAa,CAAC,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,OAAO,CAAC,OAAO,EAAE,GAAG,EAAE,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC;AACpF,CAAC,CAAC,CAAC;AAEL,gBAAgB;AAChB,OAAO;KACJ,OAAO,CAAC,QAAQ,CAAC;KACjB,WAAW,CAAC,sBAAsB,CAAC;KACnC,MAAM,CAAC,kBAAkB,EAAE,6DAA6D,CAAC;KACzF,MAAM,CAAC,iBAAiB,EAAE,aAAa,CAAC;KACxC,MAAM,CAAC,iBAAiB,EAAE,qBAAqB,CAAC;KAChD,MAAM,CAAC,qBAAqB,EAAE,mBAAmB,CAAC;KACjD,MAAM,CAAC,2BAA2B,EAAE,0GAA0G,CAAC;KAChJ,MAAM,CAAC,wBAAwB,EAAE,qEAAqE,CAAC;KACvG,MAAM,CAAC,6BAA6B,EAAE,4CAA4C,CAAC;KACnF,MAAM,CAAC,2BAA2B,EAAE,0CAA0C,CAAC;KAC/E,MAAM,CAAC,iCAAiC,EAAE,4DAA4D,CAAC;KACvG,MAAM,CAAC,kCAAkC,EAAE,0DAA0D,CAAC;KACtG,MAAM,CAAC,2CAA2C,EAAE,yDAAyD,CAAC;KAC9G,MAAM,CAAC,oCAAoC,EAAE,8DAA8D,CAAC;KAC5G,MAAM,CAAC,kCAAkC,EAAE,iEAAiE,CAAC;KAC7G,MAAM,CACL,6CAA6C,EAC7C,oFAAoF,CACrF;KACA,MAAM,CAAC,QAAQ,EAAE,4BAA4B,CAAC;KAC9C,MAAM,CAAC,iBAAiB,EAAE,gCAAgC,CAAC;KAC3D,MAAM,CAAC,8BAA8B,EAAE,gCAAgC,CAAC;KACxE,MAAM,CAAC,SAAS,EAAE,yBAAyB,CAAC;KAC5C,MAAM,CAAC,oBAAoB,EAAE,6BAA6B,CAAC;KAC3D,MAAM,CAAC,yBAAyB,EAAE,iCAAiC,CAAC;KACpE,MAAM,CAAC,4BAA4B,EAAE,sBAAsB,CAAC;KAC5D,MAAM,CAAC,aAAa,CAAC,CAAC;AAEzB,qCAAqC;AACrC,OAAO;KACJ,OAAO,CAAC,aAAa,CAAC;KACtB,WAAW,CAAC,sEAAsE,CAAC;KACnF,MAAM,CAAC,qBAAqB,EAAE,qEAAqE,CAAC;KACpG,MAAM,CAAC,kBAAkB,EAAE,6DAA6D,CAAC;KACzF,MAAM,CAAC,gBAAgB,EAAE,4DAA4D,EAAE,KAAK,CAAC;KAC7F,MAAM,CAAC,qBAAqB,EAAE,iCAAiC,EAAE,MAAM,CAAC;KACxE,MAAM,CAAC,eAAe,EAAE,oBAAoB,EAAE,KAAK,CAAC;KACpD,MAAM,CAAC,kBAAkB,CAAC,CAAC;AAE9B,iDAAiD;AACjD,OAAO;KACJ,OAAO,CAAC,2BAA2B,CAAC;KACpC,WAAW,CAAC,uDAAuD,CAAC;KACpE,MAAM,CAAC,CAAC,MAA0B,EAAE,IAAc,EAAE,OAAY,EAAE,EAAE,CAAC,aAAa,CAAC,MAAM,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC;AAE9G,sBAAsB;AACtB,OAAO;KACJ,OAAO,CAAC,6BAA6B,CAAC;KACtC,WAAW,CAAC,+DAA+D,CAAC;KAC5E,MAAM,CAAC,kBAAkB,EAAE,uBAAuB,CAAC;KACnD,MAAM,CAAC,CAAC,MAA0B,EAAE,IAAc,EAAE,OAAY,EAAE,EAAE,CAAC,eAAe,CAAC,MAAM,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC;AAEhH,mBAAmB;AACnB,OAAO;KACJ,OAAO,CAAC,0BAA0B,CAAC;KACnC,WAAW,CAAC,oDAAoD,CAAC;KACjE,MAAM,CAAC,kBAAkB,EAAE,uBAAuB,CAAC;KACnD,MAAM,CAAC,CAAC,MAA0B,EAAE,IAAc,EAAE,OAAY,EAAE,EAAE,CAAC,YAAY,CAAC,MAAM,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC;AAE7G,oBAAoB;AACpB,OAAO;KACJ,OAAO,CAAC,2BAA2B,CAAC;KACpC,WAAW,CAAC,0DAA0D,CAAC;KACvE,MAAM,CAAC,kBAAkB,EAAE,uBAAuB,CAAC;KACnD,MAAM,CAAC,CAAC,MAA0B,EAAE,IAAc,EAAE,OAAY,EAAE,EAAE,CAAC,aAAa,CAAC,MAAM,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC;AAE9G,OAAO;KACJ,OAAO,CAAC,WAAW,CAAC;KACpB,KAAK,CAAC,WAAW,CAAC;KAClB,WAAW,CAAC,6DAA6D,CAAC;KAC1E,MAAM,CAAC,KAAK,IAAI,EAAE;IACjB,MAAM,eAAe,EAAE,CAAC;AAC1B,CAAC,CAAC,CAAC;AAEL,wBAAwB;AACxB,MAAM,MAAM,GAAG,OAAO;KACnB,OAAO,CAAC,KAAK,CAAC;KACd,WAAW,CAAC,oCAAoC,CAAC,CAAC;AAErD,MAAM;KACH,OAAO,CAAC,KAAK,CAAC;KACd,WAAW,CAAC,oDAAoD,CAAC;KACjE,MAAM,CAAC,GAAG,EAAE,CAAC,UAAU,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC;AAEvC,MAAM;KACH,OAAO,CAAC,MAAM,CAAC;KACf,WAAW,CAAC,iCAAiC,CAAC;KAC9C,MAAM,CAAC,GAAG,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,CAAC;AAExC,MAAM;KACH,OAAO,CAAC,QAAQ,CAAC;KACjB,WAAW,CAAC,sBAAsB,CAAC;KACnC,QAAQ,CAAC,QAAQ,EAAE,aAAa,CAAC;KACjC,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,UAAU,CAAC,QAAQ,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAElD,MAAM;KACH,OAAO,CAAC,MAAM,CAAC;KACf,WAAW,CAAC,6CAA6C,CAAC;KAC1D,MAAM,CAAC,GAAG,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,CAAC;AAExC,MAAM;KACH,OAAO,CAAC,MAAM,CAAC;KACf,WAAW,CAAC,+CAA+C,CAAC;KAC5D,MAAM,CAAC,GAAG,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,CAAC;AAExC,MAAM;KACH,OAAO,CAAC,MAAM,CAAC;KACf,WAAW,CAAC,+CAA+C,CAAC;KAC5D,MAAM,CAAC,GAAG,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,CAAC;AAExC,MAAM;KACH,OAAO,CAAC,QAAQ,CAAC;KACjB,WAAW,CAAC,4CAA4C,CAAC;KACzD,MAAM,CAAC,GAAG,EAAE,CAAC,UAAU,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,CAAC;AAE1C,MAAM;KACH,OAAO,CAAC,QAAQ,CAAC;KACjB,WAAW,CAAC,oCAAoC,CAAC;KACjD,QAAQ,CAAC,YAAY,EAAE,cAAc,CAAC;KACtC,MAAM,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,UAAU,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC,CAAC;AAElD,MAAM;KACH,OAAO,CAAC,SAAS,CAAC;KAClB,WAAW,CAAC,uBAAuB,CAAC;KACpC,QAAQ,CAAC,QAAQ,EAAE,2CAA2C,CAAC;KAC/D,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,UAAU,CAAC,SAAS,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAEnD,MAAM;KACH,OAAO,CAAC,OAAO,CAAC;KAChB,WAAW,CAAC,4BAA4B,CAAC;KACzC,MAAM,CAAC,GAAG,EAAE,CAAC,UAAU,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC;AAEzC,4FAA4F;AAC5F,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAClC,OAAO,CAAC,GAAG,CAAC,qBAAqB,GAAG,OAAO,CAAC;IAC5C,WAAW,CAAC,EAAE,CAAC,CAAC;AAClB,CAAC;KAAM,CAAC;IACN,OAAO,CAAC,KAAK,EAAE,CAAC;AAClB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"claude-style-chat.d.ts","sourceRoot":"","sources":["../../src/ui/claude-style-chat.tsx"],"names":[],"mappings":"AAwCA,MAAM,MAAM,WAAW,GAAG;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,eAAe,CAAC,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,GAAG,KAAK,CAAC,GAAG,CAAC,CAAA;KAAE,CAAC,CAAC;IACxE,2GAA2G;IAC3G,iBAAiB,CAAC,EAAE,OAAO,CAAC;CAC7B,CAAC;AAyMF,MAAM,MAAM,iBAAiB,GAAG,MAAM,GAAG,QAAQ,GAAG,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"claude-style-chat.d.ts","sourceRoot":"","sources":["../../src/ui/claude-style-chat.tsx"],"names":[],"mappings":"AAwCA,MAAM,MAAM,WAAW,GAAG;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,eAAe,CAAC,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,GAAG,KAAK,CAAC,GAAG,CAAC,CAAA;KAAE,CAAC,CAAC;IACxE,2GAA2G;IAC3G,iBAAiB,CAAC,EAAE,OAAO,CAAC;CAC7B,CAAC;AAyMF,MAAM,MAAM,iBAAiB,GAAG,MAAM,GAAG,QAAQ,GAAG,WAAW,CAAC;AAowEhE,wBAAsB,qBAAqB,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC,CAmtB/E"}
|
|
@@ -264,11 +264,15 @@ function prefixForType(type) {
|
|
|
264
264
|
return 'Info';
|
|
265
265
|
}
|
|
266
266
|
}
|
|
267
|
-
function prefixColorKey(type) {
|
|
267
|
+
function prefixColorKey(type, mode) {
|
|
268
268
|
switch (type) {
|
|
269
269
|
case 'user':
|
|
270
270
|
return 'briefLabelYou';
|
|
271
271
|
case 'assistant':
|
|
272
|
+
if (mode === 'plan')
|
|
273
|
+
return 'briefLabelPlan';
|
|
274
|
+
if (mode === 'review')
|
|
275
|
+
return 'briefLabelReview';
|
|
272
276
|
return 'briefLabelClaude';
|
|
273
277
|
case 'tool':
|
|
274
278
|
return 'suggestion';
|
|
@@ -309,6 +313,7 @@ function XibeCodeChatApp(props) {
|
|
|
309
313
|
const [setupSelectedModelIndex, setSetupSelectedModelIndex] = useState(0);
|
|
310
314
|
const [setupProviderPickerOpen, setSetupProviderPickerOpen] = useState(false);
|
|
311
315
|
const [setupProviderIndex, setSetupProviderIndex] = useState(0);
|
|
316
|
+
const [setupProvider, setSetupProvider] = useState(null);
|
|
312
317
|
const CONFIG_MENU = [
|
|
313
318
|
{ label: 'Set Base URL (OpenAI format)', value: 'set_baseurl', description: 'Example: https://api.openai.com/v1' },
|
|
314
319
|
{ label: 'Set API key', value: 'set_apikey', description: 'Bearer token used for /models and chat calls' },
|
|
@@ -610,6 +615,7 @@ function XibeCodeChatApp(props) {
|
|
|
610
615
|
setSetupSelectedModelIndex(0);
|
|
611
616
|
setSetupProviderPickerOpen(true);
|
|
612
617
|
setSetupProviderIndex(0);
|
|
618
|
+
setSetupProvider(null);
|
|
613
619
|
pushLine({ type: 'info', text: 'Setup started.' });
|
|
614
620
|
}, [pushLine]);
|
|
615
621
|
useEffect(() => {
|
|
@@ -1004,6 +1010,29 @@ function XibeCodeChatApp(props) {
|
|
|
1004
1010
|
}
|
|
1005
1011
|
return;
|
|
1006
1012
|
}
|
|
1013
|
+
// Intercept natural language mode-switching commands (e.g., "switch to review mode", "switch to review model", "change to plan mode")
|
|
1014
|
+
const modeSwitchRegex = /^(?:please\s+)?(?:switch|change|go|use|activate|turn\s+on)\s+(?:to\s+(?:the\s+)?|mode\s+to\s+)?(agent|plan|review|debugger|tester|security|pentest|team_leader|seo|product|architect|engineer|data|researcher)\s*(?:mode|model|persona)?(?:\s+please)?[\s.!?]*$/i;
|
|
1015
|
+
const matchMode = resolvedInput.match(modeSwitchRegex);
|
|
1016
|
+
if (matchMode) {
|
|
1017
|
+
const modeArg = matchMode[1].toLowerCase();
|
|
1018
|
+
const selectedMode = props.modeOptions.find((mode) => mode.id === modeArg);
|
|
1019
|
+
if (selectedMode) {
|
|
1020
|
+
try {
|
|
1021
|
+
await applyMode(selectedMode.id);
|
|
1022
|
+
}
|
|
1023
|
+
catch (error) {
|
|
1024
|
+
const message = error instanceof Error ? error.message : 'Failed to switch mode';
|
|
1025
|
+
pushLine({ type: 'error', text: message });
|
|
1026
|
+
}
|
|
1027
|
+
}
|
|
1028
|
+
else {
|
|
1029
|
+
pushLine({
|
|
1030
|
+
type: 'error',
|
|
1031
|
+
text: `Mode "${modeArg}" is not enabled. Enabled modes are: ${props.modeOptions.map(m => m.id).join(', ')}.`,
|
|
1032
|
+
});
|
|
1033
|
+
}
|
|
1034
|
+
return;
|
|
1035
|
+
}
|
|
1007
1036
|
if (resolvedInput === '/mode' || resolvedInput.startsWith('/mode ')) {
|
|
1008
1037
|
const modeArg = resolvedInput.replace('/mode', '').trim().toLowerCase();
|
|
1009
1038
|
if (!modeArg) {
|
|
@@ -1466,6 +1495,7 @@ function XibeCodeChatApp(props) {
|
|
|
1466
1495
|
return;
|
|
1467
1496
|
const config = new ConfigManager(props.profile);
|
|
1468
1497
|
setSetupProviderPickerOpen(false);
|
|
1498
|
+
setSetupProvider(picked.value);
|
|
1469
1499
|
if (picked.value === 'custom') {
|
|
1470
1500
|
setSetupStep('baseUrl');
|
|
1471
1501
|
pushLine({
|
|
@@ -1690,8 +1720,8 @@ function XibeCodeChatApp(props) {
|
|
|
1690
1720
|
? 'Anthropic Messages'
|
|
1691
1721
|
: 'OpenAI chat', ")"] })] })] })] }), _jsxs(Box, { marginTop: 1, children: [_jsxs(Text, { color: "suggestion", children: [props.runtimeStatus, ":"] }), _jsx(Text, { color: "inactive", children: " Ready - type " }), _jsx(Text, { color: "claude", children: "/help" }), _jsx(Text, { color: "inactive", children: " to begin" })] }), props.sandboxLabel ? (_jsxs(Text, { color: "inactive", children: ["sandbox: ", props.sandboxLabel] })) : null, props.sandboxId ? (_jsxs(Text, { color: "inactive", children: ["sandbox id: ", props.sandboxId] })) : null, props.previewUrl ? (_jsxs(Text, { color: "inactive", children: ["preview: ", props.previewUrl] })) : null, props.pullHint ? (_jsxs(Text, { color: "inactive", children: ["pull: ", props.pullHint] })) : null, _jsxs(Text, { color: "inactive", children: ["xibecode ", _jsxs(Text, { color: "claude", children: ["v", APP_VERSION] })] }), _jsx(Text, { color: "subtle", children: '─'.repeat(98) }), _jsx(Text, { color: "inactive", children: "Agent transcript" })] }, item.id));
|
|
1692
1722
|
}
|
|
1693
|
-
return (_jsx(React.Fragment, { children: item.type === 'assistant' ? (_jsxs(Box, { flexDirection: "column", marginBottom: 1, children: [_jsxs(Text, { bold: true, color: prefixColorKey('assistant'), children: [prefixForType('assistant'), ":"] }), _jsx(Box, { marginLeft: 2, flexDirection: "column", children: _jsx(AssistantMarkdown, { content: item.text }) })] })) : (_jsxs(Text, { children: [_jsxs(Text, { bold: true, color: prefixColorKey(item.type), children: [prefixForType(item.type), ":", ' '] }), _jsx(Text, { color: lineColorKey(item.type), children: item.text })] })) }, item.id));
|
|
1694
|
-
} }), !hasChatContent && (_jsx(Box, { marginTop: 1, flexDirection: "column", children: _jsx(Text, { color: "inactive", children: "(send a message to start)" }) })), _jsx(Text, { color: "subtle", children: divider }), isRunning && (_jsx(Box, { marginTop: 1, paddingX: 1, borderStyle: "round", borderColor: "claudeBlue_FOR_SYSTEM_SPINNER", flexDirection: "column", children: _jsxs(Text, { wrap: "wrap", children: [_jsxs(Text, { bold: true, color: "claudeBlue_FOR_SYSTEM_SPINNER", children: [WORK_SPINNER_FRAMES[workSpinnerFrame], ' '] }), _jsx(Text, { bold: true, color:
|
|
1723
|
+
return (_jsx(React.Fragment, { children: item.type === 'assistant' ? (_jsxs(Box, { flexDirection: "column", marginBottom: 1, children: [_jsxs(Text, { bold: true, color: prefixColorKey('assistant', activeMode), children: [prefixForType('assistant'), ":"] }), _jsx(Box, { marginLeft: 2, flexDirection: "column", children: _jsx(AssistantMarkdown, { content: item.text }) })] })) : (_jsxs(Text, { children: [_jsxs(Text, { bold: true, color: prefixColorKey(item.type, activeMode), children: [prefixForType(item.type), ":", ' '] }), _jsx(Text, { color: lineColorKey(item.type), children: item.text })] })) }, item.id));
|
|
1724
|
+
} }), !hasChatContent && (_jsx(Box, { marginTop: 1, flexDirection: "column", children: _jsx(Text, { color: "inactive", children: "(send a message to start)" }) })), _jsx(Text, { color: "subtle", children: divider }), isRunning && (_jsx(Box, { marginTop: 1, paddingX: 1, borderStyle: "round", borderColor: "claudeBlue_FOR_SYSTEM_SPINNER", flexDirection: "column", children: _jsxs(Text, { wrap: "wrap", children: [_jsxs(Text, { bold: true, color: "claudeBlue_FOR_SYSTEM_SPINNER", children: [WORK_SPINNER_FRAMES[workSpinnerFrame], ' '] }), _jsx(Text, { bold: true, color: prefixColorKey('assistant', activeMode), children: workVerbPhrase })] }) })), questionsState && (() => {
|
|
1695
1725
|
const { questions, currentIndex, selectedOptionIndex, isTypingCustom } = questionsState;
|
|
1696
1726
|
const q = questions[currentIndex];
|
|
1697
1727
|
const optLetters = 'abcdefghij';
|
|
@@ -1707,23 +1737,36 @@ function XibeCodeChatApp(props) {
|
|
|
1707
1737
|
const isSelected = otherIdx === selectedOptionIndex;
|
|
1708
1738
|
return (_jsxs(Text, { children: [_jsx(Text, { bold: true, color: isSelected ? 'green' : 'inactive', children: isSelected ? ' ▸ ' : ' ' }), _jsxs(Text, { bold: true, color: isSelected ? 'green' : 'yellow', children: [optLetters[otherIdx], ")"] }), _jsx(Text, { color: isSelected ? 'green' : 'inactive', children: " type yourself" })] }));
|
|
1709
1739
|
})()] }), _jsx(Text, { color: "inactive", dimColor: true, children: "\u2191/\u2193 to navigate, Enter to select, Esc to cancel" })] }));
|
|
1710
|
-
})(), _jsxs(Box, { marginTop: 1, borderStyle: "round", borderColor: questionsState ? (questionsState.isTypingCustom ? 'green' : 'yellow') : '
|
|
1740
|
+
})(), _jsxs(Box, { marginTop: 1, borderStyle: "round", borderColor: questionsState ? (questionsState.isTypingCustom ? 'green' : 'yellow') : prefixColorKey('assistant', activeMode), paddingX: 1, children: [_jsx(Text, { color: questionsState ? (questionsState.isTypingCustom ? 'green' : 'yellow') : prefixColorKey('assistant', activeMode), children: '> ' }), _jsx(TextInput, { value: input, onChange: handleChatInputChange, onSubmit: onSubmit, placeholder: questionsState
|
|
1711
1741
|
? questionsState.isTypingCustom
|
|
1712
1742
|
? `Type your answer for Q${questionsState.currentIndex + 1} and press Enter`
|
|
1713
1743
|
: `Use ↑/↓ and Enter to pick an option (Q${questionsState.currentIndex + 1}/${questionsState.questions.length})`
|
|
1714
|
-
:
|
|
1744
|
+
: (setupStep === 'apiKey' || configPrompt.kind === 'apiKey')
|
|
1745
|
+
? 'Enter the API key'
|
|
1746
|
+
: isRunning ? 'Waiting for response…' : 'Message XibeCode…' }, chatInputMountKey)] }), ((setupStep === 'apiKey' && !setupProviderPickerOpen) || configPrompt.kind === 'apiKey') && (() => {
|
|
1747
|
+
const activeSetupProvider = setupStep === 'apiKey'
|
|
1748
|
+
? (setupProvider || new ConfigManager(props.profile).get('provider'))
|
|
1749
|
+
: new ConfigManager(props.profile).get('provider');
|
|
1750
|
+
const configVal = activeSetupProvider && activeSetupProvider !== 'custom'
|
|
1751
|
+
? PROVIDER_CONFIGS[activeSetupProvider]
|
|
1752
|
+
: null;
|
|
1753
|
+
const apiKeyUrl = configVal?.apiKeyUrl;
|
|
1754
|
+
if (!apiKeyUrl)
|
|
1755
|
+
return null;
|
|
1756
|
+
return (_jsxs(Box, { marginTop: 1, marginLeft: 1, children: [_jsx(Text, { color: "cyan", underline: true, children: `\u001b]8;;${apiKeyUrl}\u001b\\get api key here\u001b]8;;\u001b\\` }), _jsx(Text, { color: "inactive", children: " (Ctrl+Click / Cmd+Click to open link)" })] }));
|
|
1757
|
+
})(), filePickerOpen && (_jsxs(Box, { marginTop: 1, borderStyle: "round", borderColor: prefixColorKey('assistant', activeMode), flexDirection: "column", paddingX: 1, children: [_jsxs(Text, { bold: true, color: prefixColorKey('assistant', activeMode), children: ["Files", filePickerLoading ? ' (loading...)' : ''] }), filePickerLoading ? (_jsx(Text, { color: "inactive", children: "Scanning workspace\u2026" })) : filteredFileEntries.length === 0 ? (_jsx(Text, { color: "inactive", children: fileQuery ? `No files match "${fileQuery}"` : 'No files in workspace' })) : (visibleFileEntries.map((entry, index) => {
|
|
1715
1758
|
const absoluteIndex = filePickerStart + index;
|
|
1716
1759
|
const isSelected = absoluteIndex === selectedFileIndex;
|
|
1717
|
-
return (_jsxs(Text, { children: [_jsx(Text, { color: isSelected ? '
|
|
1718
|
-
})), _jsx(Text, { color: "subtle", children: "\u2191/\u2193 navigate \u2022 Enter inserts locked \u27E6@path\u27E7 \u2022 Space ends mention \u2022 Esc close" })] })), isSlashMode && (_jsxs(Box, { marginTop: 1, borderStyle: "round", borderColor:
|
|
1760
|
+
return (_jsxs(Text, { children: [_jsx(Text, { color: isSelected ? prefixColorKey('assistant', activeMode) : 'inactive', children: isSelected ? '▸ ' : ' ' }), _jsx(Text, { color: isSelected ? prefixColorKey('assistant', activeMode) : (entry.isDirectory ? 'yellow' : 'text'), children: mentionPathForPick(entry) })] }, entry.relativePath));
|
|
1761
|
+
})), _jsx(Text, { color: "subtle", children: "\u2191/\u2193 navigate \u2022 Enter inserts locked \u27E6@path\u27E7 \u2022 Space ends mention \u2022 Esc close" })] })), isSlashMode && (_jsxs(Box, { marginTop: 1, borderStyle: "round", borderColor: prefixColorKey('assistant', activeMode), flexDirection: "column", paddingX: 1, children: [_jsx(Text, { color: prefixColorKey('assistant', activeMode), bold: true, children: "Commands" }), filteredCommands.length === 0 ? (_jsxs(Text, { color: "inactive", children: ["No commands match \"", input, "\""] })) : (filteredCommands.map((command, index) => (_jsx(React.Fragment, { children: _jsxs(Text, { children: [_jsx(Text, { color: index === selectedCommandIndex ? prefixColorKey('assistant', activeMode) : 'inactive', children: index === selectedCommandIndex ? '▸ ' : ' ' }), _jsx(Text, { bold: true, color: index === selectedCommandIndex ? prefixColorKey('assistant', activeMode) : 'text', children: command.name }), _jsxs(Text, { color: "inactive", children: [" \u2014 ", command.description] })] }) }, command.name)))), _jsx(Text, { color: "subtle", children: "Use \u2191/\u2193 to navigate, Tab to autocomplete." })] })), modelPickerOpen && (_jsxs(Box, { marginTop: 1, borderStyle: "round", borderColor: prefixColorKey('assistant', activeMode), flexDirection: "column", paddingX: 1, children: [_jsx(Text, { bold: true, color: prefixColorKey('assistant', activeMode), children: "Select model" }), isModelListLoading ? (_jsx(Text, { color: "inactive", children: "Loading models from provider..." })) : filteredModels.length === 0 ? (_jsx(Text, { color: "inactive", children: "No models matched current filter." })) : (visibleModelOptions.map((modelName, index) => {
|
|
1719
1762
|
const absoluteIndex = modelPickerStart + index;
|
|
1720
1763
|
const isSelected = absoluteIndex === selectedModelIndex;
|
|
1721
|
-
return (_jsx(React.Fragment, { children: _jsxs(Text, { children: [_jsx(Text, { color: isSelected ? '
|
|
1722
|
-
})), _jsx(Text, { color: "subtle", children: "\u2191/\u2193 navigate \u2022 Enter apply \u2022 Esc close" })] })), setupModelPickerOpen && (_jsxs(Box, { marginTop: 1, borderStyle: "round", borderColor:
|
|
1764
|
+
return (_jsx(React.Fragment, { children: _jsxs(Text, { children: [_jsx(Text, { color: isSelected ? prefixColorKey('assistant', activeMode) : 'inactive', children: isSelected ? '▸ ' : ' ' }), _jsx(Text, { color: isSelected ? prefixColorKey('assistant', activeMode) : 'text', children: modelName })] }) }, modelName));
|
|
1765
|
+
})), _jsx(Text, { color: "subtle", children: "\u2191/\u2193 navigate \u2022 Enter apply \u2022 Esc close" })] })), setupModelPickerOpen && (_jsxs(Box, { marginTop: 1, borderStyle: "round", borderColor: prefixColorKey('assistant', activeMode), flexDirection: "column", paddingX: 1, children: [_jsx(Text, { bold: true, color: prefixColorKey('assistant', activeMode), children: "Setup: select model" }), setupModels.length === 0 ? (_jsx(Text, { color: "inactive", children: "No models loaded." })) : (visibleSetupModelOptions.map((modelName, index) => {
|
|
1723
1766
|
const absoluteIndex = setupModelPickerStart + index;
|
|
1724
1767
|
const isSelected = absoluteIndex === setupSelectedModelIndex;
|
|
1725
|
-
return (_jsx(React.Fragment, { children: _jsxs(Text, { children: [_jsx(Text, { color: isSelected ? '
|
|
1726
|
-
})), _jsx(Text, { color: "subtle", children: "\u2191/\u2193 navigate \u2022 Enter apply \u2022 Esc cancel" })] })), (setupStep !== 'idle' || setupProviderPickerOpen) && (_jsxs(Box, { marginTop: 1, borderStyle: "round", borderColor:
|
|
1768
|
+
return (_jsx(React.Fragment, { children: _jsxs(Text, { children: [_jsx(Text, { color: isSelected ? prefixColorKey('assistant', activeMode) : 'inactive', children: isSelected ? '▸ ' : ' ' }), _jsx(Text, { color: isSelected ? prefixColorKey('assistant', activeMode) : 'text', children: modelName })] }) }, modelName));
|
|
1769
|
+
})), _jsx(Text, { color: "subtle", children: "\u2191/\u2193 navigate \u2022 Enter apply \u2022 Esc cancel" })] })), (setupStep !== 'idle' || setupProviderPickerOpen) && (_jsxs(Box, { marginTop: 1, borderStyle: "round", borderColor: prefixColorKey('assistant', activeMode), flexDirection: "column", paddingX: 1, children: [_jsx(Text, { bold: true, color: prefixColorKey('assistant', activeMode), children: "Setup wizard" }), _jsxs(Text, { wrap: "wrap", children: [_jsx(Text, { color: prefixColorKey('assistant', activeMode), bold: true, children: "You are configuring your provider connection." }), _jsxs(Text, { color: "inactive", children: [' ', "This is required before the agent can run."] })] }), setupProviderPickerOpen && (_jsxs(Box, { flexDirection: "column", marginTop: 1, children: [_jsx(Text, { color: "inactive", children: "Pick a provider preset (\u2191/\u2193, Enter). Esc cancels." }), [
|
|
1727
1770
|
'Routing.run (recommended) (cheapest opensource model provider)',
|
|
1728
1771
|
'zenllm.org (recommended) (best ai provider with 200+ models)',
|
|
1729
1772
|
'OpenAI',
|
|
@@ -1736,7 +1779,7 @@ function XibeCodeChatApp(props) {
|
|
|
1736
1779
|
'Moonshot (Kimi)',
|
|
1737
1780
|
'Zhipu AI (z.ai)',
|
|
1738
1781
|
'Custom (paste your own Base URL)',
|
|
1739
|
-
].map((label, index) => (_jsx(React.Fragment, { children: _jsxs(Text, { children: [_jsx(Text, { color: index === setupProviderIndex ? '
|
|
1782
|
+
].map((label, index) => (_jsx(React.Fragment, { children: _jsxs(Text, { children: [_jsx(Text, { color: index === setupProviderIndex ? prefixColorKey('assistant', activeMode) : 'inactive', children: index === setupProviderIndex ? '▸ ' : ' ' }), _jsx(Text, { color: index === setupProviderIndex ? prefixColorKey('assistant', activeMode) : 'text', children: label })] }) }, label)))] })), setupStep === 'baseUrl' && !setupProviderPickerOpen && (_jsx(Text, { color: "inactive", children: "Step: Base URL \u2014 paste an OpenAI-compatible endpoint (example: https://api.openai.com/v1)" })), setupStep === 'apiKey' && !setupProviderPickerOpen && (_jsx(Text, { color: "inactive", children: "Step: API key \u2014 paste your key (stored locally)" })), setupStep === 'loadingModels' && (_jsx(Text, { color: "inactive", children: "Step: Models \u2014 fetching `/models`\u2026" })), setupStep === 'pickModel' && (_jsx(Text, { color: "inactive", children: "Step: Model \u2014 select one below" }))] })), configMenuOpen && (_jsxs(Box, { marginTop: 1, borderStyle: "round", borderColor: prefixColorKey('assistant', activeMode), flexDirection: "column", paddingX: 1, children: [_jsx(Text, { bold: true, color: prefixColorKey('assistant', activeMode), children: "Config" }), CONFIG_MENU.map((item, index) => (_jsx(React.Fragment, { children: _jsxs(Text, { children: [_jsx(Text, { color: index === configSelectedIndex ? prefixColorKey('assistant', activeMode) : 'inactive', children: index === configSelectedIndex ? '▸ ' : ' ' }), _jsx(Text, { bold: true, color: index === configSelectedIndex ? prefixColorKey('assistant', activeMode) : 'text', children: item.label }), _jsxs(Text, { color: "inactive", children: [" \u2014 ", item.description] })] }) }, item.value))), _jsx(Text, { color: "subtle", children: "\u2191/\u2193 navigate \u2022 Enter select \u2022 Esc close" })] })), configProviderPickerOpen && (_jsxs(Box, { marginTop: 1, borderStyle: "round", borderColor: prefixColorKey('assistant', activeMode), flexDirection: "column", paddingX: 1, children: [_jsx(Text, { bold: true, color: prefixColorKey('assistant', activeMode), children: "Provider" }), [
|
|
1740
1783
|
'auto-detect',
|
|
1741
1784
|
'openai',
|
|
1742
1785
|
'anthropic',
|
|
@@ -1746,7 +1789,7 @@ function XibeCodeChatApp(props) {
|
|
|
1746
1789
|
'grok',
|
|
1747
1790
|
'kimi',
|
|
1748
1791
|
'zai',
|
|
1749
|
-
].map((label, index) => (_jsx(React.Fragment, { children: _jsxs(Text, { children: [_jsx(Text, { color: index === configProviderIndex ? '
|
|
1792
|
+
].map((label, index) => (_jsx(React.Fragment, { children: _jsxs(Text, { children: [_jsx(Text, { color: index === configProviderIndex ? prefixColorKey('assistant', activeMode) : 'inactive', children: index === configProviderIndex ? '▸ ' : ' ' }), _jsx(Text, { color: index === configProviderIndex ? prefixColorKey('assistant', activeMode) : 'text', children: label })] }) }, label))), _jsx(Text, { color: "subtle", children: "\u2191/\u2193 navigate \u2022 Enter apply \u2022 Esc close" })] })), configCostModePickerOpen && (_jsxs(Box, { marginTop: 1, borderStyle: "round", borderColor: prefixColorKey('assistant', activeMode), flexDirection: "column", paddingX: 1, children: [_jsx(Text, { bold: true, color: prefixColorKey('assistant', activeMode), children: "Cost mode" }), ['normal', 'economy'].map((label, index) => (_jsx(React.Fragment, { children: _jsxs(Text, { children: [_jsx(Text, { color: index === configCostModeIndex ? prefixColorKey('assistant', activeMode) : 'inactive', children: index === configCostModeIndex ? '▸ ' : ' ' }), _jsx(Text, { color: index === configCostModeIndex ? prefixColorKey('assistant', activeMode) : 'text', children: label })] }) }, label))), _jsx(Text, { color: "subtle", children: "\u2191/\u2193 navigate \u2022 Enter apply \u2022 Esc close" })] })), modePickerOpen && (_jsxs(Box, { marginTop: 1, borderStyle: "round", borderColor: prefixColorKey('assistant', activeMode), flexDirection: "column", paddingX: 1, children: [_jsx(Text, { bold: true, color: prefixColorKey('assistant', activeMode), children: "Select mode" }), filteredModeOptions.length === 0 ? (_jsx(Text, { color: "inactive", children: "No modes matched current filter." })) : (filteredModeOptions.map((mode, index) => (_jsx(React.Fragment, { children: _jsxs(Text, { children: [_jsx(Text, { color: index === selectedModeIndex ? prefixColorKey('assistant', activeMode) : 'inactive', children: index === selectedModeIndex ? '▸ ' : ' ' }), _jsx(Text, { color: index === selectedModeIndex ? prefixColorKey('assistant', activeMode) : 'text', children: mode.id }), _jsxs(Text, { color: "inactive", children: [" \u2014 ", mode.description] })] }) }, mode.id)))), _jsx(Text, { color: "subtle", children: "\u2191/\u2193 navigate \u2022 Enter apply \u2022 Esc close" })] }))] }));
|
|
1750
1793
|
}
|
|
1751
1794
|
export async function launchClaudeStyleChat(options) {
|
|
1752
1795
|
if (options.forceLocalRuntime) {
|
|
@@ -1914,6 +1957,7 @@ export async function launchClaudeStyleChat(options) {
|
|
|
1914
1957
|
activeAgent.removeAllListeners('event');
|
|
1915
1958
|
let streamedBuffer = '';
|
|
1916
1959
|
let streamFlushTimer = null;
|
|
1960
|
+
let didOutputContent = false;
|
|
1917
1961
|
const flushStreamedBuffer = () => {
|
|
1918
1962
|
if (streamedBuffer.trim()) {
|
|
1919
1963
|
onLine({ type: 'assistant', text: streamedBuffer.trim() });
|
|
@@ -1937,6 +1981,7 @@ export async function launchClaudeStyleChat(options) {
|
|
|
1937
1981
|
});
|
|
1938
1982
|
break;
|
|
1939
1983
|
case 'tool_call': {
|
|
1984
|
+
didOutputContent = true;
|
|
1940
1985
|
// Flush any pending streamed text before showing tool call
|
|
1941
1986
|
flushStreamedBuffer();
|
|
1942
1987
|
if (streamFlushTimer) {
|
|
@@ -1982,6 +2027,8 @@ export async function launchClaudeStyleChat(options) {
|
|
|
1982
2027
|
break;
|
|
1983
2028
|
}
|
|
1984
2029
|
case 'stream_text':
|
|
2030
|
+
if (event.data?.text)
|
|
2031
|
+
didOutputContent = true;
|
|
1985
2032
|
opts?.onVisibleOutput?.();
|
|
1986
2033
|
streamedBuffer += event.data?.text || '';
|
|
1987
2034
|
// Accumulate streamed text and flush periodically or when buffer is large.
|
|
@@ -2010,6 +2057,8 @@ export async function launchClaudeStyleChat(options) {
|
|
|
2010
2057
|
flushStreamedBuffer();
|
|
2011
2058
|
break;
|
|
2012
2059
|
case 'response':
|
|
2060
|
+
if (event.data?.text)
|
|
2061
|
+
didOutputContent = true;
|
|
2013
2062
|
opts?.onVisibleOutput?.();
|
|
2014
2063
|
onLine({ type: 'assistant', text: event.data?.text || '' });
|
|
2015
2064
|
break;
|
|
@@ -2056,6 +2105,12 @@ export async function launchClaudeStyleChat(options) {
|
|
|
2056
2105
|
images: opts?.images,
|
|
2057
2106
|
signal: opts?.signal,
|
|
2058
2107
|
});
|
|
2108
|
+
if (!didOutputContent) {
|
|
2109
|
+
onLine({
|
|
2110
|
+
type: 'error',
|
|
2111
|
+
text: 'The model returned an empty response. This often happens if the selected model is incompatible with the system prompt, or the API provider dropped the response due to context length.',
|
|
2112
|
+
});
|
|
2113
|
+
}
|
|
2059
2114
|
// Write the latest messages to the transcript incrementally.
|
|
2060
2115
|
// The agent's run() method appends to this.messages; we persist
|
|
2061
2116
|
// the user prompt and assistant response as separate transcript entries.
|