@ngandu/ulicode 0.0.6
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/CHANGELOG.md +1081 -0
- package/README.md +312 -0
- package/dist/agents/definitions/ask.agent.md +53 -0
- package/dist/agents/definitions/audit-tests.agent.md +138 -0
- package/dist/agents/definitions/build.agent.md +111 -0
- package/dist/agents/definitions/execute.agent.md +99 -0
- package/dist/agents/definitions/explore.agent.md +57 -0
- package/dist/agents/definitions/fast.agent.md +48 -0
- package/dist/agents/definitions/plan-mode.agent.md +102 -0
- package/dist/agents/definitions/planner.agent.md +59 -0
- package/dist/chunk-3YYDXNUH.js +854 -0
- package/dist/chunk-3YYDXNUH.js.map +1 -0
- package/dist/chunk-IEV2IT3O.cjs +873 -0
- package/dist/chunk-IEV2IT3O.cjs.map +1 -0
- package/dist/chunk-MBWGSXBT.js +11927 -0
- package/dist/chunk-MBWGSXBT.js.map +1 -0
- package/dist/chunk-MS5RYNRK.js +137 -0
- package/dist/chunk-MS5RYNRK.js.map +1 -0
- package/dist/chunk-OXFO76JC.js +2633 -0
- package/dist/chunk-OXFO76JC.js.map +1 -0
- package/dist/chunk-PKRLG6A4.js +1756 -0
- package/dist/chunk-PKRLG6A4.js.map +1 -0
- package/dist/chunk-PUVEPQQ3.cjs +1805 -0
- package/dist/chunk-PUVEPQQ3.cjs.map +1 -0
- package/dist/chunk-R6JK3DE3.cjs +148 -0
- package/dist/chunk-R6JK3DE3.cjs.map +1 -0
- package/dist/chunk-Y3HWP75B.cjs +11974 -0
- package/dist/chunk-Y3HWP75B.cjs.map +1 -0
- package/dist/chunk-Y5PO67TG.cjs +2659 -0
- package/dist/chunk-Y5PO67TG.cjs.map +1 -0
- package/dist/cli.cjs +372 -0
- package/dist/cli.cjs.map +1 -0
- package/dist/cli.d.cts +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +370 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.cjs +16 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +165 -0
- package/dist/index.d.ts +165 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/dist/permissions-NRD36MYI.cjs +40 -0
- package/dist/permissions-NRD36MYI.cjs.map +1 -0
- package/dist/permissions-RC7CYR5H.js +3 -0
- package/dist/permissions-RC7CYR5H.js.map +1 -0
- package/dist/project-q9WpahUs.d.cts +329 -0
- package/dist/project-q9WpahUs.d.ts +329 -0
- package/dist/storage-6P53PQBL.cjs +24 -0
- package/dist/storage-6P53PQBL.cjs.map +1 -0
- package/dist/storage-QELMNBZ2.js +3 -0
- package/dist/storage-QELMNBZ2.js.map +1 -0
- package/dist/tui.cjs +76 -0
- package/dist/tui.cjs.map +1 -0
- package/dist/tui.d.cts +1013 -0
- package/dist/tui.d.ts +1013 -0
- package/dist/tui.js +3 -0
- package/dist/tui.js.map +1 -0
- package/package.json +107 -0
|
@@ -0,0 +1,329 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Type definitions for the MCP server system.
|
|
3
|
+
* Servers provide external tools via Model Context Protocol.
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* A stdio-based MCP server configuration entry.
|
|
7
|
+
* Launches a local process that communicates via stdin/stdout.
|
|
8
|
+
*/
|
|
9
|
+
interface McpStdioServerConfig {
|
|
10
|
+
/** The command to launch the MCP server process */
|
|
11
|
+
command: string;
|
|
12
|
+
/** Arguments for the command */
|
|
13
|
+
args?: string[];
|
|
14
|
+
/** Environment variables to set for the server process */
|
|
15
|
+
env?: Record<string, string>;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* An HTTP-based MCP server configuration entry.
|
|
19
|
+
* Connects to a remote server via Streamable HTTP or SSE.
|
|
20
|
+
*/
|
|
21
|
+
interface McpHttpServerConfig {
|
|
22
|
+
/** The URL of the remote MCP server endpoint */
|
|
23
|
+
url: string;
|
|
24
|
+
/** Optional HTTP headers (e.g. for authentication) */
|
|
25
|
+
headers?: Record<string, string>;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* A single MCP server configuration entry.
|
|
29
|
+
* Detected by the presence of `command` (stdio) or `url` (http).
|
|
30
|
+
*/
|
|
31
|
+
type McpServerConfig = McpStdioServerConfig | McpHttpServerConfig;
|
|
32
|
+
/**
|
|
33
|
+
* An MCP server entry that was skipped during config loading.
|
|
34
|
+
*/
|
|
35
|
+
interface McpSkippedServer {
|
|
36
|
+
/** Server name (from config key) */
|
|
37
|
+
name: string;
|
|
38
|
+
/** Human-readable reason the server was skipped */
|
|
39
|
+
reason: string;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* The top-level config object from mcp.json or settings.local.json.
|
|
43
|
+
* Maps server names to their config.
|
|
44
|
+
*/
|
|
45
|
+
interface McpConfig {
|
|
46
|
+
mcpServers?: Record<string, McpServerConfig>;
|
|
47
|
+
skippedServers?: McpSkippedServer[];
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Runtime status of a connected MCP server.
|
|
51
|
+
*/
|
|
52
|
+
interface McpServerStatus {
|
|
53
|
+
/** Server name (from config key) */
|
|
54
|
+
name: string;
|
|
55
|
+
/** Whether the server is currently connected */
|
|
56
|
+
connected: boolean;
|
|
57
|
+
/** Number of tools provided by this server */
|
|
58
|
+
toolCount: number;
|
|
59
|
+
/** List of tool names provided */
|
|
60
|
+
toolNames: string[];
|
|
61
|
+
/** Transport type used by the server */
|
|
62
|
+
transport: 'stdio' | 'http';
|
|
63
|
+
/** Error message if connection failed */
|
|
64
|
+
error?: string;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* MCP manager — orchestrates MCP server connections using MCPClient directly.
|
|
69
|
+
* Created once at startup, provides tools from connected MCP servers.
|
|
70
|
+
*/
|
|
71
|
+
|
|
72
|
+
/** Public interface for the MCP manager returned by createMcpManager(). */
|
|
73
|
+
interface McpManager {
|
|
74
|
+
/** Connect to all configured MCP servers and collect their tools. */
|
|
75
|
+
init(): Promise<void>;
|
|
76
|
+
/** Disconnect all servers, reload config from disk, reconnect. */
|
|
77
|
+
reload(): Promise<void>;
|
|
78
|
+
/** Disconnect from all MCP servers and clean up. */
|
|
79
|
+
disconnect(): Promise<void>;
|
|
80
|
+
/** Get all tools from connected MCP servers (namespaced as serverName_toolName). */
|
|
81
|
+
getTools(): Record<string, any>;
|
|
82
|
+
/** Check if any MCP servers are configured (or skipped). */
|
|
83
|
+
hasServers(): boolean;
|
|
84
|
+
/** Get status of all servers. */
|
|
85
|
+
getServerStatuses(): McpServerStatus[];
|
|
86
|
+
/** Get servers that were skipped during config loading. */
|
|
87
|
+
getSkippedServers(): McpSkippedServer[];
|
|
88
|
+
/** Get config file paths for display. */
|
|
89
|
+
getConfigPaths(): {
|
|
90
|
+
project: string;
|
|
91
|
+
global: string;
|
|
92
|
+
claude: string;
|
|
93
|
+
};
|
|
94
|
+
/** Get the merged config. */
|
|
95
|
+
getConfig(): McpConfig;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* OAuth types for authentication providers
|
|
100
|
+
*/
|
|
101
|
+
interface OAuthCredentials {
|
|
102
|
+
refresh: string;
|
|
103
|
+
access: string;
|
|
104
|
+
expires: number;
|
|
105
|
+
[key: string]: unknown;
|
|
106
|
+
}
|
|
107
|
+
type OAuthProviderId = string;
|
|
108
|
+
interface OAuthAuthInfo {
|
|
109
|
+
url: string;
|
|
110
|
+
instructions?: string;
|
|
111
|
+
}
|
|
112
|
+
interface OAuthPrompt {
|
|
113
|
+
message: string;
|
|
114
|
+
placeholder?: string;
|
|
115
|
+
allowEmpty?: boolean;
|
|
116
|
+
}
|
|
117
|
+
interface OAuthLoginCallbacks {
|
|
118
|
+
onAuth: (info: OAuthAuthInfo) => void;
|
|
119
|
+
onPrompt: (prompt: OAuthPrompt) => Promise<string>;
|
|
120
|
+
onProgress?: (message: string) => void;
|
|
121
|
+
onManualCodeInput?: () => Promise<string>;
|
|
122
|
+
signal?: AbortSignal;
|
|
123
|
+
}
|
|
124
|
+
interface OAuthProviderInterface {
|
|
125
|
+
readonly id: OAuthProviderId;
|
|
126
|
+
readonly name: string;
|
|
127
|
+
/** Whether this provider uses a local callback server (vs manual code paste) */
|
|
128
|
+
readonly usesCallbackServer?: boolean;
|
|
129
|
+
/** Run the login flow, return credentials to persist */
|
|
130
|
+
login(callbacks: OAuthLoginCallbacks): Promise<OAuthCredentials>;
|
|
131
|
+
/** Refresh expired credentials, return updated credentials to persist */
|
|
132
|
+
refreshToken(credentials: OAuthCredentials): Promise<OAuthCredentials>;
|
|
133
|
+
/** Convert credentials to API key string for the provider */
|
|
134
|
+
getApiKey(credentials: OAuthCredentials): string;
|
|
135
|
+
}
|
|
136
|
+
type ApiKeyCredential = {
|
|
137
|
+
type: 'api_key';
|
|
138
|
+
name?: string;
|
|
139
|
+
key: string;
|
|
140
|
+
};
|
|
141
|
+
type OAuthCredential = {
|
|
142
|
+
type: 'oauth';
|
|
143
|
+
} & OAuthCredentials;
|
|
144
|
+
type AuthCredential = ApiKeyCredential | OAuthCredential;
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* Credential storage for API keys and OAuth tokens.
|
|
148
|
+
* Handles loading, saving, and refreshing credentials from auth.json.
|
|
149
|
+
*/
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* Credential storage backed by a JSON file.
|
|
153
|
+
*/
|
|
154
|
+
declare class AuthStorage {
|
|
155
|
+
private authPath;
|
|
156
|
+
private data;
|
|
157
|
+
constructor(authPath?: string);
|
|
158
|
+
/**
|
|
159
|
+
* Reload credentials from disk.
|
|
160
|
+
*/
|
|
161
|
+
reload(): void;
|
|
162
|
+
/**
|
|
163
|
+
* Save credentials to disk.
|
|
164
|
+
*/
|
|
165
|
+
private save;
|
|
166
|
+
/**
|
|
167
|
+
* Get credential for a provider.
|
|
168
|
+
*/
|
|
169
|
+
get(provider: string): AuthCredential | undefined;
|
|
170
|
+
/**
|
|
171
|
+
* Set credential for a provider.
|
|
172
|
+
*/
|
|
173
|
+
set(provider: string, credential: AuthCredential): void;
|
|
174
|
+
/**
|
|
175
|
+
* Remove credential for a provider.
|
|
176
|
+
*/
|
|
177
|
+
remove(provider: string): void;
|
|
178
|
+
/**
|
|
179
|
+
* List all providers with credentials.
|
|
180
|
+
*/
|
|
181
|
+
list(): string[];
|
|
182
|
+
/**
|
|
183
|
+
* Check if credentials exist for a provider.
|
|
184
|
+
*/
|
|
185
|
+
has(provider: string): boolean;
|
|
186
|
+
/**
|
|
187
|
+
* Check if logged in via OAuth for a provider.
|
|
188
|
+
*/
|
|
189
|
+
isLoggedIn(provider: string): boolean;
|
|
190
|
+
/**
|
|
191
|
+
* Login to an OAuth provider.
|
|
192
|
+
*/
|
|
193
|
+
login(providerId: OAuthProviderId, callbacks: OAuthLoginCallbacks): Promise<void>;
|
|
194
|
+
/**
|
|
195
|
+
* Logout from a provider.
|
|
196
|
+
*/
|
|
197
|
+
logout(provider: string): void;
|
|
198
|
+
/**
|
|
199
|
+
* Get API key for a provider, auto-refreshing OAuth tokens if needed.
|
|
200
|
+
*/
|
|
201
|
+
getApiKey(providerId: string): Promise<string | undefined>;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
interface HookMatcher {
|
|
205
|
+
/** Regex pattern matched against tool_name (PreToolUse/PostToolUse only). */
|
|
206
|
+
tool_name?: string;
|
|
207
|
+
}
|
|
208
|
+
interface HookDefinition {
|
|
209
|
+
/** Hook type. Only "command" supported in phase 1. */
|
|
210
|
+
type: 'command';
|
|
211
|
+
/** Shell command to execute via /bin/sh -c. */
|
|
212
|
+
command: string;
|
|
213
|
+
/** Optional matcher to filter when this hook runs. */
|
|
214
|
+
matcher?: HookMatcher;
|
|
215
|
+
/** Timeout in ms. Default 10000. Process killed after timeout. */
|
|
216
|
+
timeout?: number;
|
|
217
|
+
/** Human-readable description for /hooks display. */
|
|
218
|
+
description?: string;
|
|
219
|
+
}
|
|
220
|
+
interface HooksConfig {
|
|
221
|
+
PreToolUse?: HookDefinition[];
|
|
222
|
+
PostToolUse?: HookDefinition[];
|
|
223
|
+
Stop?: HookDefinition[];
|
|
224
|
+
UserPromptSubmit?: HookDefinition[];
|
|
225
|
+
SessionStart?: HookDefinition[];
|
|
226
|
+
SessionEnd?: HookDefinition[];
|
|
227
|
+
Notification?: HookDefinition[];
|
|
228
|
+
}
|
|
229
|
+
interface HookStdout {
|
|
230
|
+
decision?: 'allow' | 'block';
|
|
231
|
+
reason?: string;
|
|
232
|
+
additionalContext?: string;
|
|
233
|
+
}
|
|
234
|
+
interface HookResult {
|
|
235
|
+
hook: HookDefinition;
|
|
236
|
+
exitCode: number;
|
|
237
|
+
stdout?: HookStdout;
|
|
238
|
+
stderr?: string;
|
|
239
|
+
timedOut: boolean;
|
|
240
|
+
durationMs: number;
|
|
241
|
+
}
|
|
242
|
+
interface HookEventResult {
|
|
243
|
+
allowed: boolean;
|
|
244
|
+
blockReason?: string;
|
|
245
|
+
additionalContext?: string;
|
|
246
|
+
results: HookResult[];
|
|
247
|
+
warnings: string[];
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
declare class HookManager {
|
|
251
|
+
private config;
|
|
252
|
+
private projectDir;
|
|
253
|
+
private sessionId;
|
|
254
|
+
constructor(projectDir: string, sessionId: string);
|
|
255
|
+
reload(): void;
|
|
256
|
+
setSessionId(sessionId: string): void;
|
|
257
|
+
hasHooks(): boolean;
|
|
258
|
+
getConfig(): HooksConfig;
|
|
259
|
+
getConfigPaths(): {
|
|
260
|
+
project: string;
|
|
261
|
+
global: string;
|
|
262
|
+
};
|
|
263
|
+
runPreToolUse(toolName: string, toolInput: unknown): Promise<HookEventResult>;
|
|
264
|
+
runPostToolUse(toolName: string, toolInput: unknown, toolOutput: unknown, toolError: boolean): Promise<HookEventResult>;
|
|
265
|
+
runUserPromptSubmit(userMessage: string): Promise<HookEventResult>;
|
|
266
|
+
runStop(assistantMessage: string | undefined, stopReason: 'complete' | 'aborted' | 'error'): Promise<HookEventResult>;
|
|
267
|
+
runSessionStart(): Promise<HookEventResult>;
|
|
268
|
+
runSessionEnd(): Promise<HookEventResult>;
|
|
269
|
+
/**
|
|
270
|
+
* Fire notification hooks (non-blocking, fire-and-forget).
|
|
271
|
+
* Called when the TUI is waiting for user input.
|
|
272
|
+
*/
|
|
273
|
+
runNotification(reason: string, message?: string): void;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* Project detection utilities
|
|
278
|
+
*
|
|
279
|
+
* Detects project identity from git repo or filesystem path.
|
|
280
|
+
* Handles git worktrees by finding the main repository.
|
|
281
|
+
*/
|
|
282
|
+
interface ProjectInfo {
|
|
283
|
+
/** Unique resource ID for this project (used for thread grouping) */
|
|
284
|
+
resourceId: string;
|
|
285
|
+
/** Human-readable project name */
|
|
286
|
+
name: string;
|
|
287
|
+
/** Absolute path to the project root */
|
|
288
|
+
rootPath: string;
|
|
289
|
+
/** Git remote URL if available */
|
|
290
|
+
gitUrl?: string;
|
|
291
|
+
/** Current git branch */
|
|
292
|
+
gitBranch?: string;
|
|
293
|
+
/** Whether this is a git worktree */
|
|
294
|
+
isWorktree: boolean;
|
|
295
|
+
/** Path to main git repo (different from rootPath if worktree) */
|
|
296
|
+
mainRepoPath?: string;
|
|
297
|
+
/** Whether the resourceId was explicitly overridden (env var or config) */
|
|
298
|
+
resourceIdOverride?: boolean;
|
|
299
|
+
}
|
|
300
|
+
/**
|
|
301
|
+
* LibSQL storage configuration.
|
|
302
|
+
*/
|
|
303
|
+
interface LibSQLStorageConfig {
|
|
304
|
+
backend: 'libsql';
|
|
305
|
+
url: string;
|
|
306
|
+
authToken?: string;
|
|
307
|
+
isRemote: boolean;
|
|
308
|
+
}
|
|
309
|
+
/**
|
|
310
|
+
* PostgreSQL storage configuration.
|
|
311
|
+
*/
|
|
312
|
+
interface PgStorageConfig {
|
|
313
|
+
backend: 'pg';
|
|
314
|
+
connectionString?: string;
|
|
315
|
+
host?: string;
|
|
316
|
+
port?: number;
|
|
317
|
+
database?: string;
|
|
318
|
+
user?: string;
|
|
319
|
+
password?: string;
|
|
320
|
+
schemaName?: string;
|
|
321
|
+
disableInit?: boolean;
|
|
322
|
+
skipDefaultIndexes?: boolean;
|
|
323
|
+
}
|
|
324
|
+
/**
|
|
325
|
+
* Resolved storage configuration for either backend.
|
|
326
|
+
*/
|
|
327
|
+
type StorageConfig = LibSQLStorageConfig | PgStorageConfig;
|
|
328
|
+
|
|
329
|
+
export { AuthStorage as A, HookManager as H, type McpServerConfig as M, type OAuthProviderInterface as O, type ProjectInfo as P, type StorageConfig as S, type McpManager as a };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunkIEV2IT3O_cjs = require('./chunk-IEV2IT3O.cjs');
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
Object.defineProperty(exports, "AuthStorage", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () { return chunkIEV2IT3O_cjs.AuthStorage; }
|
|
10
|
+
});
|
|
11
|
+
Object.defineProperty(exports, "PROVIDER_DEFAULT_MODELS", {
|
|
12
|
+
enumerable: true,
|
|
13
|
+
get: function () { return chunkIEV2IT3O_cjs.PROVIDER_DEFAULT_MODELS; }
|
|
14
|
+
});
|
|
15
|
+
Object.defineProperty(exports, "getOAuthProvider", {
|
|
16
|
+
enumerable: true,
|
|
17
|
+
get: function () { return chunkIEV2IT3O_cjs.getOAuthProvider; }
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports, "getOAuthProviders", {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function () { return chunkIEV2IT3O_cjs.getOAuthProviders; }
|
|
22
|
+
});
|
|
23
|
+
//# sourceMappingURL=storage-6P53PQBL.cjs.map
|
|
24
|
+
//# sourceMappingURL=storage-6P53PQBL.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"storage-6P53PQBL.cjs"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"storage-QELMNBZ2.js"}
|
package/dist/tui.cjs
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunkY3HWP75B_cjs = require('./chunk-Y3HWP75B.cjs');
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
Object.defineProperty(exports, "AssistantMessageComponent", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () { return chunkY3HWP75B_cjs.AssistantMessageComponent; }
|
|
10
|
+
});
|
|
11
|
+
Object.defineProperty(exports, "LoginDialogComponent", {
|
|
12
|
+
enumerable: true,
|
|
13
|
+
get: function () { return chunkY3HWP75B_cjs.LoginDialogComponent; }
|
|
14
|
+
});
|
|
15
|
+
Object.defineProperty(exports, "LoginSelectorComponent", {
|
|
16
|
+
enumerable: true,
|
|
17
|
+
get: function () { return chunkY3HWP75B_cjs.LoginSelectorComponent; }
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports, "MastraTUI", {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function () { return chunkY3HWP75B_cjs.MastraTUI; }
|
|
22
|
+
});
|
|
23
|
+
Object.defineProperty(exports, "ModelSelectorComponent", {
|
|
24
|
+
enumerable: true,
|
|
25
|
+
get: function () { return chunkY3HWP75B_cjs.ModelSelectorComponent; }
|
|
26
|
+
});
|
|
27
|
+
Object.defineProperty(exports, "OMProgressComponent", {
|
|
28
|
+
enumerable: true,
|
|
29
|
+
get: function () { return chunkY3HWP75B_cjs.OMProgressComponent; }
|
|
30
|
+
});
|
|
31
|
+
Object.defineProperty(exports, "ToolExecutionComponentEnhanced", {
|
|
32
|
+
enumerable: true,
|
|
33
|
+
get: function () { return chunkY3HWP75B_cjs.ToolExecutionComponentEnhanced; }
|
|
34
|
+
});
|
|
35
|
+
Object.defineProperty(exports, "UserMessageComponent", {
|
|
36
|
+
enumerable: true,
|
|
37
|
+
get: function () { return chunkY3HWP75B_cjs.UserMessageComponent; }
|
|
38
|
+
});
|
|
39
|
+
Object.defineProperty(exports, "applyThemeMode", {
|
|
40
|
+
enumerable: true,
|
|
41
|
+
get: function () { return chunkY3HWP75B_cjs.applyThemeMode; }
|
|
42
|
+
});
|
|
43
|
+
Object.defineProperty(exports, "createTUIState", {
|
|
44
|
+
enumerable: true,
|
|
45
|
+
get: function () { return chunkY3HWP75B_cjs.createTUIState; }
|
|
46
|
+
});
|
|
47
|
+
Object.defineProperty(exports, "formatOMStatus", {
|
|
48
|
+
enumerable: true,
|
|
49
|
+
get: function () { return chunkY3HWP75B_cjs.formatOMStatus; }
|
|
50
|
+
});
|
|
51
|
+
Object.defineProperty(exports, "getEditorTheme", {
|
|
52
|
+
enumerable: true,
|
|
53
|
+
get: function () { return chunkY3HWP75B_cjs.getEditorTheme; }
|
|
54
|
+
});
|
|
55
|
+
Object.defineProperty(exports, "getMarkdownTheme", {
|
|
56
|
+
enumerable: true,
|
|
57
|
+
get: function () { return chunkY3HWP75B_cjs.getMarkdownTheme; }
|
|
58
|
+
});
|
|
59
|
+
Object.defineProperty(exports, "getThemeMode", {
|
|
60
|
+
enumerable: true,
|
|
61
|
+
get: function () { return chunkY3HWP75B_cjs.getThemeMode; }
|
|
62
|
+
});
|
|
63
|
+
Object.defineProperty(exports, "mastra", {
|
|
64
|
+
enumerable: true,
|
|
65
|
+
get: function () { return chunkY3HWP75B_cjs.mastra; }
|
|
66
|
+
});
|
|
67
|
+
Object.defineProperty(exports, "mastraBrand", {
|
|
68
|
+
enumerable: true,
|
|
69
|
+
get: function () { return chunkY3HWP75B_cjs.mastraBrand; }
|
|
70
|
+
});
|
|
71
|
+
Object.defineProperty(exports, "theme", {
|
|
72
|
+
enumerable: true,
|
|
73
|
+
get: function () { return chunkY3HWP75B_cjs.theme; }
|
|
74
|
+
});
|
|
75
|
+
//# sourceMappingURL=tui.cjs.map
|
|
76
|
+
//# sourceMappingURL=tui.cjs.map
|
package/dist/tui.cjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"tui.cjs"}
|