@promptbook/vercel 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 (33) hide show
  1. package/esm/index.es.js +1 -1
  2. package/esm/src/book-2.0/agent-source/AgentReferenceResolutionIssue.d.ts +45 -0
  3. package/esm/src/book-2.0/agent-source/createAgentModelRequirements.deduplication.test.d.ts +1 -0
  4. package/esm/src/book-2.0/agent-source/deduplicateSystemMessage.d.ts +14 -0
  5. package/esm/src/book-2.0/agent-source/deduplicateSystemMessage.test.d.ts +1 -0
  6. package/esm/src/book-2.0/agent-source/explicitFromCommitment.d.ts +62 -0
  7. package/esm/src/book-2.0/agent-source/extractAgentReferenceTokens.d.ts +32 -0
  8. package/esm/src/book-2.0/agent-source/resolveInheritedAgentSource.d.ts +73 -0
  9. package/esm/src/cli/$initializePromptbookCliProgram.d.ts +8 -0
  10. package/esm/src/cli/cli-commands/coder/initializeCoderProjectConfiguration.d.ts +1 -0
  11. package/esm/src/cli/cli-commands/common/LocalAgentBookCollection.d.ts +46 -0
  12. package/esm/src/cli/cli-commands/common/createLocalAgentReferenceResolver.d.ts +8 -0
  13. package/esm/src/cli/cli-commands/common/ensureAdamAgentBook.d.ts +12 -0
  14. package/esm/src/cli/cli-commands/common/resolveBundledAgentBookPath.d.ts +6 -0
  15. package/esm/src/cli/cli-commands/common/resolveLocalAgentSource.d.ts +19 -0
  16. package/esm/src/version.d.ts +1 -1
  17. package/package.json +2 -2
  18. package/umd/index.umd.js +1 -1
  19. package/umd/src/book-2.0/agent-source/AgentReferenceResolutionIssue.d.ts +45 -0
  20. package/umd/src/book-2.0/agent-source/createAgentModelRequirements.deduplication.test.d.ts +1 -0
  21. package/umd/src/book-2.0/agent-source/deduplicateSystemMessage.d.ts +14 -0
  22. package/umd/src/book-2.0/agent-source/deduplicateSystemMessage.test.d.ts +1 -0
  23. package/umd/src/book-2.0/agent-source/explicitFromCommitment.d.ts +62 -0
  24. package/umd/src/book-2.0/agent-source/extractAgentReferenceTokens.d.ts +32 -0
  25. package/umd/src/book-2.0/agent-source/resolveInheritedAgentSource.d.ts +73 -0
  26. package/umd/src/cli/$initializePromptbookCliProgram.d.ts +8 -0
  27. package/umd/src/cli/cli-commands/coder/initializeCoderProjectConfiguration.d.ts +1 -0
  28. package/umd/src/cli/cli-commands/common/LocalAgentBookCollection.d.ts +46 -0
  29. package/umd/src/cli/cli-commands/common/createLocalAgentReferenceResolver.d.ts +8 -0
  30. package/umd/src/cli/cli-commands/common/ensureAdamAgentBook.d.ts +12 -0
  31. package/umd/src/cli/cli-commands/common/resolveBundledAgentBookPath.d.ts +6 -0
  32. package/umd/src/cli/cli-commands/common/resolveLocalAgentSource.d.ts +19 -0
  33. package/umd/src/version.d.ts +1 -1
package/esm/index.es.js CHANGED
@@ -16,7 +16,7 @@ const BOOK_LANGUAGE_VERSION = '2.0.0';
16
16
  * @generated
17
17
  * @see https://github.com/webgptorg/promptbook
18
18
  */
19
- const PROMPTBOOK_ENGINE_VERSION = '0.114.0-35';
19
+ const PROMPTBOOK_ENGINE_VERSION = '0.114.0-39';
20
20
  /**
21
21
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
22
22
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -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/vercel",
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/vercel.index.d.ts",
96
96
  "typings": "./esm/src/_packages/vercel.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
  "colors": "1.4.0",
package/umd/index.umd.js CHANGED
@@ -23,7 +23,7 @@
23
23
  * @generated
24
24
  * @see https://github.com/webgptorg/promptbook
25
25
  */
26
- const PROMPTBOOK_ENGINE_VERSION = '0.114.0-35';
26
+ const PROMPTBOOK_ENGINE_VERSION = '0.114.0-39';
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
@@ -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
  */