@promptbook/editable 0.114.0-40 → 0.114.0-42
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 +1 -1
- package/esm/src/cli/cli-commands/common/harness/HARNESS_DEFAULT_MODELS.d.ts +25 -0
- package/esm/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +1 -1
- package/umd/src/cli/cli-commands/common/harness/HARNESS_DEFAULT_MODELS.d.ts +25 -0
- package/umd/src/version.d.ts +1 -1
package/esm/index.es.js
CHANGED
|
@@ -17,7 +17,7 @@ const BOOK_LANGUAGE_VERSION = '2.0.0';
|
|
|
17
17
|
* @generated
|
|
18
18
|
* @see https://github.com/webgptorg/promptbook
|
|
19
19
|
*/
|
|
20
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.114.0-
|
|
20
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.114.0-42';
|
|
21
21
|
/**
|
|
22
22
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
23
23
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* [🕕] Default models shared by CLI execution, project initialization and the coder landing page.
|
|
3
|
+
*
|
|
4
|
+
* Checked against provider documentation on 2026-09-21:
|
|
5
|
+
* - https://developers.openai.com/codex/models
|
|
6
|
+
* - https://github.blog/changelog/2026-09-04-gpt-6-astra-is-generally-available-in-github-copilot/
|
|
7
|
+
* - https://code.claude.com/docs/en/model-config
|
|
8
|
+
* - https://ai.google.dev/gemini-api/docs/models/gemini-3.8-flash
|
|
9
|
+
* - https://qwenlm.github.io/qwen-code-docs/en/blog/updates/weekly-update-2026-08-27/
|
|
10
|
+
*
|
|
11
|
+
* Claude's `fable` alias follows its current flagship. OpenCode needs a provider-qualified model;
|
|
12
|
+
* the Cline adapter uses Google's provider and therefore needs a Gemini model ID.
|
|
13
|
+
* Keep this module free of runtime dependencies so the landing page can consume the same defaults.
|
|
14
|
+
*
|
|
15
|
+
* @private internal configuration of CLI harness integrations
|
|
16
|
+
*/
|
|
17
|
+
export declare const HARNESS_DEFAULT_MODELS: {
|
|
18
|
+
readonly 'openai-codex': "gpt-6-astra";
|
|
19
|
+
readonly 'github-copilot': "gpt-6-astra";
|
|
20
|
+
readonly 'claude-code': "fable";
|
|
21
|
+
readonly gemini: "gemini-3.8-flash";
|
|
22
|
+
readonly 'qwen-code': "qwen3.8-max";
|
|
23
|
+
readonly opencode: "openai/gpt-6-astra";
|
|
24
|
+
readonly cline: "gemini-3.8-flash";
|
|
25
|
+
};
|
package/esm/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-40`).
|
|
19
19
|
*
|
|
20
20
|
* @generated
|
|
21
21
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/editable",
|
|
3
|
-
"version": "0.114.0-
|
|
3
|
+
"version": "0.114.0-42",
|
|
4
4
|
"description": "Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"types": "./esm/src/_packages/editable.index.d.ts",
|
|
97
97
|
"typings": "./esm/src/_packages/editable.index.d.ts",
|
|
98
98
|
"peerDependencies": {
|
|
99
|
-
"@promptbook/core": "0.114.0-
|
|
99
|
+
"@promptbook/core": "0.114.0-42"
|
|
100
100
|
},
|
|
101
101
|
"dependencies": {
|
|
102
102
|
"crypto-js": "4.2.0",
|
package/umd/index.umd.js
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
* @generated
|
|
25
25
|
* @see https://github.com/webgptorg/promptbook
|
|
26
26
|
*/
|
|
27
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.114.0-
|
|
27
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.114.0-42';
|
|
28
28
|
/**
|
|
29
29
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
30
30
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* [🕕] Default models shared by CLI execution, project initialization and the coder landing page.
|
|
3
|
+
*
|
|
4
|
+
* Checked against provider documentation on 2026-09-21:
|
|
5
|
+
* - https://developers.openai.com/codex/models
|
|
6
|
+
* - https://github.blog/changelog/2026-09-04-gpt-6-astra-is-generally-available-in-github-copilot/
|
|
7
|
+
* - https://code.claude.com/docs/en/model-config
|
|
8
|
+
* - https://ai.google.dev/gemini-api/docs/models/gemini-3.8-flash
|
|
9
|
+
* - https://qwenlm.github.io/qwen-code-docs/en/blog/updates/weekly-update-2026-08-27/
|
|
10
|
+
*
|
|
11
|
+
* Claude's `fable` alias follows its current flagship. OpenCode needs a provider-qualified model;
|
|
12
|
+
* the Cline adapter uses Google's provider and therefore needs a Gemini model ID.
|
|
13
|
+
* Keep this module free of runtime dependencies so the landing page can consume the same defaults.
|
|
14
|
+
*
|
|
15
|
+
* @private internal configuration of CLI harness integrations
|
|
16
|
+
*/
|
|
17
|
+
export declare const HARNESS_DEFAULT_MODELS: {
|
|
18
|
+
readonly 'openai-codex': "gpt-6-astra";
|
|
19
|
+
readonly 'github-copilot': "gpt-6-astra";
|
|
20
|
+
readonly 'claude-code': "fable";
|
|
21
|
+
readonly gemini: "gemini-3.8-flash";
|
|
22
|
+
readonly 'qwen-code': "qwen3.8-max";
|
|
23
|
+
readonly opencode: "openai/gpt-6-astra";
|
|
24
|
+
readonly cline: "gemini-3.8-flash";
|
|
25
|
+
};
|
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-40`).
|
|
19
19
|
*
|
|
20
20
|
* @generated
|
|
21
21
|
*/
|