@promptbook/cli 0.112.0-46 → 0.112.0-47
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 +16 -16
- package/esm/index.es.js +689 -250
- package/esm/index.es.js.map +1 -1
- package/esm/scripts/run-codex-prompts/common/waitForPause.d.ts +13 -1
- package/esm/scripts/run-codex-prompts/ui/buildCoderRunOctopusVisual.d.ts +13 -0
- package/esm/scripts/run-codex-prompts/ui/buildCoderRunUiFrame.d.ts +3 -1
- package/esm/scripts/run-codex-prompts/ui/coderRunUiRefresh.d.ts +8 -2
- package/esm/scripts/run-codex-prompts/ui/coderRunUiText.d.ts +36 -0
- package/esm/scripts/utils/emojiTags/scanEmojiTagUsage.d.ts +51 -0
- package/esm/src/avatars/AvatarOrImage.d.ts +45 -0
- package/esm/src/avatars/index.d.ts +1 -0
- package/esm/src/avatars/types/AvatarVisualDefinition.d.ts +6 -1
- package/esm/src/avatars/visuals/asciiOctopusAvatarVisual.d.ts +7 -0
- package/esm/src/avatars/visuals/octopus3AvatarVisual.d.ts +7 -0
- package/esm/src/avatars/visuals/octopusAvatarVisualShared.d.ts +125 -0
- package/esm/src/book-components/Chat/Chat/ChatMessageItem.d.ts +1 -1
- package/esm/src/book-components/Chat/Chat/ChatMessageList.d.ts +1 -1
- package/esm/src/book-components/Chat/Chat/ChatProps.d.ts +1 -1
- package/esm/src/book-components/Chat/Chat/ChatToolCallModalComponents.d.ts +8 -2
- package/esm/src/book-components/Chat/hooks/useChatCompleteNotification.d.ts +2 -0
- package/esm/src/book-components/Chat/types/ChatParticipant.d.ts +10 -0
- package/esm/src/cli/cli-commands/coder/ensureCoderGitignoreFile.d.ts +1 -1
- package/esm/src/config.d.ts +2 -2
- package/esm/src/llm-providers/agent/RemoteAgent.d.ts +3 -0
- package/esm/src/utils/agents/resolveAgentAvatarImageUrl.d.ts +49 -5
- package/esm/src/utils/agents/resolveAgentAvatarImageUrl.test.d.ts +1 -0
- package/esm/src/version.d.ts +1 -1
- package/package.json +4 -2
- package/umd/index.umd.js +688 -249
- package/umd/index.umd.js.map +1 -1
- package/umd/scripts/run-codex-prompts/common/waitForPause.d.ts +13 -1
- package/umd/scripts/run-codex-prompts/ui/buildCoderRunOctopusVisual.d.ts +13 -0
- package/umd/scripts/run-codex-prompts/ui/buildCoderRunUiFrame.d.ts +3 -1
- package/umd/scripts/run-codex-prompts/ui/coderRunUiRefresh.d.ts +8 -2
- package/umd/scripts/run-codex-prompts/ui/coderRunUiText.d.ts +36 -0
- package/umd/scripts/utils/emojiTags/scanEmojiTagUsage.d.ts +51 -0
- package/umd/src/avatars/AvatarOrImage.d.ts +45 -0
- package/umd/src/avatars/index.d.ts +1 -0
- package/umd/src/avatars/types/AvatarVisualDefinition.d.ts +6 -1
- package/umd/src/avatars/visuals/asciiOctopusAvatarVisual.d.ts +7 -0
- package/umd/src/avatars/visuals/octopus3AvatarVisual.d.ts +7 -0
- package/umd/src/avatars/visuals/octopusAvatarVisualShared.d.ts +125 -0
- package/umd/src/book-components/Chat/Chat/ChatMessageItem.d.ts +1 -1
- package/umd/src/book-components/Chat/Chat/ChatMessageList.d.ts +1 -1
- package/umd/src/book-components/Chat/Chat/ChatProps.d.ts +1 -1
- package/umd/src/book-components/Chat/Chat/ChatToolCallModalComponents.d.ts +8 -2
- package/umd/src/book-components/Chat/hooks/useChatCompleteNotification.d.ts +2 -0
- package/umd/src/book-components/Chat/types/ChatParticipant.d.ts +10 -0
- package/umd/src/cli/cli-commands/coder/ensureCoderGitignoreFile.d.ts +1 -1
- package/umd/src/config.d.ts +2 -2
- package/umd/src/llm-providers/agent/RemoteAgent.d.ts +3 -0
- package/umd/src/utils/agents/resolveAgentAvatarImageUrl.d.ts +49 -5
- package/umd/src/utils/agents/resolveAgentAvatarImageUrl.test.d.ts +1 -0
- package/umd/src/version.d.ts +1 -1
package/esm/index.es.js
CHANGED
|
@@ -2,7 +2,7 @@ import colors from 'colors';
|
|
|
2
2
|
import commander, { Option } from 'commander';
|
|
3
3
|
import _spaceTrim, { spaceTrim as spaceTrim$1 } from 'spacetrim';
|
|
4
4
|
import * as fs from 'fs';
|
|
5
|
-
import { mkdirSync, writeFileSync, readFileSync, existsSync } from 'fs';
|
|
5
|
+
import { mkdirSync, writeFileSync, statSync, readFileSync, existsSync } from 'fs';
|
|
6
6
|
import { join, basename, dirname, isAbsolute, relative, extname, resolve } from 'path';
|
|
7
7
|
import { readFile, writeFile, stat, mkdir, access, constants, readdir, watch, unlink, rm, rename, rmdir, appendFile } from 'fs/promises';
|
|
8
8
|
import { forTime, forEver } from 'waitasecond';
|
|
@@ -58,7 +58,7 @@ const BOOK_LANGUAGE_VERSION = '2.0.0';
|
|
|
58
58
|
* @generated
|
|
59
59
|
* @see https://github.com/webgptorg/promptbook
|
|
60
60
|
*/
|
|
61
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.112.0-
|
|
61
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.112.0-47';
|
|
62
62
|
/**
|
|
63
63
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
64
64
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1045,7 +1045,7 @@ const ADMIN_GITHUB_NAME = 'hejny';
|
|
|
1045
1045
|
*
|
|
1046
1046
|
* @public exported from `@promptbook/core`
|
|
1047
1047
|
*/
|
|
1048
|
-
const CLAIM = `
|
|
1048
|
+
const CLAIM = `Create persistent AI agents that turn your company's scattered knowledge into action`;
|
|
1049
1049
|
// <- TODO: [🐊] Pick the best claim
|
|
1050
1050
|
/**
|
|
1051
1051
|
* Color of the Promptbook
|
|
@@ -1098,7 +1098,7 @@ Color.fromHex('#1D4ED8');
|
|
|
1098
1098
|
*
|
|
1099
1099
|
* @public exported from `@promptbook/core`
|
|
1100
1100
|
*/
|
|
1101
|
-
const DEFAULT_BOOK_TITLE =
|
|
1101
|
+
const DEFAULT_BOOK_TITLE = `🐙 Untitled agent`;
|
|
1102
1102
|
/**
|
|
1103
1103
|
* When the title of task is not provided, the default title is used
|
|
1104
1104
|
*
|
|
@@ -2488,37 +2488,68 @@ function buildMissingEnvVariablesBlock(variables) {
|
|
|
2488
2488
|
}
|
|
2489
2489
|
// Note: [🟡] Code for coder init environment bootstrapping [ensureCoderEnvFile](src/cli/cli-commands/coder/ensureCoderEnvFile.ts) should never be published outside of `@promptbook/cli`
|
|
2490
2490
|
|
|
2491
|
+
/**
|
|
2492
|
+
* @@@
|
|
2493
|
+
*
|
|
2494
|
+
* @public exported from `@promptbook/utils`
|
|
2495
|
+
*/
|
|
2496
|
+
function escapeRegExp$1(value) {
|
|
2497
|
+
return value.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
|
2498
|
+
}
|
|
2499
|
+
|
|
2491
2500
|
/**
|
|
2492
2501
|
* Relative path to `.gitignore` in the initialized project.
|
|
2493
2502
|
*/
|
|
2494
2503
|
const GITIGNORE_FILE_PATH = '.gitignore';
|
|
2495
2504
|
/**
|
|
2496
|
-
*
|
|
2505
|
+
* Promptbook coder temp directory that should stay out of version control.
|
|
2506
|
+
*/
|
|
2507
|
+
const CODER_TEMP_GITIGNORE_RULE = '/.tmp';
|
|
2508
|
+
/**
|
|
2509
|
+
* Promptbook coder cache directory that should stay out of version control.
|
|
2497
2510
|
*/
|
|
2498
|
-
const
|
|
2499
|
-
# Promptbook Coder
|
|
2500
|
-
/.tmp
|
|
2501
|
-
`);
|
|
2511
|
+
const CODER_CACHE_GITIGNORE_RULE = '/.promptbook/ptbk-coder';
|
|
2502
2512
|
/**
|
|
2503
|
-
*
|
|
2513
|
+
* Standard header used when appending Promptbook coder rules into `.gitignore`.
|
|
2514
|
+
*/
|
|
2515
|
+
const CODER_GITIGNORE_HEADER = '# Promptbook Coder';
|
|
2516
|
+
/**
|
|
2517
|
+
* Ensures `.gitignore` contains the standalone Promptbook coder temp and cache entries.
|
|
2504
2518
|
*
|
|
2505
2519
|
* @private function of `initializeCoderProjectConfiguration`
|
|
2506
2520
|
*/
|
|
2507
2521
|
async function ensureCoderGitignoreFile(projectPath) {
|
|
2508
2522
|
const gitignorePath = join(projectPath, GITIGNORE_FILE_PATH);
|
|
2509
2523
|
const currentGitignoreContent = await readTextFileIfExists(gitignorePath);
|
|
2510
|
-
|
|
2524
|
+
const missingRules = getMissingCoderGitignoreRules(currentGitignoreContent || '');
|
|
2525
|
+
if (currentGitignoreContent !== undefined && missingRules.length === 0) {
|
|
2511
2526
|
return 'unchanged';
|
|
2512
2527
|
}
|
|
2513
|
-
const nextGitignoreContent = appendBlock(currentGitignoreContent || '',
|
|
2528
|
+
const nextGitignoreContent = appendBlock(currentGitignoreContent || '', buildCoderGitignoreBlock(missingRules));
|
|
2514
2529
|
await writeFile(gitignorePath, nextGitignoreContent, 'utf-8');
|
|
2515
2530
|
return currentGitignoreContent === undefined ? 'created' : 'updated';
|
|
2516
2531
|
}
|
|
2517
2532
|
/**
|
|
2518
|
-
*
|
|
2533
|
+
* Returns the Promptbook coder gitignore rules that still need to be added.
|
|
2534
|
+
*/
|
|
2535
|
+
function getMissingCoderGitignoreRules(gitignoreContent) {
|
|
2536
|
+
const requiredRules = [CODER_TEMP_GITIGNORE_RULE, CODER_CACHE_GITIGNORE_RULE];
|
|
2537
|
+
return requiredRules.filter((rule) => !hasGitignoreRule(gitignoreContent, rule));
|
|
2538
|
+
}
|
|
2539
|
+
/**
|
|
2540
|
+
* Builds the Promptbook coder `.gitignore` block for the missing rules only.
|
|
2541
|
+
*/
|
|
2542
|
+
function buildCoderGitignoreBlock(missingRules) {
|
|
2543
|
+
return [CODER_GITIGNORE_HEADER, ...missingRules].join('\n');
|
|
2544
|
+
}
|
|
2545
|
+
/**
|
|
2546
|
+
* Detects whether `.gitignore` already covers one exact rule.
|
|
2519
2547
|
*/
|
|
2520
|
-
function
|
|
2521
|
-
|
|
2548
|
+
function hasGitignoreRule(gitignoreContent, rule) {
|
|
2549
|
+
const normalizedRulePattern = rule.startsWith('/')
|
|
2550
|
+
? `/?${escapeRegExp$1(rule.slice(1))}`
|
|
2551
|
+
: escapeRegExp$1(rule);
|
|
2552
|
+
return new RegExp(`(^|[\\r\\n])${normalizedRulePattern}(?:[\\r\\n]|$)`, 'u').test(gitignoreContent);
|
|
2522
2553
|
}
|
|
2523
2554
|
// Note: [🟡] Code for coder init gitignore bootstrapping [ensureCoderGitignoreFile](src/cli/cli-commands/coder/ensureCoderGitignoreFile.ts) should never be published outside of `@promptbook/cli`
|
|
2524
2555
|
|
|
@@ -2655,7 +2686,7 @@ async function parseJsonObjectFile(relativeFilePath, fileContent) {
|
|
|
2655
2686
|
${typescript.flattenDiagnosticMessageText(parsedFile.error.messageText, '\n')}
|
|
2656
2687
|
`));
|
|
2657
2688
|
}
|
|
2658
|
-
if (!isPlainObject(parsedFile.config)) {
|
|
2689
|
+
if (!isPlainObject$1(parsedFile.config)) {
|
|
2659
2690
|
throw new ParseError(spaceTrim$1(`
|
|
2660
2691
|
File \`${relativeFilePath}\` must contain one top-level JSON object.
|
|
2661
2692
|
`));
|
|
@@ -2669,7 +2700,7 @@ function getStringRecordOrDefault(value, relativeFilePath, fieldPath) {
|
|
|
2669
2700
|
if (value === undefined) {
|
|
2670
2701
|
return {};
|
|
2671
2702
|
}
|
|
2672
|
-
if (!isPlainObject(value)) {
|
|
2703
|
+
if (!isPlainObject$1(value)) {
|
|
2673
2704
|
throw new ParseError(spaceTrim$1(`
|
|
2674
2705
|
File \`${relativeFilePath}\` contains invalid \`${fieldPath}\`.
|
|
2675
2706
|
|
|
@@ -2714,7 +2745,7 @@ function detectJsonFileFormatting(fileContent) {
|
|
|
2714
2745
|
/**
|
|
2715
2746
|
* Checks whether one parsed JSON value is a plain object.
|
|
2716
2747
|
*/
|
|
2717
|
-
function isPlainObject(value) {
|
|
2748
|
+
function isPlainObject$1(value) {
|
|
2718
2749
|
return typeof value === 'object' && value !== null && !Array.isArray(value);
|
|
2719
2750
|
}
|
|
2720
2751
|
// Note: [🟡] Code for coder init JSON merging [mergeStringRecordJsonFile](src/cli/cli-commands/coder/mergeStringRecordJsonFile.ts) should never be published outside of `@promptbook/cli`
|
|
@@ -6194,15 +6225,6 @@ function prompt(strings, ...values) {
|
|
|
6194
6225
|
// TODO: [🧠][🈴] Where is the best location for this file
|
|
6195
6226
|
// Note: [💞] Ignore a discrepancy between file name and entity name
|
|
6196
6227
|
|
|
6197
|
-
/**
|
|
6198
|
-
* @@@
|
|
6199
|
-
*
|
|
6200
|
-
* @public exported from `@promptbook/utils`
|
|
6201
|
-
*/
|
|
6202
|
-
function escapeRegExp$1(value) {
|
|
6203
|
-
return value.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
|
6204
|
-
}
|
|
6205
|
-
|
|
6206
6228
|
/**
|
|
6207
6229
|
* HTTP header used by Promptbook clients to advertise their release version.
|
|
6208
6230
|
*
|
|
@@ -43289,6 +43311,246 @@ const EMOJIS_OF_SINGLE_PICTOGRAM = new Set(Array.from(EMOJIS).filter((emoji) =>
|
|
|
43289
43311
|
// TODO: Mirror from Collboard or some common package
|
|
43290
43312
|
// Note: [💞] Ignore a discrepancy between file name and entity name
|
|
43291
43313
|
|
|
43314
|
+
/**
|
|
43315
|
+
* Default file globs scanned for emoji tags.
|
|
43316
|
+
*/
|
|
43317
|
+
const DEFAULT_INCLUDE_GLOBS = ['**/*.{ts,tsx,js,jsx,json,md,txt}'];
|
|
43318
|
+
/**
|
|
43319
|
+
* Default ignored paths while scanning the repository.
|
|
43320
|
+
*/
|
|
43321
|
+
const DEFAULT_IGNORE_GLOBS = ['**/node_modules/**', '**/.git/**', '**/.promptbook/ptbk-coder/**'];
|
|
43322
|
+
/**
|
|
43323
|
+
* Directory used for Promptbook coder runtime caches.
|
|
43324
|
+
*/
|
|
43325
|
+
const PTBK_CODER_CACHE_DIRECTORY_PATH = '.promptbook/ptbk-coder';
|
|
43326
|
+
/**
|
|
43327
|
+
* Relative cache file path storing per-file emoji-tag scan results.
|
|
43328
|
+
*/
|
|
43329
|
+
const EMOJI_TAG_SCAN_CACHE_FILE_PATH = `${PTBK_CODER_CACHE_DIRECTORY_PATH}/emoji-tag-scan-cache.json`;
|
|
43330
|
+
/**
|
|
43331
|
+
* Current schema version of the persisted emoji-tag scan cache.
|
|
43332
|
+
*/
|
|
43333
|
+
const EMOJI_TAG_SCAN_CACHE_VERSION = 1;
|
|
43334
|
+
/**
|
|
43335
|
+
* Scans repository files for bracketed emoji tags while reusing per-file cache entries for unchanged files.
|
|
43336
|
+
*/
|
|
43337
|
+
async function scanEmojiTagUsage(options) {
|
|
43338
|
+
var _a, _b, _c, _d;
|
|
43339
|
+
const rootDir = (_a = options.rootDir) !== null && _a !== void 0 ? _a : process.cwd();
|
|
43340
|
+
const includeGlobs = (_b = options.includeGlobs) !== null && _b !== void 0 ? _b : DEFAULT_INCLUDE_GLOBS;
|
|
43341
|
+
const ignoreGlobs = (_c = options.ignoreGlobs) !== null && _c !== void 0 ? _c : DEFAULT_IGNORE_GLOBS;
|
|
43342
|
+
const tagPrefix = (_d = options.tagPrefix) !== null && _d !== void 0 ? _d : '';
|
|
43343
|
+
const filesToScan = await findFilesToScan(rootDir, includeGlobs, ignoreGlobs);
|
|
43344
|
+
const matcher = buildEmojiTagMatcher(options.candidateEmojis, tagPrefix);
|
|
43345
|
+
const usedEmojis = new Set();
|
|
43346
|
+
const existingCache = await readEmojiTagScanCache(rootDir);
|
|
43347
|
+
const nextCacheFiles = { ...existingCache.files };
|
|
43348
|
+
let isCacheDirty = false;
|
|
43349
|
+
let scannedFileCount = 0;
|
|
43350
|
+
let reusedFileCount = 0;
|
|
43351
|
+
for (const filePath of filesToScan) {
|
|
43352
|
+
try {
|
|
43353
|
+
const fileStats = statSync(filePath);
|
|
43354
|
+
const cacheKey = toCacheKey(rootDir, filePath);
|
|
43355
|
+
const cachedFile = nextCacheFiles[cacheKey];
|
|
43356
|
+
const cachedEmojis = getCachedFileEmojis(cachedFile, fileStats.mtimeMs, fileStats.size, tagPrefix);
|
|
43357
|
+
if (cachedEmojis) {
|
|
43358
|
+
reusedFileCount += 1;
|
|
43359
|
+
addEmojis(usedEmojis, cachedEmojis);
|
|
43360
|
+
continue;
|
|
43361
|
+
}
|
|
43362
|
+
const fileContent = readFileSync(filePath, 'utf-8'); /* Note: sync file reads are fine for local tooling. */
|
|
43363
|
+
const scannedEmojis = scanFileForEmojiTags(fileContent, matcher);
|
|
43364
|
+
addEmojis(usedEmojis, scannedEmojis);
|
|
43365
|
+
nextCacheFiles[cacheKey] = updateCachedFile(cachedFile, fileStats.mtimeMs, fileStats.size, tagPrefix, scannedEmojis);
|
|
43366
|
+
scannedFileCount += 1;
|
|
43367
|
+
isCacheDirty = true;
|
|
43368
|
+
}
|
|
43369
|
+
catch (error) {
|
|
43370
|
+
if (options.onFileError) {
|
|
43371
|
+
options.onFileError(normalizeError(error), filePath);
|
|
43372
|
+
continue;
|
|
43373
|
+
}
|
|
43374
|
+
throw error;
|
|
43375
|
+
}
|
|
43376
|
+
}
|
|
43377
|
+
if (isCacheDirty) {
|
|
43378
|
+
await writeEmojiTagScanCache(rootDir, {
|
|
43379
|
+
version: EMOJI_TAG_SCAN_CACHE_VERSION,
|
|
43380
|
+
files: nextCacheFiles,
|
|
43381
|
+
});
|
|
43382
|
+
}
|
|
43383
|
+
return {
|
|
43384
|
+
usedEmojis,
|
|
43385
|
+
scannedFileCount,
|
|
43386
|
+
reusedFileCount,
|
|
43387
|
+
};
|
|
43388
|
+
}
|
|
43389
|
+
/**
|
|
43390
|
+
* Resolves files to scan for matching emoji tags.
|
|
43391
|
+
*/
|
|
43392
|
+
async function findFilesToScan(rootDir, includeGlobs, ignoreGlobs) {
|
|
43393
|
+
const files = new Set();
|
|
43394
|
+
for (const pattern of includeGlobs) {
|
|
43395
|
+
const matches = await glob(pattern, {
|
|
43396
|
+
cwd: rootDir,
|
|
43397
|
+
ignore: Array.from(new Set([...ignoreGlobs, ...DEFAULT_IGNORE_GLOBS])),
|
|
43398
|
+
nodir: true,
|
|
43399
|
+
absolute: true,
|
|
43400
|
+
});
|
|
43401
|
+
for (const match of matches) {
|
|
43402
|
+
files.add(match);
|
|
43403
|
+
}
|
|
43404
|
+
}
|
|
43405
|
+
return Array.from(files);
|
|
43406
|
+
}
|
|
43407
|
+
/**
|
|
43408
|
+
* Builds a regex that matches one exact bracketed emoji-tag form.
|
|
43409
|
+
*/
|
|
43410
|
+
function buildEmojiTagMatcher(candidateEmojis, tagPrefix) {
|
|
43411
|
+
const escapedEmojiAlternatives = Array.from(candidateEmojis)
|
|
43412
|
+
.sort((leftEmoji, rightEmoji) => rightEmoji.length - leftEmoji.length)
|
|
43413
|
+
.map((emoji) => escapeRegExp$1(emoji))
|
|
43414
|
+
.join('|');
|
|
43415
|
+
if (escapedEmojiAlternatives === '') {
|
|
43416
|
+
return /$^/u;
|
|
43417
|
+
}
|
|
43418
|
+
return new RegExp(`\\[${escapeRegExp$1(tagPrefix)}(?<emoji>${escapedEmojiAlternatives})\\]`, 'gu');
|
|
43419
|
+
}
|
|
43420
|
+
/**
|
|
43421
|
+
* Extracts matching emojis from one file content.
|
|
43422
|
+
*/
|
|
43423
|
+
function scanFileForEmojiTags(fileContent, matcher) {
|
|
43424
|
+
var _a;
|
|
43425
|
+
matcher.lastIndex = 0;
|
|
43426
|
+
const matchedEmojis = new Set();
|
|
43427
|
+
for (const match of fileContent.matchAll(matcher)) {
|
|
43428
|
+
const emoji = (_a = match.groups) === null || _a === void 0 ? void 0 : _a.emoji;
|
|
43429
|
+
if (emoji) {
|
|
43430
|
+
matchedEmojis.add(emoji);
|
|
43431
|
+
}
|
|
43432
|
+
}
|
|
43433
|
+
return Array.from(matchedEmojis);
|
|
43434
|
+
}
|
|
43435
|
+
/**
|
|
43436
|
+
* Returns cached emojis when the file metadata still matches the stored cache entry.
|
|
43437
|
+
*/
|
|
43438
|
+
function getCachedFileEmojis(cachedFile, mtimeMs, size, tagPrefix) {
|
|
43439
|
+
if (!cachedFile || cachedFile.mtimeMs !== mtimeMs || cachedFile.size !== size) {
|
|
43440
|
+
return undefined;
|
|
43441
|
+
}
|
|
43442
|
+
const cachedEmojis = cachedFile.tagsByPrefix[tagPrefix];
|
|
43443
|
+
return Array.isArray(cachedEmojis) ? cachedEmojis : undefined;
|
|
43444
|
+
}
|
|
43445
|
+
/**
|
|
43446
|
+
* Stores the latest scan result for one file while preserving other prefix caches when the file revision is unchanged.
|
|
43447
|
+
*/
|
|
43448
|
+
function updateCachedFile(cachedFile, mtimeMs, size, tagPrefix, emojis) {
|
|
43449
|
+
const isSameFileRevision = (cachedFile === null || cachedFile === void 0 ? void 0 : cachedFile.mtimeMs) === mtimeMs && cachedFile.size === size;
|
|
43450
|
+
return {
|
|
43451
|
+
mtimeMs,
|
|
43452
|
+
size,
|
|
43453
|
+
tagsByPrefix: {
|
|
43454
|
+
...(isSameFileRevision ? cachedFile.tagsByPrefix : {}),
|
|
43455
|
+
[tagPrefix]: [...emojis],
|
|
43456
|
+
},
|
|
43457
|
+
};
|
|
43458
|
+
}
|
|
43459
|
+
/**
|
|
43460
|
+
* Loads the persisted emoji-tag scan cache and falls back to an empty cache when it is missing or invalid.
|
|
43461
|
+
*/
|
|
43462
|
+
async function readEmojiTagScanCache(rootDir) {
|
|
43463
|
+
try {
|
|
43464
|
+
const cacheContent = await readFile(join(rootDir, EMOJI_TAG_SCAN_CACHE_FILE_PATH), 'utf-8');
|
|
43465
|
+
return normalizeEmojiTagScanCache(JSON.parse(cacheContent));
|
|
43466
|
+
}
|
|
43467
|
+
catch (_a) {
|
|
43468
|
+
return createEmptyEmojiTagScanCache();
|
|
43469
|
+
}
|
|
43470
|
+
}
|
|
43471
|
+
/**
|
|
43472
|
+
* Persists the updated emoji-tag scan cache as a best-effort optimization.
|
|
43473
|
+
*/
|
|
43474
|
+
async function writeEmojiTagScanCache(rootDir, cache) {
|
|
43475
|
+
try {
|
|
43476
|
+
await mkdir(join(rootDir, PTBK_CODER_CACHE_DIRECTORY_PATH), { recursive: true });
|
|
43477
|
+
await writeFile(join(rootDir, EMOJI_TAG_SCAN_CACHE_FILE_PATH), `${JSON.stringify(cache, null, 2)}\n`, 'utf-8');
|
|
43478
|
+
}
|
|
43479
|
+
catch (_a) {
|
|
43480
|
+
// Note: Cache writes are only an optimization; scanning still succeeds when the cache cannot be written.
|
|
43481
|
+
}
|
|
43482
|
+
}
|
|
43483
|
+
/**
|
|
43484
|
+
* Normalizes one parsed cache payload into the current typed cache shape.
|
|
43485
|
+
*/
|
|
43486
|
+
function normalizeEmojiTagScanCache(value) {
|
|
43487
|
+
if (!isPlainObject(value) || value.version !== EMOJI_TAG_SCAN_CACHE_VERSION || !isPlainObject(value.files)) {
|
|
43488
|
+
return createEmptyEmojiTagScanCache();
|
|
43489
|
+
}
|
|
43490
|
+
const files = {};
|
|
43491
|
+
for (const [filePath, cachedValue] of Object.entries(value.files)) {
|
|
43492
|
+
if (!isPlainObject(cachedValue)) {
|
|
43493
|
+
continue;
|
|
43494
|
+
}
|
|
43495
|
+
const { mtimeMs, size, tagsByPrefix } = cachedValue;
|
|
43496
|
+
if (typeof mtimeMs !== 'number' || typeof size !== 'number' || !isPlainObject(tagsByPrefix)) {
|
|
43497
|
+
continue;
|
|
43498
|
+
}
|
|
43499
|
+
const normalizedTagsByPrefix = {};
|
|
43500
|
+
for (const [tagPrefix, cachedEmojis] of Object.entries(tagsByPrefix)) {
|
|
43501
|
+
if (!Array.isArray(cachedEmojis)) {
|
|
43502
|
+
continue;
|
|
43503
|
+
}
|
|
43504
|
+
normalizedTagsByPrefix[tagPrefix] = cachedEmojis.filter((emoji) => typeof emoji === 'string');
|
|
43505
|
+
}
|
|
43506
|
+
files[filePath] = {
|
|
43507
|
+
mtimeMs,
|
|
43508
|
+
size,
|
|
43509
|
+
tagsByPrefix: normalizedTagsByPrefix,
|
|
43510
|
+
};
|
|
43511
|
+
}
|
|
43512
|
+
return {
|
|
43513
|
+
version: EMOJI_TAG_SCAN_CACHE_VERSION,
|
|
43514
|
+
files,
|
|
43515
|
+
};
|
|
43516
|
+
}
|
|
43517
|
+
/**
|
|
43518
|
+
* Creates an empty cache payload for emoji-tag scans.
|
|
43519
|
+
*/
|
|
43520
|
+
function createEmptyEmojiTagScanCache() {
|
|
43521
|
+
return {
|
|
43522
|
+
version: EMOJI_TAG_SCAN_CACHE_VERSION,
|
|
43523
|
+
files: {},
|
|
43524
|
+
};
|
|
43525
|
+
}
|
|
43526
|
+
/**
|
|
43527
|
+
* Converts an absolute file path into a stable cache key relative to the scanned root.
|
|
43528
|
+
*/
|
|
43529
|
+
function toCacheKey(rootDir, filePath) {
|
|
43530
|
+
return relative(rootDir, filePath).replace(/\\/gu, '/');
|
|
43531
|
+
}
|
|
43532
|
+
/**
|
|
43533
|
+
* Adds multiple emojis into one target set.
|
|
43534
|
+
*/
|
|
43535
|
+
function addEmojis(target, emojis) {
|
|
43536
|
+
for (const emoji of emojis) {
|
|
43537
|
+
target.add(emoji);
|
|
43538
|
+
}
|
|
43539
|
+
}
|
|
43540
|
+
/**
|
|
43541
|
+
* Checks whether one unknown JSON value is a plain object.
|
|
43542
|
+
*/
|
|
43543
|
+
function isPlainObject(value) {
|
|
43544
|
+
return typeof value === 'object' && value !== null && !Array.isArray(value);
|
|
43545
|
+
}
|
|
43546
|
+
/**
|
|
43547
|
+
* Normalizes thrown values into proper `Error` objects for optional callbacks.
|
|
43548
|
+
*/
|
|
43549
|
+
function normalizeError(error) {
|
|
43550
|
+
return error instanceof Error ? error : new Error(String(error));
|
|
43551
|
+
}
|
|
43552
|
+
// Note: [?] Code in this file should never be published in any package
|
|
43553
|
+
|
|
43292
43554
|
// find-fresh-emoji-tags.ts
|
|
43293
43555
|
// Note: When run as a standalone script, call the exported function
|
|
43294
43556
|
if (require.main === module) {
|
|
@@ -43318,29 +43580,16 @@ function initializeFindFreshEmojiTagRun() {
|
|
|
43318
43580
|
async function findFreshEmojiTag() {
|
|
43319
43581
|
initializeFindFreshEmojiTagRun();
|
|
43320
43582
|
console.info(`🤪 Find fresh emoji tag`);
|
|
43321
|
-
const allFiles = await glob('**/*.{ts,tsx,js,jsx,json,md,txt}', {
|
|
43322
|
-
ignore: '**/node_modules/**', // <- TODO: [🚰] Ignore also hidden folders like *(`.promptbook`, `.next`, `.git`,...)*
|
|
43323
|
-
});
|
|
43324
43583
|
const allEmojis = EMOJIS_OF_SINGLE_PICTOGRAM;
|
|
43325
|
-
|
|
43326
|
-
|
|
43327
|
-
|
|
43328
|
-
|
|
43329
|
-
|
|
43330
|
-
for (const emoji of allEmojis) {
|
|
43331
|
-
const tag = `[${emoji}]`;
|
|
43332
|
-
if (content.includes(tag)) {
|
|
43333
|
-
usedEmojis.add(emoji);
|
|
43334
|
-
}
|
|
43335
|
-
}
|
|
43336
|
-
}
|
|
43337
|
-
catch (error) {
|
|
43338
|
-
console.error(colors.red('Error in checking file file /' + file));
|
|
43584
|
+
const { usedEmojis } = await scanEmojiTagUsage({
|
|
43585
|
+
candidateEmojis: allEmojis,
|
|
43586
|
+
tagPrefix: '',
|
|
43587
|
+
onFileError: (error, filePath) => {
|
|
43588
|
+
console.error(colors.red('Error in checking file /' + filePath));
|
|
43339
43589
|
console.error(error);
|
|
43340
|
-
}
|
|
43341
|
-
}
|
|
43342
|
-
|
|
43343
|
-
const freshEmojis = difference(allEmojis, usedEmojis);
|
|
43590
|
+
},
|
|
43591
|
+
});
|
|
43592
|
+
const freshEmojis = new Set(Array.from(allEmojis).filter((emoji) => !usedEmojis.has(emoji)));
|
|
43344
43593
|
console.info(colors.green(`Avialable fresh tags:`));
|
|
43345
43594
|
const randomEmojis = [...$shuffleItems(...Array.from(freshEmojis))].splice(0, 10);
|
|
43346
43595
|
// const randomEmojis = freshEmojis;
|
|
@@ -43948,9 +44197,14 @@ async function getFreshPromptEmojiTags(options) {
|
|
|
43948
44197
|
const includeGlobs = (_b = options.includeGlobs) !== null && _b !== void 0 ? _b : ['**/*.{ts,tsx,js,jsx,json,md,txt}'];
|
|
43949
44198
|
const ignoreGlobs = (_c = options.ignoreGlobs) !== null && _c !== void 0 ? _c : ['**/node_modules/**'];
|
|
43950
44199
|
const tagPrefix = (_d = options.tagPrefix) !== null && _d !== void 0 ? _d : PROMPT_EMOJI_TAG_PREFIX;
|
|
43951
|
-
const
|
|
43952
|
-
|
|
43953
|
-
|
|
44200
|
+
const { usedEmojis } = await scanEmojiTagUsage({
|
|
44201
|
+
rootDir,
|
|
44202
|
+
includeGlobs,
|
|
44203
|
+
ignoreGlobs,
|
|
44204
|
+
tagPrefix,
|
|
44205
|
+
candidateEmojis: EMOJIS_OF_SINGLE_PICTOGRAM,
|
|
44206
|
+
});
|
|
44207
|
+
const freshEmojis = new Set(Array.from(EMOJIS_OF_SINGLE_PICTOGRAM).filter((emoji) => !usedEmojis.has(emoji)));
|
|
43954
44208
|
const shuffledEmojis = $shuffleItems(...Array.from(freshEmojis));
|
|
43955
44209
|
const selectedEmojis = shuffledEmojis.slice(0, count);
|
|
43956
44210
|
if (selectedEmojis.length < count) {
|
|
@@ -43962,40 +44216,6 @@ async function getFreshPromptEmojiTags(options) {
|
|
|
43962
44216
|
tagPrefix,
|
|
43963
44217
|
};
|
|
43964
44218
|
}
|
|
43965
|
-
/**
|
|
43966
|
-
* Resolves files to scan for existing prompt emoji tags.
|
|
43967
|
-
*/
|
|
43968
|
-
async function findFilesToScan(rootDir, includeGlobs, ignoreGlobs) {
|
|
43969
|
-
const files = new Set();
|
|
43970
|
-
for (const pattern of includeGlobs) {
|
|
43971
|
-
const matches = await glob(pattern, {
|
|
43972
|
-
cwd: rootDir,
|
|
43973
|
-
ignore: ignoreGlobs,
|
|
43974
|
-
nodir: true,
|
|
43975
|
-
absolute: true,
|
|
43976
|
-
});
|
|
43977
|
-
for (const match of matches) {
|
|
43978
|
-
files.add(match);
|
|
43979
|
-
}
|
|
43980
|
-
}
|
|
43981
|
-
return Array.from(files);
|
|
43982
|
-
}
|
|
43983
|
-
/**
|
|
43984
|
-
* Collects emojis already used with the configured prompt prefix.
|
|
43985
|
-
*/
|
|
43986
|
-
function collectUsedPromptEmojis(filePaths, tagPrefix) {
|
|
43987
|
-
const usedEmojis = new Set();
|
|
43988
|
-
for (const file of filePaths) {
|
|
43989
|
-
const content = readFileSync(file, 'utf-8'); /* Note: sync read is fine for script tooling. */
|
|
43990
|
-
for (const emoji of EMOJIS_OF_SINGLE_PICTOGRAM) {
|
|
43991
|
-
const tag = formatPromptEmojiTag(emoji, tagPrefix);
|
|
43992
|
-
if (content.includes(tag)) {
|
|
43993
|
-
usedEmojis.add(emoji);
|
|
43994
|
-
}
|
|
43995
|
-
}
|
|
43996
|
-
}
|
|
43997
|
-
return usedEmojis;
|
|
43998
|
-
}
|
|
43999
44219
|
// Note: [?] Code in this file should never be published in any package
|
|
44000
44220
|
|
|
44001
44221
|
var promptEmojiTags = /*#__PURE__*/Object.freeze({
|
|
@@ -45024,6 +45244,27 @@ async function waitForEnter(prompt) {
|
|
|
45024
45244
|
* Current pause state.
|
|
45025
45245
|
*/
|
|
45026
45246
|
let pauseState = 'RUNNING';
|
|
45247
|
+
/**
|
|
45248
|
+
* Stores one new pause state in the shared runner controller.
|
|
45249
|
+
*/
|
|
45250
|
+
function setPauseState(nextPauseState) {
|
|
45251
|
+
pauseState = nextPauseState;
|
|
45252
|
+
}
|
|
45253
|
+
/**
|
|
45254
|
+
* Applies the same three-state toggle used by the `P` hotkey.
|
|
45255
|
+
*/
|
|
45256
|
+
function togglePauseState() {
|
|
45257
|
+
if (pauseState === 'RUNNING') {
|
|
45258
|
+
setPauseState('PAUSING');
|
|
45259
|
+
return 'REQUESTED_PAUSE';
|
|
45260
|
+
}
|
|
45261
|
+
if (pauseState === 'PAUSING') {
|
|
45262
|
+
setPauseState('RUNNING');
|
|
45263
|
+
return 'CANCELLED_PAUSE';
|
|
45264
|
+
}
|
|
45265
|
+
setPauseState('RUNNING');
|
|
45266
|
+
return 'RESUMED';
|
|
45267
|
+
}
|
|
45027
45268
|
/**
|
|
45028
45269
|
* Listens for the "p" key to pause and resume.
|
|
45029
45270
|
*/
|
|
@@ -45038,19 +45279,13 @@ function listenForPause() {
|
|
|
45038
45279
|
process.exit();
|
|
45039
45280
|
}
|
|
45040
45281
|
if (key.name === 'p') {
|
|
45041
|
-
|
|
45042
|
-
|
|
45282
|
+
const toggleResult = togglePauseState();
|
|
45283
|
+
if (toggleResult === 'REQUESTED_PAUSE') {
|
|
45043
45284
|
// Note: Using console.log here which adds a new line.
|
|
45044
45285
|
// This is intentional to prevent the message from being overwritten.
|
|
45045
45286
|
console.log(colors.bgWhite('Pausing...'));
|
|
45046
45287
|
}
|
|
45047
|
-
else if (
|
|
45048
|
-
pauseState = 'RUNNING';
|
|
45049
|
-
// The checkPause loop will terminate.
|
|
45050
|
-
}
|
|
45051
|
-
else if (pauseState === 'PAUSING') {
|
|
45052
|
-
// If user presses 'p' again while pausing, cancel the pause.
|
|
45053
|
-
pauseState = 'RUNNING';
|
|
45288
|
+
else if (toggleResult === 'CANCELLED_PAUSE') {
|
|
45054
45289
|
console.log(colors.green('Pause cancelled. Resuming...'));
|
|
45055
45290
|
}
|
|
45056
45291
|
}
|
|
@@ -45066,12 +45301,12 @@ function listenForPause() {
|
|
|
45066
45301
|
async function checkPause(options) {
|
|
45067
45302
|
var _a, _b;
|
|
45068
45303
|
if (pauseState === 'PAUSING') {
|
|
45069
|
-
|
|
45304
|
+
setPauseState('PAUSED');
|
|
45070
45305
|
if (!(options === null || options === void 0 ? void 0 : options.silent)) {
|
|
45071
45306
|
console.log(colors.bgWhite.black('Paused') + colors.gray(' (Press "p" to resume)'));
|
|
45072
45307
|
}
|
|
45073
45308
|
(_a = options === null || options === void 0 ? void 0 : options.onPaused) === null || _a === void 0 ? void 0 : _a.call(options);
|
|
45074
|
-
while (
|
|
45309
|
+
while (getPauseState() === 'PAUSED') {
|
|
45075
45310
|
await new Promise((resolve) => setTimeout(resolve, 100));
|
|
45076
45311
|
}
|
|
45077
45312
|
(_b = options === null || options === void 0 ? void 0 : options.onResumed) === null || _b === void 0 ? void 0 : _b.call(options);
|
|
@@ -45086,20 +45321,6 @@ async function checkPause(options) {
|
|
|
45086
45321
|
function getPauseState() {
|
|
45087
45322
|
return pauseState;
|
|
45088
45323
|
}
|
|
45089
|
-
/**
|
|
45090
|
-
* Requests a pause from an external controller (e.g. the Ink UI).
|
|
45091
|
-
*/
|
|
45092
|
-
function requestPause() {
|
|
45093
|
-
if (pauseState === 'RUNNING') {
|
|
45094
|
-
pauseState = 'PAUSING';
|
|
45095
|
-
}
|
|
45096
|
-
}
|
|
45097
|
-
/**
|
|
45098
|
-
* Resumes execution from an external controller after a pause.
|
|
45099
|
-
*/
|
|
45100
|
-
function requestResume() {
|
|
45101
|
-
pauseState = 'RUNNING';
|
|
45102
|
-
}
|
|
45103
45324
|
|
|
45104
45325
|
/**
|
|
45105
45326
|
* Environment variable that configures the name used for agent commits.
|
|
@@ -48739,49 +48960,215 @@ function buildPromptTestScriptPath(scriptPath) {
|
|
|
48739
48960
|
return `${scriptPath}.test.sh`;
|
|
48740
48961
|
}
|
|
48741
48962
|
|
|
48963
|
+
/**
|
|
48964
|
+
* Centers an ANSI-colored line within the available frame width.
|
|
48965
|
+
*
|
|
48966
|
+
* @private internal utility of coder run UI
|
|
48967
|
+
*/
|
|
48968
|
+
function centerAnsiText(text, width) {
|
|
48969
|
+
const paddingWidth = Math.max(0, Math.floor((width - visibleLength(text)) / 2));
|
|
48970
|
+
return `${' '.repeat(paddingWidth)}${text}`;
|
|
48971
|
+
}
|
|
48972
|
+
/**
|
|
48973
|
+
* Pads or truncates a possibly ANSI-colored line to the target visible width.
|
|
48974
|
+
*
|
|
48975
|
+
* @private internal utility of coder run UI
|
|
48976
|
+
*/
|
|
48977
|
+
function padAnsiText(text, width) {
|
|
48978
|
+
const fittedText = fitAnsiText(text, width);
|
|
48979
|
+
return fittedText + ' '.repeat(Math.max(0, width - visibleLength(fittedText)));
|
|
48980
|
+
}
|
|
48981
|
+
/**
|
|
48982
|
+
* Truncates a possibly ANSI-colored line to the target visible width.
|
|
48983
|
+
*
|
|
48984
|
+
* @private internal utility of coder run UI
|
|
48985
|
+
*/
|
|
48986
|
+
function fitAnsiText(text, width) {
|
|
48987
|
+
if (visibleLength(text) <= width) {
|
|
48988
|
+
return text;
|
|
48989
|
+
}
|
|
48990
|
+
return fitPlainText(stripAnsi(text), width);
|
|
48991
|
+
}
|
|
48992
|
+
/**
|
|
48993
|
+
* Truncates a plain-text line to the target width with an ellipsis.
|
|
48994
|
+
*
|
|
48995
|
+
* @private internal utility of coder run UI
|
|
48996
|
+
*/
|
|
48997
|
+
function fitPlainText(text, width) {
|
|
48998
|
+
if (text.length <= width) {
|
|
48999
|
+
return text;
|
|
49000
|
+
}
|
|
49001
|
+
if (width <= 3) {
|
|
49002
|
+
return '.'.repeat(width);
|
|
49003
|
+
}
|
|
49004
|
+
return `${text.slice(0, width - 3)}...`;
|
|
49005
|
+
}
|
|
49006
|
+
/**
|
|
49007
|
+
* Measures visible string width by stripping ANSI escape codes.
|
|
49008
|
+
*
|
|
49009
|
+
* @private internal utility of coder run UI
|
|
49010
|
+
*/
|
|
49011
|
+
function visibleLength(text) {
|
|
49012
|
+
return stripAnsi(text).length;
|
|
49013
|
+
}
|
|
49014
|
+
/**
|
|
49015
|
+
* Strips ANSI escape codes from a string.
|
|
49016
|
+
*
|
|
49017
|
+
* @private internal utility of coder run UI
|
|
49018
|
+
*/
|
|
49019
|
+
function stripAnsi(text) {
|
|
49020
|
+
// eslint-disable-next-line no-control-regex
|
|
49021
|
+
return text.replace(/\x1b\[[0-9;]*[a-zA-Z]/g, '');
|
|
49022
|
+
}
|
|
49023
|
+
|
|
49024
|
+
/**
|
|
49025
|
+
* Fixed left-side head used across all octopus frames.
|
|
49026
|
+
*/
|
|
49027
|
+
const OCTOPUS_HEAD_LINES = [
|
|
49028
|
+
colors.magenta.bold(' .-""""-.'),
|
|
49029
|
+
colors.magenta.bold(" .' .-. '."),
|
|
49030
|
+
`${colors.magenta.bold(' / (')}${colors.yellow.bold('o o')}${colors.magenta.bold(') \\')}`,
|
|
49031
|
+
colors.magenta.bold(' | ^ |'),
|
|
49032
|
+
colors.magenta.bold(' | \\___/ |'),
|
|
49033
|
+
colors.magenta.bold(' \\___________/'),
|
|
49034
|
+
];
|
|
49035
|
+
/**
|
|
49036
|
+
* Gap between the head silhouette and the animated tentacles.
|
|
49037
|
+
*/
|
|
49038
|
+
const OCTOPUS_HEAD_TO_TENTACLE_GAP = ' ';
|
|
49039
|
+
/**
|
|
49040
|
+
* Animated right-side tentacle poses.
|
|
49041
|
+
*/
|
|
49042
|
+
const OCTOPUS_TENTACLE_FRAMES = [
|
|
49043
|
+
[
|
|
49044
|
+
` ${colors.green.bold('ptbk.io')}`,
|
|
49045
|
+
colors.cyan(' __ __'),
|
|
49046
|
+
colors.cyan(' _/\\/\\/ \\_/\\/ \\_/\\_'),
|
|
49047
|
+
colors.cyan('_/\\/ _ /\\/ _ /\\/\\__'),
|
|
49048
|
+
colors.cyan('\\__/ /_/\\/ \\_/ \\_/ \\_/'),
|
|
49049
|
+
colors.cyan(' /_/ \\__/ \\__/ /'),
|
|
49050
|
+
],
|
|
49051
|
+
[
|
|
49052
|
+
` ${colors.green.bold('ptbk.io')}`,
|
|
49053
|
+
colors.cyan(' __ __'),
|
|
49054
|
+
colors.cyan(' _/\\/ \\_/\\/\\_ \\_/\\_'),
|
|
49055
|
+
colors.cyan('_/\\/ _ /\\/ _ \\/\\/ \\__'),
|
|
49056
|
+
colors.cyan('\\__/ /_/\\/ \\_/ \\_ /\\_/'),
|
|
49057
|
+
colors.cyan(' /_/ \\__/ \\__/ /'),
|
|
49058
|
+
],
|
|
49059
|
+
[
|
|
49060
|
+
` ${colors.green.bold('ptbk.io')}`,
|
|
49061
|
+
colors.cyan(' __ __'),
|
|
49062
|
+
colors.cyan(' _/\\/\\/ \\_/\\_ \\_/\\_'),
|
|
49063
|
+
colors.cyan('_/\\/ _ /\\/ _ /\\/ \\_'),
|
|
49064
|
+
colors.cyan('\\__/ /_/\\/ \\_/ \\_/ _/'),
|
|
49065
|
+
colors.cyan(' /_/ \\__/ \\__/'),
|
|
49066
|
+
],
|
|
49067
|
+
[
|
|
49068
|
+
` ${colors.green.bold('ptbk.io')}`,
|
|
49069
|
+
colors.cyan(' __ __'),
|
|
49070
|
+
colors.cyan(' _/\\/ \\_/\\/ \\_/\\/\\_'),
|
|
49071
|
+
colors.cyan('_/\\/ _ /\\/ _ /\\/\\ \\'),
|
|
49072
|
+
colors.cyan('\\__/ /_/\\/ \\_/ \\_ \\_/'),
|
|
49073
|
+
colors.cyan(' /_/ \\__/ \\__\\_/'),
|
|
49074
|
+
],
|
|
49075
|
+
];
|
|
49076
|
+
/**
|
|
49077
|
+
* Builds the horizontal octopus illustration shown above the coder-run dashboard.
|
|
49078
|
+
*
|
|
49079
|
+
* @private internal utility of coder run UI
|
|
49080
|
+
*/
|
|
49081
|
+
function buildCoderRunOctopusVisual(options) {
|
|
49082
|
+
const tentacleFrame = OCTOPUS_TENTACLE_FRAMES[((options.animationFrame % OCTOPUS_TENTACLE_FRAMES.length) + OCTOPUS_TENTACLE_FRAMES.length) %
|
|
49083
|
+
OCTOPUS_TENTACLE_FRAMES.length];
|
|
49084
|
+
const visualLines = OCTOPUS_HEAD_LINES.map((headLine, lineIndex) => `${headLine}${OCTOPUS_HEAD_TO_TENTACLE_GAP}${tentacleFrame[lineIndex]}`);
|
|
49085
|
+
const visualWidth = visualLines.reduce((maxWidth, line) => Math.max(maxWidth, visibleLength(line)), 0);
|
|
49086
|
+
visualLines.map((line) => centerAnsiText(padAnsiText(line, visualWidth), options.totalWidth));
|
|
49087
|
+
/*
|
|
49088
|
+
Note: Octopus art should look better, now using just text
|
|
49089
|
+
https://www.google.com/search?sca_esv=52e84acb78c558cc&sxsrf=ANbL-n7DVKf71T1HSPRpM-2skfMss0jh7w:1776693767588&udm=2&fbs=ADc_l-ZseckkBJUFopaGDNYa-HGjo4_b6b_a7pIHTL5Y9QnExg6xJqXbG7aOLcH8CWqOtkzCrjxXWZVmrIhYPvZzFDVUIb7oTJfuJ6idsCc5GA1j5KGoi2q3sW0uDBWWfYgbuxGWTQPZMetvj33BdP833wZm47mxW-6rC3bTQWluwJdOsgloPieyQvTfF2uNgIZ_K0KZ-WzpL1An8GuRrKqHdvl8T306FA&q=octopus&sa=X&ved=2ahUKEwil7ZCHzPyTAxUghP0HHY-_Js8QtKgLegQIOhAB&biw=1745&bih=903&dpr=1.1#sv=CAMSVhoyKhBlLVl1bHNmeVhneml6a1dNMg5ZdWxzZnlYZ3ppemtXTToOTVJvdXhTdk5STkZ4d00gBCocCgZtb3NhaWMSEGUtWXVsc2Z5WGd6aXprV00YADABGAcg46LBxA9KCBABGAEgASgB
|
|
49090
|
+
https://www.mrgoodfish.com/wp-content/uploads/2022/09/Eledone_moschata__.png
|
|
49091
|
+
https://fish-commercial-names.ec.europa.eu/fish-names/jakarta.faces.resource/pictograms/octopus_vulgaris.jpg.xhtml?ln=images
|
|
49092
|
+
https://www.asciiart.eu/image-to-ascii
|
|
49093
|
+
*/
|
|
49094
|
+
// Note: Created by https://patorjk.com/software/taag/#p=display&f=ANSI+Compact&t=ptbk.io&x=none&v=4&h=4&w=80&we=false
|
|
49095
|
+
return _spaceTrim(`
|
|
49096
|
+
|
|
49097
|
+
▄▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄ ▄▄ ▄▄ ▄▄ ▄▄▄
|
|
49098
|
+
██▄█▀ ██ ██▄██ ██▄█▀ ██ ██▀██
|
|
49099
|
+
██ ██ ██▄█▀ ██ ██ ▄ ██ ▀███▀
|
|
49100
|
+
|
|
49101
|
+
`)
|
|
49102
|
+
.split('\n')
|
|
49103
|
+
.map((line) => centerAnsiText(line, options.totalWidth));
|
|
49104
|
+
}
|
|
49105
|
+
|
|
49106
|
+
/**
|
|
49107
|
+
* Refresh cadence used only while the rich coder UI needs animated updates.
|
|
49108
|
+
*
|
|
49109
|
+
* @private internal constant of coder run UI
|
|
49110
|
+
*/
|
|
49111
|
+
const ACTIVE_CODER_RUN_UI_REFRESH_INTERVAL_MS = 300;
|
|
49112
|
+
/**
|
|
49113
|
+
* Phases that still benefit from automatic refreshes because the frame can change
|
|
49114
|
+
* over time even without new runner output.
|
|
49115
|
+
*
|
|
49116
|
+
* @private internal constant of coder run UI
|
|
49117
|
+
*/
|
|
49118
|
+
const AUTO_REFRESH_PHASES = ['initializing', 'loading', 'running', 'verifying'];
|
|
49119
|
+
/**
|
|
49120
|
+
* Returns whether the rich coder UI should keep animating on its own.
|
|
49121
|
+
*
|
|
49122
|
+
* @private internal utility of coder run UI
|
|
49123
|
+
*/
|
|
49124
|
+
function isCoderRunUiAutoRefreshing(phase, pauseState) {
|
|
49125
|
+
// `PAUSING` still means the current task is winding down, so keep active
|
|
49126
|
+
// animations/timers running until the runner reaches the fully paused state.
|
|
49127
|
+
if (pauseState === 'PAUSED') {
|
|
49128
|
+
return false;
|
|
49129
|
+
}
|
|
49130
|
+
return AUTO_REFRESH_PHASES.includes(phase);
|
|
49131
|
+
}
|
|
49132
|
+
/**
|
|
49133
|
+
* Returns the automatic refresh interval for the current UI state.
|
|
49134
|
+
*
|
|
49135
|
+
* Waiting, paused, and completed states return `undefined` so the rich UI stays
|
|
49136
|
+
* perfectly still until actual state changes arrive.
|
|
49137
|
+
*
|
|
49138
|
+
* @private internal utility of coder run UI
|
|
49139
|
+
*/
|
|
49140
|
+
function getCoderRunUiAutoRefreshInterval(phase, pauseState) {
|
|
49141
|
+
return isCoderRunUiAutoRefreshing(phase, pauseState) ? ACTIVE_CODER_RUN_UI_REFRESH_INTERVAL_MS : undefined;
|
|
49142
|
+
}
|
|
49143
|
+
|
|
48742
49144
|
/**
|
|
48743
49145
|
* Maximum number of output lines reserved for agent output in the UI.
|
|
48744
49146
|
*/
|
|
48745
49147
|
const MAX_VISIBLE_OUTPUT_LINES = 8;
|
|
49148
|
+
/**
|
|
49149
|
+
* Minimum width used for the rich coder-run frame.
|
|
49150
|
+
*/
|
|
49151
|
+
const MIN_FRAME_WIDTH = 56;
|
|
49152
|
+
/**
|
|
49153
|
+
* Maximum width used for the rich coder-run frame.
|
|
49154
|
+
*/
|
|
49155
|
+
const MAX_FRAME_WIDTH = 96;
|
|
49156
|
+
/**
|
|
49157
|
+
* Visible width reserved for aligned labels in the session box.
|
|
49158
|
+
*/
|
|
49159
|
+
const SESSION_LABEL_WIDTH = 8;
|
|
48746
49160
|
/**
|
|
48747
49161
|
* Builds the complete boxed terminal frame for the rich `ptbk coder run` UI.
|
|
48748
49162
|
*/
|
|
48749
49163
|
function buildCoderRunUiFrame(options) {
|
|
48750
|
-
const totalWidth = Math.max(
|
|
49164
|
+
const totalWidth = Math.max(MIN_FRAME_WIDTH, Math.min(options.terminalWidth, MAX_FRAME_WIDTH));
|
|
48751
49165
|
const isPromptActive = options.phase === 'running' || options.phase === 'verifying' || options.phase === 'loading';
|
|
48752
49166
|
const promptStatusPrefix = isPromptActive ? `${colors.yellow(`${options.spinner} `)}` : '';
|
|
48753
|
-
const
|
|
48754
|
-
?
|
|
48755
|
-
:
|
|
48756
|
-
const
|
|
48757
|
-
const
|
|
48758
|
-
if (options.progress.skippedPrompts > 0) {
|
|
48759
|
-
sessionQueueParts.push(`Skipping ${formatPromptCount(options.progress.skippedPrompts)} with Priority <${options.config.priority}`);
|
|
48760
|
-
}
|
|
48761
|
-
if (options.progress.toBeWrittenPrompts > 0) {
|
|
48762
|
-
sessionQueueParts.push(`Write first ${formatPromptCount(options.progress.toBeWrittenPrompts)}`);
|
|
48763
|
-
}
|
|
48764
|
-
const sessionLines = [
|
|
48765
|
-
`${buildPhaseBadge(options.phase, options.pauseState)} ${fitPlainText(options.statusMessage, totalWidth - 18)}`,
|
|
48766
|
-
sessionScopeLine,
|
|
48767
|
-
sessionCountLine,
|
|
48768
|
-
...(sessionQueueParts.length > 0 ? [sessionQueueParts.join(' · ')] : []),
|
|
48769
|
-
`Elapsed ${options.progress.elapsedText} · Est. total ${options.progress.estimatedTotalText} · Est. done ${options.progress.estimatedLabel}`,
|
|
48770
|
-
buildProgressBar(options.progress.percentage, totalWidth - 6, `${options.progress.percentage}% complete (${options.progress.sessionDone}/${options.progress.sessionTotal} done)`),
|
|
48771
|
-
];
|
|
48772
|
-
const metadataParts = [options.config.agentName || 'No agent selected'];
|
|
48773
|
-
if (options.config.modelName) {
|
|
48774
|
-
metadataParts.push(options.config.modelName);
|
|
48775
|
-
}
|
|
48776
|
-
if (options.config.thinkingLevel) {
|
|
48777
|
-
metadataParts.push(`thinking ${options.config.thinkingLevel}`);
|
|
48778
|
-
}
|
|
48779
|
-
const runnerDetails = [
|
|
48780
|
-
[`${colors.bgCyan.black(' PTBK ')}`, colors.bgBlue.white(' CODER '), colors.bold.white(' Promptbook Coder')]
|
|
48781
|
-
.join(''),
|
|
48782
|
-
metadataParts.join(' · '),
|
|
48783
|
-
buildConfigSummaryLine(options.config),
|
|
48784
|
-
];
|
|
49167
|
+
const octopusAnimationFrame = isCoderRunUiAutoRefreshing(options.phase, options.pauseState)
|
|
49168
|
+
? options.animationFrame
|
|
49169
|
+
: 0;
|
|
49170
|
+
const pausePresentation = buildPausePresentation(options.phase, options.pauseState, options.statusMessage);
|
|
49171
|
+
const sessionLines = buildSessionLines(options, totalWidth, pausePresentation);
|
|
48785
49172
|
const currentTaskLines = options.currentPromptLabel
|
|
48786
49173
|
? [
|
|
48787
49174
|
`${promptStatusPrefix}${colors.bold.white(fitPlainText(options.currentPromptLabel, totalWidth - 8))}`,
|
|
@@ -48790,9 +49177,10 @@ function buildCoderRunUiFrame(options) {
|
|
|
48790
49177
|
]
|
|
48791
49178
|
: [options.statusMessage, ...options.detailLines.map((detailLine) => `• ${detailLine}`)];
|
|
48792
49179
|
const visibleOutputLines = buildVisibleOutputLines(options.agentOutputLines);
|
|
48793
|
-
const controls = buildControlPills(
|
|
49180
|
+
const controls = buildControlPills(pausePresentation.pauseControl, options.pendingEnterLabel).join(' ');
|
|
48794
49181
|
const frame = [
|
|
48795
|
-
...
|
|
49182
|
+
...buildCoderRunOctopusVisual({ totalWidth, animationFrame: octopusAnimationFrame }),
|
|
49183
|
+
'',
|
|
48796
49184
|
...renderBox('Session', sessionLines, totalWidth, colors.yellow.bold),
|
|
48797
49185
|
...renderBox(options.currentPromptLabel ? 'Current task' : 'Queue', currentTaskLines, totalWidth, colors.magenta.bold),
|
|
48798
49186
|
...renderBox('Live output', visibleOutputLines, totalWidth, colors.green.bold),
|
|
@@ -48803,13 +49191,67 @@ function buildCoderRunUiFrame(options) {
|
|
|
48803
49191
|
frame.push(...renderBox('Controls', [controls], totalWidth, colors.white.bold));
|
|
48804
49192
|
return frame;
|
|
48805
49193
|
}
|
|
49194
|
+
/**
|
|
49195
|
+
* Builds the structured session lines that combine state, runner, queue, and timing metadata.
|
|
49196
|
+
*/
|
|
49197
|
+
function buildSessionLines(options, totalWidth, pausePresentation) {
|
|
49198
|
+
const bodyWidth = Math.max(10, totalWidth - 4);
|
|
49199
|
+
return buildSessionRows(options, bodyWidth, pausePresentation).map((sessionRow) => buildLabeledSessionLine(sessionRow.label, sessionRow.value, bodyWidth));
|
|
49200
|
+
}
|
|
49201
|
+
/**
|
|
49202
|
+
* Builds the session rows so the renderer can keep one consistent structure without duplicating labels.
|
|
49203
|
+
*/
|
|
49204
|
+
function buildSessionRows(options, bodyWidth, pausePresentation) {
|
|
49205
|
+
const runnerParts = [options.config.agentName || 'No agent selected'];
|
|
49206
|
+
if (options.config.modelName) {
|
|
49207
|
+
runnerParts.push(options.config.modelName);
|
|
49208
|
+
}
|
|
49209
|
+
if (options.config.thinkingLevel) {
|
|
49210
|
+
runnerParts.push(`thinking ${options.config.thinkingLevel}`);
|
|
49211
|
+
}
|
|
49212
|
+
const configurationRows = [
|
|
49213
|
+
...buildOptionalSessionRow('Context', options.config.context),
|
|
49214
|
+
...buildOptionalSessionRow('Test', options.config.testCommand),
|
|
49215
|
+
];
|
|
49216
|
+
return [
|
|
49217
|
+
{
|
|
49218
|
+
label: 'State',
|
|
49219
|
+
value: `${pausePresentation.badge} ${pausePresentation.stateMessage}`,
|
|
49220
|
+
},
|
|
49221
|
+
{
|
|
49222
|
+
label: 'Runner',
|
|
49223
|
+
value: runnerParts.join(' · '),
|
|
49224
|
+
},
|
|
49225
|
+
...configurationRows,
|
|
49226
|
+
{
|
|
49227
|
+
label: 'This run',
|
|
49228
|
+
value: buildThisRunSummary(options.progress),
|
|
49229
|
+
},
|
|
49230
|
+
{
|
|
49231
|
+
label: 'Backlog',
|
|
49232
|
+
value: buildBacklogSummary(options.progress),
|
|
49233
|
+
},
|
|
49234
|
+
{
|
|
49235
|
+
label: 'Scope',
|
|
49236
|
+
value: buildScopeSummary(options.progress, options.config),
|
|
49237
|
+
},
|
|
49238
|
+
{
|
|
49239
|
+
label: 'Timing',
|
|
49240
|
+
value: buildTimingSummary(options.progress),
|
|
49241
|
+
},
|
|
49242
|
+
{
|
|
49243
|
+
label: 'Progress',
|
|
49244
|
+
value: buildProgressBar(options.progress.percentage, bodyWidth - SESSION_LABEL_WIDTH - 1, `${options.progress.percentage}% complete (${options.progress.sessionDone}/${options.progress.sessionTotal} done)`),
|
|
49245
|
+
},
|
|
49246
|
+
];
|
|
49247
|
+
}
|
|
48806
49248
|
/**
|
|
48807
49249
|
* Builds the fixed-height live output section so streaming updates do not keep resizing the frame.
|
|
48808
49250
|
*/
|
|
48809
49251
|
function buildVisibleOutputLines(agentOutputLines) {
|
|
48810
49252
|
const visibleOutputLines = agentOutputLines.length > 0
|
|
48811
49253
|
? agentOutputLines.slice(-MAX_VISIBLE_OUTPUT_LINES).map((line) => `› ${stripAnsi(line)}`)
|
|
48812
|
-
: ['No live agent output yet.'];
|
|
49254
|
+
: [colors.gray('No live agent output yet.')];
|
|
48813
49255
|
while (visibleOutputLines.length < MAX_VISIBLE_OUTPUT_LINES) {
|
|
48814
49256
|
visibleOutputLines.push('');
|
|
48815
49257
|
}
|
|
@@ -48832,25 +49274,84 @@ function renderBox(title, lines, totalWidth, colorizeTitle) {
|
|
|
48832
49274
|
return [topBorder, ...body, bottomBorder];
|
|
48833
49275
|
}
|
|
48834
49276
|
/**
|
|
48835
|
-
* Builds
|
|
49277
|
+
* Builds one aligned labeled line inside the session box.
|
|
48836
49278
|
*/
|
|
48837
|
-
function
|
|
48838
|
-
const
|
|
48839
|
-
|
|
48840
|
-
|
|
49279
|
+
function buildLabeledSessionLine(label, value, bodyWidth) {
|
|
49280
|
+
const formattedLabel = colors.gray(label.padEnd(SESSION_LABEL_WIDTH));
|
|
49281
|
+
return `${formattedLabel} ${fitAnsiText(value, bodyWidth - SESSION_LABEL_WIDTH - 1)}`;
|
|
49282
|
+
}
|
|
49283
|
+
/**
|
|
49284
|
+
* Builds zero or one structured session row for optional metadata.
|
|
49285
|
+
*/
|
|
49286
|
+
function buildOptionalSessionRow(label, value) {
|
|
49287
|
+
if (!value) {
|
|
49288
|
+
return [];
|
|
49289
|
+
}
|
|
49290
|
+
return [{ label, value }];
|
|
49291
|
+
}
|
|
49292
|
+
/**
|
|
49293
|
+
* Builds the active-session summary shown in the session box.
|
|
49294
|
+
*/
|
|
49295
|
+
function buildThisRunSummary(progress) {
|
|
49296
|
+
if (progress.sessionTotal === 0) {
|
|
49297
|
+
return 'No runnable prompts in current scope';
|
|
49298
|
+
}
|
|
49299
|
+
return `Task ${progress.currentPromptIndex}/${progress.sessionTotal} · ${progress.sessionDone} done · ${progress.sessionRemaining} left`;
|
|
49300
|
+
}
|
|
49301
|
+
/**
|
|
49302
|
+
* Builds the backlog/filter summary shown in the session box.
|
|
49303
|
+
*/
|
|
49304
|
+
function buildBacklogSummary(progress) {
|
|
49305
|
+
const parts = [`Repo ${progress.totalPrompts} total`];
|
|
49306
|
+
if (progress.skippedPrompts > 0) {
|
|
49307
|
+
parts.push(`${formatPromptCount(progress.skippedPrompts)} below priority`);
|
|
48841
49308
|
}
|
|
48842
|
-
|
|
48843
|
-
|
|
49309
|
+
return parts.join(' · ');
|
|
49310
|
+
}
|
|
49311
|
+
/**
|
|
49312
|
+
* Builds the priority/write-order summary shown in the session box.
|
|
49313
|
+
*/
|
|
49314
|
+
function buildScopeSummary(progress, config) {
|
|
49315
|
+
const parts = [`Priority ≥${config.priority}`];
|
|
49316
|
+
if (progress.toBeWrittenPrompts > 0) {
|
|
49317
|
+
parts.push(`Write ${formatPromptCount(progress.toBeWrittenPrompts)} first`);
|
|
48844
49318
|
}
|
|
48845
49319
|
return parts.join(' · ');
|
|
48846
49320
|
}
|
|
49321
|
+
/**
|
|
49322
|
+
* Builds the elapsed/estimate summary shown in the session box.
|
|
49323
|
+
*/
|
|
49324
|
+
function buildTimingSummary(progress) {
|
|
49325
|
+
return `Elapsed ${progress.elapsedText} · Total ${progress.estimatedTotalText} · ETA ${progress.estimatedLabel}`;
|
|
49326
|
+
}
|
|
48847
49327
|
/**
|
|
48848
49328
|
* Builds the colored phase badge shown in the session box.
|
|
48849
49329
|
*/
|
|
48850
|
-
function
|
|
48851
|
-
if (pauseState
|
|
48852
|
-
return
|
|
49330
|
+
function buildPausePresentation(phase, pauseState, statusMessage) {
|
|
49331
|
+
if (pauseState === 'PAUSING') {
|
|
49332
|
+
return {
|
|
49333
|
+
badge: colors.bgYellow.black(' PAUSING '),
|
|
49334
|
+
stateMessage: 'Pausing before the next task',
|
|
49335
|
+
pauseControl: colors.bgMagenta.white(' P ') + colors.white(' Cancel pause'),
|
|
49336
|
+
};
|
|
48853
49337
|
}
|
|
49338
|
+
if (pauseState === 'PAUSED') {
|
|
49339
|
+
return {
|
|
49340
|
+
badge: colors.bgWhite.black(' PAUSED '),
|
|
49341
|
+
stateMessage: 'Paused until resumed',
|
|
49342
|
+
pauseControl: colors.bgGreen.black(' P ') + colors.white(' Resume'),
|
|
49343
|
+
};
|
|
49344
|
+
}
|
|
49345
|
+
return {
|
|
49346
|
+
badge: buildRunningPhaseBadge(phase),
|
|
49347
|
+
stateMessage: statusMessage,
|
|
49348
|
+
pauseControl: colors.bgYellow.black(' P ') + colors.white(' Pause'),
|
|
49349
|
+
};
|
|
49350
|
+
}
|
|
49351
|
+
/**
|
|
49352
|
+
* Builds the active phase badge shown in the session box while the runner is not paused.
|
|
49353
|
+
*/
|
|
49354
|
+
function buildRunningPhaseBadge(phase) {
|
|
48854
49355
|
switch (phase) {
|
|
48855
49356
|
case 'loading':
|
|
48856
49357
|
case 'initializing':
|
|
@@ -48865,6 +49366,8 @@ function buildPhaseBadge(phase, pauseState) {
|
|
|
48865
49366
|
return colors.bgGreen.black(' DONE ');
|
|
48866
49367
|
case 'error':
|
|
48867
49368
|
return colors.bgRed.white(' ERROR ');
|
|
49369
|
+
case 'paused':
|
|
49370
|
+
return colors.bgWhite.black(' READY ');
|
|
48868
49371
|
default:
|
|
48869
49372
|
return colors.bgWhite.black(' READY ');
|
|
48870
49373
|
}
|
|
@@ -48877,7 +49380,7 @@ function buildProgressBar(percentage, availableWidth, label) {
|
|
|
48877
49380
|
const barWidth = Math.max(10, availableWidth - percentageLabel.length - 1);
|
|
48878
49381
|
const filledWidth = Math.round((percentage / 100) * barWidth);
|
|
48879
49382
|
const emptyWidth = Math.max(0, barWidth - filledWidth);
|
|
48880
|
-
return `${colors.green('█'.repeat(filledWidth))}${colors.
|
|
49383
|
+
return `${colors.green('█'.repeat(filledWidth))}${colors.blue('░'.repeat(emptyWidth))} ${percentageLabel}`;
|
|
48881
49384
|
}
|
|
48882
49385
|
/**
|
|
48883
49386
|
* Formats a prompt count with singular/plural wording.
|
|
@@ -48888,58 +49391,15 @@ function formatPromptCount(count) {
|
|
|
48888
49391
|
/**
|
|
48889
49392
|
* Builds the control pills shown in the footer box.
|
|
48890
49393
|
*/
|
|
48891
|
-
function buildControlPills(
|
|
49394
|
+
function buildControlPills(pauseControl, pendingEnterLabel) {
|
|
48892
49395
|
const pills = [];
|
|
48893
49396
|
if (pendingEnterLabel) {
|
|
48894
49397
|
pills.push(colors.bgWhite.black(' ENTER ') + colors.white(` ${pendingEnterLabel}`));
|
|
48895
49398
|
}
|
|
48896
|
-
pills.push(
|
|
48897
|
-
? colors.bgYellow.black(' P ') + colors.white(' Pause')
|
|
48898
|
-
: colors.bgYellow.black(' P ') + colors.white(' Resume'));
|
|
49399
|
+
pills.push(pauseControl);
|
|
48899
49400
|
pills.push(colors.bgRed.white(' CTRL+C ') + colors.white(' Exit'));
|
|
48900
49401
|
return pills;
|
|
48901
49402
|
}
|
|
48902
|
-
/**
|
|
48903
|
-
* Pads or truncates a possibly ANSI-colored line to the target visible width.
|
|
48904
|
-
*/
|
|
48905
|
-
function padAnsiText(text, width) {
|
|
48906
|
-
const fittedText = fitAnsiText(text, width);
|
|
48907
|
-
return fittedText + ' '.repeat(Math.max(0, width - visibleLength(fittedText)));
|
|
48908
|
-
}
|
|
48909
|
-
/**
|
|
48910
|
-
* Truncates a possibly ANSI-colored line to the target visible width.
|
|
48911
|
-
*/
|
|
48912
|
-
function fitAnsiText(text, width) {
|
|
48913
|
-
if (visibleLength(text) <= width) {
|
|
48914
|
-
return text;
|
|
48915
|
-
}
|
|
48916
|
-
return fitPlainText(stripAnsi(text), width);
|
|
48917
|
-
}
|
|
48918
|
-
/**
|
|
48919
|
-
* Truncates a plain-text line to the target width with an ellipsis.
|
|
48920
|
-
*/
|
|
48921
|
-
function fitPlainText(text, width) {
|
|
48922
|
-
if (text.length <= width) {
|
|
48923
|
-
return text;
|
|
48924
|
-
}
|
|
48925
|
-
if (width <= 3) {
|
|
48926
|
-
return '.'.repeat(width);
|
|
48927
|
-
}
|
|
48928
|
-
return `${text.slice(0, width - 3)}...`;
|
|
48929
|
-
}
|
|
48930
|
-
/**
|
|
48931
|
-
* Measures visible string width by stripping ANSI escape codes.
|
|
48932
|
-
*/
|
|
48933
|
-
function visibleLength(text) {
|
|
48934
|
-
return stripAnsi(text).length;
|
|
48935
|
-
}
|
|
48936
|
-
/**
|
|
48937
|
-
* Strips ANSI escape codes from a string.
|
|
48938
|
-
*/
|
|
48939
|
-
function stripAnsi(text) {
|
|
48940
|
-
// eslint-disable-next-line no-control-regex
|
|
48941
|
-
return text.replace(/\x1b\[[0-9;]*[a-zA-Z]/g, '');
|
|
48942
|
-
}
|
|
48943
49403
|
|
|
48944
49404
|
/**
|
|
48945
49405
|
* Maximum number of agent output lines kept in the scrolling output area.
|
|
@@ -49080,34 +49540,6 @@ class CoderRunUiState extends EventEmitter {
|
|
|
49080
49540
|
}
|
|
49081
49541
|
}
|
|
49082
49542
|
|
|
49083
|
-
/**
|
|
49084
|
-
* Refresh cadence used only while the rich coder UI needs animated updates.
|
|
49085
|
-
*
|
|
49086
|
-
* @private internal constant of coder run UI
|
|
49087
|
-
*/
|
|
49088
|
-
const ACTIVE_CODER_RUN_UI_REFRESH_INTERVAL_MS = 1000;
|
|
49089
|
-
/**
|
|
49090
|
-
* Phases that still benefit from automatic refreshes because the frame can change
|
|
49091
|
-
* over time even without new runner output.
|
|
49092
|
-
*
|
|
49093
|
-
* @private internal constant of coder run UI
|
|
49094
|
-
*/
|
|
49095
|
-
const AUTO_REFRESH_PHASES = ['initializing', 'loading', 'running', 'verifying'];
|
|
49096
|
-
/**
|
|
49097
|
-
* Returns the automatic refresh interval for the current UI state.
|
|
49098
|
-
*
|
|
49099
|
-
* Waiting, paused, and completed states return `undefined` so the rich UI stays
|
|
49100
|
-
* perfectly still until actual state changes arrive.
|
|
49101
|
-
*
|
|
49102
|
-
* @private internal utility of coder run UI
|
|
49103
|
-
*/
|
|
49104
|
-
function getCoderRunUiAutoRefreshInterval(phase, pauseState) {
|
|
49105
|
-
if (pauseState !== 'RUNNING') {
|
|
49106
|
-
return undefined;
|
|
49107
|
-
}
|
|
49108
|
-
return AUTO_REFRESH_PHASES.includes(phase) ? ACTIVE_CODER_RUN_UI_REFRESH_INTERVAL_MS : undefined;
|
|
49109
|
-
}
|
|
49110
|
-
|
|
49111
49543
|
/**
|
|
49112
49544
|
* Spinner animation frames.
|
|
49113
49545
|
*
|
|
@@ -49286,6 +49718,7 @@ function renderCoderRunUi(startTime) {
|
|
|
49286
49718
|
function buildFrameLines() {
|
|
49287
49719
|
return buildCoderRunUiFrame({
|
|
49288
49720
|
terminalWidth: getTerminalWidth(),
|
|
49721
|
+
animationFrame: spinnerFrame,
|
|
49289
49722
|
spinner: SPINNER_FRAMES[spinnerFrame],
|
|
49290
49723
|
pauseState: getPauseState(),
|
|
49291
49724
|
config: state.config,
|
|
@@ -49333,12 +49766,7 @@ function renderCoderRunUi(startTime) {
|
|
|
49333
49766
|
process.exit(0);
|
|
49334
49767
|
}
|
|
49335
49768
|
if (key.name === 'p') {
|
|
49336
|
-
|
|
49337
|
-
requestPause();
|
|
49338
|
-
}
|
|
49339
|
-
else {
|
|
49340
|
-
requestResume();
|
|
49341
|
-
}
|
|
49769
|
+
togglePauseState();
|
|
49342
49770
|
scheduleRender();
|
|
49343
49771
|
return;
|
|
49344
49772
|
}
|
|
@@ -49474,6 +49902,23 @@ async function runCodexPrompts(providedOptions) {
|
|
|
49474
49902
|
const isRichUiEnabled = !options.dryRun && !options.noUi && Boolean(process.stdout.isTTY);
|
|
49475
49903
|
const progressDisplay = options.dryRun || options.noUi || isRichUiEnabled ? undefined : new CliProgressDisplay(runStartDate, options.priority);
|
|
49476
49904
|
const uiHandle = isRichUiEnabled ? renderCoderRunUi(runStartDate) : undefined;
|
|
49905
|
+
const waitForRequestedPause = async () => {
|
|
49906
|
+
await checkPause({
|
|
49907
|
+
silent: isRichUiEnabled,
|
|
49908
|
+
onPaused: () => {
|
|
49909
|
+
progressDisplay === null || progressDisplay === void 0 ? void 0 : progressDisplay.pauseTimer();
|
|
49910
|
+
uiHandle === null || uiHandle === void 0 ? void 0 : uiHandle.state.pauseTimer();
|
|
49911
|
+
uiHandle === null || uiHandle === void 0 ? void 0 : uiHandle.state.setPhase('paused');
|
|
49912
|
+
uiHandle === null || uiHandle === void 0 ? void 0 : uiHandle.state.setStatusMessage('Paused');
|
|
49913
|
+
},
|
|
49914
|
+
onResumed: () => {
|
|
49915
|
+
progressDisplay === null || progressDisplay === void 0 ? void 0 : progressDisplay.resumeTimer();
|
|
49916
|
+
uiHandle === null || uiHandle === void 0 ? void 0 : uiHandle.state.resumeTimer();
|
|
49917
|
+
uiHandle === null || uiHandle === void 0 ? void 0 : uiHandle.state.setPhase('loading');
|
|
49918
|
+
uiHandle === null || uiHandle === void 0 ? void 0 : uiHandle.state.setStatusMessage('Resuming...');
|
|
49919
|
+
},
|
|
49920
|
+
});
|
|
49921
|
+
};
|
|
49477
49922
|
// When the Ink UI is active it handles keyboard input itself, so skip the raw stdin listener.
|
|
49478
49923
|
if (!isRichUiEnabled) {
|
|
49479
49924
|
listenForPause();
|
|
@@ -49590,19 +50035,7 @@ async function runCodexPrompts(providedOptions) {
|
|
|
49590
50035
|
let hasShownUpcomingTasks = false;
|
|
49591
50036
|
let hasWaitedForStart = false;
|
|
49592
50037
|
while (just(true)) {
|
|
49593
|
-
await
|
|
49594
|
-
silent: isRichUiEnabled,
|
|
49595
|
-
onPaused: () => {
|
|
49596
|
-
progressDisplay === null || progressDisplay === void 0 ? void 0 : progressDisplay.pauseTimer();
|
|
49597
|
-
uiHandle === null || uiHandle === void 0 ? void 0 : uiHandle.state.pauseTimer();
|
|
49598
|
-
uiHandle === null || uiHandle === void 0 ? void 0 : uiHandle.state.setPhase('paused');
|
|
49599
|
-
uiHandle === null || uiHandle === void 0 ? void 0 : uiHandle.state.setStatusMessage('Paused');
|
|
49600
|
-
},
|
|
49601
|
-
onResumed: () => {
|
|
49602
|
-
progressDisplay === null || progressDisplay === void 0 ? void 0 : progressDisplay.resumeTimer();
|
|
49603
|
-
uiHandle === null || uiHandle === void 0 ? void 0 : uiHandle.state.resumeTimer();
|
|
49604
|
-
},
|
|
49605
|
-
});
|
|
50038
|
+
await waitForRequestedPause();
|
|
49606
50039
|
if (isRichUiEnabled) {
|
|
49607
50040
|
uiHandle === null || uiHandle === void 0 ? void 0 : uiHandle.state.setPhase('loading');
|
|
49608
50041
|
uiHandle === null || uiHandle === void 0 ? void 0 : uiHandle.state.setStatusMessage('Loading prompts...');
|
|
@@ -49670,6 +50103,7 @@ async function runCodexPrompts(providedOptions) {
|
|
|
49670
50103
|
const commitMessage = buildCommitMessage(nextPrompt.file, nextPrompt.section);
|
|
49671
50104
|
const codexPrompt = appendCoderContext(buildCodexPrompt(nextPrompt.file, nextPrompt.section), resolvedCoderContext);
|
|
49672
50105
|
const scriptPath = buildScriptPath(nextPrompt.file, nextPrompt.section);
|
|
50106
|
+
await waitForRequestedPause();
|
|
49673
50107
|
if (isRichUiEnabled) {
|
|
49674
50108
|
uiHandle === null || uiHandle === void 0 ? void 0 : uiHandle.state.setCurrentPrompt(promptLabel);
|
|
49675
50109
|
uiHandle === null || uiHandle === void 0 ? void 0 : uiHandle.state.setPhase('running');
|
|
@@ -53734,9 +54168,10 @@ function formatMetaLine(label, value) {
|
|
|
53734
54168
|
* Build a minimal agent source snapshot for remote agents.
|
|
53735
54169
|
*/
|
|
53736
54170
|
function buildRemoteAgentSource(profile, meta) {
|
|
54171
|
+
const isMetaImageExplicit = profile.isMetaImageExplicit !== false;
|
|
53737
54172
|
const metaLines = [
|
|
53738
54173
|
formatMetaLine('FULLNAME', meta === null || meta === void 0 ? void 0 : meta.fullname),
|
|
53739
|
-
formatMetaLine('IMAGE', meta === null || meta === void 0 ? void 0 : meta.image),
|
|
54174
|
+
formatMetaLine('IMAGE', isMetaImageExplicit ? meta === null || meta === void 0 ? void 0 : meta.image : undefined),
|
|
53740
54175
|
formatMetaLine('DESCRIPTION', meta === null || meta === void 0 ? void 0 : meta.description),
|
|
53741
54176
|
formatMetaLine('COLOR', meta === null || meta === void 0 ? void 0 : meta.color),
|
|
53742
54177
|
formatMetaLine('FONT', meta === null || meta === void 0 ? void 0 : meta.font),
|
|
@@ -53835,6 +54270,8 @@ class RemoteAgent extends Agent {
|
|
|
53835
54270
|
remoteAgent._isVoiceCallingEnabled = profile.isVoiceCallingEnabled === true; // [✨✷] Store voice calling status
|
|
53836
54271
|
remoteAgent._isVoiceTtsSttEnabled = profile.isVoiceTtsSttEnabled !== false;
|
|
53837
54272
|
remoteAgent.knowledgeSources = profile.knowledgeSources || [];
|
|
54273
|
+
remoteAgent.isMetaImageExplicit = profile.isMetaImageExplicit !== false;
|
|
54274
|
+
remoteAgent.avatarVisualId = profile.avatarVisualId;
|
|
53838
54275
|
return remoteAgent;
|
|
53839
54276
|
}
|
|
53840
54277
|
/**
|
|
@@ -53850,6 +54287,8 @@ class RemoteAgent extends Agent {
|
|
|
53850
54287
|
this.toolTitles = {};
|
|
53851
54288
|
this._isVoiceCallingEnabled = false; // [✨✷] Track voice calling status
|
|
53852
54289
|
this._isVoiceTtsSttEnabled = true;
|
|
54290
|
+
this.isMetaImageExplicit = true;
|
|
54291
|
+
this.avatarVisualId = undefined;
|
|
53853
54292
|
this.knowledgeSources = [];
|
|
53854
54293
|
this.agentUrl = options.agentUrl;
|
|
53855
54294
|
}
|