@promptbook/browser 0.114.0-35 → 0.114.0-39

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.
Files changed (35) hide show
  1. package/esm/index.es.js +242 -3
  2. package/esm/index.es.js.map +1 -1
  3. package/esm/src/book-2.0/agent-source/AgentReferenceResolutionIssue.d.ts +45 -0
  4. package/esm/src/book-2.0/agent-source/createAgentModelRequirements.deduplication.test.d.ts +1 -0
  5. package/esm/src/book-2.0/agent-source/deduplicateSystemMessage.d.ts +14 -0
  6. package/esm/src/book-2.0/agent-source/deduplicateSystemMessage.test.d.ts +1 -0
  7. package/esm/src/book-2.0/agent-source/explicitFromCommitment.d.ts +62 -0
  8. package/esm/src/book-2.0/agent-source/extractAgentReferenceTokens.d.ts +32 -0
  9. package/esm/src/book-2.0/agent-source/resolveInheritedAgentSource.d.ts +73 -0
  10. package/esm/src/cli/$initializePromptbookCliProgram.d.ts +8 -0
  11. package/esm/src/cli/cli-commands/coder/initializeCoderProjectConfiguration.d.ts +1 -0
  12. package/esm/src/cli/cli-commands/common/LocalAgentBookCollection.d.ts +46 -0
  13. package/esm/src/cli/cli-commands/common/createLocalAgentReferenceResolver.d.ts +8 -0
  14. package/esm/src/cli/cli-commands/common/ensureAdamAgentBook.d.ts +12 -0
  15. package/esm/src/cli/cli-commands/common/resolveBundledAgentBookPath.d.ts +6 -0
  16. package/esm/src/cli/cli-commands/common/resolveLocalAgentSource.d.ts +19 -0
  17. package/esm/src/version.d.ts +1 -1
  18. package/package.json +2 -2
  19. package/umd/index.umd.js +242 -3
  20. package/umd/index.umd.js.map +1 -1
  21. package/umd/src/book-2.0/agent-source/AgentReferenceResolutionIssue.d.ts +45 -0
  22. package/umd/src/book-2.0/agent-source/createAgentModelRequirements.deduplication.test.d.ts +1 -0
  23. package/umd/src/book-2.0/agent-source/deduplicateSystemMessage.d.ts +14 -0
  24. package/umd/src/book-2.0/agent-source/deduplicateSystemMessage.test.d.ts +1 -0
  25. package/umd/src/book-2.0/agent-source/explicitFromCommitment.d.ts +62 -0
  26. package/umd/src/book-2.0/agent-source/extractAgentReferenceTokens.d.ts +32 -0
  27. package/umd/src/book-2.0/agent-source/resolveInheritedAgentSource.d.ts +73 -0
  28. package/umd/src/cli/$initializePromptbookCliProgram.d.ts +8 -0
  29. package/umd/src/cli/cli-commands/coder/initializeCoderProjectConfiguration.d.ts +1 -0
  30. package/umd/src/cli/cli-commands/common/LocalAgentBookCollection.d.ts +46 -0
  31. package/umd/src/cli/cli-commands/common/createLocalAgentReferenceResolver.d.ts +8 -0
  32. package/umd/src/cli/cli-commands/common/ensureAdamAgentBook.d.ts +12 -0
  33. package/umd/src/cli/cli-commands/common/resolveBundledAgentBookPath.d.ts +6 -0
  34. package/umd/src/cli/cli-commands/common/resolveLocalAgentSource.d.ts +19 -0
  35. package/umd/src/version.d.ts +1 -1
@@ -0,0 +1,45 @@
1
+ import type { BookCommitment } from '../../commitments/_base/BookCommitment';
2
+ import type { AgentReferenceResolver } from './AgentReferenceResolver';
3
+ /**
4
+ * Structured issue captured when compact agent reference resolution fails.
5
+ *
6
+ * @private internal utility of agent reference resolution
7
+ */
8
+ export type AgentReferenceResolutionIssue = {
9
+ /**
10
+ * Commitment where the unresolved token appeared.
11
+ */
12
+ readonly commitmentType: BookCommitment;
13
+ /**
14
+ * Original token text (for example `{Unknown Agent}` or `@UnknownAgent`).
15
+ */
16
+ readonly token: string;
17
+ /**
18
+ * Normalized token payload used for lookup.
19
+ */
20
+ readonly reference: string;
21
+ /**
22
+ * Human-readable explanation of why the token could not be resolved.
23
+ */
24
+ readonly message: string;
25
+ };
26
+ /**
27
+ * Extension implemented by resolvers that can expose accumulated resolution issues.
28
+ *
29
+ * @private internal utility of agent reference resolution
30
+ */
31
+ export type IssueTrackingAgentReferenceResolver = AgentReferenceResolver & {
32
+ /**
33
+ * Returns tracked issues and clears the internal queue.
34
+ */
35
+ consumeResolutionIssues(): Array<AgentReferenceResolutionIssue>;
36
+ };
37
+ /**
38
+ * Drains unresolved compact-reference issues from a resolver when supported.
39
+ *
40
+ * @param resolver - Resolver instance that may implement issue tracking.
41
+ * @returns Collected issues or an empty list.
42
+ *
43
+ * @private internal utility of agent reference resolution
44
+ */
45
+ export declare function consumeAgentReferenceResolutionIssues(resolver?: AgentReferenceResolver): Array<AgentReferenceResolutionIssue>;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Removes duplicated instructions from a generated system message
3
+ *
4
+ * Commitments are applied one by one, so a commitment used multiple times in one book repeats its whole
5
+ * section, including the shared guidance preamble. For example two `WRITING RULES` commitments emit the
6
+ * `## Writing rules` heading and its guidance paragraph twice. This function merges all sections sharing
7
+ * one heading into the position of their first occurrence and keeps every identical block only once.
8
+ *
9
+ * @param systemMessage The assembled system message which may contain repeated sections and blocks
10
+ * @returns The system message where each section heading and each identical block appears exactly once
11
+ *
12
+ * @private internal utility of `createAgentModelRequirementsWithCommitments`
13
+ */
14
+ export declare function deduplicateSystemMessage(systemMessage: string): string;
@@ -0,0 +1,62 @@
1
+ import type { string_book } from './string_book';
2
+ /**
3
+ * One explicit `FROM` commitment written in a book.
4
+ *
5
+ * @private utility of Agents Server inheritance resolution
6
+ */
7
+ export type ExplicitFromCommitment = {
8
+ /**
9
+ * Zero-based index of the line the commitment was found on, within the scanned lines.
10
+ */
11
+ readonly lineIndex: number;
12
+ /**
13
+ * Trimmed commitment content, empty string for a blank `FROM`.
14
+ */
15
+ readonly content: string;
16
+ };
17
+ /**
18
+ * Collects every explicit single-line `FROM` commitment of one book.
19
+ *
20
+ * This lightweight parser is intentionally limited to the subset needed by inheritance
21
+ * resolution so it stays safe to bundle into the Next.js proxy path.
22
+ *
23
+ * @param sourceLines - Book source already split into lines.
24
+ * @returns Found `FROM` commitments in source order, empty when the book declares no parent.
25
+ *
26
+ * @private utility of Agents Server inheritance resolution
27
+ */
28
+ export declare function collectExplicitFromCommitments(sourceLines: ReadonlyArray<string>): ReadonlyArray<ExplicitFromCommitment>;
29
+ /**
30
+ * Returns the effective explicit `FROM` commitment of one book.
31
+ *
32
+ * A book may repeat `FROM`, in which case the last one wins and overrides every earlier one.
33
+ *
34
+ * @param agentSource - Raw book source.
35
+ * @returns The last explicit `FROM` commitment, or `undefined` when the book declares no parent.
36
+ *
37
+ * @private utility of Agents Server inheritance resolution
38
+ */
39
+ export declare function getEffectiveExplicitFromCommitment(agentSource: string_book): ExplicitFromCommitment | undefined;
40
+ /**
41
+ * Returns the effective explicit `FROM` commitment content of one book.
42
+ *
43
+ * A book may repeat `FROM`, in which case the last one wins and overrides every earlier one.
44
+ *
45
+ * @param agentSource - Raw book source.
46
+ * @returns Trimmed commitment content, empty string for a blank explicit `FROM`, or `undefined` when `FROM` is absent.
47
+ *
48
+ * @private utility of Agents Server inheritance resolution
49
+ */
50
+ export declare function getExplicitFromCommitmentContent(agentSource: string_book): string | undefined;
51
+ /**
52
+ * Returns true when one book declares no parent at all and therefore implicitly inherits from `@Adam`.
53
+ *
54
+ * Writing no `FROM` commitment is equivalent to writing `FROM @Adam`, so only an explicit
55
+ * `FROM @Null` / `FROM {Void}` turns the inheritance off.
56
+ *
57
+ * @param agentSource - Raw book source.
58
+ * @returns True when the implicit `@Adam` ancestor applies to this book.
59
+ *
60
+ * @private utility of Agents Server inheritance resolution
61
+ */
62
+ export declare function isImplicitAdamInheritance(agentSource: string_book): boolean;
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Matched compact agent reference token inside commitment content.
3
+ *
4
+ * @private internal utility of agent reference resolution
5
+ */
6
+ export type AgentReferenceTokenMatch = {
7
+ /**
8
+ * Original token text, for example `{Agent Name}` or `@AgentId`.
9
+ */
10
+ readonly token: string;
11
+ /**
12
+ * Token payload used for lookup.
13
+ */
14
+ readonly reference: string;
15
+ /**
16
+ * Zero-based character offset of `token` in the scanned content.
17
+ */
18
+ readonly index: number;
19
+ /**
20
+ * Length of `token` in characters.
21
+ */
22
+ readonly length: number;
23
+ };
24
+ /**
25
+ * Extracts compact agent-reference tokens from commitment content.
26
+ *
27
+ * @param content - Commitment content to inspect.
28
+ * @returns Matched compact reference tokens.
29
+ *
30
+ * @private internal utility of agent reference resolution
31
+ */
32
+ export declare function extractAgentReferenceTokens(content: string): Array<AgentReferenceTokenMatch>;
@@ -0,0 +1,73 @@
1
+ import type { string_agent_url } from '../../types/string_agent_url';
2
+ import type { string_book } from './string_book';
3
+ import type { AgentReferenceResolver } from './AgentReferenceResolver';
4
+ /**
5
+ * Shared options for resolving one agent source with inheritance and imports applied.
6
+ *
7
+ * @private internal utility of agent source resolution
8
+ */
9
+ export type ResolveInheritedAgentSourceOptions = {
10
+ /** Current recursion depth, forwarded to the source importer. */
11
+ readonly recursionLevel?: number;
12
+ /**
13
+ * The URL of the Adam agent to use as the default ancestor
14
+ *
15
+ * @default 'https://core.ptbk.io/agents/adam'
16
+ */
17
+ readonly adamAgentUrl?: string_agent_url;
18
+ /**
19
+ * Custom resolver used to expand compact agent references.
20
+ */
21
+ readonly agentReferenceResolver?: AgentReferenceResolver;
22
+ /**
23
+ * Canonical URL of the currently resolved agent.
24
+ */
25
+ readonly currentAgentUrl?: string_agent_url;
26
+ /**
27
+ * Additional equivalent URLs that should be treated as the current agent while detecting cycles.
28
+ */
29
+ readonly currentAgentAliases?: ReadonlyArray<string_agent_url>;
30
+ /**
31
+ * Already visited agent URLs in the current resolution stack.
32
+ */
33
+ readonly inheritancePath?: ReadonlyArray<string_agent_url>;
34
+ /**
35
+ * Source importer supplied by the host application.
36
+ */
37
+ readonly agentSourceImporter: AgentSourceImporter;
38
+ };
39
+ /**
40
+ * Context passed to a custom agent source importer.
41
+ *
42
+ * @private internal utility of agent source resolution
43
+ */
44
+ export type AgentSourceImporterContext = {
45
+ /**
46
+ * Commitment that requested the imported source.
47
+ */
48
+ readonly commitmentType: 'FROM' | 'IMPORT';
49
+ /**
50
+ * Import options propagated from the current resolution pass.
51
+ */
52
+ readonly importAgentOptions: {
53
+ readonly recursionLevel?: number;
54
+ readonly inheritancePath?: ReadonlyArray<string_agent_url>;
55
+ };
56
+ };
57
+ /**
58
+ * Loads and recursively resolves one referenced agent using the caller's transport.
59
+ *
60
+ * @private internal utility of agent source resolution
61
+ */
62
+ export type AgentSourceImporter = (agentUrl: string_agent_url, context: AgentSourceImporterContext) => Promise<string_book>;
63
+ /**
64
+ * Resolves agent source with inheritance (FROM commitment)
65
+ *
66
+ * It recursively fetches the parent agent source and merges it with the current source.
67
+ *
68
+ * @param agentSource The initial agent source
69
+ * @returns The resolved agent source with inheritance applied
70
+ *
71
+ * @private internal utility of agent source resolution
72
+ */
73
+ export declare function resolveInheritedAgentSource(agentSource: string_book, options: ResolveInheritedAgentSourceOptions): Promise<string_book>;
@@ -0,0 +1,8 @@
1
+ import type { Command } from 'commander';
2
+ /**
3
+ * Registers the CLI commands on a fresh Commander program without parsing arguments or running an action.
4
+ * Tests can configure output and exit handling before registration, so subcommands inherit those settings.
5
+ *
6
+ * @private internal utility of `promptbookCli`
7
+ */
8
+ export declare function $initializePromptbookCliProgram(program: Command): void;
@@ -10,6 +10,7 @@ export type CoderInitializationSummary = {
10
10
  readonly promptsDoneDirectoryStatus: InitializationStatus;
11
11
  readonly promptsTemplatesDirectoryStatus: InitializationStatus;
12
12
  readonly agentsDirectoryStatus: InitializationStatus;
13
+ readonly adamAgentFileStatus: InitializationStatus;
13
14
  readonly envFileStatus: InitializationStatus;
14
15
  readonly gitignoreFileStatus: InitializationStatus;
15
16
  readonly packageJsonFileStatus: InitializationStatus;
@@ -0,0 +1,46 @@
1
+ import type { string_book } from '../../../book-2.0/agent-source/string_book';
2
+ import type { TeammateProfile } from '../../../book-2.0/agent-source/TeammateProfileResolver';
3
+ /**
4
+ * A book's source and identity, retaining its location for nested relative references.
5
+ *
6
+ * @private internal type of CLI agent resolution
7
+ */
8
+ export type LocalAgentBook = {
9
+ readonly url: string;
10
+ readonly filePath?: string;
11
+ readonly source: string_book;
12
+ readonly profile: TeammateProfile;
13
+ };
14
+ /**
15
+ * Reads repository books and indexes their first-line names for CLI reference resolution.
16
+ *
17
+ * @private internal utility of CLI agent resolution
18
+ */
19
+ export declare class LocalAgentBookCollection {
20
+ private readonly agentDirectoryPath;
21
+ private readonly currentWorkingDirectory;
22
+ private readonly booksByUrl;
23
+ private readonly booksByName;
24
+ /** Stable default ancestor selected from the initial repository scan. */
25
+ private adamAgentUrl;
26
+ /** Files initialized by this collection, for the coder's normal commit handling. */
27
+ readonly createdAgentBookPaths: string[];
28
+ /** Creates a collection rooted at the primary book's directory. */
29
+ constructor(agentDirectoryPath: string, currentWorkingDirectory: string);
30
+ /** Discovers nested books, including the hidden `.core` directory. */
31
+ initialize(): Promise<void>;
32
+ /** Identifies the default ancestor without creating an unused book for FROM null/void. */
33
+ getAdamAgentUrl(): string;
34
+ /** Resolves a unique first-line name, refusing ambiguous matches. */
35
+ findByName(name: string): LocalAgentBook;
36
+ /** Resolves a name, a path relative to its declaring book, or a path relative to the CLI cwd. */
37
+ resolveReference(reference: string, declaringBook: LocalAgentBook): Promise<string>;
38
+ /** Reads a local book once, canonicalizing symlinks so aliases cannot bypass cycle detection. */
39
+ readBook(filePath: string): Promise<LocalAgentBook>;
40
+ /** Loads a referenced remote book, while keeping local identifiers entirely inside the collection. */
41
+ getBook(url: string): Promise<LocalAgentBook>;
42
+ /** Adds a book under its normalized first-line name and preserves the display name for TEAM. */
43
+ private registerBook;
44
+ /** Walks real directories in deterministic order without following directory symlink loops. */
45
+ private readDirectory;
46
+ }
@@ -0,0 +1,8 @@
1
+ import type { AgentReferenceResolver } from '../../../book-2.0/agent-source/AgentReferenceResolver';
2
+ import type { LocalAgentBook, LocalAgentBookCollection } from './LocalAgentBookCollection';
3
+ /**
4
+ * Creates a resolver scoped to the book which declares each reference.
5
+ *
6
+ * @private internal utility of CLI agent resolution
7
+ */
8
+ export declare function createLocalAgentReferenceResolver(collection: LocalAgentBookCollection, declaringBook: LocalAgentBook): AgentReferenceResolver;
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Adam's location relative to a directory of local agents.
3
+ *
4
+ * @private internal constant of CLI agent initialization
5
+ */
6
+ export declare const ADAM_AGENT_BOOK_RELATIVE_PATH = ".core/adam.book";
7
+ /**
8
+ * Creates the same Adam book used by the Agent Server without overwriting a project-owned book.
9
+ *
10
+ * @private internal utility of CLI agent initialization
11
+ */
12
+ export declare function ensureAdamAgentBook(agentDirectoryPath: string): Promise<'created' | 'unchanged'>;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Locates a bundled agent in either the source checkout or the generated CLI package.
3
+ *
4
+ * @private internal utility of CLI agent initialization
5
+ */
6
+ export declare function resolveBundledAgentBookPath(relativeFilePath: string): Promise<string>;
@@ -0,0 +1,19 @@
1
+ import type { AgentReferenceResolver } from '../../../book-2.0/agent-source/AgentReferenceResolver';
2
+ import type { string_book } from '../../../book-2.0/agent-source/string_book';
3
+ /**
4
+ * Resolved source together with the profile resolver used when compiling TEAM commitments.
5
+ *
6
+ * @private internal type of CLI agent resolution
7
+ */
8
+ export type ResolvedLocalAgentSource = {
9
+ readonly agentSource: string_book;
10
+ readonly agentReferenceResolver: AgentReferenceResolver;
11
+ /** Newly created books which the coder may include in its initialization commit. */
12
+ readonly createdAgentBookPaths: ReadonlyArray<string>;
13
+ };
14
+ /**
15
+ * Applies the shared Agent Server inheritance rules to a repository's local and remote books.
16
+ *
17
+ * @private internal utility of CLI agent resolution
18
+ */
19
+ export declare function resolveLocalAgentSource(agentBookPath: string, currentWorkingDirectory: string): Promise<ResolvedLocalAgentSource>;
@@ -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-34`).
18
+ * It follows semantic versioning (e.g., `0.114.0-38`).
19
19
  *
20
20
  * @generated
21
21
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/browser",
3
- "version": "0.114.0-35",
3
+ "version": "0.114.0-39",
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,
@@ -95,7 +95,7 @@
95
95
  "types": "./esm/src/_packages/browser.index.d.ts",
96
96
  "typings": "./esm/src/_packages/browser.index.d.ts",
97
97
  "peerDependencies": {
98
- "@promptbook/core": "0.114.0-35"
98
+ "@promptbook/core": "0.114.0-39"
99
99
  },
100
100
  "dependencies": {
101
101
  "@openai/agents": "0.4.15",
package/umd/index.umd.js CHANGED
@@ -27,7 +27,7 @@
27
27
  * @generated
28
28
  * @see https://github.com/webgptorg/promptbook
29
29
  */
30
- const PROMPTBOOK_ENGINE_VERSION = '0.114.0-35';
30
+ const PROMPTBOOK_ENGINE_VERSION = '0.114.0-39';
31
31
  /**
32
32
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
33
33
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -27062,6 +27062,245 @@
27062
27062
  return Object.keys(rest).length > 0 ? rest : undefined;
27063
27063
  }
27064
27064
 
27065
+ /**
27066
+ * Pattern matching a markdown section heading (`## Title`) that separates system-message sections
27067
+ *
27068
+ * @private internal constant of `deduplicateSystemMessage`
27069
+ */
27070
+ const SYSTEM_MESSAGE_SECTION_HEADING_PATTERN = /^##(?!#)\s*(.+?)\s*$/;
27071
+ /**
27072
+ * Pattern matching a fenced code block delimiter which suspends section and block splitting
27073
+ *
27074
+ * @private internal constant of `deduplicateSystemMessage`
27075
+ */
27076
+ const CODE_FENCE_PATTERN = /^\s*(?:```|~~~)/;
27077
+ /**
27078
+ * Pattern matching a markdown list item which keeps merged bullet lists visually compact
27079
+ *
27080
+ * @private internal constant of `deduplicateSystemMessage`
27081
+ */
27082
+ const LIST_ITEM_PATTERN = /^\s*(?:[-*+]|\d+[.)])\s/;
27083
+ /**
27084
+ * Removes duplicated instructions from a generated system message
27085
+ *
27086
+ * Commitments are applied one by one, so a commitment used multiple times in one book repeats its whole
27087
+ * section, including the shared guidance preamble. For example two `WRITING RULES` commitments emit the
27088
+ * `## Writing rules` heading and its guidance paragraph twice. This function merges all sections sharing
27089
+ * one heading into the position of their first occurrence and keeps every identical block only once.
27090
+ *
27091
+ * @param systemMessage The assembled system message which may contain repeated sections and blocks
27092
+ * @returns The system message where each section heading and each identical block appears exactly once
27093
+ *
27094
+ * @private internal utility of `createAgentModelRequirementsWithCommitments`
27095
+ */
27096
+ function deduplicateSystemMessage(systemMessage) {
27097
+ if (!systemMessage.trim()) {
27098
+ return systemMessage;
27099
+ }
27100
+ return splitSystemMessageIntoRegions(systemMessage)
27101
+ .reduce(mergeRegionSharingHeading, [])
27102
+ .map(removeDuplicateBlocksFromRegion)
27103
+ .map(renderRegion)
27104
+ .filter((renderedRegion) => renderedRegion !== '')
27105
+ .join('\n\n');
27106
+ }
27107
+ /**
27108
+ * Splits the system message into the intro region and one region per `## Title` section
27109
+ *
27110
+ * @param systemMessage The system message to split
27111
+ * @returns Regions in their original order, without empty ones
27112
+ *
27113
+ * @private internal utility of `deduplicateSystemMessage`
27114
+ */
27115
+ function splitSystemMessageIntoRegions(systemMessage) {
27116
+ const regions = [];
27117
+ let headingLine = null;
27118
+ let bodyLines = [];
27119
+ let isInsideCodeFence = false;
27120
+ for (const line of systemMessage.split(/\r?\n/)) {
27121
+ if (CODE_FENCE_PATTERN.test(line)) {
27122
+ isInsideCodeFence = !isInsideCodeFence;
27123
+ }
27124
+ if (isInsideCodeFence || !SYSTEM_MESSAGE_SECTION_HEADING_PATTERN.test(line)) {
27125
+ bodyLines.push(line);
27126
+ continue;
27127
+ }
27128
+ regions.push(createRegion(headingLine, bodyLines));
27129
+ headingLine = line;
27130
+ bodyLines = [];
27131
+ }
27132
+ regions.push(createRegion(headingLine, bodyLines));
27133
+ return regions.filter((region) => region.headingLine !== null || region.blocks.length > 0);
27134
+ }
27135
+ /**
27136
+ * Creates one region from its heading line and its raw body lines
27137
+ *
27138
+ * @param headingLine The original `## Title` line, or `null` for the intro before the first heading
27139
+ * @param bodyLines The raw lines following the heading line
27140
+ * @returns The region with its body already split into blocks
27141
+ *
27142
+ * @private internal utility of `splitSystemMessageIntoRegions`
27143
+ */
27144
+ function createRegion(headingLine, bodyLines) {
27145
+ return {
27146
+ titleKey: headingLine === null ? null : normalizeSectionTitle(headingLine),
27147
+ headingLine,
27148
+ isBodySeparatedByBlankLine: bodyLines[0] !== undefined && bodyLines[0].trim() === '',
27149
+ blocks: splitBodyIntoBlocks(bodyLines),
27150
+ };
27151
+ }
27152
+ /**
27153
+ * Normalizes a heading line into a key usable for matching sections which belong together
27154
+ *
27155
+ * @param headingLine The original `## Title` line
27156
+ * @returns Lowercased title without the markdown heading prefix
27157
+ *
27158
+ * @private internal utility of `createRegion`
27159
+ */
27160
+ function normalizeSectionTitle(headingLine) {
27161
+ var _a, _b;
27162
+ return ((_b = (_a = SYSTEM_MESSAGE_SECTION_HEADING_PATTERN.exec(headingLine)) === null || _a === void 0 ? void 0 : _a[1]) !== null && _b !== void 0 ? _b : headingLine).toLowerCase();
27163
+ }
27164
+ /**
27165
+ * Splits raw body lines into blocks separated by blank lines while keeping fenced code blocks intact
27166
+ *
27167
+ * @param bodyLines The raw lines of one region body
27168
+ * @returns Non-empty blocks in their original order
27169
+ *
27170
+ * @private internal utility of `createRegion`
27171
+ */
27172
+ function splitBodyIntoBlocks(bodyLines) {
27173
+ const blockTexts = [];
27174
+ let blockLines = [];
27175
+ let isInsideCodeFence = false;
27176
+ for (const line of bodyLines) {
27177
+ if (CODE_FENCE_PATTERN.test(line)) {
27178
+ isInsideCodeFence = !isInsideCodeFence;
27179
+ }
27180
+ if (!isInsideCodeFence && line.trim() === '') {
27181
+ blockTexts.push(blockLines.join('\n'));
27182
+ blockLines = [];
27183
+ continue;
27184
+ }
27185
+ blockLines.push(line);
27186
+ }
27187
+ blockTexts.push(blockLines.join('\n'));
27188
+ return blockTexts
27189
+ .filter((blockText) => blockText.trim() !== '')
27190
+ .map((blockText) => ({ text: blockText, isOpeningMergedSection: false }));
27191
+ }
27192
+ /**
27193
+ * Appends one region to the already merged regions, merging it into an earlier region with the same heading
27194
+ *
27195
+ * @param mergedRegions Regions merged so far, used as the reducer accumulator
27196
+ * @param region The next region in original order
27197
+ * @returns The accumulator with the region either appended or merged into its earlier twin
27198
+ *
27199
+ * @private internal utility of `deduplicateSystemMessage`
27200
+ */
27201
+ function mergeRegionSharingHeading(mergedRegions, region) {
27202
+ const existingRegionIndex = mergedRegions.findIndex((mergedRegion) => region.titleKey !== null && mergedRegion.titleKey === region.titleKey);
27203
+ if (existingRegionIndex === -1) {
27204
+ return [...mergedRegions, region];
27205
+ }
27206
+ return mergedRegions.map((mergedRegion, index) => index !== existingRegionIndex
27207
+ ? mergedRegion
27208
+ : {
27209
+ ...mergedRegion,
27210
+ blocks: [...mergedRegion.blocks, ...markFirstBlockAsOpeningMergedSection(region.blocks)],
27211
+ });
27212
+ }
27213
+ /**
27214
+ * Marks the first block of a merged section occurrence so the merge seam can be rendered as one list
27215
+ *
27216
+ * @param blocks The blocks of the section occurrence being merged into an earlier section
27217
+ * @returns The same blocks with the first one marked as opening a merged section
27218
+ *
27219
+ * @private internal utility of `mergeRegionSharingHeading`
27220
+ */
27221
+ function markFirstBlockAsOpeningMergedSection(blocks) {
27222
+ return blocks.map((block, index) => (index === 0 ? { ...block, isOpeningMergedSection: true } : block));
27223
+ }
27224
+ /**
27225
+ * Keeps only the first occurrence of every identical block inside one region
27226
+ *
27227
+ * @param region The region whose blocks may repeat
27228
+ * @returns The region without repeated blocks
27229
+ *
27230
+ * @private internal utility of `deduplicateSystemMessage`
27231
+ */
27232
+ function removeDuplicateBlocksFromRegion(region) {
27233
+ const alreadyRenderedTexts = new Set();
27234
+ const uniqueBlocks = [];
27235
+ let isMergeSeamPending = false;
27236
+ for (const block of region.blocks) {
27237
+ if (alreadyRenderedTexts.has(block.text)) {
27238
+ // Note: A removed block must still hand its merge seam over to the next block which survives
27239
+ isMergeSeamPending = isMergeSeamPending || block.isOpeningMergedSection;
27240
+ continue;
27241
+ }
27242
+ alreadyRenderedTexts.add(block.text);
27243
+ uniqueBlocks.push({
27244
+ text: block.text,
27245
+ isOpeningMergedSection: block.isOpeningMergedSection || isMergeSeamPending,
27246
+ });
27247
+ isMergeSeamPending = false;
27248
+ }
27249
+ return { ...region, blocks: uniqueBlocks };
27250
+ }
27251
+ /**
27252
+ * Renders one region back into its markdown representation
27253
+ *
27254
+ * @param region The region to render
27255
+ * @returns The heading line together with its joined blocks
27256
+ *
27257
+ * @private internal utility of `deduplicateSystemMessage`
27258
+ */
27259
+ function renderRegion(region) {
27260
+ const body = joinBlocks(region.blocks);
27261
+ if (region.headingLine === null) {
27262
+ return body;
27263
+ }
27264
+ if (body === '') {
27265
+ return region.headingLine;
27266
+ }
27267
+ return `${region.headingLine}${region.isBodySeparatedByBlankLine ? '\n\n' : '\n'}${body}`;
27268
+ }
27269
+ /**
27270
+ * Joins blocks of one region back together
27271
+ *
27272
+ * @param blocks The blocks to join in their original order
27273
+ * @returns The joined body of one region
27274
+ *
27275
+ * @private internal utility of `renderRegion`
27276
+ */
27277
+ function joinBlocks(blocks) {
27278
+ return blocks
27279
+ .map((block, index) => index === 0 ? block.text : `${createBlockSeparator(blocks[index - 1], block)}${block.text}`)
27280
+ .join('');
27281
+ }
27282
+ /**
27283
+ * Chooses the separator between two neighboring blocks
27284
+ *
27285
+ * Blocks are normally separated by a blank line, exactly as they were written. Only where two sections were
27286
+ * merged together their lists are joined into one compact list instead of two separate ones.
27287
+ *
27288
+ * @param previousBlock The block rendered before the separator
27289
+ * @param nextBlock The block rendered after the separator
27290
+ * @returns Either a single or a double newline
27291
+ *
27292
+ * @private internal utility of `joinBlocks`
27293
+ */
27294
+ function createBlockSeparator(previousBlock, nextBlock) {
27295
+ if (!nextBlock.isOpeningMergedSection) {
27296
+ return '\n\n';
27297
+ }
27298
+ const previousBlockLines = previousBlock.text.split('\n');
27299
+ const isListContinuing = LIST_ITEM_PATTERN.test(previousBlockLines[previousBlockLines.length - 1]) &&
27300
+ LIST_ITEM_PATTERN.test(nextBlock.text.split('\n')[0]);
27301
+ return isListContinuing ? '\n' : '\n\n';
27302
+ }
27303
+
27065
27304
  /**
27066
27305
  * Removes single-hash comment lines (`# Comment`) from a system message
27067
27306
  * This is used to clean up the final system message before sending it to the AI model
@@ -27135,14 +27374,14 @@
27135
27374
  * Performs the final system-message cleanup pass after all other augmentation steps are complete.
27136
27375
  *
27137
27376
  * @param requirements - Fully built requirements before final cleanup.
27138
- * @returns Requirements with comment lines removed from the final system message.
27377
+ * @returns Requirements with comment lines removed and repeated instructions deduplicated in the final system message.
27139
27378
  *
27140
27379
  * @private internal utility of `createAgentModelRequirementsWithCommitments`
27141
27380
  */
27142
27381
  function finalizeRequirements(requirements) {
27143
27382
  return {
27144
27383
  ...requirements,
27145
- systemMessage: removeCommentsFromSystemMessage(requirements.systemMessage),
27384
+ systemMessage: deduplicateSystemMessage(removeCommentsFromSystemMessage(requirements.systemMessage)),
27146
27385
  };
27147
27386
  }
27148
27387