jeo-code 0.6.27 → 0.6.29
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 +26 -0
- package/README.ja.md +2 -6
- package/README.ko.md +2 -6
- package/README.md +2 -6
- package/README.zh.md +2 -6
- package/package.json +1 -1
- package/src/agent/compaction.ts +10 -1
- package/src/agent/engine.ts +62 -16
- package/src/agent/loop.ts +3 -0
- package/src/ai/model-catalog.ts +12 -5
- package/src/ai/model-manager.ts +1 -0
- package/src/ai/providers/anthropic.ts +121 -21
- package/src/ai/providers/antigravity.ts +6 -0
- package/src/ai/providers/errors.ts +18 -0
- package/src/ai/providers/gemini.ts +84 -28
- package/src/ai/providers/openai-compatible-catalog.ts +10 -4
- package/src/ai/providers/openai-responses.ts +76 -19
- package/src/ai/types.ts +55 -2
- package/src/commands/launch.ts +90 -22
- package/src/tui/app.ts +38 -6
- package/src/tui/components/ascii-art.ts +27 -31
|
@@ -412,26 +412,24 @@ export async function animateFrames(stage: AsciiStage, opts: AnimateFramesOption
|
|
|
412
412
|
}
|
|
413
413
|
return total;
|
|
414
414
|
}
|
|
415
|
-
/** The compact jeo forge mark: a
|
|
416
|
-
* of SIMPLE, DISCONNECTED shapes (no connecting strokes) that
|
|
417
|
-
*
|
|
418
|
-
*
|
|
419
|
-
*
|
|
420
|
-
*
|
|
421
|
-
*
|
|
422
|
-
* lobster identity is carried by the disconnected silhouette; the JEO typography is
|
|
423
|
-
* the deliberate lettermark at the core. Width-1 glyphs only (box drawing + geometrics)
|
|
415
|
+
/** The compact jeo forge mark: a symmetrical crayfish (가재) brand emblem composed
|
|
416
|
+
* of SIMPLE, DISCONNECTED shapes (no connecting strokes) that highlight the signature
|
|
417
|
+
* pincer CLAWS (집게) flanking the sides (◤◣ and ❮ on the left, ◥◢ and ❯ on the right),
|
|
418
|
+
* the body carrying the JEO wordmark (J E O), and a DNA double-helix woven above and
|
|
419
|
+
* below as a row of crossing nodes (╳ = base-pair crossings). gjc-forge aesthetic:
|
|
420
|
+
* clean negative space, geometric symmetry, the blue→violet→pink flow gradient applied
|
|
421
|
+
* by renderForgeMark doing the neon glow. Width-1 glyphs only (box drawing + geometrics)
|
|
424
422
|
* so padding/centering math stays exact. Frame 0 is the static symbol. */
|
|
425
423
|
export const FORGE_MARK_ART: string[] = [
|
|
426
|
-
"◤
|
|
427
|
-
"❮
|
|
428
|
-
"◣
|
|
424
|
+
"◤ ╳ ╳ ╳ ╳ ◥",
|
|
425
|
+
"❮ J E O ❯",
|
|
426
|
+
"◣ ╳ ╳ ╳ ╳ ◢"
|
|
429
427
|
];
|
|
430
428
|
|
|
431
429
|
export const FORGE_MARK_ART_ASCII: string[] = [
|
|
432
|
-
"/
|
|
433
|
-
"<
|
|
434
|
-
"\\
|
|
430
|
+
"/ x x x x \\",
|
|
431
|
+
"< J E O >",
|
|
432
|
+
"\\ x x x x /"
|
|
435
433
|
];
|
|
436
434
|
|
|
437
435
|
/** Claw-snap blink frames for the compact lobster forge mark: the helix nodes, the
|
|
@@ -442,18 +440,18 @@ export const FORGE_MARK_ART_ASCII: string[] = [
|
|
|
442
440
|
export const FORGE_MARK_FRAMES: string[][] = [
|
|
443
441
|
FORGE_MARK_ART,
|
|
444
442
|
[
|
|
445
|
-
"◢
|
|
446
|
-
"❮
|
|
447
|
-
"◥
|
|
443
|
+
"◢ ╳ ╳ ╳ ╳ ◣",
|
|
444
|
+
"❮ J E O ❯",
|
|
445
|
+
"◥ ╳ ╳ ╳ ╳ ◤"
|
|
448
446
|
]
|
|
449
447
|
];
|
|
450
448
|
|
|
451
449
|
export const FORGE_MARK_FRAMES_ASCII: string[][] = [
|
|
452
450
|
FORGE_MARK_ART_ASCII,
|
|
453
451
|
[
|
|
454
|
-
"\\
|
|
455
|
-
"<
|
|
456
|
-
"/
|
|
452
|
+
"\\ x x x x /",
|
|
453
|
+
"< J E O >",
|
|
454
|
+
"/ x x x x \\"
|
|
457
455
|
]
|
|
458
456
|
];
|
|
459
457
|
|
|
@@ -463,27 +461,25 @@ export function forgeMarkFrameCount(): number {
|
|
|
463
461
|
}
|
|
464
462
|
|
|
465
463
|
/** Grand hero variant for the welcome forge box (gjc-style spacious banner): the same
|
|
466
|
-
*
|
|
467
|
-
* (◤◣ left, ◥◢ right)
|
|
468
|
-
* double-helix woven above and below as a wider
|
|
469
|
-
* aesthetic: generous negative space + geometric
|
|
470
|
-
* blue→violet→pink flow gradient supplying the neon glow.
|
|
471
|
-
*
|
|
472
|
-
* (matches the welcome compact↔grand threshold) and width-1 glyphs only so
|
|
464
|
+
* symmetrical crayfish emblem rendered large — the splayed pincer claws as corner wedges
|
|
465
|
+
* (◤◣ left, ◥◢ right) and heavy brackets (❮ left, ❯ right), the JEO wordmark spaced
|
|
466
|
+
* across the body (J E O), and the DNA double-helix woven above and below as a wider
|
|
467
|
+
* row of crossing nodes (╳). gjc-forge aesthetic: generous negative space + geometric
|
|
468
|
+
* symmetry, with renderForgeMark's blue→violet→pink flow gradient supplying the neon glow.
|
|
469
|
+
* Width 29 (matches the welcome compact↔grand threshold) and width-1 glyphs only so
|
|
473
470
|
* padding/centering math stays exact. */
|
|
474
471
|
export const FORGE_MARK_ART_GRAND: string[] = [
|
|
475
472
|
"◤ ╳ ╳ ╳ ╳ ╳ ╳ ◥",
|
|
476
|
-
"❮ J E O
|
|
473
|
+
"❮ J E O ❯",
|
|
477
474
|
"◣ ╳ ╳ ╳ ╳ ╳ ╳ ◢"
|
|
478
475
|
];
|
|
479
476
|
|
|
480
477
|
export const FORGE_MARK_ART_GRAND_ASCII: string[] = [
|
|
481
478
|
"/ x x x x x x \\",
|
|
482
|
-
"< J E O
|
|
479
|
+
"< J E O >",
|
|
483
480
|
"\\ x x x x x x /"
|
|
484
481
|
];
|
|
485
482
|
|
|
486
|
-
|
|
487
483
|
// Bounded memo of fully-rendered forge-mark frames keyed by every input that affects
|
|
488
484
|
// output (grand/unicode/cols/color/colorLevel/phase/frame). The live HUD cycles a
|
|
489
485
|
// FIXED frame set (blink × gradient phases) at ~120ms; without this each recurrence
|