@promptbook/website-crawler 0.112.0-65 โ†’ 0.112.0-66

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.
@@ -6,7 +6,7 @@ import type { AvatarDefinition } from './AvatarDefinition';
6
6
  *
7
7
  * @private shared contract for the avatar rendering system
8
8
  */
9
- export type AvatarVisualId = 'pixel-art' | 'octopus' | 'octopus2' | 'octopus3' | 'ascii-octopus' | 'minecraft' | 'fractal' | 'orb';
9
+ export type AvatarVisualId = 'pixel-art' | 'octopus' | 'octopus2' | 'octopus3' | 'ascii-octopus' | 'minecraft' | 'minecraft2' | 'fractal' | 'orb';
10
10
  /**
11
11
  * Derived color palette used by avatar visuals.
12
12
  *
@@ -0,0 +1,7 @@
1
+ import type { AvatarVisualDefinition } from '../types/AvatarVisualDefinition';
2
+ /**
3
+ * Minecraft 3D 2 avatar visual.
4
+ *
5
+ * @private built-in avatar visual
6
+ */
7
+ export declare const minecraft2AvatarVisual: AvatarVisualDefinition;
@@ -0,0 +1,48 @@
1
+ import type { AvatarPalette } from '../types/AvatarVisualDefinition';
2
+ /**
3
+ * One Minecraft-style pixel texture sampled on a cuboid face.
4
+ *
5
+ * @private helper of the Minecraft avatar visuals
6
+ */
7
+ export type MinecraftTexture = ReadonlyArray<ReadonlyArray<string>>;
8
+ /**
9
+ * Full six-face texture pack for one rendered cuboid.
10
+ *
11
+ * @private helper of the Minecraft avatar visuals
12
+ */
13
+ export type MinecraftCuboidTextures = {
14
+ readonly front: MinecraftTexture;
15
+ readonly back: MinecraftTexture;
16
+ readonly left: MinecraftTexture;
17
+ readonly right: MinecraftTexture;
18
+ readonly top: MinecraftTexture;
19
+ readonly bottom: MinecraftTexture;
20
+ };
21
+ /**
22
+ * Shared subset of avatar colors used by the Minecraft avatar helpers.
23
+ *
24
+ * @private helper of the Minecraft avatar visuals
25
+ */
26
+ type MinecraftTexturePalette = Pick<AvatarPalette, 'primary' | 'secondary' | 'accent' | 'highlight' | 'ink' | 'shadow'>;
27
+ /**
28
+ * Builds the seeded six-face texture pack used by the Minecraft-style head cuboid.
29
+ *
30
+ * @param random Seeded random generator.
31
+ * @param palette Derived avatar palette.
32
+ * @param hasHeadband Whether the generated avatar should include a colored headband.
33
+ * @returns Head cuboid textures.
34
+ *
35
+ * @private helper of the Minecraft avatar visuals
36
+ */
37
+ export declare function createMinecraftHeadTextures(random: () => number, palette: MinecraftTexturePalette, hasHeadband: boolean): MinecraftCuboidTextures;
38
+ /**
39
+ * Builds the seeded six-face texture pack used by the Minecraft-style torso cuboid.
40
+ *
41
+ * @param random Seeded random generator.
42
+ * @param palette Derived avatar palette.
43
+ * @returns Torso cuboid textures.
44
+ *
45
+ * @private helper of the Minecraft avatar visuals
46
+ */
47
+ export declare function createMinecraftTorsoTextures(random: () => number, palette: MinecraftTexturePalette): MinecraftCuboidTextures;
48
+ export {};
@@ -1,6 +1,6 @@
1
1
  import type { InitializationStatus } from './boilerplateTemplates';
2
2
  /**
3
- * Ensures `.gitignore` contains the standalone Promptbook coder temp and cache entries.
3
+ * Ensures `.gitignore` contains the shared Promptbook working-directory entry.
4
4
  *
5
5
  * @private function of `initializeCoderProjectConfiguration`
6
6
  */
@@ -270,7 +270,7 @@ export declare const DEFAULT_AGENTS_DIRNAME = "./agents";
270
270
  *
271
271
  * @public exported from `@promptbook/core`
272
272
  */
273
- export declare const DEFAULT_DOWNLOAD_CACHE_DIRNAME = "./.promptbook/download-cache";
273
+ export declare const DEFAULT_DOWNLOAD_CACHE_DIRNAME: string;
274
274
  /**
275
275
  * Where to store the cache of executions for promptbook CLI
276
276
  *
@@ -278,7 +278,7 @@ export declare const DEFAULT_DOWNLOAD_CACHE_DIRNAME = "./.promptbook/download-ca
278
278
  *
279
279
  * @public exported from `@promptbook/core`
280
280
  */
281
- export declare const DEFAULT_EXECUTION_CACHE_DIRNAME = "./.promptbook/execution-cache";
281
+ export declare const DEFAULT_EXECUTION_CACHE_DIRNAME: string;
282
282
  /**
283
283
  * Where to store the scrape cache
284
284
  *
@@ -286,7 +286,7 @@ export declare const DEFAULT_EXECUTION_CACHE_DIRNAME = "./.promptbook/execution-
286
286
  *
287
287
  * @public exported from `@promptbook/core`
288
288
  */
289
- export declare const DEFAULT_SCRAPE_CACHE_DIRNAME = "./.promptbook/scrape-cache";
289
+ export declare const DEFAULT_SCRAPE_CACHE_DIRNAME: string;
290
290
  /**
291
291
  * Id of application for the CLI when using remote server
292
292
  *
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Builds one project-relative path inside the shared Promptbook working directory.
3
+ *
4
+ * @private internal utility for Promptbook-owned temp files
5
+ */
6
+ export declare function getPromptbookTempPath(...pathSegments: ReadonlyArray<string>): string;
7
+ /**
8
+ * Builds one absolute filesystem path inside the shared Promptbook working directory for a project root.
9
+ *
10
+ * @private internal utility for Promptbook-owned temp files
11
+ */
12
+ export declare function resolvePromptbookTempPath(projectPath: string, ...pathSegments: ReadonlyArray<string>): string;
13
+ /**
14
+ * Builds one POSIX path fragment inside the shared Promptbook working directory for globs and generated text files.
15
+ *
16
+ * @private internal utility for Promptbook-owned temp files
17
+ */
18
+ export declare function getPromptbookTempPosixPath(...pathSegments: ReadonlyArray<string>): string;
19
+ /**
20
+ * Builds one rooted `.gitignore` rule targeting a path inside the shared Promptbook working directory.
21
+ *
22
+ * @private internal utility for Promptbook-owned temp files
23
+ */
24
+ export declare function getPromptbookTempGitignoreRule(...pathSegments: ReadonlyArray<string>): string;
@@ -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.112.0-64`).
18
+ * It follows semantic versioning (e.g., `0.112.0-65`).
19
19
  *
20
20
  * @generated
21
21
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/website-crawler",
3
- "version": "0.112.0-65",
3
+ "version": "0.112.0-66",
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,
@@ -99,7 +99,7 @@
99
99
  "types": "./esm/src/_packages/website-crawler.index.d.ts",
100
100
  "typings": "./esm/src/_packages/website-crawler.index.d.ts",
101
101
  "peerDependencies": {
102
- "@promptbook/core": "0.112.0-65"
102
+ "@promptbook/core": "0.112.0-66"
103
103
  },
104
104
  "dependencies": {
105
105
  "@mozilla/readability": "0.6.0",
package/umd/index.umd.js CHANGED
@@ -1,8 +1,8 @@
1
1
  (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('spacetrim'), require('@mozilla/readability'), require('jsdom'), require('crypto-js'), require('crypto-js/enc-hex'), require('fs/promises'), require('path'), require('crypto'), require('rxjs'), require('waitasecond'), require('crypto-js/sha256'), require('mime-types'), require('papaparse'), require('showdown')) :
3
- typeof define === 'function' && define.amd ? define(['exports', 'spacetrim', '@mozilla/readability', 'jsdom', 'crypto-js', 'crypto-js/enc-hex', 'fs/promises', 'path', 'crypto', 'rxjs', 'waitasecond', 'crypto-js/sha256', 'mime-types', 'papaparse', 'showdown'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["promptbook-website-crawler"] = {}, global.spacetrim, global.readability, global.jsdom, global.cryptoJs, global.hexEncoder, global.promises, global.path, global.crypto, global.rxjs, global.waitasecond, global.sha256, global.mimeTypes, global.papaparse, global.showdown));
5
- })(this, (function (exports, spacetrim, readability, jsdom, cryptoJs, hexEncoder, promises, path, crypto, rxjs, waitasecond, sha256, mimeTypes, papaparse, showdown) { 'use strict';
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('spacetrim'), require('path'), require('@mozilla/readability'), require('jsdom'), require('crypto-js'), require('crypto-js/enc-hex'), require('fs/promises'), require('crypto'), require('rxjs'), require('waitasecond'), require('crypto-js/sha256'), require('mime-types'), require('papaparse'), require('showdown')) :
3
+ typeof define === 'function' && define.amd ? define(['exports', 'spacetrim', 'path', '@mozilla/readability', 'jsdom', 'crypto-js', 'crypto-js/enc-hex', 'fs/promises', 'crypto', 'rxjs', 'waitasecond', 'crypto-js/sha256', 'mime-types', 'papaparse', 'showdown'], factory) :
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["promptbook-website-crawler"] = {}, global.spacetrim, global.path, global.readability, global.jsdom, global.cryptoJs, global.hexEncoder, global.promises, global.crypto, global.rxjs, global.waitasecond, global.sha256, global.mimeTypes, global.papaparse, global.showdown));
5
+ })(this, (function (exports, spacetrim, path, readability, jsdom, cryptoJs, hexEncoder, promises, crypto, rxjs, waitasecond, sha256, mimeTypes, papaparse, showdown) { 'use strict';
6
6
 
7
7
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
8
8
 
@@ -23,7 +23,7 @@
23
23
  * @generated
24
24
  * @see https://github.com/webgptorg/promptbook
25
25
  */
26
- const PROMPTBOOK_ENGINE_VERSION = '0.112.0-65';
26
+ const PROMPTBOOK_ENGINE_VERSION = '0.112.0-66';
27
27
  /**
28
28
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
29
29
  * Note: [๐Ÿ’ž] Ignore a discrepancy between file name and entity name
@@ -986,6 +986,29 @@
986
986
  }
987
987
  // TODO: Maybe implement by mix+hsl
988
988
 
989
+ /**
990
+ * Relative directory name without the `./` prefix for Git ignore rules and glob patterns.
991
+ *
992
+ * @private internal utility for Promptbook-owned temp files
993
+ */
994
+ const PROMPTBOOK_TEMP_DIRECTORY_NAME = '.promptbook';
995
+ /**
996
+ * Builds one project-relative path inside the shared Promptbook working directory.
997
+ *
998
+ * @private internal utility for Promptbook-owned temp files
999
+ */
1000
+ function getPromptbookTempPath(...pathSegments) {
1001
+ return `./${getPromptbookTempPosixPath(...pathSegments)}`;
1002
+ }
1003
+ /**
1004
+ * Builds one POSIX path fragment inside the shared Promptbook working directory for globs and generated text files.
1005
+ *
1006
+ * @private internal utility for Promptbook-owned temp files
1007
+ */
1008
+ function getPromptbookTempPosixPath(...pathSegments) {
1009
+ return path.posix.join(PROMPTBOOK_TEMP_DIRECTORY_NAME, ...pathSegments);
1010
+ }
1011
+
989
1012
  /**
990
1013
  * Returns the same value that is passed as argument.
991
1014
  * No side effects.
@@ -1161,7 +1184,6 @@
1161
1184
  */
1162
1185
  const DEFAULT_MAX_EXECUTION_ATTEMPTS = 7; // <- TODO: [๐Ÿคนโ€โ™‚๏ธ]
1163
1186
  // <- TODO: [๐Ÿ•] Make also `AGENTS_DIRNAME_ALTERNATIVES`
1164
- // TODO: Just `.promptbook` in config, hardcode subfolders like `download-cache` or `execution-cache`
1165
1187
  /**
1166
1188
  * Where to store the temporary downloads
1167
1189
  *
@@ -1169,7 +1191,15 @@
1169
1191
  *
1170
1192
  * @public exported from `@promptbook/core`
1171
1193
  */
1172
- const DEFAULT_DOWNLOAD_CACHE_DIRNAME = './.promptbook/download-cache';
1194
+ const DEFAULT_DOWNLOAD_CACHE_DIRNAME = getPromptbookTempPath('download-cache');
1195
+ /**
1196
+ * Where to store the cache of executions for promptbook CLI
1197
+ *
1198
+ * Note: When the folder does not exist, it is created recursively
1199
+ *
1200
+ * @public exported from `@promptbook/core`
1201
+ */
1202
+ getPromptbookTempPath('execution-cache');
1173
1203
  /**
1174
1204
  * Where to store the scrape cache
1175
1205
  *
@@ -1177,7 +1207,7 @@
1177
1207
  *
1178
1208
  * @public exported from `@promptbook/core`
1179
1209
  */
1180
- const DEFAULT_SCRAPE_CACHE_DIRNAME = './.promptbook/scrape-cache';
1210
+ const DEFAULT_SCRAPE_CACHE_DIRNAME = getPromptbookTempPath('scrape-cache');
1181
1211
  // <- TODO: [๐Ÿงœโ€โ™‚๏ธ]
1182
1212
  /**
1183
1213
  * Default settings for parsing and generating CSV files in Promptbook.