@ganglion/xacpx 0.8.2 → 0.9.0
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/README.md +2 -0
- package/dist/bridge/bridge-main.js +2178 -4
- package/dist/channels/types.d.ts +7 -0
- package/dist/cli.js +4340 -2016
- package/dist/commands/handlers/agent-handler.d.ts +1 -1
- package/dist/commands/handlers/config-handler.d.ts +1 -1
- package/dist/commands/handlers/later-handler.d.ts +2 -11
- package/dist/commands/handlers/orchestration-handler.d.ts +1 -1
- package/dist/commands/handlers/permission-handler.d.ts +3 -3
- package/dist/commands/handlers/session-handler.d.ts +6 -6
- package/dist/commands/handlers/workspace-handler.d.ts +1 -1
- package/dist/commands/help/help-registry.d.ts +0 -1
- package/dist/config/types.d.ts +2 -0
- package/dist/i18n/index.d.ts +8 -0
- package/dist/i18n/messages/en/acpx-note.d.ts +2 -0
- package/dist/i18n/messages/en/agent.d.ts +2 -0
- package/dist/i18n/messages/en/channel-cli.d.ts +2 -0
- package/dist/i18n/messages/en/cli-update.d.ts +2 -0
- package/dist/i18n/messages/en/cli.d.ts +2 -0
- package/dist/i18n/messages/en/common.d.ts +2 -0
- package/dist/i18n/messages/en/config.d.ts +2 -0
- package/dist/i18n/messages/en/coordinator-prompt.d.ts +2 -0
- package/dist/i18n/messages/en/help.d.ts +2 -0
- package/dist/i18n/messages/en/hints.d.ts +2 -0
- package/dist/i18n/messages/en/index.d.ts +2 -0
- package/dist/i18n/messages/en/later.d.ts +2 -0
- package/dist/i18n/messages/en/login.d.ts +2 -0
- package/dist/i18n/messages/en/migrate.d.ts +2 -0
- package/dist/i18n/messages/en/misc.d.ts +2 -0
- package/dist/i18n/messages/en/native-session.d.ts +2 -0
- package/dist/i18n/messages/en/orchestration.d.ts +2 -0
- package/dist/i18n/messages/en/permission.d.ts +2 -0
- package/dist/i18n/messages/en/plugin-cli.d.ts +2 -0
- package/dist/i18n/messages/en/recovery.d.ts +2 -0
- package/dist/i18n/messages/en/render.d.ts +2 -0
- package/dist/i18n/messages/en/router.d.ts +2 -0
- package/dist/i18n/messages/en/scheduled-render.d.ts +2 -0
- package/dist/i18n/messages/en/session.d.ts +2 -0
- package/dist/i18n/messages/en/shortcut.d.ts +2 -0
- package/dist/i18n/messages/en/weixin.d.ts +2 -0
- package/dist/i18n/messages/en/worker-prompt.d.ts +2 -0
- package/dist/i18n/messages/en/workspace.d.ts +2 -0
- package/dist/i18n/messages/zh/acpx-note.d.ts +2 -0
- package/dist/i18n/messages/zh/agent.d.ts +2 -0
- package/dist/i18n/messages/zh/channel-cli.d.ts +2 -0
- package/dist/i18n/messages/zh/cli-update.d.ts +2 -0
- package/dist/i18n/messages/zh/cli.d.ts +2 -0
- package/dist/i18n/messages/zh/common.d.ts +2 -0
- package/dist/i18n/messages/zh/config.d.ts +2 -0
- package/dist/i18n/messages/zh/coordinator-prompt.d.ts +2 -0
- package/dist/i18n/messages/zh/help.d.ts +2 -0
- package/dist/i18n/messages/zh/hints.d.ts +2 -0
- package/dist/i18n/messages/zh/index.d.ts +2 -0
- package/dist/i18n/messages/zh/later.d.ts +2 -0
- package/dist/i18n/messages/zh/login.d.ts +2 -0
- package/dist/i18n/messages/zh/migrate.d.ts +2 -0
- package/dist/i18n/messages/zh/misc.d.ts +2 -0
- package/dist/i18n/messages/zh/native-session.d.ts +2 -0
- package/dist/i18n/messages/zh/orchestration.d.ts +2 -0
- package/dist/i18n/messages/zh/permission.d.ts +2 -0
- package/dist/i18n/messages/zh/plugin-cli.d.ts +2 -0
- package/dist/i18n/messages/zh/recovery.d.ts +2 -0
- package/dist/i18n/messages/zh/render.d.ts +2 -0
- package/dist/i18n/messages/zh/router.d.ts +2 -0
- package/dist/i18n/messages/zh/scheduled-render.d.ts +2 -0
- package/dist/i18n/messages/zh/session.d.ts +2 -0
- package/dist/i18n/messages/zh/shortcut.d.ts +2 -0
- package/dist/i18n/messages/zh/weixin.d.ts +2 -0
- package/dist/i18n/messages/zh/worker-prompt.d.ts +2 -0
- package/dist/i18n/messages/zh/workspace.d.ts +2 -0
- package/dist/i18n/resolve-locale.d.ts +6 -0
- package/dist/i18n/types.d.ts +861 -0
- package/dist/plugin-api.d.ts +2 -0
- package/dist/plugin-api.js +2180 -8
- package/package.json +1 -1
|
@@ -0,0 +1,861 @@
|
|
|
1
|
+
export interface CommonMessages {
|
|
2
|
+
localeName: string;
|
|
3
|
+
}
|
|
4
|
+
export interface SessionMessages {
|
|
5
|
+
noCurrent: string;
|
|
6
|
+
noSessions: string;
|
|
7
|
+
crossChannelHint: string;
|
|
8
|
+
createSessionHint: string;
|
|
9
|
+
createSessionExample: string;
|
|
10
|
+
sessionListHeader: string;
|
|
11
|
+
currentLabel: string;
|
|
12
|
+
sessionListItem: (alias: string, agent: string, workspace: string) => string;
|
|
13
|
+
sessionCreated: (alias: string) => string;
|
|
14
|
+
sessionAttachNotFound: (alias: string, agent: string, workspace: string) => string;
|
|
15
|
+
sessionAttached: (alias: string) => string;
|
|
16
|
+
switched: (alias: string, agent: string, workspace: string) => string;
|
|
17
|
+
switchedWithPrev: (alias: string, agent: string, workspace: string, previousAlias: string) => string;
|
|
18
|
+
stillRunning: (alias: string) => string;
|
|
19
|
+
noMatchingSession: (input: string) => string;
|
|
20
|
+
ambiguousSession: (input: string) => string;
|
|
21
|
+
noPreviousSession: string;
|
|
22
|
+
modeHeader: string;
|
|
23
|
+
modeSessionLabel: (alias: string) => string;
|
|
24
|
+
modeModeLabel: (modeId: string) => string;
|
|
25
|
+
modeNotSet: string;
|
|
26
|
+
modeSet: (modeId: string) => string;
|
|
27
|
+
replyModeHeader: string;
|
|
28
|
+
replyModeSessionLabel: (alias: string) => string;
|
|
29
|
+
replyModeGlobalDefault: (value: string) => string;
|
|
30
|
+
replyModeSessionOverride: (value: string) => string;
|
|
31
|
+
replyModeEffective: (value: string) => string;
|
|
32
|
+
replyModeSet: (replyMode: string) => string;
|
|
33
|
+
replyModeReset: (globalDefault: string) => string;
|
|
34
|
+
statusHeader: string;
|
|
35
|
+
statusNameLabel: (alias: string) => string;
|
|
36
|
+
statusAgentLabel: (agent: string) => string;
|
|
37
|
+
statusWorkspaceLabel: (workspace: string) => string;
|
|
38
|
+
orchestrationRouteError: string;
|
|
39
|
+
orchestrationRouteRetry: string;
|
|
40
|
+
sessionNotFound: (alias: string) => string;
|
|
41
|
+
sessionBlockedByTasks: (alias: string, count: number) => string;
|
|
42
|
+
sessionBlockedByTasksHint: string;
|
|
43
|
+
sessionRemoved: (alias: string) => string;
|
|
44
|
+
sessionRemovedWasActive: string;
|
|
45
|
+
sessionTransportShared: (transportSession: string, count: number) => string;
|
|
46
|
+
sessionOrchestrationPurgeFailed: (warning: string) => string;
|
|
47
|
+
sessionTransportTeardownFailed: (warning: string) => string;
|
|
48
|
+
sessionHelpSummary: string;
|
|
49
|
+
sessionHelpCmdSsList: string;
|
|
50
|
+
sessionHelpCmdSsListDesc: string;
|
|
51
|
+
sessionHelpCmdSsOrSlash: string;
|
|
52
|
+
sessionHelpCmdSsOrSlashDesc: string;
|
|
53
|
+
sessionHelpCmdSsQuick: string;
|
|
54
|
+
sessionHelpCmdSsQuickDesc: string;
|
|
55
|
+
sessionHelpCmdSsNew: string;
|
|
56
|
+
sessionHelpCmdSsNewDesc: string;
|
|
57
|
+
sessionHelpCmdSsNewAlias: string;
|
|
58
|
+
sessionHelpCmdSsNewAliasDesc: string;
|
|
59
|
+
sessionHelpCmdSsAttach: string;
|
|
60
|
+
sessionHelpCmdSsAttachDesc: string;
|
|
61
|
+
sessionHelpCmdSsn: string;
|
|
62
|
+
sessionHelpCmdSsnDesc: string;
|
|
63
|
+
sessionHelpCmdTail: string;
|
|
64
|
+
sessionHelpCmdTailDesc: string;
|
|
65
|
+
sessionHelpCmdRm: string;
|
|
66
|
+
sessionHelpCmdRmDesc: string;
|
|
67
|
+
sessionHelpCmdUse: string;
|
|
68
|
+
sessionHelpCmdUseDesc: string;
|
|
69
|
+
sessionHelpCmdUseFuzzy: string;
|
|
70
|
+
sessionHelpCmdUseFuzzyDesc: string;
|
|
71
|
+
sessionHelpCmdUsePrev: string;
|
|
72
|
+
sessionHelpCmdUsePrevDesc: string;
|
|
73
|
+
sessionHelpCmdReset: string;
|
|
74
|
+
sessionHelpCmdResetDesc: string;
|
|
75
|
+
nativeHelpSummary: string;
|
|
76
|
+
nativeHelpCmdSsn: string;
|
|
77
|
+
nativeHelpCmdSsnDesc: string;
|
|
78
|
+
nativeHelpCmdSsnAgentWs: string;
|
|
79
|
+
nativeHelpCmdSsnAgentWsDesc: string;
|
|
80
|
+
nativeHelpCmdSsnAgentDir: string;
|
|
81
|
+
nativeHelpCmdSsnAgentDirDesc: string;
|
|
82
|
+
nativeHelpCmdSsnAgentAll: string;
|
|
83
|
+
nativeHelpCmdSsnAgentAllDesc: string;
|
|
84
|
+
nativeHelpCmdSsnNumber: string;
|
|
85
|
+
nativeHelpCmdSsnNumberDesc: string;
|
|
86
|
+
nativeHelpCmdSsnNumberAlias: string;
|
|
87
|
+
nativeHelpCmdSsnNumberAliasDesc: string;
|
|
88
|
+
nativeHelpCmdSsnAttach: string;
|
|
89
|
+
nativeHelpCmdSsnAttachDesc: string;
|
|
90
|
+
nativeHelpCmdSsnAttachLong: string;
|
|
91
|
+
nativeHelpCmdSsnAttachLongDesc: string;
|
|
92
|
+
nativeHelpNote1: string;
|
|
93
|
+
nativeHelpNote2: string;
|
|
94
|
+
nativeHelpNote3: string;
|
|
95
|
+
nativeHelpNote4: string;
|
|
96
|
+
modeHelpSummary: string;
|
|
97
|
+
modeHelpCmdShow: string;
|
|
98
|
+
modeHelpCmdShowDesc: string;
|
|
99
|
+
modeHelpCmdSet: string;
|
|
100
|
+
modeHelpCmdSetDesc: string;
|
|
101
|
+
replyModeHelpSummary: string;
|
|
102
|
+
replyModeHelpCmdShow: string;
|
|
103
|
+
replyModeHelpCmdShowDesc: string;
|
|
104
|
+
replyModeHelpCmdStream: string;
|
|
105
|
+
replyModeHelpCmdStreamDesc: string;
|
|
106
|
+
replyModeHelpCmdVerbose: string;
|
|
107
|
+
replyModeHelpCmdVerboseDesc: string;
|
|
108
|
+
replyModeHelpCmdFinal: string;
|
|
109
|
+
replyModeHelpCmdFinalDesc: string;
|
|
110
|
+
replyModeHelpCmdReset: string;
|
|
111
|
+
replyModeHelpCmdResetDesc: string;
|
|
112
|
+
statusHelpSummary: string;
|
|
113
|
+
statusHelpCmdShow: string;
|
|
114
|
+
statusHelpCmdShowDesc: string;
|
|
115
|
+
cancelHelpSummary: string;
|
|
116
|
+
cancelHelpCmdCancel: string;
|
|
117
|
+
cancelHelpCmdCancelDesc: string;
|
|
118
|
+
cancelHelpCmdCancelAlias: string;
|
|
119
|
+
cancelHelpCmdCancelAliasDesc: string;
|
|
120
|
+
cancelHelpCmdStop: string;
|
|
121
|
+
cancelHelpCmdStopDesc: string;
|
|
122
|
+
cancelHelpCmdStopAlias: string;
|
|
123
|
+
cancelHelpCmdStopAliasDesc: string;
|
|
124
|
+
}
|
|
125
|
+
export interface NativeSessionMessages {
|
|
126
|
+
transportNotSupported: string;
|
|
127
|
+
noSessionsFound: (agentDisplayName: string, workspaceLabel: string) => string;
|
|
128
|
+
noSessionsFoundHint: string;
|
|
129
|
+
selectPrompt: string;
|
|
130
|
+
noCachedList: string;
|
|
131
|
+
indexOutOfRange: string;
|
|
132
|
+
attachNotSupported: string;
|
|
133
|
+
alreadySwitched: (agentDisplayName: string, displayAlias: string) => string;
|
|
134
|
+
attachVerificationFailed: (agentDisplayName: string) => string;
|
|
135
|
+
attachedAndSwitched: (agentDisplayName: string, displayAlias: string) => string;
|
|
136
|
+
noContextHint: string;
|
|
137
|
+
agentNotRegistered: (agent: string) => string;
|
|
138
|
+
workspaceNotRegistered: (workspace: string) => string;
|
|
139
|
+
workspacePathNotFound: (cwd: string) => string;
|
|
140
|
+
noWritableConfig: string;
|
|
141
|
+
tableHeader: (agentDisplayName: string, workspaceLabel: string) => string;
|
|
142
|
+
tableColNum: string;
|
|
143
|
+
tableColTitle: string;
|
|
144
|
+
tableColUpdatedAt: string;
|
|
145
|
+
tableColId: string;
|
|
146
|
+
tableAttachedLabel: (displayAlias: string) => string;
|
|
147
|
+
tableAttachedCurrent: string;
|
|
148
|
+
tableActions: string;
|
|
149
|
+
tableActionAttach: string;
|
|
150
|
+
tableActionAlias: string;
|
|
151
|
+
tableActionHelp: string;
|
|
152
|
+
tableMore: (cmd: string) => string;
|
|
153
|
+
cardHeader: (agentDisplayName: string, workspaceLabel: string) => string;
|
|
154
|
+
cardReplyHint: string;
|
|
155
|
+
cardTimeLabel: (updatedAt: string) => string;
|
|
156
|
+
cardIdLabel: (idTail: string) => string;
|
|
157
|
+
cardAttachedLabel: (displayAlias: string) => string;
|
|
158
|
+
cardAttachedCurrent: string;
|
|
159
|
+
cardActions: string;
|
|
160
|
+
cardActionAttach: string;
|
|
161
|
+
cardActionAlias: string;
|
|
162
|
+
cardActionHelp: string;
|
|
163
|
+
cardMore: (cmd: string) => string;
|
|
164
|
+
listError: (agentDisplayName: string, errorMessage: string) => string;
|
|
165
|
+
listErrorHint: string;
|
|
166
|
+
listErrorHelp: string;
|
|
167
|
+
resumeError: (agentDisplayName: string, errorMessage: string) => string;
|
|
168
|
+
resumeErrorHint: string;
|
|
169
|
+
resumeErrorHelp: string;
|
|
170
|
+
}
|
|
171
|
+
export interface RecoveryMessages {
|
|
172
|
+
transientSessionFailed: string;
|
|
173
|
+
transientSessionHint: string;
|
|
174
|
+
sessionUnavailable: (alias: string) => string;
|
|
175
|
+
sessionUnavailableRenewHint: (alias: string, agent: string, quotedWorkspace: string) => string;
|
|
176
|
+
sessionUnavailableAttachHint: (alias: string, agent: string, quotedWorkspace: string) => string;
|
|
177
|
+
sessionInterrupted: (alias: string) => string;
|
|
178
|
+
sessionInterruptedHint: string;
|
|
179
|
+
sessionInterruptedError: (summary: string) => string;
|
|
180
|
+
autoInstallHeadlineFixed: string;
|
|
181
|
+
autoInstallHeadlineFailed: string;
|
|
182
|
+
autoInstallOriginalError: string;
|
|
183
|
+
autoInstallStepVerifyFailed: (label: string) => string;
|
|
184
|
+
autoInstallStepError: (label: string, stderrTail: string) => string;
|
|
185
|
+
autoInstallManual: (pkg: string) => string;
|
|
186
|
+
autoInstallLog: (logPath: string) => string;
|
|
187
|
+
autoInstallScopePrecise: (manager?: string, path?: string) => string;
|
|
188
|
+
autoInstallScopeGlobal: string;
|
|
189
|
+
sessionCreationFailed: string;
|
|
190
|
+
sessionCreationVerificationDetail: string;
|
|
191
|
+
sessionCreationError: (summary: string) => string;
|
|
192
|
+
sessionCreationAttachHint: (alias: string, agent: string, quotedWorkspace: string) => string;
|
|
193
|
+
}
|
|
194
|
+
export interface ShortcutMessages {
|
|
195
|
+
noConfig: string;
|
|
196
|
+
agentNotRegistered: (agent: string, hint: string) => string;
|
|
197
|
+
agentNotRegisteredAvailable: (names: string) => string;
|
|
198
|
+
agentNotRegisteredNone: string;
|
|
199
|
+
reuseHeader: (display: string) => string;
|
|
200
|
+
reuseWorkspace: (name: string) => string;
|
|
201
|
+
reuseSession: (display: string) => string;
|
|
202
|
+
createdHeader: (display: string) => string;
|
|
203
|
+
createdNewWorkspace: (name: string, cwd: string) => string;
|
|
204
|
+
createdReusedWorkspace: (name: string) => string;
|
|
205
|
+
createdNewSession: (display: string) => string;
|
|
206
|
+
creationFailed: (alias: string) => string;
|
|
207
|
+
creationFailedNewWorkspace: (name: string, cwd: string) => string;
|
|
208
|
+
creationFailedReusedWorkspace: (name: string) => string;
|
|
209
|
+
creationFailedSession: string;
|
|
210
|
+
workspaceNotRegistered: (workspace: string, hint: string) => string;
|
|
211
|
+
workspaceAvailable: (names: string) => string;
|
|
212
|
+
workspaceNone: string;
|
|
213
|
+
workspacePathNotFound: (cwd: string) => string;
|
|
214
|
+
}
|
|
215
|
+
export interface WorkspaceMessages {
|
|
216
|
+
workspacesEmpty: string;
|
|
217
|
+
workspacesHeader: string;
|
|
218
|
+
noWritableConfig: string;
|
|
219
|
+
pathNotFound: (cwd: string) => string;
|
|
220
|
+
nameSanitized: (original: string, saved: string) => string;
|
|
221
|
+
saved: (name: string) => string;
|
|
222
|
+
removed: (name: string) => string;
|
|
223
|
+
helpSummary: string;
|
|
224
|
+
helpCmdList: string;
|
|
225
|
+
helpCmdListDesc: string;
|
|
226
|
+
helpCmdListOrAlias: string;
|
|
227
|
+
helpCmdListOrAliasDesc: string;
|
|
228
|
+
helpCmdNew: string;
|
|
229
|
+
helpCmdNewDesc: string;
|
|
230
|
+
helpCmdRm: string;
|
|
231
|
+
helpCmdRmDesc: string;
|
|
232
|
+
}
|
|
233
|
+
export interface AgentMessages {
|
|
234
|
+
agentsEmpty: string;
|
|
235
|
+
agentsHeader: string;
|
|
236
|
+
noWritableConfig: string;
|
|
237
|
+
unsupportedTemplate: (available: string) => string;
|
|
238
|
+
alreadyExists: (name: string) => string;
|
|
239
|
+
alreadyExistsDifferent: (name: string) => string;
|
|
240
|
+
saved: (name: string) => string;
|
|
241
|
+
notFound: string;
|
|
242
|
+
removed: (name: string) => string;
|
|
243
|
+
helpSummary: string;
|
|
244
|
+
helpCmdList: string;
|
|
245
|
+
helpCmdListDesc: string;
|
|
246
|
+
helpCmdAdd: (templates: string) => string;
|
|
247
|
+
helpCmdAddDesc: string;
|
|
248
|
+
helpCmdRm: string;
|
|
249
|
+
helpCmdRmDesc: string;
|
|
250
|
+
}
|
|
251
|
+
export interface LaterMessages {
|
|
252
|
+
serviceNotEnabled: string;
|
|
253
|
+
bindAndTempMutuallyExclusive: string;
|
|
254
|
+
noSession: string;
|
|
255
|
+
noSessionHint: string;
|
|
256
|
+
noSessionExampleNew: string;
|
|
257
|
+
noSessionExampleUse: string;
|
|
258
|
+
slashMessageRejected: string;
|
|
259
|
+
slashMessageHint: string;
|
|
260
|
+
slashMessageExample: string;
|
|
261
|
+
cancelSuccess: (id: string) => string;
|
|
262
|
+
cancelNotFound: (id: string) => string;
|
|
263
|
+
cancelNotFoundHint: string;
|
|
264
|
+
missingMessage: string;
|
|
265
|
+
tooSoon: string;
|
|
266
|
+
outOfRange: string;
|
|
267
|
+
pastTodayTime: (value: string) => string;
|
|
268
|
+
unrecognizedTime: string;
|
|
269
|
+
unrecognizedTimeFormats: string;
|
|
270
|
+
unrecognizedTimeExample1: string;
|
|
271
|
+
unrecognizedTimeExample2: string;
|
|
272
|
+
unrecognizedTimeExample3: string;
|
|
273
|
+
unrecognizedTimeExample4: string;
|
|
274
|
+
helpSummary: string;
|
|
275
|
+
helpCmdCreate: string;
|
|
276
|
+
helpCmdCreateDesc: string;
|
|
277
|
+
helpCmdBind: string;
|
|
278
|
+
helpCmdBindDesc: string;
|
|
279
|
+
helpCmdTemp: string;
|
|
280
|
+
helpCmdTempDesc: string;
|
|
281
|
+
helpCmdList: string;
|
|
282
|
+
helpCmdListDesc: string;
|
|
283
|
+
helpCmdCancel: string;
|
|
284
|
+
helpCmdCancelDesc: string;
|
|
285
|
+
helpExample1: string;
|
|
286
|
+
helpExample2: string;
|
|
287
|
+
helpExample3: string;
|
|
288
|
+
helpExample4: string;
|
|
289
|
+
helpExample5: string;
|
|
290
|
+
helpNote1: string;
|
|
291
|
+
helpNote2: string;
|
|
292
|
+
helpNote3: string;
|
|
293
|
+
helpNote4: string;
|
|
294
|
+
helpNote5: string;
|
|
295
|
+
helpNote6: string;
|
|
296
|
+
helpNote7: string;
|
|
297
|
+
}
|
|
298
|
+
export interface ScheduledRenderMessages {
|
|
299
|
+
tempSession: (workspace: string, agent: string) => string;
|
|
300
|
+
boundSession: (displaySession: string) => string;
|
|
301
|
+
helpUsage: string;
|
|
302
|
+
helpCreate: string;
|
|
303
|
+
helpCreateEx1: string;
|
|
304
|
+
helpCreateEx2: string;
|
|
305
|
+
helpCreateEx3: string;
|
|
306
|
+
helpCreateEx4: string;
|
|
307
|
+
helpView: string;
|
|
308
|
+
helpViewCmd: string;
|
|
309
|
+
helpCancel: string;
|
|
310
|
+
helpCancelCmd: string;
|
|
311
|
+
helpNotes: string;
|
|
312
|
+
helpNote1: string;
|
|
313
|
+
helpNote2: string;
|
|
314
|
+
helpNote3: string;
|
|
315
|
+
helpNote4: string;
|
|
316
|
+
helpNote5: string;
|
|
317
|
+
helpNote6: string;
|
|
318
|
+
helpNote7: string;
|
|
319
|
+
unsupportedChannel: string;
|
|
320
|
+
unsupportedChannelReason: string;
|
|
321
|
+
unsupportedChannelHint: string;
|
|
322
|
+
taskCreated: (id: string) => string;
|
|
323
|
+
taskExecuteAt: (datetime: string) => string;
|
|
324
|
+
taskContent: (preview: string) => string;
|
|
325
|
+
listEmpty: string;
|
|
326
|
+
listHeader: string;
|
|
327
|
+
weekdaySun: string;
|
|
328
|
+
weekdayMon: string;
|
|
329
|
+
weekdayTue: string;
|
|
330
|
+
weekdayWed: string;
|
|
331
|
+
weekdayThu: string;
|
|
332
|
+
weekdayFri: string;
|
|
333
|
+
weekdaySat: string;
|
|
334
|
+
}
|
|
335
|
+
export interface OrchestrationMessages {
|
|
336
|
+
noCurrentSession: string;
|
|
337
|
+
serviceUnavailable: string;
|
|
338
|
+
taskNotFound: string;
|
|
339
|
+
groupNotFound: string;
|
|
340
|
+
delegateSuccessCreated: (taskId: string) => string;
|
|
341
|
+
delegateSuccessWorker: (workerSession: string) => string;
|
|
342
|
+
groupCreatedId: (groupId: string) => string;
|
|
343
|
+
groupCreatedTitle: (title: string) => string;
|
|
344
|
+
groupListEmpty: string;
|
|
345
|
+
groupListHeader: string;
|
|
346
|
+
groupSummaryId: (groupId: string) => string;
|
|
347
|
+
groupSummaryTitle: (title: string) => string;
|
|
348
|
+
groupSummaryCoordinator: (coordinatorSession: string) => string;
|
|
349
|
+
groupSummaryTotal: (count: number) => string;
|
|
350
|
+
groupSummaryPending: (count: number) => string;
|
|
351
|
+
groupSummaryRunning: (count: number) => string;
|
|
352
|
+
groupSummaryCompleted: (count: number) => string;
|
|
353
|
+
groupSummaryFailed: (count: number) => string;
|
|
354
|
+
groupSummaryCancelled: (count: number) => string;
|
|
355
|
+
groupSummaryTerminal: (isTerminal: boolean) => string;
|
|
356
|
+
groupSummaryTerminalYes: string;
|
|
357
|
+
groupSummaryTerminalNo: string;
|
|
358
|
+
groupSummaryInjectionPending: (pending: boolean) => string;
|
|
359
|
+
groupSummaryInjectionAppliedAt: (time: string) => string;
|
|
360
|
+
groupSummaryLastInjectionError: (error: string) => string;
|
|
361
|
+
groupSummaryMembersHeader: string;
|
|
362
|
+
groupCancelSuccessId: (groupId: string) => string;
|
|
363
|
+
groupCancelSuccessCancelledCount: (count: number) => string;
|
|
364
|
+
groupCancelSuccessSkippedCount: (count: number) => string;
|
|
365
|
+
taskListEmpty: string;
|
|
366
|
+
taskListHeader: string;
|
|
367
|
+
taskSummaryId: (taskId: string) => string;
|
|
368
|
+
taskSummaryStatus: (status: string) => string;
|
|
369
|
+
taskSummaryCoordinator: (coordinatorSession: string) => string;
|
|
370
|
+
taskSummaryWorker: (workerSession: string) => string;
|
|
371
|
+
taskSummaryWorkerUnassigned: string;
|
|
372
|
+
taskSummaryTargetAgent: (agent: string) => string;
|
|
373
|
+
taskSummaryRole: (role: string) => string;
|
|
374
|
+
taskSummaryGroup: (groupId: string) => string;
|
|
375
|
+
taskSummarySource: (sourceKind: string, sourceHandle: string, roleSuffix: string) => string;
|
|
376
|
+
taskSummaryTask: (task: string) => string;
|
|
377
|
+
taskSummarySummary: (summary: string) => string;
|
|
378
|
+
taskSummaryLatestProgress: (progress: string) => string;
|
|
379
|
+
taskSummaryResult: (result: string) => string;
|
|
380
|
+
taskSummaryTimelineHeader: string;
|
|
381
|
+
taskCancelAlreadyDone: (taskId: string) => string;
|
|
382
|
+
taskCancelRequested: (taskId: string) => string;
|
|
383
|
+
taskCancelled: (taskId: string) => string;
|
|
384
|
+
taskCurrentStatus: (status: string) => string;
|
|
385
|
+
taskApproved: (taskId: string) => string;
|
|
386
|
+
taskRejected: (taskId: string) => string;
|
|
387
|
+
taskConfirmationUnavailable: (taskId: string) => string;
|
|
388
|
+
tasksCleanEmpty: string;
|
|
389
|
+
tasksCleanRemovedTasks: (count: number) => string;
|
|
390
|
+
tasksCleanRemovedBindings: (count: number) => string;
|
|
391
|
+
taskListItemGroup: (groupId: string) => string;
|
|
392
|
+
taskListItemSource: (sourceKind: string, sourceHandle: string, roleSuffix: string) => string;
|
|
393
|
+
taskListItemNoticePending: string;
|
|
394
|
+
taskListItemInjectionPending: string;
|
|
395
|
+
taskListItemCancelling: string;
|
|
396
|
+
groupListItemInjectionPending: string;
|
|
397
|
+
groupListItemTotal: (count: number) => string;
|
|
398
|
+
groupListItemPending: (count: number) => string;
|
|
399
|
+
groupListItemRunning: (count: number) => string;
|
|
400
|
+
groupListItemCompleted: (count: number) => string;
|
|
401
|
+
groupListItemFailed: (count: number) => string;
|
|
402
|
+
groupListItemCancelled: (count: number) => string;
|
|
403
|
+
truncatedResult: (taskId: string) => string;
|
|
404
|
+
nextActionNoMembers: string;
|
|
405
|
+
nextActionMixed: string;
|
|
406
|
+
nextActionAllFailed: string;
|
|
407
|
+
nextActionOtherOnly: string;
|
|
408
|
+
nextActionMostlySuccess: string;
|
|
409
|
+
nextActionAllSuccess: string;
|
|
410
|
+
helpSummary: string;
|
|
411
|
+
helpCmdDg: string;
|
|
412
|
+
helpCmdDgDesc: string;
|
|
413
|
+
helpCmdDelegate: string;
|
|
414
|
+
helpCmdDelegateDesc: string;
|
|
415
|
+
helpCmdDelegateRole: string;
|
|
416
|
+
helpCmdDelegateRoleDesc: string;
|
|
417
|
+
helpCmdDelegateGroup: string;
|
|
418
|
+
helpCmdDelegateGroupDesc: string;
|
|
419
|
+
helpCmdGroupNew: string;
|
|
420
|
+
helpCmdGroupNewDesc: string;
|
|
421
|
+
helpCmdGroupGet: string;
|
|
422
|
+
helpCmdGroupGetDesc: string;
|
|
423
|
+
helpCmdGroupAdd: string;
|
|
424
|
+
helpCmdGroupAddDesc: string;
|
|
425
|
+
helpCmdGroupAddRole: string;
|
|
426
|
+
helpCmdGroupAddRoleDesc: string;
|
|
427
|
+
helpCmdGroupCancel: string;
|
|
428
|
+
helpCmdGroupCancelDesc: string;
|
|
429
|
+
helpCmdGroups: string;
|
|
430
|
+
helpCmdGroupsDesc: string;
|
|
431
|
+
helpCmdTasks: string;
|
|
432
|
+
helpCmdTasksDesc: string;
|
|
433
|
+
helpCmdTasksStatus: string;
|
|
434
|
+
helpCmdTasksStatusDesc: string;
|
|
435
|
+
helpCmdTasksStuck: string;
|
|
436
|
+
helpCmdTasksStuckDesc: string;
|
|
437
|
+
helpCmdTasksClean: string;
|
|
438
|
+
helpCmdTasksCleanDesc: string;
|
|
439
|
+
helpCmdTaskGet: string;
|
|
440
|
+
helpCmdTaskGetDesc: string;
|
|
441
|
+
helpCmdTaskApprove: string;
|
|
442
|
+
helpCmdTaskApproveDesc: string;
|
|
443
|
+
helpCmdTaskReject: string;
|
|
444
|
+
helpCmdTaskRejectDesc: string;
|
|
445
|
+
helpCmdTaskCancel: string;
|
|
446
|
+
helpCmdTaskCancelDesc: string;
|
|
447
|
+
helpExample1: string;
|
|
448
|
+
helpExample2: string;
|
|
449
|
+
helpExample3: string;
|
|
450
|
+
helpExample4: string;
|
|
451
|
+
helpExample5: string;
|
|
452
|
+
helpExample6: string;
|
|
453
|
+
helpExample7: string;
|
|
454
|
+
helpExample8: string;
|
|
455
|
+
helpExample9: string;
|
|
456
|
+
helpExample10: string;
|
|
457
|
+
}
|
|
458
|
+
export interface CoordinatorPromptMessages {
|
|
459
|
+
pendingResultsHeader: string;
|
|
460
|
+
humanReplyBindingHeader: string;
|
|
461
|
+
reopenedOutsideSnapshotLabel: string;
|
|
462
|
+
activePackageAwaitingReply: string;
|
|
463
|
+
packageNotDelivered: string;
|
|
464
|
+
activePackageNotClosed: string;
|
|
465
|
+
recentHumanPackageLabel: string;
|
|
466
|
+
userMessageLabel: string;
|
|
467
|
+
}
|
|
468
|
+
export interface WorkerPromptMessages {
|
|
469
|
+
taskHeader: string;
|
|
470
|
+
taskIdLabel: (taskId: string) => string;
|
|
471
|
+
taskWorkerSessionLabel: (workerSession: string) => string;
|
|
472
|
+
taskRoleLabel: (role: string) => string;
|
|
473
|
+
taskInstruction: string;
|
|
474
|
+
taskBlockerInstruction: string;
|
|
475
|
+
taskProgressInstruction: string;
|
|
476
|
+
taskProgressNote: string;
|
|
477
|
+
taskContentLabel: (task: string) => string;
|
|
478
|
+
answerHeader: string;
|
|
479
|
+
answerInstruction: string;
|
|
480
|
+
answerLabel: string;
|
|
481
|
+
}
|
|
482
|
+
export interface ConfigMessages {
|
|
483
|
+
helpSummary: string;
|
|
484
|
+
helpCmdShow: string;
|
|
485
|
+
helpCmdShowDesc: string;
|
|
486
|
+
helpCmdSet: string;
|
|
487
|
+
helpCmdSetDesc: string;
|
|
488
|
+
showSupportedHeader: string;
|
|
489
|
+
showLegacyHeader: string;
|
|
490
|
+
showExamplesHeader: string;
|
|
491
|
+
legacyWechatReplyMode: string;
|
|
492
|
+
legacyChannelType: string;
|
|
493
|
+
legacyChannels: string;
|
|
494
|
+
noWritableConfig: string;
|
|
495
|
+
updated: (path: string, value: string) => string;
|
|
496
|
+
languageInvalid: string;
|
|
497
|
+
transportTypeInvalid: string;
|
|
498
|
+
transportCommandEmpty: string;
|
|
499
|
+
transportPermissionModeInvalid: string;
|
|
500
|
+
transportNonInteractiveInvalid: string;
|
|
501
|
+
transportPermissionPolicyEmpty: string;
|
|
502
|
+
loggingLevelInvalid: string;
|
|
503
|
+
mustBePositiveNumber: (path: string) => string;
|
|
504
|
+
channelTypeDisabled: string;
|
|
505
|
+
channelReplyModeInvalid: string;
|
|
506
|
+
wechatReplyModeInvalid: string;
|
|
507
|
+
wechatReplyModeMapped: (value: string) => string;
|
|
508
|
+
agentNotFound: (name: string) => string;
|
|
509
|
+
fieldEmpty: (path: string) => string;
|
|
510
|
+
workspaceNotFound: (name: string) => string;
|
|
511
|
+
pathNotSupported: (path: string) => string;
|
|
512
|
+
}
|
|
513
|
+
export interface PermissionMessages {
|
|
514
|
+
helpSummary: string;
|
|
515
|
+
helpCmdShow: string;
|
|
516
|
+
helpCmdShowDesc: string;
|
|
517
|
+
helpCmdSet: string;
|
|
518
|
+
helpCmdSetDesc: string;
|
|
519
|
+
helpCmdAuto: string;
|
|
520
|
+
helpCmdAutoDesc: string;
|
|
521
|
+
helpCmdAutoSet: string;
|
|
522
|
+
helpCmdAutoSetDesc: string;
|
|
523
|
+
noWritableConfig: string;
|
|
524
|
+
statusTitleCurrent: string;
|
|
525
|
+
statusTitleAutoStatus: string;
|
|
526
|
+
statusTitleModeUpdated: string;
|
|
527
|
+
statusTitleAutoUpdated: string;
|
|
528
|
+
}
|
|
529
|
+
export interface HelpMessages {
|
|
530
|
+
invalidCommandPrefix: string;
|
|
531
|
+
invalidCommandFallbackHeader: string;
|
|
532
|
+
invalidCommandFallbackFormat: string;
|
|
533
|
+
invalidCommandFallbackExample: string;
|
|
534
|
+
indexCommonHeader: string;
|
|
535
|
+
indexEntryShortcut: string;
|
|
536
|
+
indexEntryNative: string;
|
|
537
|
+
indexEntryUse: string;
|
|
538
|
+
indexEntryStatus: string;
|
|
539
|
+
indexTopicsHeader: string;
|
|
540
|
+
indexViewTopicHeader: string;
|
|
541
|
+
indexViewTopicExample: string;
|
|
542
|
+
topicHeader: (name: string) => string;
|
|
543
|
+
topicSummary: (summary: string) => string;
|
|
544
|
+
topicAliases: (aliases: string) => string;
|
|
545
|
+
topicCommandsHeader: string;
|
|
546
|
+
topicExamplesHeader: string;
|
|
547
|
+
topicNotesHeader: string;
|
|
548
|
+
unknownTopicHeader: (name: string) => string;
|
|
549
|
+
unknownTopicAvailableHeader: string;
|
|
550
|
+
}
|
|
551
|
+
export interface HintsMessages {
|
|
552
|
+
helpDescription: string;
|
|
553
|
+
}
|
|
554
|
+
export interface RouterMessages {
|
|
555
|
+
depMissing: (pkg: string) => string;
|
|
556
|
+
depInstallVerifying: string;
|
|
557
|
+
agentHeartbeat: (agent: string, elapsed: number) => string;
|
|
558
|
+
agentSpawning: (agent: string) => string;
|
|
559
|
+
agentInitializing: (agent: string, elapsed: number) => string;
|
|
560
|
+
acpxNoteElapsed: (note: string, elapsed: number) => string;
|
|
561
|
+
}
|
|
562
|
+
export interface RenderMessages {
|
|
563
|
+
taskProgress: (taskId: string, targetAgent: string, summary: string) => string;
|
|
564
|
+
taskHeartbeat: (taskId: string, minutes: number) => string;
|
|
565
|
+
}
|
|
566
|
+
export interface AcpxNoteMessages {
|
|
567
|
+
spawnBuiltIn: (name: string) => string;
|
|
568
|
+
spawnAgent: string;
|
|
569
|
+
downloading: string;
|
|
570
|
+
installing: string;
|
|
571
|
+
initializing: string;
|
|
572
|
+
fallback: (line: string) => string;
|
|
573
|
+
}
|
|
574
|
+
export interface CliMessages {
|
|
575
|
+
helpLines: string[];
|
|
576
|
+
alreadyRunning: string;
|
|
577
|
+
started: string;
|
|
578
|
+
startFailed: (detail: string) => string;
|
|
579
|
+
running: string;
|
|
580
|
+
notRunning: string;
|
|
581
|
+
indeterminate: string;
|
|
582
|
+
stopped: string;
|
|
583
|
+
restarting: string;
|
|
584
|
+
restartNotRunning: string;
|
|
585
|
+
restartFailed: (detail: string) => string;
|
|
586
|
+
restartIndeterminate: string;
|
|
587
|
+
restartIndeterminateHint: string;
|
|
588
|
+
checkAppLog: (path: string) => string;
|
|
589
|
+
checkStderrLog: (path: string) => string;
|
|
590
|
+
workspaceEmpty: string;
|
|
591
|
+
workspaceListHeader: string;
|
|
592
|
+
workspaceNameEmpty: string;
|
|
593
|
+
workspaceNameSanitized: (sourceLabel: string, original: string, saved: string) => string;
|
|
594
|
+
workspaceSourceLabelDir: string;
|
|
595
|
+
workspaceSourceLabelName: string;
|
|
596
|
+
workspaceAlreadyExists: (name: string, cwd: string) => string;
|
|
597
|
+
workspaceConflictPath: (name: string, cwd: string) => string;
|
|
598
|
+
workspaceConflictHint: (name: string) => string;
|
|
599
|
+
workspaceSaved: (name: string, cwd: string) => string;
|
|
600
|
+
workspaceNotFound: (name: string) => string;
|
|
601
|
+
workspaceRemoved: (name: string) => string;
|
|
602
|
+
agentEmpty: string;
|
|
603
|
+
agentListHeader: string;
|
|
604
|
+
agentTemplatesHeader: string;
|
|
605
|
+
agentNameEmpty: string;
|
|
606
|
+
agentUnsupportedTemplate: (templates: string[]) => string;
|
|
607
|
+
agentAlreadyExists: (name: string) => string;
|
|
608
|
+
agentAlreadyExistsDifferent: (name: string) => string;
|
|
609
|
+
agentSaved: (name: string) => string;
|
|
610
|
+
agentNotFound: (name: string) => string;
|
|
611
|
+
agentRemoved: (name: string) => string;
|
|
612
|
+
laterIdEmpty: string;
|
|
613
|
+
laterNotFound: (id: string) => string;
|
|
614
|
+
laterNotFoundHint: string;
|
|
615
|
+
laterCancelled: (id: string) => string;
|
|
616
|
+
}
|
|
617
|
+
export interface CliUpdateMessages {
|
|
618
|
+
updatesAvailable: string;
|
|
619
|
+
unavailableAborted: (names: string) => string;
|
|
620
|
+
nothingToUpdate: string;
|
|
621
|
+
selfUpdateNeedsConfirmNonInteractive: (name: string) => string;
|
|
622
|
+
renameNeedsConfirmNonInteractive: (successor: string) => string;
|
|
623
|
+
selfUpdateConfirmPrompt: (name: string) => string;
|
|
624
|
+
renameConfirmPrompt: (successor: string) => string;
|
|
625
|
+
selfUpdateCancelled: (name: string) => string;
|
|
626
|
+
renameCancelled: (successor: string) => string;
|
|
627
|
+
selfUpdated: (name: string, version: string) => string;
|
|
628
|
+
renameMigrated: (successor: string, version: string) => string;
|
|
629
|
+
pluginUpdated: (name: string, version: string) => string;
|
|
630
|
+
pluginRollbackFailed: (name: string, version: string, error: string) => string;
|
|
631
|
+
pluginNotInConfig: (name: string) => string;
|
|
632
|
+
updateFailed: (name: string, error: string) => string;
|
|
633
|
+
targetNotFound: (name: string) => string;
|
|
634
|
+
targetVersionUnknown: (name: string) => string;
|
|
635
|
+
targetNotPinned: (name: string) => string;
|
|
636
|
+
multiTargetNonInteractive: string;
|
|
637
|
+
selectionPrompt: string;
|
|
638
|
+
selectionInvalid: (part: string) => string;
|
|
639
|
+
formatSelf: (name: string, current: string, latest: string) => string;
|
|
640
|
+
formatRename: (successor: string, current: string, latest: string) => string;
|
|
641
|
+
formatPlugin: (name: string, current: string, latest: string) => string;
|
|
642
|
+
versionUnlocked: string;
|
|
643
|
+
versionUnknown: string;
|
|
644
|
+
}
|
|
645
|
+
export interface ChannelCliMessages {
|
|
646
|
+
noChannels: string;
|
|
647
|
+
channelListHeader: string;
|
|
648
|
+
channelNotFound: (type: string) => string;
|
|
649
|
+
channelHeader: (id: string) => string;
|
|
650
|
+
channelNoMultiAccount: (type: string) => string;
|
|
651
|
+
channelAccountNotFound: (type: string, accountId: string) => string;
|
|
652
|
+
channelAccountHeader: (id: string, accountId: string) => string;
|
|
653
|
+
missingRequiredFlags: (flags: string) => string;
|
|
654
|
+
channelAlreadyExistsSame: (type: string) => string;
|
|
655
|
+
channelAlreadyExistsDifferent: (type: string) => string;
|
|
656
|
+
channelAdded: (type: string) => string;
|
|
657
|
+
cannotRemoveLastEnabled: string;
|
|
658
|
+
channelRemoved: (id: string) => string;
|
|
659
|
+
cannotDisableLastEnabled: string;
|
|
660
|
+
channelEnabledToggled: (id: string, enabled: boolean) => string;
|
|
661
|
+
channelAccountAlreadyExists: (type: string, accountId: string) => string;
|
|
662
|
+
channelAccountAdded: (type: string, accountId: string) => string;
|
|
663
|
+
channelReEnabled: (type: string) => string;
|
|
664
|
+
channelAccountRemoveBlockedLast: (accountId: string, type: string) => string;
|
|
665
|
+
channelAccountRemovedWithChannel: (type: string, accountId: string) => string;
|
|
666
|
+
channelAccountRemoveBlockedAllDisabled: (type: string, accountId: string, remainingIds: string) => string;
|
|
667
|
+
channelAccountDefaultSwitched: (newDefault: string) => string;
|
|
668
|
+
channelAccountRemoved: (type: string, accountId: string) => string;
|
|
669
|
+
channelAccountIncomplete: (accountId: string, issues: string) => string;
|
|
670
|
+
channelAccountCannotDisableLast: (type: string) => string;
|
|
671
|
+
channelAccountEnabledToggled: (type: string, accountId: string, enabled: boolean) => string;
|
|
672
|
+
unknownChannelType: (type: string) => string;
|
|
673
|
+
supportedBuiltinChannels: (types: string) => string;
|
|
674
|
+
savedNoRestart: string;
|
|
675
|
+
savedDaemonIndeterminate: string;
|
|
676
|
+
savedDaemonRunning: string;
|
|
677
|
+
restartPrompt: string;
|
|
678
|
+
savedRestartPending: string;
|
|
679
|
+
savedDaemonStopped: string;
|
|
680
|
+
savedRestartFailed: (message: string) => string;
|
|
681
|
+
checkLog: (path: string) => string;
|
|
682
|
+
orRunLater: string;
|
|
683
|
+
}
|
|
684
|
+
export interface PluginCliMessages {
|
|
685
|
+
noPlugins: string;
|
|
686
|
+
pluginListHeader: string;
|
|
687
|
+
unrecognizedArgs: (args: string) => string;
|
|
688
|
+
pluginInstallFailed: (packageSpec: string, error: string) => string;
|
|
689
|
+
pluginValidateFailed: (recordedName: string, error: string) => string;
|
|
690
|
+
pluginInstalled: (recordedName: string) => string;
|
|
691
|
+
providesChannels: (channels: string) => string;
|
|
692
|
+
pluginNotFound: (packageName: string) => string;
|
|
693
|
+
pluginUninstallFailed: (packageName: string, error: string) => string;
|
|
694
|
+
pluginRemoved: (packageName: string) => string;
|
|
695
|
+
pluginUpdateFailed: (name: string, error: string) => string;
|
|
696
|
+
pluginUpdateValidateFailed: (name: string, message: string) => string;
|
|
697
|
+
pluginRolledBack: (version: string) => string;
|
|
698
|
+
pluginRollbackFailed: (name: string, version: string, message: string) => string;
|
|
699
|
+
pluginRollbackUnavailable: (name: string) => string;
|
|
700
|
+
pluginUpdated: (name: string) => string;
|
|
701
|
+
pluginEnabledToggled: (packageName: string, enabled: boolean) => string;
|
|
702
|
+
dependencyGuardBlocked: (ids: string) => string;
|
|
703
|
+
dependencyGuardBlockedUnknown: (pluginName: string, ids: string) => string;
|
|
704
|
+
pluginDoctorOk: string;
|
|
705
|
+
noKnownPlugins: string;
|
|
706
|
+
knownPluginsHeader: string;
|
|
707
|
+
knownPluginsInstallLabel: string;
|
|
708
|
+
knownPluginsInstallCmd: string;
|
|
709
|
+
cannotResolveLocalPluginName: (installSpec: string) => string;
|
|
710
|
+
savedNoRestart: string;
|
|
711
|
+
savedDaemonIndeterminate: string;
|
|
712
|
+
savedDaemonRunning: string;
|
|
713
|
+
restartPrompt: string;
|
|
714
|
+
savedRestartPending: string;
|
|
715
|
+
savedDaemonStopped: string;
|
|
716
|
+
savedRestartFailed: (message: string) => string;
|
|
717
|
+
checkLog: (path: string) => string;
|
|
718
|
+
orRunLater: string;
|
|
719
|
+
pluginNoDefaultExport: (packageName: string) => string;
|
|
720
|
+
pluginNameMismatch: (packageName: string, name: string) => string;
|
|
721
|
+
pluginChannelsNotArray: (packageName: string) => string;
|
|
722
|
+
pluginIllegalChannelType: (packageName: string, type: string) => string;
|
|
723
|
+
pluginIllegalChannelTypeNoType: (packageName: string) => string;
|
|
724
|
+
pluginDuplicateChannelType: (packageName: string, type: string) => string;
|
|
725
|
+
pluginMissingFactory: (packageName: string, type: string) => string;
|
|
726
|
+
pluginInvalidCliProvider: (packageName: string, type: string) => string;
|
|
727
|
+
compatMissingApiVersion: (packageName: string) => string;
|
|
728
|
+
compatUnsupportedApiVersion: (packageName: string, apiVersion: number, supported: string) => string;
|
|
729
|
+
compatInvalidMinVersion: (packageName: string, field: string) => string;
|
|
730
|
+
compatInvalidMinVersionDetail: (packageName: string, field: string, detail: string) => string;
|
|
731
|
+
compatMinVersionNotSatisfied: (packageName: string, minVersion: string, currentVersion: string) => string;
|
|
732
|
+
compatInvalidCompatibleVersions: (packageName: string, field: string) => string;
|
|
733
|
+
compatInvalidCompatibleVersionsDetail: (packageName: string, field: string, detail: string) => string;
|
|
734
|
+
compatCompatibleVersionsNotSatisfied: (packageName: string, requirement: string, currentVersion: string) => string;
|
|
735
|
+
}
|
|
736
|
+
export interface LoginMessages {
|
|
737
|
+
qrReady: string;
|
|
738
|
+
qrScanToConnect: string;
|
|
739
|
+
noActiveLogin: string;
|
|
740
|
+
qrExpiredBeforeStart: string;
|
|
741
|
+
loginTimeoutTooManyExpiries: string;
|
|
742
|
+
newQrGenerated: string;
|
|
743
|
+
qrBrowserFallback: string;
|
|
744
|
+
qrLoadFailed: string;
|
|
745
|
+
qrRefreshFailed: (detail: string) => string;
|
|
746
|
+
scanned: string;
|
|
747
|
+
qrExpiringRefresh: (current: number, max: number) => string;
|
|
748
|
+
verifyCodeMismatch: string;
|
|
749
|
+
verifyCodePrompt: string;
|
|
750
|
+
verifyCodeNoTty: string;
|
|
751
|
+
verifyCodeBlocked: string;
|
|
752
|
+
verifyCodeBlockedStop: string;
|
|
753
|
+
loginMissingBotId: string;
|
|
754
|
+
loginSuccess: string;
|
|
755
|
+
loginTimeout: string;
|
|
756
|
+
startingLogin: string;
|
|
757
|
+
scanInstruction: string;
|
|
758
|
+
qrLinkFallback: (url: string) => string;
|
|
759
|
+
waitingForScan: string;
|
|
760
|
+
loginSuccessLine: string;
|
|
761
|
+
noAccountsLoggedIn: string;
|
|
762
|
+
logoutSuccess: string;
|
|
763
|
+
noAccountsError: string;
|
|
764
|
+
accountNotConfigured: (accountId: string) => string;
|
|
765
|
+
}
|
|
766
|
+
export interface WeixinMessages {
|
|
767
|
+
echoTimingHeader: string;
|
|
768
|
+
echoTimingEventTime: (iso: string) => string;
|
|
769
|
+
echoTimingPlatformDelay: (delay: string) => string;
|
|
770
|
+
echoTimingPluginDelay: (ms: number) => string;
|
|
771
|
+
debugEnabled: string;
|
|
772
|
+
debugDisabled: string;
|
|
773
|
+
sessionCleared: string;
|
|
774
|
+
noAccountsLoggedIn: string;
|
|
775
|
+
logoutSuccess: string;
|
|
776
|
+
commandFailed: (detail: string) => string;
|
|
777
|
+
}
|
|
778
|
+
export interface MigrateMessages {
|
|
779
|
+
daemonRunning: (pid: number, legacy: string, primary: string) => string;
|
|
780
|
+
copied: (legacy: string, primary: string) => string;
|
|
781
|
+
failed: (legacy: string, primary: string, detail: string) => string;
|
|
782
|
+
supplementFailed: (from: string, to: string, detail: string) => string;
|
|
783
|
+
supplemented: (files: string, primary: string) => string;
|
|
784
|
+
}
|
|
785
|
+
export interface MiscMessages {
|
|
786
|
+
emptyMessage: string;
|
|
787
|
+
defaultHomeWorkspaceDescription: string;
|
|
788
|
+
pluginChannelFeishu: string;
|
|
789
|
+
pluginChannelYuanbao: string;
|
|
790
|
+
pluginChannelInstallHint: (channelType: string, packageName: string) => string;
|
|
791
|
+
orchestrationSuggestion1: string;
|
|
792
|
+
orchestrationSuggestion2: string;
|
|
793
|
+
orchestrationSuggestion3: string;
|
|
794
|
+
startupWaitLine: (frame: string, elapsed: number, timeout: number) => string;
|
|
795
|
+
startupWaitLineFirstBoot: (frame: string, elapsed: number, timeout: number) => string;
|
|
796
|
+
workspaceNotRegistered: (workspace: string) => string;
|
|
797
|
+
agentNotRegistered: (agent: string) => string;
|
|
798
|
+
quotaHeadsUp: string;
|
|
799
|
+
quotaOverflowSummary: (count: number) => string;
|
|
800
|
+
finalHeadsUp: (total: number, sentSoFar: number, remaining: number) => string;
|
|
801
|
+
quotedMessagePrefix: (parts: string) => string;
|
|
802
|
+
scheduledTaskFailed: (message: string) => string;
|
|
803
|
+
orchestrationTaskCompleted: (taskId: string, workerSession: string, result: string) => string;
|
|
804
|
+
orchestrationTaskFailed: (taskId: string, workerSession: string, reason: string) => string;
|
|
805
|
+
workerUnassigned: string;
|
|
806
|
+
bgSessionDone: (display: string) => string;
|
|
807
|
+
bgSessionError: (display: string) => string;
|
|
808
|
+
executionError: (message: string) => string;
|
|
809
|
+
onboardingFirstUsePrompt: (workspaceName: string) => string;
|
|
810
|
+
onboardingSelectAgent: string;
|
|
811
|
+
onboardingEnterChoice: string;
|
|
812
|
+
onboardingNoValidAgent: string;
|
|
813
|
+
onboardingCreatedWorkspace: (workspaceName: string, alias: string) => string;
|
|
814
|
+
humanQuestionQueued: (count: number) => string;
|
|
815
|
+
humanQuestionResumed: (taskId: string, summary: string) => string;
|
|
816
|
+
humanQuestionUnresolved: (taskId: string, summary: string) => string;
|
|
817
|
+
humanQuestionQueuedLine: (count: number) => string;
|
|
818
|
+
delegateQPackageInstr1: string;
|
|
819
|
+
delegateQPackageInstr2: string;
|
|
820
|
+
delegateQPackageInstr3: string;
|
|
821
|
+
commandAccessDeniedSuffix: string;
|
|
822
|
+
commandAccessDeniedHint: string;
|
|
823
|
+
commandLabelThisMessage: string;
|
|
824
|
+
sessionResetNoCurrentSession: string;
|
|
825
|
+
sessionResetFailed: (alias: string) => string;
|
|
826
|
+
sessionResetSuccess: (alias: string) => string;
|
|
827
|
+
scheduledDispatchNoticeBound: (taskId: string, sessionDisplay: string, preview: string) => string;
|
|
828
|
+
scheduledDispatchNoticeTemp: (taskId: string, workspace: string, agent: string, preview: string) => string;
|
|
829
|
+
weixinNoCredentials: string;
|
|
830
|
+
weixinMultipleAccounts: (accountId: string) => string;
|
|
831
|
+
weixinBotStarting: (accountId: string) => string;
|
|
832
|
+
}
|
|
833
|
+
export interface Messages {
|
|
834
|
+
common: CommonMessages;
|
|
835
|
+
session: SessionMessages;
|
|
836
|
+
nativeSession: NativeSessionMessages;
|
|
837
|
+
recovery: RecoveryMessages;
|
|
838
|
+
shortcut: ShortcutMessages;
|
|
839
|
+
workspace: WorkspaceMessages;
|
|
840
|
+
agent: AgentMessages;
|
|
841
|
+
later: LaterMessages;
|
|
842
|
+
scheduledRender: ScheduledRenderMessages;
|
|
843
|
+
orchestration: OrchestrationMessages;
|
|
844
|
+
coordinatorPrompt: CoordinatorPromptMessages;
|
|
845
|
+
workerPrompt: WorkerPromptMessages;
|
|
846
|
+
config: ConfigMessages;
|
|
847
|
+
permission: PermissionMessages;
|
|
848
|
+
help: HelpMessages;
|
|
849
|
+
hints: HintsMessages;
|
|
850
|
+
router: RouterMessages;
|
|
851
|
+
acpxNote: AcpxNoteMessages;
|
|
852
|
+
render: RenderMessages;
|
|
853
|
+
cli: CliMessages;
|
|
854
|
+
cliUpdate: CliUpdateMessages;
|
|
855
|
+
channelCli: ChannelCliMessages;
|
|
856
|
+
pluginCli: PluginCliMessages;
|
|
857
|
+
login: LoginMessages;
|
|
858
|
+
weixin: WeixinMessages;
|
|
859
|
+
migrate: MigrateMessages;
|
|
860
|
+
misc: MiscMessages;
|
|
861
|
+
}
|