@jun133/kitty 0.0.15 → 0.0.16

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.
@@ -7,17 +7,17 @@ import {
7
7
  mirrorProcessOutputToTerminalLog,
8
8
  renderKittyBanner,
9
9
  ui
10
- } from "./chunk-WIKLME2V.mjs";
11
- import "./chunk-KUP5OMPB.mjs";
10
+ } from "./chunk-LCTAPA2B.mjs";
11
+ import "./chunk-FKBVCYPW.mjs";
12
12
  import {
13
13
  createRuntimeUiAgentCallbacks
14
- } from "./chunk-AQEMM5VH.mjs";
14
+ } from "./chunk-XY3SQDFZ.mjs";
15
15
  import {
16
16
  colorRuntimeUiText,
17
17
  loadProjectContext,
18
18
  writeStdout
19
- } from "./chunk-7FDXKNTM.mjs";
20
- import "./chunk-S4QTRPZ7.mjs";
19
+ } from "./chunk-7FOTCUIH.mjs";
20
+ import "./chunk-C3MFBHV3.mjs";
21
21
 
22
22
  // src/shell/cli/intro.ts
23
23
  import chalk from "chalk";
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  createRuntimeUiAgentCallbacks
3
- } from "./chunk-AQEMM5VH.mjs";
3
+ } from "./chunk-XY3SQDFZ.mjs";
4
4
  import {
5
5
  runHostTurn
6
- } from "./chunk-7FDXKNTM.mjs";
7
- import "./chunk-S4QTRPZ7.mjs";
6
+ } from "./chunk-7FOTCUIH.mjs";
7
+ import "./chunk-C3MFBHV3.mjs";
8
8
 
9
9
  // src/cli/oneShot.ts
10
10
  async function runOneShotPrompt(prompt, cwd, config, session, sessionStore, options = {}) {
@@ -2,7 +2,7 @@ import {
2
2
  InProcessSessionStore,
3
3
  SessionStore,
4
4
  createSessionRecord
5
- } from "./chunk-KUP5OMPB.mjs";
5
+ } from "./chunk-FKBVCYPW.mjs";
6
6
  import {
7
7
  applyCurrentTurnFrame,
8
8
  buildChatMessages,
@@ -31,7 +31,7 @@ import {
31
31
  shouldIncludeStoredAssistantReasoning,
32
32
  sliceCurrentUserInputFrame,
33
33
  toChatMessage
34
- } from "./chunk-S4QTRPZ7.mjs";
34
+ } from "./chunk-C3MFBHV3.mjs";
35
35
  export {
36
36
  InProcessSessionStore,
37
37
  SessionStore,
package/dist/tui.mjs CHANGED
@@ -7,15 +7,15 @@ import {
7
7
  mirrorInteractionShellToTerminalLog,
8
8
  parseSessionPickerChoice,
9
9
  renderKittyBanner
10
- } from "./chunk-WIKLME2V.mjs";
11
- import "./chunk-KUP5OMPB.mjs";
10
+ } from "./chunk-LCTAPA2B.mjs";
11
+ import "./chunk-FKBVCYPW.mjs";
12
12
  import {
13
13
  buildToolCallDisplay,
14
14
  buildToolResultDisplay,
15
15
  loadProjectContext,
16
16
  tryParseJson
17
- } from "./chunk-7FDXKNTM.mjs";
18
- import "./chunk-S4QTRPZ7.mjs";
17
+ } from "./chunk-7FOTCUIH.mjs";
18
+ import "./chunk-C3MFBHV3.mjs";
19
19
  import {
20
20
  TUI_COLORS,
21
21
  appendTranscriptEntry,
@@ -30,7 +30,7 @@ import {
30
30
  scrollTuiTranscriptToTop,
31
31
  updateComposerState,
32
32
  updateRuntimeDock
33
- } from "./chunk-NBKU7KA4.mjs";
33
+ } from "./chunk-L27HOXD2.mjs";
34
34
 
35
35
  // src/shell/tui/input/scroll.ts
36
36
  var ENABLE_MOUSE_TRACKING = "\x1B[?1000h\x1B[?1002h\x1B[?1006h";
@@ -748,7 +748,7 @@ async function startTuiChat(options) {
748
748
  const [{ default: React }, ink, { createTuiAppComponent }] = await Promise.all([
749
749
  import("react"),
750
750
  import("ink"),
751
- import("./App-CBTIS4IK.mjs")
751
+ import("./App-K7CBA2FU.mjs")
752
752
  ]);
753
753
  const selected = await selectTuiSession({
754
754
  cwd: options.cwd,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jun133/kitty",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "description": "Agent",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -28,7 +28,10 @@
28
28
  "check": "npm run typecheck && npm run build",
29
29
  "dev": "tsx src/cli.ts",
30
30
  "test:build": "node -e \"require('node:fs').rmSync('.test-build', { recursive: true, force: true })\" && tsc -p tsconfig.tests.json",
31
- "test:core": "npm run test:build && node --test .test-build/tests/**/*.test.js",
31
+ "test:core": "npm run test:build && node scripts/run-core-tests.mjs",
32
+ "test:eval": "npm run test:build && node --test .test-build/tests/evaluation/**/*.test.js",
33
+ "eval:local": "node scripts/ensure-dist-built.mjs && node dist/cli.js eval --run-local",
34
+ "eval:production": "node scripts/ensure-dist-built.mjs && node dist/cli.js eval --run-production",
32
35
  "verify": "npm test",
33
36
  "typecheck": "tsc --noEmit",
34
37
  "prepublishOnly": "npm run build",