@chrryai/waffles 2.4.41 → 2.4.43
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/index.d.mts +411 -1
- package/dist/index.d.ts +411 -1
- package/dist/index.js +735 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +707 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -2
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as _playwright_test from '@playwright/test';
|
|
2
2
|
import { Page } from '@playwright/test';
|
|
3
|
+
import { Effect } from 'effect';
|
|
3
4
|
|
|
4
5
|
declare class APIClient {
|
|
5
6
|
private context;
|
|
@@ -55,6 +56,415 @@ declare const scheduledJobFactory: {
|
|
|
55
56
|
buildMany(count: number, overrides?: Partial<TribeScheduleInput>): TribeScheduleInput[];
|
|
56
57
|
};
|
|
57
58
|
|
|
59
|
+
/**
|
|
60
|
+
* Branch-Based AI Agent Context System
|
|
61
|
+
*
|
|
62
|
+
* Every git branch becomes an isolated agent workspace.
|
|
63
|
+
* Branch switch = agent context switch (spatial Z-axis navigation).
|
|
64
|
+
*/
|
|
65
|
+
|
|
66
|
+
interface BranchAgentWorkspace {
|
|
67
|
+
id: string;
|
|
68
|
+
namespace: string;
|
|
69
|
+
branchName: string;
|
|
70
|
+
fullBranchName: string;
|
|
71
|
+
agentId: string;
|
|
72
|
+
systemPrompt?: string;
|
|
73
|
+
instructions: any[];
|
|
74
|
+
memories: any[];
|
|
75
|
+
characterProfile?: any;
|
|
76
|
+
evolutionScore: number;
|
|
77
|
+
lastCommitSha?: string;
|
|
78
|
+
metadata: Record<string, any>;
|
|
79
|
+
createdOn: string;
|
|
80
|
+
updatedOn: string;
|
|
81
|
+
}
|
|
82
|
+
interface BranchContext {
|
|
83
|
+
currentBranch: string;
|
|
84
|
+
namespace: string;
|
|
85
|
+
branchName: string;
|
|
86
|
+
workspace?: BranchAgentWorkspace;
|
|
87
|
+
previousBranch?: string;
|
|
88
|
+
}
|
|
89
|
+
declare function getCurrentBranch(): string | undefined;
|
|
90
|
+
declare function parseBranchName(fullBranch: string): {
|
|
91
|
+
namespace: string;
|
|
92
|
+
branchName: string;
|
|
93
|
+
};
|
|
94
|
+
declare function generateAgentId(namespace: string, branchName: string): string;
|
|
95
|
+
declare function createBranchWorkspace(fullBranchName: string, overrides?: Partial<BranchAgentWorkspace>): BranchAgentWorkspace;
|
|
96
|
+
declare function loadBranchWorkspace(fullBranchName: string): BranchAgentWorkspace | undefined;
|
|
97
|
+
declare function saveBranchWorkspace(workspace: BranchAgentWorkspace): BranchAgentWorkspace;
|
|
98
|
+
declare function getOrCreateBranchWorkspace(fullBranchName: string): BranchAgentWorkspace;
|
|
99
|
+
declare function switchBranchContext(newBranch: string, previousBranch?: string): BranchContext;
|
|
100
|
+
declare function autoDetectAndSwitch(previousBranch?: string): BranchContext | undefined;
|
|
101
|
+
declare function deleteBranchWorkspace(fullBranchName: string): boolean;
|
|
102
|
+
declare function recordMutation(fullBranchName: string, mutation: {
|
|
103
|
+
type: string;
|
|
104
|
+
description: string;
|
|
105
|
+
success?: boolean;
|
|
106
|
+
}): BranchAgentWorkspace | undefined;
|
|
107
|
+
declare function getCurrentBranchSafe(): Effect.Effect<string | undefined, never, never>;
|
|
108
|
+
declare function switchBranchContextSafe(newBranch: string, previousBranch?: string): Effect.Effect<BranchContext, string, never>;
|
|
109
|
+
declare function autoDetectAndSwitchSafe(previousBranch?: string): Effect.Effect<BranchContext | undefined, string, never>;
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* ChopStick Expert - Payload Optimizer
|
|
113
|
+
*
|
|
114
|
+
* Senkron, deterministik payload optimizasyonu.
|
|
115
|
+
* JSON çıktı - AI her şeyi görsün.
|
|
116
|
+
*/
|
|
117
|
+
type JoinConfig = {
|
|
118
|
+
memories?: {
|
|
119
|
+
user?: number;
|
|
120
|
+
app?: number;
|
|
121
|
+
dna?: number;
|
|
122
|
+
thread?: number;
|
|
123
|
+
};
|
|
124
|
+
instructions?: {
|
|
125
|
+
user?: number;
|
|
126
|
+
app?: number;
|
|
127
|
+
dna?: number;
|
|
128
|
+
thread?: number;
|
|
129
|
+
};
|
|
130
|
+
characterProfile?: {
|
|
131
|
+
user?: number;
|
|
132
|
+
app?: number;
|
|
133
|
+
dna?: number;
|
|
134
|
+
thread?: number;
|
|
135
|
+
};
|
|
136
|
+
placeholders?: {
|
|
137
|
+
user?: number;
|
|
138
|
+
app?: number;
|
|
139
|
+
dna?: number;
|
|
140
|
+
thread?: number;
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
type Ramen = {
|
|
144
|
+
id?: string;
|
|
145
|
+
slug?: string;
|
|
146
|
+
join?: JoinConfig;
|
|
147
|
+
depth?: number;
|
|
148
|
+
[key: string]: any;
|
|
149
|
+
};
|
|
150
|
+
declare const modelPricing: {
|
|
151
|
+
readonly "deepseek/deepseek-v3.2": {
|
|
152
|
+
readonly input: 0.28;
|
|
153
|
+
readonly output: 0.4;
|
|
154
|
+
readonly tools: true;
|
|
155
|
+
readonly analyze: false;
|
|
156
|
+
};
|
|
157
|
+
readonly "deepseek/deepseek-chat": {
|
|
158
|
+
readonly input: 0.15;
|
|
159
|
+
readonly output: 0.45;
|
|
160
|
+
readonly tools: true;
|
|
161
|
+
readonly analyze: false;
|
|
162
|
+
};
|
|
163
|
+
readonly "anthropic/claude-sonnet-4-6": {
|
|
164
|
+
readonly input: 3;
|
|
165
|
+
readonly output: 15;
|
|
166
|
+
readonly tools: true;
|
|
167
|
+
readonly analyze: true;
|
|
168
|
+
};
|
|
169
|
+
readonly "google/gemini-3.1-pro-preview": {
|
|
170
|
+
readonly input: 0.35;
|
|
171
|
+
readonly output: 1.05;
|
|
172
|
+
readonly tools: true;
|
|
173
|
+
readonly analyze: true;
|
|
174
|
+
};
|
|
175
|
+
readonly "deepseek/deepseek-v3.2-thinking": {
|
|
176
|
+
readonly input: 0.28;
|
|
177
|
+
readonly output: 0.4;
|
|
178
|
+
readonly tools: true;
|
|
179
|
+
readonly analyze: false;
|
|
180
|
+
};
|
|
181
|
+
readonly "qwen/qwen3.6-plus": {
|
|
182
|
+
readonly input: 0.3;
|
|
183
|
+
readonly output: 0.8;
|
|
184
|
+
readonly tools: true;
|
|
185
|
+
readonly analyze: true;
|
|
186
|
+
};
|
|
187
|
+
readonly "minimax/minimax-m2.5": {
|
|
188
|
+
readonly input: 0.3;
|
|
189
|
+
readonly output: 1.1;
|
|
190
|
+
readonly tools: true;
|
|
191
|
+
readonly analyze: false;
|
|
192
|
+
};
|
|
193
|
+
readonly "minimax/minimax-m2.7": {
|
|
194
|
+
readonly input: 0.3;
|
|
195
|
+
readonly output: 1.2;
|
|
196
|
+
readonly tools: true;
|
|
197
|
+
readonly analyze: false;
|
|
198
|
+
};
|
|
199
|
+
readonly "x-ai/grok-4.1-fast": {
|
|
200
|
+
readonly input: 0.5;
|
|
201
|
+
readonly output: 2;
|
|
202
|
+
readonly tools: true;
|
|
203
|
+
readonly analyze: true;
|
|
204
|
+
};
|
|
205
|
+
readonly "perplexity/sonar-pro": {
|
|
206
|
+
readonly input: 2;
|
|
207
|
+
readonly output: 8;
|
|
208
|
+
readonly tools: false;
|
|
209
|
+
readonly analyze: false;
|
|
210
|
+
};
|
|
211
|
+
readonly "openrouter/free": {
|
|
212
|
+
readonly input: 0;
|
|
213
|
+
readonly output: 0;
|
|
214
|
+
readonly tools: false;
|
|
215
|
+
readonly analyze: false;
|
|
216
|
+
};
|
|
217
|
+
readonly "openai/gpt-oss-120b:free": {
|
|
218
|
+
readonly input: 0;
|
|
219
|
+
readonly output: 0.073;
|
|
220
|
+
readonly tools: false;
|
|
221
|
+
readonly analyze: true;
|
|
222
|
+
};
|
|
223
|
+
readonly "nvidia/nemotron-3-super-120b-a12b:free": {
|
|
224
|
+
readonly input: 0;
|
|
225
|
+
readonly output: 0;
|
|
226
|
+
readonly tools: true;
|
|
227
|
+
readonly analyze: false;
|
|
228
|
+
};
|
|
229
|
+
readonly "gpt-4o": {
|
|
230
|
+
readonly input: 2.5;
|
|
231
|
+
readonly output: 10;
|
|
232
|
+
readonly tools: true;
|
|
233
|
+
readonly analyze: true;
|
|
234
|
+
};
|
|
235
|
+
readonly "gpt-4o-mini": {
|
|
236
|
+
readonly input: 0.15;
|
|
237
|
+
readonly output: 0.6;
|
|
238
|
+
readonly tools: true;
|
|
239
|
+
readonly analyze: true;
|
|
240
|
+
};
|
|
241
|
+
readonly "openai/gpt-5.4": {
|
|
242
|
+
readonly input: 2.5;
|
|
243
|
+
readonly output: 15;
|
|
244
|
+
readonly tools: true;
|
|
245
|
+
readonly analyze: true;
|
|
246
|
+
};
|
|
247
|
+
};
|
|
248
|
+
interface ModelInfo {
|
|
249
|
+
modelId: string;
|
|
250
|
+
inputPrice: number;
|
|
251
|
+
outputPrice: number;
|
|
252
|
+
hasTools: boolean;
|
|
253
|
+
canAnalyze: boolean;
|
|
254
|
+
reason: string;
|
|
255
|
+
}
|
|
256
|
+
interface JoinWeights {
|
|
257
|
+
memories: {
|
|
258
|
+
user: number;
|
|
259
|
+
app: number;
|
|
260
|
+
dna: number;
|
|
261
|
+
thread: number;
|
|
262
|
+
};
|
|
263
|
+
instructions: {
|
|
264
|
+
user: number;
|
|
265
|
+
app: number;
|
|
266
|
+
dna: number;
|
|
267
|
+
thread: number;
|
|
268
|
+
};
|
|
269
|
+
characterProfile: {
|
|
270
|
+
user: number;
|
|
271
|
+
app: number;
|
|
272
|
+
dna: number;
|
|
273
|
+
thread: number;
|
|
274
|
+
};
|
|
275
|
+
placeholders: {
|
|
276
|
+
user: number;
|
|
277
|
+
app: number;
|
|
278
|
+
dna: number;
|
|
279
|
+
thread: number;
|
|
280
|
+
};
|
|
281
|
+
}
|
|
282
|
+
interface ChopStickDecision {
|
|
283
|
+
join: JoinWeights;
|
|
284
|
+
depth: number;
|
|
285
|
+
model: ModelInfo;
|
|
286
|
+
reasoning: string[];
|
|
287
|
+
}
|
|
288
|
+
interface StoreAppKnowledge {
|
|
289
|
+
/** App temel bilgileri */
|
|
290
|
+
app: {
|
|
291
|
+
id: string;
|
|
292
|
+
name: string;
|
|
293
|
+
slug: string;
|
|
294
|
+
description?: string;
|
|
295
|
+
systemPrompt?: string;
|
|
296
|
+
};
|
|
297
|
+
/** Context configuration */
|
|
298
|
+
context: {
|
|
299
|
+
join: JoinWeights;
|
|
300
|
+
depth: number;
|
|
301
|
+
isMainApp: boolean;
|
|
302
|
+
};
|
|
303
|
+
/** Ne kadar data çekilecek */
|
|
304
|
+
limits: {
|
|
305
|
+
memories: number;
|
|
306
|
+
instructions: number;
|
|
307
|
+
messages: number;
|
|
308
|
+
};
|
|
309
|
+
}
|
|
310
|
+
interface StoreKnowledgeBase {
|
|
311
|
+
/** Tüm store apps */
|
|
312
|
+
apps: StoreAppKnowledge[];
|
|
313
|
+
/** Ana app (mevcut request) */
|
|
314
|
+
mainApp: StoreAppKnowledge;
|
|
315
|
+
/** Diğer apps (context için) */
|
|
316
|
+
contextApps: StoreAppKnowledge[];
|
|
317
|
+
/** Toplam context boyutu tahmini */
|
|
318
|
+
estimatedTokens: number;
|
|
319
|
+
/** Configuration metadata */
|
|
320
|
+
meta: {
|
|
321
|
+
totalApps: number;
|
|
322
|
+
reasoning: string[];
|
|
323
|
+
timestamp: string;
|
|
324
|
+
};
|
|
325
|
+
/** DNA Artifacts for context */
|
|
326
|
+
artifacts?: Array<{
|
|
327
|
+
id: string;
|
|
328
|
+
content: string;
|
|
329
|
+
type: string;
|
|
330
|
+
createdAt: string;
|
|
331
|
+
}>;
|
|
332
|
+
/** DNA Memories for context */
|
|
333
|
+
memories?: Array<{
|
|
334
|
+
id: string;
|
|
335
|
+
content: string;
|
|
336
|
+
type: string;
|
|
337
|
+
createdAt: string;
|
|
338
|
+
}>;
|
|
339
|
+
/** Current task info */
|
|
340
|
+
task?: {
|
|
341
|
+
id: string;
|
|
342
|
+
title: string;
|
|
343
|
+
description?: string;
|
|
344
|
+
status: string;
|
|
345
|
+
};
|
|
346
|
+
/** Task messages/work history */
|
|
347
|
+
messages?: {
|
|
348
|
+
messages: Array<{
|
|
349
|
+
id: string;
|
|
350
|
+
content: string;
|
|
351
|
+
role: string;
|
|
352
|
+
createdAt: string;
|
|
353
|
+
mood?: {
|
|
354
|
+
type: string;
|
|
355
|
+
};
|
|
356
|
+
}>;
|
|
357
|
+
};
|
|
358
|
+
}
|
|
359
|
+
interface ChopStickContext {
|
|
360
|
+
appType?: "chat" | "tribe" | "kanban" | "retro" | "swarm" | "focus" | "default";
|
|
361
|
+
messageCount?: number;
|
|
362
|
+
hasTimer?: boolean;
|
|
363
|
+
hasDNA?: boolean;
|
|
364
|
+
hasKanban?: boolean;
|
|
365
|
+
hasRetro?: boolean;
|
|
366
|
+
memoriesCount?: number;
|
|
367
|
+
instructionsCount?: number;
|
|
368
|
+
isBackgroundJob?: boolean;
|
|
369
|
+
isAdmin?: boolean;
|
|
370
|
+
isSatoMode?: boolean;
|
|
371
|
+
defaultModelId?: string;
|
|
372
|
+
allowsModelSwap?: boolean;
|
|
373
|
+
needsTools?: boolean;
|
|
374
|
+
needsAnalysis?: boolean;
|
|
375
|
+
preferFree?: boolean;
|
|
376
|
+
creditsLeft?: number;
|
|
377
|
+
storeAppIds?: string[];
|
|
378
|
+
mainAppId?: string;
|
|
379
|
+
}
|
|
380
|
+
declare const presets: Record<string, ChopStickDecision>;
|
|
381
|
+
type PresetName = keyof typeof presets;
|
|
382
|
+
declare function optimizeChopStick(ctx: ChopStickContext): ChopStickDecision;
|
|
383
|
+
/**
|
|
384
|
+
* Store apps için knowledge base oluştur - JSON output
|
|
385
|
+
*
|
|
386
|
+
* @example
|
|
387
|
+
* ```ts
|
|
388
|
+
* const kb = buildStoreKnowledgeBase({
|
|
389
|
+
* mainAppId: "app-123",
|
|
390
|
+
* storeAppIds: ["app-123", "app-456", "app-789"],
|
|
391
|
+
* appType: "kanban",
|
|
392
|
+
* hasDNA: true,
|
|
393
|
+
* })
|
|
394
|
+
*
|
|
395
|
+
* // Direkt JSON olarak kullan
|
|
396
|
+
* return Response.json(kb)
|
|
397
|
+
* ```
|
|
398
|
+
*/
|
|
399
|
+
declare function buildStoreKnowledgeBase(ctx: {
|
|
400
|
+
mainAppId: string;
|
|
401
|
+
storeAppIds: string[];
|
|
402
|
+
appType?: ChopStickContext["appType"];
|
|
403
|
+
hasDNA?: boolean;
|
|
404
|
+
hasTimer?: boolean;
|
|
405
|
+
hasKanban?: boolean;
|
|
406
|
+
messageCount?: number;
|
|
407
|
+
isBackgroundJob?: boolean;
|
|
408
|
+
}): StoreKnowledgeBase;
|
|
409
|
+
/** Preset al */
|
|
410
|
+
declare function getPreset(name: PresetName): ChopStickDecision;
|
|
411
|
+
/** Sadece join weights */
|
|
412
|
+
declare function getJoinWeights(ctx: ChopStickContext): JoinWeights;
|
|
413
|
+
/** Ramen payload builder */
|
|
414
|
+
declare function buildRamenPayload(base: Omit<Ramen, "join" | "depth">, ctx: ChopStickContext): Ramen & {
|
|
415
|
+
_meta: {
|
|
416
|
+
modelId: string;
|
|
417
|
+
estimatedCost: number;
|
|
418
|
+
reasoning: string[];
|
|
419
|
+
};
|
|
420
|
+
};
|
|
421
|
+
|
|
422
|
+
/**
|
|
423
|
+
* Golden Ratio Adaptive Trigger System (φ-Engine)
|
|
424
|
+
*
|
|
425
|
+
* Progressive feature unlock mechanism based on Fibonacci thresholds.
|
|
426
|
+
* AI capabilities awaken dynamically as users create threads and accumulate messages.
|
|
427
|
+
*/
|
|
428
|
+
declare const FIBONACCI: number[];
|
|
429
|
+
type GoldenFeature = "memory" | "kanban" | "characterProfile" | "instructions" | "placeholders" | "vectorEmbed";
|
|
430
|
+
interface GoldenTrigger {
|
|
431
|
+
feature: GoldenFeature;
|
|
432
|
+
homeApp: "hippo" | "focus" | "sushi" | "grape";
|
|
433
|
+
threadThreshold: number;
|
|
434
|
+
messageThreshold: number;
|
|
435
|
+
}
|
|
436
|
+
interface GoldenTriggerConfig {
|
|
437
|
+
threadThreshold: number;
|
|
438
|
+
messageThreshold: number;
|
|
439
|
+
enabled: boolean;
|
|
440
|
+
}
|
|
441
|
+
type GoldenRatioConfig = Partial<Record<GoldenFeature, GoldenTriggerConfig>>;
|
|
442
|
+
declare const DEFAULT_TRIGGERS: GoldenTrigger[];
|
|
443
|
+
declare function getDefaultTriggers(): GoldenTrigger[];
|
|
444
|
+
declare function getUserGoldenRatioConfig(userConfig?: GoldenRatioConfig | null): Record<GoldenFeature, GoldenTriggerConfig>;
|
|
445
|
+
interface GoldenRatioEvaluation {
|
|
446
|
+
feature: GoldenFeature;
|
|
447
|
+
homeApp: GoldenTrigger["homeApp"];
|
|
448
|
+
triggered: boolean;
|
|
449
|
+
alreadyTriggered: boolean;
|
|
450
|
+
threadThreshold: number;
|
|
451
|
+
messageThreshold: number;
|
|
452
|
+
userThreadCount: number;
|
|
453
|
+
threadMessageCount: number;
|
|
454
|
+
}
|
|
455
|
+
declare function evaluateGoldenRatio(userThreadCount: number, threadMessageCount: number, lastTriggeredFeatures: GoldenFeature[], userConfig?: GoldenRatioConfig | null): GoldenRatioEvaluation[];
|
|
456
|
+
declare function getNewlyTriggeredFeatures(userThreadCount: number, threadMessageCount: number, lastTriggeredFeatures: GoldenFeature[], userConfig?: GoldenRatioConfig | null): GoldenRatioEvaluation[];
|
|
457
|
+
declare function getNextFibonacciThreshold(value: number): number;
|
|
458
|
+
declare function formatFibonacciPreview(userThreadCount: number, threadMessageCount: number, userConfig?: GoldenRatioConfig | null): {
|
|
459
|
+
feature: GoldenFeature;
|
|
460
|
+
homeApp: string;
|
|
461
|
+
progressThread: number;
|
|
462
|
+
progressMessage: number;
|
|
463
|
+
ready: boolean;
|
|
464
|
+
nextThresholdThread: number;
|
|
465
|
+
nextThresholdMessage: number;
|
|
466
|
+
}[];
|
|
467
|
+
|
|
58
468
|
type modelName = "chatGPT" | "claude" | "gemini" | "sushi" | "perplexity";
|
|
59
469
|
declare const TEST_GUEST_FINGERPRINTS: string[];
|
|
60
470
|
declare const TEST_MEMBER_FINGERPRINTS: string[];
|
|
@@ -94,4 +504,4 @@ declare const log: ({ page }: {
|
|
|
94
504
|
page: Page;
|
|
95
505
|
}) => void;
|
|
96
506
|
|
|
97
|
-
export { APIClient, type ScheduledJob, TEST_GUEST_FINGERPRINTS, TEST_MEMBER_EMAILS, TEST_MEMBER_FINGERPRINTS, TEST_URL, VEX_LIVE_FINGERPRINT, VEX_LIVE_FINGERPRINTS, VEX_LIVE_FINGERPRINT_2, VEX_LIVE_FINGERPRINT_3, VEX_TEST_EMAIL, VEX_TEST_EMAIL_2, VEX_TEST_EMAIL_3, VEX_TEST_EMAIL_4, VEX_TEST_FINGERPRINT, VEX_TEST_FINGERPRINT_2, VEX_TEST_FINGERPRINT_3, VEX_TEST_FINGERPRINT_4, VEX_TEST_PASSWORD, VEX_TEST_PASSWORD_2, VEX_TEST_PASSWORD_3, VEX_TEST_PASSWORD_4, capitalizeFirstLetter, getModelCredits, getURL, isCI, log, type modelName, scheduledJobFactory, simulateInputPaste, simulatePaste, storeApps, wait };
|
|
507
|
+
export { APIClient, type BranchAgentWorkspace, type BranchContext, type ChopStickContext, type ChopStickDecision, DEFAULT_TRIGGERS, FIBONACCI, type GoldenFeature, type GoldenRatioConfig, type GoldenTrigger, type GoldenTriggerConfig, type JoinWeights, type ModelInfo, type PresetName, type ScheduledJob, type StoreAppKnowledge, type StoreKnowledgeBase, TEST_GUEST_FINGERPRINTS, TEST_MEMBER_EMAILS, TEST_MEMBER_FINGERPRINTS, TEST_URL, VEX_LIVE_FINGERPRINT, VEX_LIVE_FINGERPRINTS, VEX_LIVE_FINGERPRINT_2, VEX_LIVE_FINGERPRINT_3, VEX_TEST_EMAIL, VEX_TEST_EMAIL_2, VEX_TEST_EMAIL_3, VEX_TEST_EMAIL_4, VEX_TEST_FINGERPRINT, VEX_TEST_FINGERPRINT_2, VEX_TEST_FINGERPRINT_3, VEX_TEST_FINGERPRINT_4, VEX_TEST_PASSWORD, VEX_TEST_PASSWORD_2, VEX_TEST_PASSWORD_3, VEX_TEST_PASSWORD_4, autoDetectAndSwitch, autoDetectAndSwitchSafe, buildRamenPayload, buildStoreKnowledgeBase, capitalizeFirstLetter, createBranchWorkspace, deleteBranchWorkspace, evaluateGoldenRatio, formatFibonacciPreview, generateAgentId, getCurrentBranch, getCurrentBranchSafe, getDefaultTriggers, getJoinWeights, getModelCredits, getNewlyTriggeredFeatures, getNextFibonacciThreshold, getOrCreateBranchWorkspace, getPreset, getURL, getUserGoldenRatioConfig, isCI, loadBranchWorkspace, log, type modelName, modelPricing, optimizeChopStick, parseBranchName, presets, recordMutation, saveBranchWorkspace, scheduledJobFactory, simulateInputPaste, simulatePaste, storeApps, switchBranchContext, switchBranchContextSafe, wait };
|