@promptbook/cli 0.114.0-33 → 0.114.0-35
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/esm/index.es.js +1254 -318
- package/esm/index.es.js.map +1 -1
- package/esm/scripts/run-codex-prompts/common/createFreeDiskSpaceGuard.d.ts +25 -0
- package/esm/scripts/run-codex-prompts/common/formatUnknownErrorDetails.d.ts +4 -0
- package/esm/scripts/run-codex-prompts/common/resolveCoderAgent.d.ts +21 -3
- package/esm/scripts/run-codex-prompts/main/listCoderPrompts.d.ts +1 -1
- package/esm/scripts/run-codex-prompts/prompts/buildPromptRunTraceContent.d.ts +77 -0
- package/esm/scripts/run-codex-prompts/prompts/buildPromptRunTracePath.d.ts +10 -0
- package/esm/scripts/run-codex-prompts/prompts/isPromptCompatibleWithRunner.d.ts +11 -6
- package/esm/scripts/run-codex-prompts/prompts/loadPromptFiles.d.ts +1 -1
- package/esm/scripts/run-codex-prompts/prompts/writePromptRunTrace.d.ts +19 -0
- package/esm/scripts/run-codex-prompts/runners/common/buildHarnessAuthenticationError.d.ts +20 -0
- package/esm/scripts/run-codex-prompts/runners/common/createAuthenticationAwarePromptRunner.d.ts +11 -0
- package/esm/scripts/run-codex-prompts/runners/common/extractHarnessAuthenticationFailureReason.d.ts +9 -0
- package/esm/scripts/run-codex-prompts/ui/buildCoderRunUiFrame.d.ts +3 -0
- package/esm/src/book-2.0/book-language-documentation/getSafeCodeBlock.d.ts +1 -1
- package/esm/src/book-components/Chat/MockedChat/MockedChat.test.d.ts +2 -0
- package/esm/src/cli/cli-commands/coder/$ensureCoderHarnessGitignoreRules.d.ts +2 -1
- package/esm/src/cli/cli-commands/coder/agentCliOptions.d.ts +21 -0
- package/esm/src/cli/cli-commands/coder/boilerplateTemplates.d.ts +8 -21
- package/esm/src/cli/cli-commands/coder/coderReferencedArtifacts.d.ts +33 -0
- package/esm/src/cli/cli-commands/coder/ensureCoderPackageJsonFile.d.ts +4 -2
- package/esm/src/cli/cli-commands/coder/ensureCoderVscodeSettingsFile.d.ts +2 -0
- package/esm/src/cli/cli-commands/coder/ensureDirectory.d.ts +6 -0
- package/esm/src/cli/cli-commands/coder/getDefaultCoderPackageJsonScripts.d.ts +6 -0
- package/esm/src/cli/cli-commands/coder/initializeCoderProjectConfiguration.d.ts +7 -5
- package/esm/src/cli/cli-commands/coder/mergeStringRecordJsonFile.d.ts +19 -1
- package/esm/src/cli/cli-commands/coder/printCoderRunFailure.d.ts +6 -0
- package/esm/src/cli/cli-commands/common/$askForConfirmation.d.ts +4 -2
- package/esm/src/cli/cli-commands/common/disk-space/$assertSufficientFreeDiskSpace.d.ts +12 -0
- package/esm/src/cli/cli-commands/common/disk-space/$assertSufficientFreeDiskSpace.test.d.ts +1 -0
- package/esm/src/cli/cli-commands/common/disk-space/$readFreeDiskSpaceStatus.d.ts +11 -0
- package/esm/src/cli/cli-commands/common/disk-space/$readFreeDiskSpaceStatus.test.d.ts +1 -0
- package/esm/src/cli/cli-commands/common/disk-space/FreeDiskSpaceStatus.d.ts +33 -0
- package/esm/src/cli/cli-commands/common/disk-space/formatFreeDiskSpaceBytes.d.ts +6 -0
- package/esm/src/cli/cli-commands/common/disk-space/formatFreeDiskSpaceBytes.test.d.ts +1 -0
- package/esm/src/cli/cli-commands/common/disk-space/formatLowFreeDiskSpaceWarning.d.ts +10 -0
- package/esm/src/cli/cli-commands/common/disk-space/freeDiskSpaceConstants.d.ts +28 -0
- package/esm/src/cli/cli-commands/common/disk-space/resolveFreeDiskSpaceLevel.d.ts +7 -0
- package/esm/src/cli/cli-commands/common/disk-space/resolveFreeDiskSpaceLevel.test.d.ts +1 -0
- package/esm/src/cli/cli-commands/common/harness/$applyHarnessInstallationStatus.d.ts +2 -1
- package/esm/src/cli/cli-commands/common/harness/$ensureHarnessInstallations.d.ts +3 -2
- package/esm/src/cli/cli-commands/common/harness/HarnessDefinition.d.ts +26 -0
- package/esm/src/cli/cli-commands/common/npm/$askForNpmPackageInstallationApproval.d.ts +4 -2
- package/esm/src/cli/cli-commands/common/promptbook-cli/$ensurePromptbookCliInstallations.d.ts +2 -1
- package/esm/src/cli/cli-commands/common/questionsCliOptions.d.ts +45 -0
- package/esm/src/cli/cli-commands/common/questionsCliOptions.test.d.ts +1 -0
- package/esm/src/cli/common/$deprecateCliCommand.d.ts +3 -0
- package/esm/src/cli/common/$hideCliCommandFromHelp.d.ts +11 -0
- package/esm/src/cli/common/$hideCliCommandFromHelp.test.d.ts +1 -0
- package/esm/src/cli/common/$requireCliSubcommand.d.ts +18 -0
- package/esm/src/cli/common/$requireCliSubcommand.test.d.ts +1 -0
- package/esm/src/llm-providers/vercel/VercelExecutionToolsOptions.d.ts +5 -2
- package/esm/src/version.d.ts +1 -1
- package/package.json +7 -10
- package/src/book-2.0/book-language-documentation/getSafeCodeBlock.ts +1 -1
- package/src/book-components/Chat/MockedChat/MockedChat.tsx +25 -1
- package/src/cli/cli-commands/agent-folder.ts +2 -6
- package/src/cli/cli-commands/agent.ts +2 -6
- package/src/cli/cli-commands/agents-server.ts +2 -6
- package/src/cli/cli-commands/coder/$ensureCoderHarnessGitignoreRules.ts +3 -0
- package/src/cli/cli-commands/coder/add.ts +27 -2
- package/src/cli/cli-commands/coder/agentCliOptions.ts +32 -0
- package/src/cli/cli-commands/coder/boilerplateTemplates.ts +17 -44
- package/src/cli/cli-commands/coder/coderReferencedArtifacts.ts +106 -0
- package/src/cli/cli-commands/coder/ensureCoderPackageJsonFile.ts +4 -2
- package/src/cli/cli-commands/coder/ensureCoderVscodeSettingsFile.ts +5 -1
- package/src/cli/cli-commands/coder/ensureDirectory.ts +27 -1
- package/src/cli/cli-commands/coder/getDefaultCoderPackageJsonScripts.ts +99 -10
- package/src/cli/cli-commands/coder/init.ts +23 -14
- package/src/cli/cli-commands/coder/initializeCoderProjectConfiguration.ts +18 -27
- package/src/cli/cli-commands/coder/list.ts +15 -3
- package/src/cli/cli-commands/coder/mergeStringRecordJsonFile.ts +31 -7
- package/src/cli/cli-commands/coder/ping.ts +25 -22
- package/src/cli/cli-commands/coder/printCoderRunFailure.ts +14 -0
- package/src/cli/cli-commands/coder/printInitializationSummary.ts +23 -16
- package/src/cli/cli-commands/coder/run.ts +34 -23
- package/src/cli/cli-commands/coder/server.ts +43 -32
- package/src/cli/cli-commands/coder.ts +2 -6
- package/src/cli/cli-commands/common/$askForConfirmation.ts +12 -2
- package/src/cli/cli-commands/common/disk-space/$assertSufficientFreeDiskSpace.ts +35 -0
- package/src/cli/cli-commands/common/disk-space/$readFreeDiskSpaceStatus.ts +37 -0
- package/src/cli/cli-commands/common/disk-space/FreeDiskSpaceStatus.ts +39 -0
- package/src/cli/cli-commands/common/disk-space/formatFreeDiskSpaceBytes.ts +26 -0
- package/src/cli/cli-commands/common/disk-space/formatLowFreeDiskSpaceWarning.ts +33 -0
- package/src/cli/cli-commands/common/disk-space/freeDiskSpaceConstants.ts +33 -0
- package/src/cli/cli-commands/common/disk-space/resolveFreeDiskSpaceLevel.ts +21 -0
- package/src/cli/cli-commands/common/harness/$applyHarnessInstallationStatus.ts +17 -5
- package/src/cli/cli-commands/common/harness/$ensureHarnessInstallations.ts +8 -3
- package/src/cli/cli-commands/common/harness/HarnessDefinition.ts +36 -0
- package/src/cli/cli-commands/common/npm/$askForNpmPackageInstallationApproval.ts +8 -3
- package/src/cli/cli-commands/common/promptbook-cli/$ensurePromptbookCliInstallations.ts +13 -2
- package/src/cli/cli-commands/common/questionsCliOptions.ts +89 -0
- package/src/cli/cli-commands/run.ts +3 -1
- package/src/cli/common/$deprecateCliCommand.ts +5 -0
- package/src/cli/common/$hideCliCommandFromHelp.ts +27 -0
- package/src/cli/common/$requireCliSubcommand.ts +35 -0
- package/src/cli/promptbookCli.ts +13 -9
- package/src/llm-providers/vercel/VercelExecutionToolsOptions.ts +7 -2
- package/src/llm-providers/vercel/createExecutionToolsFromVercelProvider.ts +18 -17
- package/src/other/templates/getTemplatesPipelineCollection.ts +920 -830
- package/src/version.ts +2 -2
- package/src/versions.txt +2 -0
- package/umd/index.umd.js +1253 -317
- package/umd/index.umd.js.map +1 -1
- package/umd/scripts/run-codex-prompts/common/createFreeDiskSpaceGuard.d.ts +25 -0
- package/umd/scripts/run-codex-prompts/common/formatUnknownErrorDetails.d.ts +4 -0
- package/umd/scripts/run-codex-prompts/common/resolveCoderAgent.d.ts +21 -3
- package/umd/scripts/run-codex-prompts/main/listCoderPrompts.d.ts +1 -1
- package/umd/scripts/run-codex-prompts/prompts/buildPromptRunTraceContent.d.ts +77 -0
- package/umd/scripts/run-codex-prompts/prompts/buildPromptRunTracePath.d.ts +10 -0
- package/umd/scripts/run-codex-prompts/prompts/isPromptCompatibleWithRunner.d.ts +11 -6
- package/umd/scripts/run-codex-prompts/prompts/loadPromptFiles.d.ts +1 -1
- package/umd/scripts/run-codex-prompts/prompts/writePromptRunTrace.d.ts +19 -0
- package/umd/scripts/run-codex-prompts/runners/common/buildHarnessAuthenticationError.d.ts +20 -0
- package/umd/scripts/run-codex-prompts/runners/common/createAuthenticationAwarePromptRunner.d.ts +11 -0
- package/umd/scripts/run-codex-prompts/runners/common/extractHarnessAuthenticationFailureReason.d.ts +9 -0
- package/umd/scripts/run-codex-prompts/ui/buildCoderRunUiFrame.d.ts +3 -0
- package/umd/src/book-2.0/book-language-documentation/getSafeCodeBlock.d.ts +1 -1
- package/umd/src/book-components/Chat/MockedChat/MockedChat.test.d.ts +2 -0
- package/umd/src/cli/cli-commands/coder/$ensureCoderHarnessGitignoreRules.d.ts +2 -1
- package/umd/src/cli/cli-commands/coder/agentCliOptions.d.ts +21 -0
- package/umd/src/cli/cli-commands/coder/boilerplateTemplates.d.ts +8 -21
- package/umd/src/cli/cli-commands/coder/coderReferencedArtifacts.d.ts +33 -0
- package/umd/src/cli/cli-commands/coder/ensureCoderPackageJsonFile.d.ts +4 -2
- package/umd/src/cli/cli-commands/coder/ensureCoderVscodeSettingsFile.d.ts +2 -0
- package/umd/src/cli/cli-commands/coder/ensureDirectory.d.ts +6 -0
- package/umd/src/cli/cli-commands/coder/getDefaultCoderPackageJsonScripts.d.ts +6 -0
- package/umd/src/cli/cli-commands/coder/init.test.d.ts +1 -0
- package/umd/src/cli/cli-commands/coder/initializeCoderProjectConfiguration.d.ts +7 -5
- package/umd/src/cli/cli-commands/coder/mergeStringRecordJsonFile.d.ts +19 -1
- package/umd/src/cli/cli-commands/coder/printCoderRunFailure.d.ts +6 -0
- package/umd/src/cli/cli-commands/common/$askForConfirmation.d.ts +4 -2
- package/umd/src/cli/cli-commands/common/$askForConfirmation.test.d.ts +1 -0
- package/umd/src/cli/cli-commands/common/disk-space/$assertSufficientFreeDiskSpace.d.ts +12 -0
- package/umd/src/cli/cli-commands/common/disk-space/$assertSufficientFreeDiskSpace.test.d.ts +1 -0
- package/umd/src/cli/cli-commands/common/disk-space/$readFreeDiskSpaceStatus.d.ts +11 -0
- package/umd/src/cli/cli-commands/common/disk-space/$readFreeDiskSpaceStatus.test.d.ts +1 -0
- package/umd/src/cli/cli-commands/common/disk-space/FreeDiskSpaceStatus.d.ts +33 -0
- package/umd/src/cli/cli-commands/common/disk-space/formatFreeDiskSpaceBytes.d.ts +6 -0
- package/umd/src/cli/cli-commands/common/disk-space/formatFreeDiskSpaceBytes.test.d.ts +1 -0
- package/umd/src/cli/cli-commands/common/disk-space/formatLowFreeDiskSpaceWarning.d.ts +10 -0
- package/umd/src/cli/cli-commands/common/disk-space/freeDiskSpaceConstants.d.ts +28 -0
- package/umd/src/cli/cli-commands/common/disk-space/resolveFreeDiskSpaceLevel.d.ts +7 -0
- package/umd/src/cli/cli-commands/common/disk-space/resolveFreeDiskSpaceLevel.test.d.ts +1 -0
- package/umd/src/cli/cli-commands/common/harness/$applyHarnessInstallationStatus.d.ts +2 -1
- package/umd/src/cli/cli-commands/common/harness/$ensureHarnessInstallations.d.ts +3 -2
- package/umd/src/cli/cli-commands/common/harness/HarnessDefinition.d.ts +26 -0
- package/umd/src/cli/cli-commands/common/npm/$askForNpmPackageInstallationApproval.d.ts +4 -2
- package/umd/src/cli/cli-commands/common/promptbook-cli/$ensurePromptbookCliInstallations.d.ts +2 -1
- package/umd/src/cli/cli-commands/common/questionsCliOptions.d.ts +45 -0
- package/umd/src/cli/cli-commands/common/questionsCliOptions.test.d.ts +1 -0
- package/umd/src/cli/common/$deprecateCliCommand.d.ts +3 -0
- package/umd/src/cli/common/$hideCliCommandFromHelp.d.ts +11 -0
- package/umd/src/cli/common/$hideCliCommandFromHelp.test.d.ts +1 -0
- package/umd/src/cli/common/$requireCliSubcommand.d.ts +18 -0
- package/umd/src/cli/common/$requireCliSubcommand.test.d.ts +1 -0
- package/umd/src/llm-providers/vercel/VercelExecutionToolsOptions.d.ts +5 -2
- package/umd/src/version.d.ts +1 -1
- package/esm/src/cli/cli-commands/coder/agentCodingFile.d.ts +0 -13
- package/esm/src/cli/cli-commands/common/harnessUpdateCliOptions.d.ts +0 -29
- package/src/cli/cli-commands/coder/agentCodingFile.ts +0 -25
- package/src/cli/cli-commands/common/harnessUpdateCliOptions.ts +0 -46
- package/umd/src/cli/cli-commands/coder/agentCodingFile.d.ts +0 -13
- package/umd/src/cli/cli-commands/common/harnessUpdateCliOptions.d.ts +0 -29
- /package/esm/src/cli/cli-commands/{common/harnessUpdateCliOptions.test.d.ts → coder/init.test.d.ts} +0 -0
- /package/{umd/src/cli/cli-commands/common/harnessUpdateCliOptions.test.d.ts → esm/src/cli/cli-commands/common/$askForConfirmation.test.d.ts} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { FreeDiskSpaceStatus } from './FreeDiskSpaceStatus';
|
|
2
|
+
/**
|
|
3
|
+
* Writes the shared warning which explains one low free disk space measurement and how to get out of it.
|
|
4
|
+
*
|
|
5
|
+
* The very same wording is used by the check which refuses to start a run and by the check which pauses
|
|
6
|
+
* a run that ran out of disk space while it was working.
|
|
7
|
+
*
|
|
8
|
+
* @private internal utility of `promptbookCli`
|
|
9
|
+
*/
|
|
10
|
+
export declare function formatLowFreeDiskSpaceWarning(freeDiskSpaceStatus: FreeDiskSpaceStatus): string;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Free disk space below which `ptbk coder` refuses to start a new run.
|
|
3
|
+
*
|
|
4
|
+
* A coding round writes prompt and log artifacts, lets the harness rewrite the project, may install npm packages,
|
|
5
|
+
* may create a git worktree for `--isolate` and usually runs a build, so a run started with less than this
|
|
6
|
+
* would very likely die somewhere in the middle with a filesystem error.
|
|
7
|
+
*
|
|
8
|
+
* @private internal utility of `promptbookCli`
|
|
9
|
+
*/
|
|
10
|
+
export declare const LOW_FREE_DISK_SPACE_BYTES: number;
|
|
11
|
+
/**
|
|
12
|
+
* Free disk space below which a started `ptbk coder` run stops at its next checkpoint and waits until space is freed.
|
|
13
|
+
*
|
|
14
|
+
* This limit is lower than `LOW_FREE_DISK_SPACE_BYTES`, because interrupting a run which is already in progress
|
|
15
|
+
* is more expensive than not starting one at all.
|
|
16
|
+
*
|
|
17
|
+
* @private internal utility of `promptbookCli`
|
|
18
|
+
*/
|
|
19
|
+
export declare const CRITICALLY_LOW_FREE_DISK_SPACE_BYTES: number;
|
|
20
|
+
/**
|
|
21
|
+
* How long one free disk space measurement is reused before the filesystem is measured again during a run.
|
|
22
|
+
*
|
|
23
|
+
* Pause checkpoints are passed very often - for example on every tick of a timed wait - so without this
|
|
24
|
+
* interval the filesystem would be measured many times per second.
|
|
25
|
+
*
|
|
26
|
+
* @private internal utility of `promptbookCli`
|
|
27
|
+
*/
|
|
28
|
+
export declare const FREE_DISK_SPACE_RECHECK_INTERVAL_MS: number;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { FreeDiskSpaceLevel } from './FreeDiskSpaceStatus';
|
|
2
|
+
/**
|
|
3
|
+
* Classifies one measured amount of free disk space against the `ptbk coder` free disk space limits.
|
|
4
|
+
*
|
|
5
|
+
* @private internal utility of `promptbookCli`
|
|
6
|
+
*/
|
|
7
|
+
export declare function resolveFreeDiskSpaceLevel(availableBytes: number): FreeDiskSpaceLevel;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { NormalizedQuestionsCliOptions } from '../questionsCliOptions';
|
|
1
2
|
import type { HarnessInstallationStatus } from './HarnessInstallationStatus';
|
|
2
3
|
/**
|
|
3
4
|
* Reports one detected harness installation status and offers to install or update the harness.
|
|
@@ -6,4 +7,4 @@ import type { HarnessInstallationStatus } from './HarnessInstallationStatus';
|
|
|
6
7
|
*
|
|
7
8
|
* @private internal utility of `promptbookCli`
|
|
8
9
|
*/
|
|
9
|
-
export declare function $applyHarnessInstallationStatus(status: HarnessInstallationStatus): Promise<void>;
|
|
10
|
+
export declare function $applyHarnessInstallationStatus(status: HarnessInstallationStatus, questionsOptions: NormalizedQuestionsCliOptions): Promise<void>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { PromptRunnerHarnessName } from '../promptRunnerCliOptions';
|
|
2
|
+
import type { NormalizedQuestionsCliOptions } from '../questionsCliOptions';
|
|
2
3
|
/**
|
|
3
|
-
* Checks that every given CLI coding harness is installed globally and, when enabled, up to date.
|
|
4
|
+
* Checks that every given CLI coding harness is installed globally and, when the questions are enabled, up to date.
|
|
4
5
|
* Offers to install missing harnesses and update outdated ones.
|
|
5
6
|
*
|
|
6
7
|
* Harness names which are `undefined`, for example when no `--harness` is selected in a dry run,
|
|
@@ -10,4 +11,4 @@ import type { PromptRunnerHarnessName } from '../promptRunnerCliOptions';
|
|
|
10
11
|
*
|
|
11
12
|
* @private internal utility of `promptbookCli`
|
|
12
13
|
*/
|
|
13
|
-
export declare function $ensureHarnessInstallations(harnessNames: ReadonlyArray<PromptRunnerHarnessName | undefined>,
|
|
14
|
+
export declare function $ensureHarnessInstallations(harnessNames: ReadonlyArray<PromptRunnerHarnessName | undefined>, questionsOptions: NormalizedQuestionsCliOptions): Promise<void>;
|
|
@@ -19,6 +19,28 @@ export type HarnessStandaloneInstallation = {
|
|
|
19
19
|
*/
|
|
20
20
|
readonly updateCommand: string;
|
|
21
21
|
};
|
|
22
|
+
/**
|
|
23
|
+
* Description of how the user signs in to one CLI coding harness again.
|
|
24
|
+
*
|
|
25
|
+
* Every harness refuses to work once its login is missing or its session has expired, and each of them is
|
|
26
|
+
* signed in differently - some have a dedicated login command, others sign in from their own interactive UI.
|
|
27
|
+
*
|
|
28
|
+
* @private internal utility of `promptbookCli`
|
|
29
|
+
*/
|
|
30
|
+
export type HarnessAuthenticationMethod = {
|
|
31
|
+
/**
|
|
32
|
+
* Command which starts the sign-in flow of the harness.
|
|
33
|
+
*/
|
|
34
|
+
readonly command: string;
|
|
35
|
+
/**
|
|
36
|
+
* Step which finishes the sign-in inside the started command.
|
|
37
|
+
*
|
|
38
|
+
* Harnesses which sign in from their own interactive user interface leave the user in that interface, so
|
|
39
|
+
* naming just the command would not be enough to get them signed in. Harnesses with a dedicated login
|
|
40
|
+
* command leave this undefined.
|
|
41
|
+
*/
|
|
42
|
+
readonly interactiveStep?: string;
|
|
43
|
+
};
|
|
22
44
|
/**
|
|
23
45
|
* Static description of one supported CLI coding harness.
|
|
24
46
|
*
|
|
@@ -49,6 +71,10 @@ export type HarnessDefinition = {
|
|
|
49
71
|
* Project-local files or directories which this harness can create and which should not be committed.
|
|
50
72
|
*/
|
|
51
73
|
readonly projectGitignoreRules: ReadonlyArray<string>;
|
|
74
|
+
/**
|
|
75
|
+
* How the user signs in to this harness again after its login is missing or has expired.
|
|
76
|
+
*/
|
|
77
|
+
readonly authenticationMethod: HarnessAuthenticationMethod;
|
|
52
78
|
/**
|
|
53
79
|
* How a standalone installation of this harness is recognized and updated.
|
|
54
80
|
*
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import type { NormalizedQuestionsCliOptions } from '../questionsCliOptions';
|
|
1
2
|
/**
|
|
2
3
|
* Asks the user in the terminal whether an npm package should be installed or updated now.
|
|
3
4
|
*
|
|
4
5
|
* Note: `$` is used to indicate that this function is not a pure function - it reads the answer from stdin
|
|
5
6
|
*
|
|
6
|
-
* @returns `true` when the user confirms, `false` when the user declines
|
|
7
|
+
* @returns `true` when the user confirms, `false` when the user declines, the terminal is not interactive
|
|
8
|
+
* or the questions are disabled by `--no-questions`
|
|
7
9
|
* @private internal utility of `promptbookCli`
|
|
8
10
|
*/
|
|
9
|
-
export declare function $askForNpmPackageInstallationApproval(question: string): Promise<boolean>;
|
|
11
|
+
export declare function $askForNpmPackageInstallationApproval(question: string, questionsOptions: NormalizedQuestionsCliOptions): Promise<boolean>;
|
package/umd/src/cli/cli-commands/common/promptbook-cli/$ensurePromptbookCliInstallations.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { NormalizedQuestionsCliOptions } from '../questionsCliOptions';
|
|
1
2
|
/**
|
|
2
3
|
* Checks local and global Promptbook CLI installations before an interactive coder run and offers to update them.
|
|
3
4
|
*
|
|
@@ -11,4 +12,4 @@
|
|
|
11
12
|
* @returns `true` when at least one installation was updated and the current coder run should stop
|
|
12
13
|
* @private internal utility of `promptbookCli`
|
|
13
14
|
*/
|
|
14
|
-
export declare function $ensurePromptbookCliInstallations(): Promise<boolean>;
|
|
15
|
+
export declare function $ensurePromptbookCliInstallations(questionsOptions: NormalizedQuestionsCliOptions): Promise<boolean>;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { Command as Program } from 'commander';
|
|
2
|
+
/**
|
|
3
|
+
* Commander option bag for opting out of every interactive question.
|
|
4
|
+
*
|
|
5
|
+
* @private internal utility of `promptbookCli`
|
|
6
|
+
*/
|
|
7
|
+
export type QuestionsCliOptions = {
|
|
8
|
+
readonly questions: boolean;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* Normalized interactive-questions option shared by every `ptbk coder` command which can ask something.
|
|
12
|
+
*
|
|
13
|
+
* @private internal utility of `promptbookCli`
|
|
14
|
+
*/
|
|
15
|
+
export type NormalizedQuestionsCliOptions = {
|
|
16
|
+
readonly isAskingQuestionsEnabled: boolean;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Description block shared by the `ptbk coder` commands which can ask interactive questions.
|
|
20
|
+
*
|
|
21
|
+
* @private internal utility of `promptbookCli`
|
|
22
|
+
*/
|
|
23
|
+
export declare const QUESTIONS_DESCRIPTION: string;
|
|
24
|
+
/**
|
|
25
|
+
* Registers the shared `--no-questions` option on a `ptbk coder` command which can ask interactive questions.
|
|
26
|
+
*
|
|
27
|
+
* @private internal utility of `promptbookCli`
|
|
28
|
+
*/
|
|
29
|
+
export declare function addQuestionsOption(command: Program): void;
|
|
30
|
+
/**
|
|
31
|
+
* Converts the Commander questions flag into the normalized interactive-questions option.
|
|
32
|
+
*
|
|
33
|
+
* @private internal utility of `promptbookCli`
|
|
34
|
+
*/
|
|
35
|
+
export declare function normalizeQuestionsCliOptions(cliOptions: QuestionsCliOptions): NormalizedQuestionsCliOptions;
|
|
36
|
+
/**
|
|
37
|
+
* Asserts that a command which waits for a user confirmation before each prompt is allowed to ask for it.
|
|
38
|
+
*
|
|
39
|
+
* @throws {NotAllowed} when `--no-auto` is combined with `--no-questions`
|
|
40
|
+
* @private internal utility of `promptbookCli`
|
|
41
|
+
*/
|
|
42
|
+
export declare function assertUserConfirmationIsAllowed(options: {
|
|
43
|
+
readonly isAskingQuestionsEnabled: boolean;
|
|
44
|
+
readonly isWaitingForUser: boolean;
|
|
45
|
+
}): void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -3,6 +3,9 @@ import type { $side_effect } from '../../utils/organization/$side_effect';
|
|
|
3
3
|
/**
|
|
4
4
|
* Marks one CLI command as deprecated while keeping it available for existing callers.
|
|
5
5
|
*
|
|
6
|
+
* Deprecated commands are not advertised anymore - they are hidden from the list of commands in the help of their
|
|
7
|
+
* parent command, they warn when they are used and they explain the deprecation in their own help.
|
|
8
|
+
*
|
|
6
9
|
* @private utility of CLI
|
|
7
10
|
*/
|
|
8
11
|
export declare function $deprecateCliCommand(command: Command, deprecationMessage: string): $side_effect;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Command } from 'commander';
|
|
2
|
+
import type { $side_effect } from '../../utils/organization/$side_effect';
|
|
3
|
+
/**
|
|
4
|
+
* Keeps one already registered CLI command out of the help of its parent command while the command itself stays
|
|
5
|
+
* fully usable - it can still be run, it still has its own help and it is still reachable through `ptbk help <command>`.
|
|
6
|
+
*
|
|
7
|
+
* Note: `$` is used to indicate that this function is not a pure function - it changes how the CLI renders its help
|
|
8
|
+
*
|
|
9
|
+
* @private utility of CLI
|
|
10
|
+
*/
|
|
11
|
+
export declare function $hideCliCommandFromHelp(command: Command): $side_effect;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { Command } from 'commander';
|
|
2
|
+
import type { $side_effect } from '../../utils/organization/$side_effect';
|
|
3
|
+
/**
|
|
4
|
+
* Makes one CLI command which only groups subcommands ask for a subcommand instead of doing anything on its own.
|
|
5
|
+
*
|
|
6
|
+
* Note: `$` is used to indicate that this function is not a pure function - it registers an action in the CLI
|
|
7
|
+
*
|
|
8
|
+
* @private utility of CLI
|
|
9
|
+
*/
|
|
10
|
+
export declare function $requireCliSubcommand(command: Command): $side_effect;
|
|
11
|
+
/**
|
|
12
|
+
* Asks for a subcommand of one CLI command, prints its help and exits the process.
|
|
13
|
+
*
|
|
14
|
+
* Note: `$` is used to indicate that this function is not a pure function - it writes to the console and exits the process
|
|
15
|
+
*
|
|
16
|
+
* @private utility of CLI
|
|
17
|
+
*/
|
|
18
|
+
export declare function $reportMissingCliSubcommand(command: Command): never;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -17,7 +17,10 @@ export type VercelExecutionToolsOptions = CommonToolsOptions & Pick<LlmExecution
|
|
|
17
17
|
*/
|
|
18
18
|
readonly availableModels: ReadonlyArray<AvailableModel>;
|
|
19
19
|
/**
|
|
20
|
-
* Additional settings for chat models
|
|
20
|
+
* Additional settings for chat models, for example `temperature` or `providerOptions`
|
|
21
|
+
*
|
|
22
|
+
* Note: Since Vercel AI SDK v5 these settings belong to the model call, not to
|
|
23
|
+
* `vercelProvider.chat('model-name')` which takes just the model name
|
|
21
24
|
*/
|
|
22
|
-
readonly additionalChatSettings?: Partial<Parameters<VercelProvider['chat']>[
|
|
25
|
+
readonly additionalChatSettings?: Partial<Omit<Parameters<ReturnType<VercelProvider['chat']>['doGenerate']>[0], 'prompt'>>;
|
|
23
26
|
};
|
package/umd/src/version.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
|
|
|
15
15
|
export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
|
|
16
16
|
/**
|
|
17
17
|
* Represents the version string of the Promptbook engine.
|
|
18
|
-
* It follows semantic versioning (e.g., `0.114.0-
|
|
18
|
+
* It follows semantic versioning (e.g., `0.114.0-34`).
|
|
19
19
|
*
|
|
20
20
|
* @generated
|
|
21
21
|
*/
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { string_markdown } from '../../../types/typeAliases';
|
|
2
|
-
/**
|
|
3
|
-
* Relative path to the Promptbook Coder quick-reference file initialized in project roots.
|
|
4
|
-
*
|
|
5
|
-
* @private internal utility of `ptbk coder`
|
|
6
|
-
*/
|
|
7
|
-
export declare const AGENT_CODING_FILE_PATH = "AGENT_CODING.md";
|
|
8
|
-
/**
|
|
9
|
-
* Returns the default coder `AGENT_CODING.md` quick-reference content.
|
|
10
|
-
*
|
|
11
|
-
* @private internal utility of `ptbk coder`
|
|
12
|
-
*/
|
|
13
|
-
export declare function getDefaultCoderAgentCodingFileContent(): string_markdown;
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import type { Command as Program } from 'commander';
|
|
2
|
-
/**
|
|
3
|
-
* Commander option bag for opting out of automatic coding-harness update checks.
|
|
4
|
-
*
|
|
5
|
-
* @private internal utility of `promptbookCli`
|
|
6
|
-
*/
|
|
7
|
-
export type HarnessUpdateCliOptions = {
|
|
8
|
-
readonly harnessUpdate: boolean;
|
|
9
|
-
};
|
|
10
|
-
/**
|
|
11
|
-
* Normalized automatic coding-harness update-check option.
|
|
12
|
-
*
|
|
13
|
-
* @private internal utility of `promptbookCli`
|
|
14
|
-
*/
|
|
15
|
-
export type NormalizedHarnessUpdateCliOptions = {
|
|
16
|
-
readonly isHarnessUpdateCheckEnabled: boolean;
|
|
17
|
-
};
|
|
18
|
-
/**
|
|
19
|
-
* Registers the shared `--no-harness-update` option on a `ptbk coder` command that uses a coding harness.
|
|
20
|
-
*
|
|
21
|
-
* @private internal utility of `promptbookCli`
|
|
22
|
-
*/
|
|
23
|
-
export declare function addHarnessUpdateOption(command: Program): void;
|
|
24
|
-
/**
|
|
25
|
-
* Converts the Commander harness-update flag into the normalized harness-check option.
|
|
26
|
-
*
|
|
27
|
-
* @private internal utility of `promptbookCli`
|
|
28
|
-
*/
|
|
29
|
-
export declare function normalizeHarnessUpdateCliOptions(cliOptions: HarnessUpdateCliOptions): NormalizedHarnessUpdateCliOptions;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { spaceTrim } from 'spacetrim';
|
|
2
|
-
import { string_markdown } from '../../../types/typeAliases';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Relative path to the Promptbook Coder quick-reference file initialized in project roots.
|
|
6
|
-
*
|
|
7
|
-
* @private internal utility of `ptbk coder`
|
|
8
|
-
*/
|
|
9
|
-
export const AGENT_CODING_FILE_PATH = 'AGENT_CODING.md';
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* Returns the default coder `AGENT_CODING.md` quick-reference content.
|
|
13
|
-
*
|
|
14
|
-
* @private internal utility of `ptbk coder`
|
|
15
|
-
*/
|
|
16
|
-
export function getDefaultCoderAgentCodingFileContent(): string_markdown {
|
|
17
|
-
return spaceTrim(`
|
|
18
|
-
# ✨ Promptbook Coder agent coding
|
|
19
|
-
|
|
20
|
-
This project is using [Promptbook Coder](https://coder.ptbk.io) or run \`ptbk coder\`!
|
|
21
|
-
`);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
// Note: [🟡] Code for coder AGENT_CODING file boilerplate [agentCodingFile](src/cli/cli-commands/coder/agentCodingFile.ts) should never be published outside of `@promptbook/cli`
|
|
25
|
-
// Note: [💞] Ignore a discrepancy between file name and exported helper names
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
Command as Program /* <- Note: [🔸] Using Program because Command is misleading name */,
|
|
3
|
-
} from 'commander';
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Commander option bag for opting out of automatic coding-harness update checks.
|
|
7
|
-
*
|
|
8
|
-
* @private internal utility of `promptbookCli`
|
|
9
|
-
*/
|
|
10
|
-
export type HarnessUpdateCliOptions = {
|
|
11
|
-
readonly harnessUpdate: boolean;
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* Normalized automatic coding-harness update-check option.
|
|
16
|
-
*
|
|
17
|
-
* @private internal utility of `promptbookCli`
|
|
18
|
-
*/
|
|
19
|
-
export type NormalizedHarnessUpdateCliOptions = {
|
|
20
|
-
readonly isHarnessUpdateCheckEnabled: boolean;
|
|
21
|
-
};
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* Registers the shared `--no-harness-update` option on a `ptbk coder` command that uses a coding harness.
|
|
25
|
-
*
|
|
26
|
-
* @private internal utility of `promptbookCli`
|
|
27
|
-
*/
|
|
28
|
-
export function addHarnessUpdateOption(command: Program): void {
|
|
29
|
-
command.option('--no-harness-update', 'Skip checking whether the installed coding harnesses are up to date');
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
/**
|
|
33
|
-
* Converts the Commander harness-update flag into the normalized harness-check option.
|
|
34
|
-
*
|
|
35
|
-
* @private internal utility of `promptbookCli`
|
|
36
|
-
*/
|
|
37
|
-
export function normalizeHarnessUpdateCliOptions(
|
|
38
|
-
cliOptions: HarnessUpdateCliOptions,
|
|
39
|
-
): NormalizedHarnessUpdateCliOptions {
|
|
40
|
-
return {
|
|
41
|
-
isHarnessUpdateCheckEnabled: cliOptions.harnessUpdate,
|
|
42
|
-
};
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
// Note: [🟡] Code for CLI harness update options [harnessUpdateCliOptions](src/cli/cli-commands/common/harnessUpdateCliOptions.ts) should never be published outside of `@promptbook/cli`
|
|
46
|
-
// Note: [💞] Ignore a discrepancy between file name and exported helper names
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { string_markdown } from '../../../types/typeAliases';
|
|
2
|
-
/**
|
|
3
|
-
* Relative path to the Promptbook Coder quick-reference file initialized in project roots.
|
|
4
|
-
*
|
|
5
|
-
* @private internal utility of `ptbk coder`
|
|
6
|
-
*/
|
|
7
|
-
export declare const AGENT_CODING_FILE_PATH = "AGENT_CODING.md";
|
|
8
|
-
/**
|
|
9
|
-
* Returns the default coder `AGENT_CODING.md` quick-reference content.
|
|
10
|
-
*
|
|
11
|
-
* @private internal utility of `ptbk coder`
|
|
12
|
-
*/
|
|
13
|
-
export declare function getDefaultCoderAgentCodingFileContent(): string_markdown;
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import type { Command as Program } from 'commander';
|
|
2
|
-
/**
|
|
3
|
-
* Commander option bag for opting out of automatic coding-harness update checks.
|
|
4
|
-
*
|
|
5
|
-
* @private internal utility of `promptbookCli`
|
|
6
|
-
*/
|
|
7
|
-
export type HarnessUpdateCliOptions = {
|
|
8
|
-
readonly harnessUpdate: boolean;
|
|
9
|
-
};
|
|
10
|
-
/**
|
|
11
|
-
* Normalized automatic coding-harness update-check option.
|
|
12
|
-
*
|
|
13
|
-
* @private internal utility of `promptbookCli`
|
|
14
|
-
*/
|
|
15
|
-
export type NormalizedHarnessUpdateCliOptions = {
|
|
16
|
-
readonly isHarnessUpdateCheckEnabled: boolean;
|
|
17
|
-
};
|
|
18
|
-
/**
|
|
19
|
-
* Registers the shared `--no-harness-update` option on a `ptbk coder` command that uses a coding harness.
|
|
20
|
-
*
|
|
21
|
-
* @private internal utility of `promptbookCli`
|
|
22
|
-
*/
|
|
23
|
-
export declare function addHarnessUpdateOption(command: Program): void;
|
|
24
|
-
/**
|
|
25
|
-
* Converts the Commander harness-update flag into the normalized harness-check option.
|
|
26
|
-
*
|
|
27
|
-
* @private internal utility of `promptbookCli`
|
|
28
|
-
*/
|
|
29
|
-
export declare function normalizeHarnessUpdateCliOptions(cliOptions: HarnessUpdateCliOptions): NormalizedHarnessUpdateCliOptions;
|
/package/esm/src/cli/cli-commands/{common/harnessUpdateCliOptions.test.d.ts → coder/init.test.d.ts}
RENAMED
|
File without changes
|