opencode-athena 0.2.0 → 0.3.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 +141 -4
- package/config/presets/copilot-only.json +38 -0
- package/config/presets/enterprise.json +11 -2
- package/config/presets/minimal.json +8 -2
- package/config/presets/solo-quick.json +8 -2
- package/config/presets/standard.json +11 -2
- package/config/schemas/athena.schema.json +92 -2
- package/dist/cli/index.js +273 -19
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +427 -4
- package/dist/index.js +152 -4
- package/dist/index.js.map +1 -1
- package/dist/plugin/index.js +152 -4
- package/dist/plugin/index.js.map +1 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -24,6 +24,9 @@ interface SubscriptionAnswers {
|
|
|
24
24
|
hasOpenAI: boolean;
|
|
25
25
|
hasGoogle: boolean;
|
|
26
26
|
googleAuth: "antigravity" | "personal" | "api" | "none";
|
|
27
|
+
hasGitHubCopilot: boolean;
|
|
28
|
+
copilotPlan: "free" | "pro" | "pro-plus" | "business" | "enterprise" | "none";
|
|
29
|
+
copilotEnabledModels?: string[];
|
|
27
30
|
}
|
|
28
31
|
/**
|
|
29
32
|
* Methodology preferences gathered during install
|
|
@@ -46,6 +49,35 @@ interface AdvancedAnswers {
|
|
|
46
49
|
parallelStoryLimit?: number;
|
|
47
50
|
experimental?: string[];
|
|
48
51
|
}
|
|
52
|
+
/**
|
|
53
|
+
* Available model choices by provider
|
|
54
|
+
*/
|
|
55
|
+
type LLMProvider = "anthropic" | "openai" | "google" | "github-copilot";
|
|
56
|
+
/**
|
|
57
|
+
* Custom model definition for user-added models
|
|
58
|
+
*/
|
|
59
|
+
interface CustomModelDefinition {
|
|
60
|
+
id: string;
|
|
61
|
+
name: string;
|
|
62
|
+
provider: LLMProvider;
|
|
63
|
+
description?: string;
|
|
64
|
+
capabilities?: {
|
|
65
|
+
thinking?: boolean;
|
|
66
|
+
contextWindow?: number;
|
|
67
|
+
supportsTemperature?: boolean;
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Thinking level for reasoning-capable models
|
|
72
|
+
*/
|
|
73
|
+
type ThinkingLevel = "off" | "low" | "medium" | "high";
|
|
74
|
+
/**
|
|
75
|
+
* Agent-specific settings for temperature and thinking level
|
|
76
|
+
*/
|
|
77
|
+
interface AgentSettings {
|
|
78
|
+
temperature?: number;
|
|
79
|
+
thinkingLevel?: ThinkingLevel;
|
|
80
|
+
}
|
|
49
81
|
/**
|
|
50
82
|
* Model assignments for each agent role
|
|
51
83
|
*/
|
|
@@ -56,6 +88,16 @@ interface ModelAnswers {
|
|
|
56
88
|
frontend?: string;
|
|
57
89
|
documentWriter?: string;
|
|
58
90
|
multimodalLooker?: string;
|
|
91
|
+
settings?: {
|
|
92
|
+
sisyphus?: AgentSettings;
|
|
93
|
+
oracle?: AgentSettings;
|
|
94
|
+
librarian?: AgentSettings;
|
|
95
|
+
frontend?: AgentSettings;
|
|
96
|
+
documentWriter?: AgentSettings;
|
|
97
|
+
multimodalLooker?: AgentSettings;
|
|
98
|
+
overrides?: Record<string, AgentSettings>;
|
|
99
|
+
};
|
|
100
|
+
custom?: CustomModelDefinition[];
|
|
59
101
|
}
|
|
60
102
|
/**
|
|
61
103
|
* All answers from the install wizard
|
|
@@ -86,6 +128,11 @@ interface AthenaConfig {
|
|
|
86
128
|
enabled: boolean;
|
|
87
129
|
authMethod: "antigravity" | "personal" | "api" | "none";
|
|
88
130
|
};
|
|
131
|
+
githubCopilot: {
|
|
132
|
+
enabled: boolean;
|
|
133
|
+
plan: "free" | "pro" | "pro-plus" | "business" | "enterprise" | "none";
|
|
134
|
+
enabledModels?: string[];
|
|
135
|
+
};
|
|
89
136
|
};
|
|
90
137
|
models: {
|
|
91
138
|
sisyphus: string;
|
|
@@ -94,6 +141,16 @@ interface AthenaConfig {
|
|
|
94
141
|
frontend?: string;
|
|
95
142
|
documentWriter?: string;
|
|
96
143
|
multimodalLooker?: string;
|
|
144
|
+
settings?: {
|
|
145
|
+
sisyphus?: AgentSettings;
|
|
146
|
+
oracle?: AgentSettings;
|
|
147
|
+
librarian?: AgentSettings;
|
|
148
|
+
frontend?: AgentSettings;
|
|
149
|
+
documentWriter?: AgentSettings;
|
|
150
|
+
multimodalLooker?: AgentSettings;
|
|
151
|
+
overrides?: Record<string, AgentSettings>;
|
|
152
|
+
};
|
|
153
|
+
custom?: CustomModelDefinition[];
|
|
97
154
|
};
|
|
98
155
|
bmad: {
|
|
99
156
|
defaultTrack: "quick-flow" | "bmad-method" | "enterprise";
|
|
@@ -261,6 +318,19 @@ declare const AthenaConfigSchema: z.ZodObject<{
|
|
|
261
318
|
enabled: boolean;
|
|
262
319
|
authMethod: "none" | "antigravity" | "personal" | "api";
|
|
263
320
|
}>;
|
|
321
|
+
githubCopilot: z.ZodObject<{
|
|
322
|
+
enabled: z.ZodBoolean;
|
|
323
|
+
plan: z.ZodEnum<["free", "pro", "pro-plus", "business", "enterprise", "none"]>;
|
|
324
|
+
enabledModels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
325
|
+
}, "strip", z.ZodTypeAny, {
|
|
326
|
+
enabled: boolean;
|
|
327
|
+
plan: "pro" | "none" | "free" | "pro-plus" | "business" | "enterprise";
|
|
328
|
+
enabledModels?: string[] | undefined;
|
|
329
|
+
}, {
|
|
330
|
+
enabled: boolean;
|
|
331
|
+
plan: "pro" | "none" | "free" | "pro-plus" | "business" | "enterprise";
|
|
332
|
+
enabledModels?: string[] | undefined;
|
|
333
|
+
}>;
|
|
264
334
|
}, "strip", z.ZodTypeAny, {
|
|
265
335
|
openai: {
|
|
266
336
|
enabled: boolean;
|
|
@@ -273,6 +343,11 @@ declare const AthenaConfigSchema: z.ZodObject<{
|
|
|
273
343
|
enabled: boolean;
|
|
274
344
|
tier: "max5x" | "max20x" | "pro" | "none";
|
|
275
345
|
};
|
|
346
|
+
githubCopilot: {
|
|
347
|
+
enabled: boolean;
|
|
348
|
+
plan: "pro" | "none" | "free" | "pro-plus" | "business" | "enterprise";
|
|
349
|
+
enabledModels?: string[] | undefined;
|
|
350
|
+
};
|
|
276
351
|
}, {
|
|
277
352
|
openai: {
|
|
278
353
|
enabled: boolean;
|
|
@@ -285,6 +360,11 @@ declare const AthenaConfigSchema: z.ZodObject<{
|
|
|
285
360
|
enabled: boolean;
|
|
286
361
|
tier: "max5x" | "max20x" | "pro" | "none";
|
|
287
362
|
};
|
|
363
|
+
githubCopilot: {
|
|
364
|
+
enabled: boolean;
|
|
365
|
+
plan: "pro" | "none" | "free" | "pro-plus" | "business" | "enterprise";
|
|
366
|
+
enabledModels?: string[] | undefined;
|
|
367
|
+
};
|
|
288
368
|
}>;
|
|
289
369
|
models: z.ZodObject<{
|
|
290
370
|
sisyphus: z.ZodString;
|
|
@@ -293,6 +373,175 @@ declare const AthenaConfigSchema: z.ZodObject<{
|
|
|
293
373
|
frontend: z.ZodOptional<z.ZodString>;
|
|
294
374
|
documentWriter: z.ZodOptional<z.ZodString>;
|
|
295
375
|
multimodalLooker: z.ZodOptional<z.ZodString>;
|
|
376
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
377
|
+
sisyphus: z.ZodOptional<z.ZodObject<{
|
|
378
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
379
|
+
thinkingLevel: z.ZodOptional<z.ZodEnum<["off", "low", "medium", "high"]>>;
|
|
380
|
+
}, "strip", z.ZodTypeAny, {
|
|
381
|
+
temperature?: number | undefined;
|
|
382
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
383
|
+
}, {
|
|
384
|
+
temperature?: number | undefined;
|
|
385
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
386
|
+
}>>;
|
|
387
|
+
oracle: z.ZodOptional<z.ZodObject<{
|
|
388
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
389
|
+
thinkingLevel: z.ZodOptional<z.ZodEnum<["off", "low", "medium", "high"]>>;
|
|
390
|
+
}, "strip", z.ZodTypeAny, {
|
|
391
|
+
temperature?: number | undefined;
|
|
392
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
393
|
+
}, {
|
|
394
|
+
temperature?: number | undefined;
|
|
395
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
396
|
+
}>>;
|
|
397
|
+
librarian: z.ZodOptional<z.ZodObject<{
|
|
398
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
399
|
+
thinkingLevel: z.ZodOptional<z.ZodEnum<["off", "low", "medium", "high"]>>;
|
|
400
|
+
}, "strip", z.ZodTypeAny, {
|
|
401
|
+
temperature?: number | undefined;
|
|
402
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
403
|
+
}, {
|
|
404
|
+
temperature?: number | undefined;
|
|
405
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
406
|
+
}>>;
|
|
407
|
+
frontend: z.ZodOptional<z.ZodObject<{
|
|
408
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
409
|
+
thinkingLevel: z.ZodOptional<z.ZodEnum<["off", "low", "medium", "high"]>>;
|
|
410
|
+
}, "strip", z.ZodTypeAny, {
|
|
411
|
+
temperature?: number | undefined;
|
|
412
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
413
|
+
}, {
|
|
414
|
+
temperature?: number | undefined;
|
|
415
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
416
|
+
}>>;
|
|
417
|
+
documentWriter: z.ZodOptional<z.ZodObject<{
|
|
418
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
419
|
+
thinkingLevel: z.ZodOptional<z.ZodEnum<["off", "low", "medium", "high"]>>;
|
|
420
|
+
}, "strip", z.ZodTypeAny, {
|
|
421
|
+
temperature?: number | undefined;
|
|
422
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
423
|
+
}, {
|
|
424
|
+
temperature?: number | undefined;
|
|
425
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
426
|
+
}>>;
|
|
427
|
+
multimodalLooker: z.ZodOptional<z.ZodObject<{
|
|
428
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
429
|
+
thinkingLevel: z.ZodOptional<z.ZodEnum<["off", "low", "medium", "high"]>>;
|
|
430
|
+
}, "strip", z.ZodTypeAny, {
|
|
431
|
+
temperature?: number | undefined;
|
|
432
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
433
|
+
}, {
|
|
434
|
+
temperature?: number | undefined;
|
|
435
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
436
|
+
}>>;
|
|
437
|
+
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
438
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
439
|
+
thinkingLevel: z.ZodOptional<z.ZodEnum<["off", "low", "medium", "high"]>>;
|
|
440
|
+
}, "strip", z.ZodTypeAny, {
|
|
441
|
+
temperature?: number | undefined;
|
|
442
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
443
|
+
}, {
|
|
444
|
+
temperature?: number | undefined;
|
|
445
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
446
|
+
}>>>;
|
|
447
|
+
}, "strip", z.ZodTypeAny, {
|
|
448
|
+
sisyphus?: {
|
|
449
|
+
temperature?: number | undefined;
|
|
450
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
451
|
+
} | undefined;
|
|
452
|
+
oracle?: {
|
|
453
|
+
temperature?: number | undefined;
|
|
454
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
455
|
+
} | undefined;
|
|
456
|
+
librarian?: {
|
|
457
|
+
temperature?: number | undefined;
|
|
458
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
459
|
+
} | undefined;
|
|
460
|
+
frontend?: {
|
|
461
|
+
temperature?: number | undefined;
|
|
462
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
463
|
+
} | undefined;
|
|
464
|
+
documentWriter?: {
|
|
465
|
+
temperature?: number | undefined;
|
|
466
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
467
|
+
} | undefined;
|
|
468
|
+
multimodalLooker?: {
|
|
469
|
+
temperature?: number | undefined;
|
|
470
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
471
|
+
} | undefined;
|
|
472
|
+
overrides?: Record<string, {
|
|
473
|
+
temperature?: number | undefined;
|
|
474
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
475
|
+
}> | undefined;
|
|
476
|
+
}, {
|
|
477
|
+
sisyphus?: {
|
|
478
|
+
temperature?: number | undefined;
|
|
479
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
480
|
+
} | undefined;
|
|
481
|
+
oracle?: {
|
|
482
|
+
temperature?: number | undefined;
|
|
483
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
484
|
+
} | undefined;
|
|
485
|
+
librarian?: {
|
|
486
|
+
temperature?: number | undefined;
|
|
487
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
488
|
+
} | undefined;
|
|
489
|
+
frontend?: {
|
|
490
|
+
temperature?: number | undefined;
|
|
491
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
492
|
+
} | undefined;
|
|
493
|
+
documentWriter?: {
|
|
494
|
+
temperature?: number | undefined;
|
|
495
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
496
|
+
} | undefined;
|
|
497
|
+
multimodalLooker?: {
|
|
498
|
+
temperature?: number | undefined;
|
|
499
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
500
|
+
} | undefined;
|
|
501
|
+
overrides?: Record<string, {
|
|
502
|
+
temperature?: number | undefined;
|
|
503
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
504
|
+
}> | undefined;
|
|
505
|
+
}>>;
|
|
506
|
+
custom: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
507
|
+
id: z.ZodString;
|
|
508
|
+
name: z.ZodString;
|
|
509
|
+
provider: z.ZodEnum<["anthropic", "openai", "google", "github-copilot"]>;
|
|
510
|
+
description: z.ZodOptional<z.ZodString>;
|
|
511
|
+
capabilities: z.ZodOptional<z.ZodObject<{
|
|
512
|
+
thinking: z.ZodOptional<z.ZodBoolean>;
|
|
513
|
+
contextWindow: z.ZodOptional<z.ZodNumber>;
|
|
514
|
+
supportsTemperature: z.ZodOptional<z.ZodBoolean>;
|
|
515
|
+
}, "strip", z.ZodTypeAny, {
|
|
516
|
+
thinking?: boolean | undefined;
|
|
517
|
+
contextWindow?: number | undefined;
|
|
518
|
+
supportsTemperature?: boolean | undefined;
|
|
519
|
+
}, {
|
|
520
|
+
thinking?: boolean | undefined;
|
|
521
|
+
contextWindow?: number | undefined;
|
|
522
|
+
supportsTemperature?: boolean | undefined;
|
|
523
|
+
}>>;
|
|
524
|
+
}, "strip", z.ZodTypeAny, {
|
|
525
|
+
id: string;
|
|
526
|
+
name: string;
|
|
527
|
+
provider: "anthropic" | "openai" | "google" | "github-copilot";
|
|
528
|
+
description?: string | undefined;
|
|
529
|
+
capabilities?: {
|
|
530
|
+
thinking?: boolean | undefined;
|
|
531
|
+
contextWindow?: number | undefined;
|
|
532
|
+
supportsTemperature?: boolean | undefined;
|
|
533
|
+
} | undefined;
|
|
534
|
+
}, {
|
|
535
|
+
id: string;
|
|
536
|
+
name: string;
|
|
537
|
+
provider: "anthropic" | "openai" | "google" | "github-copilot";
|
|
538
|
+
description?: string | undefined;
|
|
539
|
+
capabilities?: {
|
|
540
|
+
thinking?: boolean | undefined;
|
|
541
|
+
contextWindow?: number | undefined;
|
|
542
|
+
supportsTemperature?: boolean | undefined;
|
|
543
|
+
} | undefined;
|
|
544
|
+
}>, "many">>;
|
|
296
545
|
}, "strip", z.ZodTypeAny, {
|
|
297
546
|
sisyphus: string;
|
|
298
547
|
oracle: string;
|
|
@@ -300,6 +549,47 @@ declare const AthenaConfigSchema: z.ZodObject<{
|
|
|
300
549
|
frontend?: string | undefined;
|
|
301
550
|
documentWriter?: string | undefined;
|
|
302
551
|
multimodalLooker?: string | undefined;
|
|
552
|
+
custom?: {
|
|
553
|
+
id: string;
|
|
554
|
+
name: string;
|
|
555
|
+
provider: "anthropic" | "openai" | "google" | "github-copilot";
|
|
556
|
+
description?: string | undefined;
|
|
557
|
+
capabilities?: {
|
|
558
|
+
thinking?: boolean | undefined;
|
|
559
|
+
contextWindow?: number | undefined;
|
|
560
|
+
supportsTemperature?: boolean | undefined;
|
|
561
|
+
} | undefined;
|
|
562
|
+
}[] | undefined;
|
|
563
|
+
settings?: {
|
|
564
|
+
sisyphus?: {
|
|
565
|
+
temperature?: number | undefined;
|
|
566
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
567
|
+
} | undefined;
|
|
568
|
+
oracle?: {
|
|
569
|
+
temperature?: number | undefined;
|
|
570
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
571
|
+
} | undefined;
|
|
572
|
+
librarian?: {
|
|
573
|
+
temperature?: number | undefined;
|
|
574
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
575
|
+
} | undefined;
|
|
576
|
+
frontend?: {
|
|
577
|
+
temperature?: number | undefined;
|
|
578
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
579
|
+
} | undefined;
|
|
580
|
+
documentWriter?: {
|
|
581
|
+
temperature?: number | undefined;
|
|
582
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
583
|
+
} | undefined;
|
|
584
|
+
multimodalLooker?: {
|
|
585
|
+
temperature?: number | undefined;
|
|
586
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
587
|
+
} | undefined;
|
|
588
|
+
overrides?: Record<string, {
|
|
589
|
+
temperature?: number | undefined;
|
|
590
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
591
|
+
}> | undefined;
|
|
592
|
+
} | undefined;
|
|
303
593
|
}, {
|
|
304
594
|
sisyphus: string;
|
|
305
595
|
oracle: string;
|
|
@@ -307,17 +597,58 @@ declare const AthenaConfigSchema: z.ZodObject<{
|
|
|
307
597
|
frontend?: string | undefined;
|
|
308
598
|
documentWriter?: string | undefined;
|
|
309
599
|
multimodalLooker?: string | undefined;
|
|
600
|
+
custom?: {
|
|
601
|
+
id: string;
|
|
602
|
+
name: string;
|
|
603
|
+
provider: "anthropic" | "openai" | "google" | "github-copilot";
|
|
604
|
+
description?: string | undefined;
|
|
605
|
+
capabilities?: {
|
|
606
|
+
thinking?: boolean | undefined;
|
|
607
|
+
contextWindow?: number | undefined;
|
|
608
|
+
supportsTemperature?: boolean | undefined;
|
|
609
|
+
} | undefined;
|
|
610
|
+
}[] | undefined;
|
|
611
|
+
settings?: {
|
|
612
|
+
sisyphus?: {
|
|
613
|
+
temperature?: number | undefined;
|
|
614
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
615
|
+
} | undefined;
|
|
616
|
+
oracle?: {
|
|
617
|
+
temperature?: number | undefined;
|
|
618
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
619
|
+
} | undefined;
|
|
620
|
+
librarian?: {
|
|
621
|
+
temperature?: number | undefined;
|
|
622
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
623
|
+
} | undefined;
|
|
624
|
+
frontend?: {
|
|
625
|
+
temperature?: number | undefined;
|
|
626
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
627
|
+
} | undefined;
|
|
628
|
+
documentWriter?: {
|
|
629
|
+
temperature?: number | undefined;
|
|
630
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
631
|
+
} | undefined;
|
|
632
|
+
multimodalLooker?: {
|
|
633
|
+
temperature?: number | undefined;
|
|
634
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
635
|
+
} | undefined;
|
|
636
|
+
overrides?: Record<string, {
|
|
637
|
+
temperature?: number | undefined;
|
|
638
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
639
|
+
}> | undefined;
|
|
640
|
+
} | undefined;
|
|
310
641
|
}>;
|
|
311
642
|
bmad: z.ZodObject<{
|
|
312
643
|
defaultTrack: z.ZodEnum<["quick-flow", "bmad-method", "enterprise"]>;
|
|
313
644
|
autoStatusUpdate: z.ZodBoolean;
|
|
314
645
|
parallelStoryLimit: z.ZodNumber;
|
|
315
646
|
}, "strip", z.ZodTypeAny, {
|
|
316
|
-
defaultTrack: "quick-flow" | "bmad-method"
|
|
647
|
+
defaultTrack: "enterprise" | "quick-flow" | "bmad-method";
|
|
317
648
|
autoStatusUpdate: boolean;
|
|
318
649
|
parallelStoryLimit: number;
|
|
319
650
|
}, {
|
|
320
|
-
defaultTrack: "quick-flow" | "bmad-method"
|
|
651
|
+
defaultTrack: "enterprise" | "quick-flow" | "bmad-method";
|
|
321
652
|
autoStatusUpdate: boolean;
|
|
322
653
|
parallelStoryLimit: number;
|
|
323
654
|
}>;
|
|
@@ -372,6 +703,11 @@ declare const AthenaConfigSchema: z.ZodObject<{
|
|
|
372
703
|
enabled: boolean;
|
|
373
704
|
tier: "max5x" | "max20x" | "pro" | "none";
|
|
374
705
|
};
|
|
706
|
+
githubCopilot: {
|
|
707
|
+
enabled: boolean;
|
|
708
|
+
plan: "pro" | "none" | "free" | "pro-plus" | "business" | "enterprise";
|
|
709
|
+
enabledModels?: string[] | undefined;
|
|
710
|
+
};
|
|
375
711
|
};
|
|
376
712
|
models: {
|
|
377
713
|
sisyphus: string;
|
|
@@ -380,9 +716,50 @@ declare const AthenaConfigSchema: z.ZodObject<{
|
|
|
380
716
|
frontend?: string | undefined;
|
|
381
717
|
documentWriter?: string | undefined;
|
|
382
718
|
multimodalLooker?: string | undefined;
|
|
719
|
+
custom?: {
|
|
720
|
+
id: string;
|
|
721
|
+
name: string;
|
|
722
|
+
provider: "anthropic" | "openai" | "google" | "github-copilot";
|
|
723
|
+
description?: string | undefined;
|
|
724
|
+
capabilities?: {
|
|
725
|
+
thinking?: boolean | undefined;
|
|
726
|
+
contextWindow?: number | undefined;
|
|
727
|
+
supportsTemperature?: boolean | undefined;
|
|
728
|
+
} | undefined;
|
|
729
|
+
}[] | undefined;
|
|
730
|
+
settings?: {
|
|
731
|
+
sisyphus?: {
|
|
732
|
+
temperature?: number | undefined;
|
|
733
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
734
|
+
} | undefined;
|
|
735
|
+
oracle?: {
|
|
736
|
+
temperature?: number | undefined;
|
|
737
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
738
|
+
} | undefined;
|
|
739
|
+
librarian?: {
|
|
740
|
+
temperature?: number | undefined;
|
|
741
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
742
|
+
} | undefined;
|
|
743
|
+
frontend?: {
|
|
744
|
+
temperature?: number | undefined;
|
|
745
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
746
|
+
} | undefined;
|
|
747
|
+
documentWriter?: {
|
|
748
|
+
temperature?: number | undefined;
|
|
749
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
750
|
+
} | undefined;
|
|
751
|
+
multimodalLooker?: {
|
|
752
|
+
temperature?: number | undefined;
|
|
753
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
754
|
+
} | undefined;
|
|
755
|
+
overrides?: Record<string, {
|
|
756
|
+
temperature?: number | undefined;
|
|
757
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
758
|
+
}> | undefined;
|
|
759
|
+
} | undefined;
|
|
383
760
|
};
|
|
384
761
|
bmad: {
|
|
385
|
-
defaultTrack: "quick-flow" | "bmad-method"
|
|
762
|
+
defaultTrack: "enterprise" | "quick-flow" | "bmad-method";
|
|
386
763
|
autoStatusUpdate: boolean;
|
|
387
764
|
parallelStoryLimit: number;
|
|
388
765
|
};
|
|
@@ -415,6 +792,11 @@ declare const AthenaConfigSchema: z.ZodObject<{
|
|
|
415
792
|
enabled: boolean;
|
|
416
793
|
tier: "max5x" | "max20x" | "pro" | "none";
|
|
417
794
|
};
|
|
795
|
+
githubCopilot: {
|
|
796
|
+
enabled: boolean;
|
|
797
|
+
plan: "pro" | "none" | "free" | "pro-plus" | "business" | "enterprise";
|
|
798
|
+
enabledModels?: string[] | undefined;
|
|
799
|
+
};
|
|
418
800
|
};
|
|
419
801
|
models: {
|
|
420
802
|
sisyphus: string;
|
|
@@ -423,9 +805,50 @@ declare const AthenaConfigSchema: z.ZodObject<{
|
|
|
423
805
|
frontend?: string | undefined;
|
|
424
806
|
documentWriter?: string | undefined;
|
|
425
807
|
multimodalLooker?: string | undefined;
|
|
808
|
+
custom?: {
|
|
809
|
+
id: string;
|
|
810
|
+
name: string;
|
|
811
|
+
provider: "anthropic" | "openai" | "google" | "github-copilot";
|
|
812
|
+
description?: string | undefined;
|
|
813
|
+
capabilities?: {
|
|
814
|
+
thinking?: boolean | undefined;
|
|
815
|
+
contextWindow?: number | undefined;
|
|
816
|
+
supportsTemperature?: boolean | undefined;
|
|
817
|
+
} | undefined;
|
|
818
|
+
}[] | undefined;
|
|
819
|
+
settings?: {
|
|
820
|
+
sisyphus?: {
|
|
821
|
+
temperature?: number | undefined;
|
|
822
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
823
|
+
} | undefined;
|
|
824
|
+
oracle?: {
|
|
825
|
+
temperature?: number | undefined;
|
|
826
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
827
|
+
} | undefined;
|
|
828
|
+
librarian?: {
|
|
829
|
+
temperature?: number | undefined;
|
|
830
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
831
|
+
} | undefined;
|
|
832
|
+
frontend?: {
|
|
833
|
+
temperature?: number | undefined;
|
|
834
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
835
|
+
} | undefined;
|
|
836
|
+
documentWriter?: {
|
|
837
|
+
temperature?: number | undefined;
|
|
838
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
839
|
+
} | undefined;
|
|
840
|
+
multimodalLooker?: {
|
|
841
|
+
temperature?: number | undefined;
|
|
842
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
843
|
+
} | undefined;
|
|
844
|
+
overrides?: Record<string, {
|
|
845
|
+
temperature?: number | undefined;
|
|
846
|
+
thinkingLevel?: "off" | "low" | "medium" | "high" | undefined;
|
|
847
|
+
}> | undefined;
|
|
848
|
+
} | undefined;
|
|
426
849
|
};
|
|
427
850
|
bmad: {
|
|
428
|
-
defaultTrack: "quick-flow" | "bmad-method"
|
|
851
|
+
defaultTrack: "enterprise" | "quick-flow" | "bmad-method";
|
|
429
852
|
autoStatusUpdate: boolean;
|
|
430
853
|
parallelStoryLimit: number;
|
|
431
854
|
};
|