@promptbook/cli 0.114.0-38 → 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 (57) hide show
  1. package/agents/default/.core/adam.book +33 -0
  2. package/apps/agents-server/src/utils/agentReferenceResolver/AgentReferenceResolutionIssue.ts +1 -69
  3. package/apps/agents-server/src/utils/agentReferenceResolver/extractAgentReferenceTokens.ts +1 -61
  4. package/apps/agents-server/src/utils/explicitFromCommitment.ts +1 -130
  5. package/apps/agents-server/src/utils/resolveInheritedAgentSource.ts +32 -817
  6. package/esm/index.es.js +1069 -31
  7. package/esm/index.es.js.map +1 -1
  8. package/esm/scripts/run-agent-messages/messages/createAgentRunnerSystemMessage.d.ts +2 -1
  9. package/esm/scripts/run-codex-prompts/common/resolveCoderAgent.d.ts +4 -0
  10. package/esm/scripts/run-codex-prompts/git/commitInitializedAgentBooks.d.ts +5 -0
  11. package/esm/src/book-2.0/agent-source/AgentReferenceResolutionIssue.d.ts +45 -0
  12. package/esm/src/book-2.0/agent-source/explicitFromCommitment.d.ts +62 -0
  13. package/esm/src/book-2.0/agent-source/extractAgentReferenceTokens.d.ts +32 -0
  14. package/esm/src/book-2.0/agent-source/resolveInheritedAgentSource.d.ts +73 -0
  15. package/esm/src/cli/cli-commands/coder/initializeCoderProjectConfiguration.d.ts +1 -0
  16. package/esm/src/cli/cli-commands/common/LocalAgentBookCollection.d.ts +46 -0
  17. package/esm/src/cli/cli-commands/common/createLocalAgentReferenceResolver.d.ts +8 -0
  18. package/esm/src/cli/cli-commands/common/ensureAdamAgentBook.d.ts +12 -0
  19. package/esm/src/cli/cli-commands/common/resolveBundledAgentBookPath.d.ts +6 -0
  20. package/esm/src/cli/cli-commands/common/resolveLocalAgentSource.d.ts +19 -0
  21. package/esm/src/version.d.ts +1 -1
  22. package/package.json +1 -1
  23. package/src/book-2.0/agent-source/AgentReferenceResolutionIssue.ts +75 -0
  24. package/src/book-2.0/agent-source/explicitFromCommitment.ts +132 -0
  25. package/src/book-2.0/agent-source/extractAgentReferenceTokens.ts +65 -0
  26. package/src/book-2.0/agent-source/resolveInheritedAgentSource.ts +841 -0
  27. package/src/cli/cli-commands/coder/ensureCoderDeveloperAgentFile.ts +2 -28
  28. package/src/cli/cli-commands/coder/init.ts +3 -1
  29. package/src/cli/cli-commands/coder/initializeCoderProjectConfiguration.ts +5 -0
  30. package/src/cli/cli-commands/coder/list.ts +5 -3
  31. package/src/cli/cli-commands/coder/printInitializationSummary.ts +6 -0
  32. package/src/cli/cli-commands/coder/run.ts +4 -1
  33. package/src/cli/cli-commands/coder/server.ts +2 -1
  34. package/src/cli/cli-commands/common/LocalAgentBookCollection.ts +220 -0
  35. package/src/cli/cli-commands/common/createLocalAgentReferenceResolver.ts +62 -0
  36. package/src/cli/cli-commands/common/ensureAdamAgentBook.ts +40 -0
  37. package/src/cli/cli-commands/common/resolveBundledAgentBookPath.ts +38 -0
  38. package/src/cli/cli-commands/common/resolveLocalAgentSource.ts +127 -0
  39. package/src/other/templates/getTemplatesPipelineCollection.ts +650 -928
  40. package/src/version.ts +2 -2
  41. package/src/versions.txt +1 -0
  42. package/umd/index.umd.js +1069 -31
  43. package/umd/index.umd.js.map +1 -1
  44. package/umd/scripts/run-agent-messages/messages/createAgentRunnerSystemMessage.d.ts +2 -1
  45. package/umd/scripts/run-codex-prompts/common/resolveCoderAgent.d.ts +4 -0
  46. package/umd/scripts/run-codex-prompts/git/commitInitializedAgentBooks.d.ts +5 -0
  47. package/umd/src/book-2.0/agent-source/AgentReferenceResolutionIssue.d.ts +45 -0
  48. package/umd/src/book-2.0/agent-source/explicitFromCommitment.d.ts +62 -0
  49. package/umd/src/book-2.0/agent-source/extractAgentReferenceTokens.d.ts +32 -0
  50. package/umd/src/book-2.0/agent-source/resolveInheritedAgentSource.d.ts +73 -0
  51. package/umd/src/cli/cli-commands/coder/initializeCoderProjectConfiguration.d.ts +1 -0
  52. package/umd/src/cli/cli-commands/common/LocalAgentBookCollection.d.ts +46 -0
  53. package/umd/src/cli/cli-commands/common/createLocalAgentReferenceResolver.d.ts +8 -0
  54. package/umd/src/cli/cli-commands/common/ensureAdamAgentBook.d.ts +12 -0
  55. package/umd/src/cli/cli-commands/common/resolveBundledAgentBookPath.d.ts +6 -0
  56. package/umd/src/cli/cli-commands/common/resolveLocalAgentSource.d.ts +19 -0
  57. package/umd/src/version.d.ts +1 -1
@@ -1,9 +1,10 @@
1
1
  import type { AgentModelRequirements } from '../../../src/book-2.0/agent-source/AgentModelRequirements';
2
+ import type { CreateAgentModelRequirementsOptions } from '../../../src/book-2.0/agent-source/CreateAgentModelRequirementsOptions';
2
3
  import type { string_book } from '../../../src/book-2.0/agent-source/string_book';
3
4
  /**
4
5
  * Compiles agent source into the behavior text passed to CLI harness runners.
5
6
  */
6
- export declare function createAgentRunnerSystemMessage(agentSource: string_book): Promise<string>;
7
+ export declare function createAgentRunnerSystemMessage(agentSource: string_book, options?: CreateAgentModelRequirementsOptions): Promise<string>;
7
8
  /**
8
9
  * Formats prepared model requirements for a text-only CLI harness prompt.
9
10
  */
@@ -26,10 +26,14 @@ export type ResolvedCoderAgentBook = {
26
26
  * Agent data resolved from the optional `--agent` book file.
27
27
  */
28
28
  export type ResolvedCoderAgent = ResolvedCoderAgentBook & {
29
+ /** Source with inheritance and imports applied, also used for the coder's agent visual. */
30
+ readonly agentSource: string_book;
29
31
  /**
30
32
  * Compiled system message injected into each coding prompt.
31
33
  */
32
34
  readonly systemMessage: string;
35
+ /** Books created during resolution, committed according to the coder's normal commit setting. */
36
+ readonly createdAgentBookPaths: ReadonlyArray<string>;
33
37
  };
34
38
  /**
35
39
  * Reads an optional agent `.book` file and prepares the references that route prompts to it.
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Commits newly initialized, non-ignored agent books before the coder's clean-tree checkpoint.
3
+ * Only books created by this run are eligible; existing books and unrelated changes remain outside the commit.
4
+ */
5
+ export declare function commitInitializedAgentBooks(projectPath: string, createdAgentBookPaths: ReadonlyArray<string>): Promise<void>;
@@ -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,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>;
@@ -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-37`).
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/cli",
3
- "version": "0.114.0-38",
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,
@@ -0,0 +1,75 @@
1
+ import type { BookCommitment } from '../../commitments/_base/BookCommitment';
2
+ import type { AgentReferenceResolver } from './AgentReferenceResolver';
3
+
4
+ /**
5
+ * Structured issue captured when compact agent reference resolution fails.
6
+ *
7
+ * @private internal utility of agent reference resolution
8
+ */
9
+ export type AgentReferenceResolutionIssue = {
10
+ /**
11
+ * Commitment where the unresolved token appeared.
12
+ */
13
+ readonly commitmentType: BookCommitment;
14
+
15
+ /**
16
+ * Original token text (for example `{Unknown Agent}` or `@UnknownAgent`).
17
+ */
18
+ readonly token: string;
19
+
20
+ /**
21
+ * Normalized token payload used for lookup.
22
+ */
23
+ readonly reference: string;
24
+
25
+ /**
26
+ * Human-readable explanation of why the token could not be resolved.
27
+ */
28
+ readonly message: string;
29
+ };
30
+
31
+ /**
32
+ * Extension implemented by resolvers that can expose accumulated resolution issues.
33
+ *
34
+ * @private internal utility of agent reference resolution
35
+ */
36
+ export type IssueTrackingAgentReferenceResolver = AgentReferenceResolver & {
37
+ /**
38
+ * Returns tracked issues and clears the internal queue.
39
+ */
40
+ consumeResolutionIssues(): Array<AgentReferenceResolutionIssue>;
41
+ };
42
+
43
+ /**
44
+ * Type guard for issue-tracking resolver implementations.
45
+ *
46
+ * @param resolver - Resolver instance to check.
47
+ * @returns True when the resolver provides `consumeResolutionIssues`.
48
+ */
49
+ function isIssueTrackingAgentReferenceResolver(
50
+ resolver: AgentReferenceResolver,
51
+ ): resolver is IssueTrackingAgentReferenceResolver {
52
+ return typeof (resolver as Partial<IssueTrackingAgentReferenceResolver>).consumeResolutionIssues === 'function';
53
+ }
54
+
55
+ /**
56
+ * Drains unresolved compact-reference issues from a resolver when supported.
57
+ *
58
+ * @param resolver - Resolver instance that may implement issue tracking.
59
+ * @returns Collected issues or an empty list.
60
+ *
61
+ * @private internal utility of agent reference resolution
62
+ */
63
+ export function consumeAgentReferenceResolutionIssues(
64
+ resolver?: AgentReferenceResolver,
65
+ ): Array<AgentReferenceResolutionIssue> {
66
+ if (!resolver) {
67
+ return [];
68
+ }
69
+
70
+ if (!isIssueTrackingAgentReferenceResolver(resolver)) {
71
+ return [];
72
+ }
73
+
74
+ return resolver.consumeResolutionIssues();
75
+ }
@@ -0,0 +1,132 @@
1
+ import type { string_book } from './string_book';
2
+
3
+ /**
4
+ * Commitment keyword that declares the parent agent of one book.
5
+ *
6
+ * @private utility of Agents Server inheritance resolution
7
+ */
8
+ const FROM_COMMITMENT_TYPE = 'FROM';
9
+
10
+ /**
11
+ * Matches one standalone `FROM` commitment line and captures its inline content.
12
+ *
13
+ * The Book parser accepts horizontal whitespace between a commitment keyword and its value, so inheritance resolution
14
+ * must do the same. Keeping this pattern here makes every server-side consumer agree on which `FROM` lines are real.
15
+ *
16
+ * @private utility of Agents Server inheritance resolution
17
+ */
18
+ const FROM_COMMITMENT_LINE_PATTERN = new RegExp(`^${FROM_COMMITMENT_TYPE}(?:\\s+(.*))?$`);
19
+
20
+ /**
21
+ * One explicit `FROM` commitment written in a book.
22
+ *
23
+ * @private utility of Agents Server inheritance resolution
24
+ */
25
+ export type ExplicitFromCommitment = {
26
+ /**
27
+ * Zero-based index of the line the commitment was found on, within the scanned lines.
28
+ */
29
+ readonly lineIndex: number;
30
+
31
+ /**
32
+ * Trimmed commitment content, empty string for a blank `FROM`.
33
+ */
34
+ readonly content: string;
35
+ };
36
+
37
+ /**
38
+ * Collects every explicit single-line `FROM` commitment of one book.
39
+ *
40
+ * This lightweight parser is intentionally limited to the subset needed by inheritance
41
+ * resolution so it stays safe to bundle into the Next.js proxy path.
42
+ *
43
+ * @param sourceLines - Book source already split into lines.
44
+ * @returns Found `FROM` commitments in source order, empty when the book declares no parent.
45
+ *
46
+ * @private utility of Agents Server inheritance resolution
47
+ */
48
+ export function collectExplicitFromCommitments(
49
+ sourceLines: ReadonlyArray<string>,
50
+ ): ReadonlyArray<ExplicitFromCommitment> {
51
+ const explicitFromCommitments: Array<ExplicitFromCommitment> = [];
52
+ let hasSeenTitle = false;
53
+ let isInsideCodeBlock = false;
54
+
55
+ for (let lineIndex = 0; lineIndex < sourceLines.length; lineIndex++) {
56
+ const trimmedLine = (sourceLines[lineIndex] || '').trim();
57
+
58
+ if (!hasSeenTitle) {
59
+ if (!trimmedLine) {
60
+ continue;
61
+ }
62
+
63
+ hasSeenTitle = true;
64
+ continue;
65
+ }
66
+
67
+ if (trimmedLine.startsWith('```')) {
68
+ isInsideCodeBlock = !isInsideCodeBlock;
69
+ continue;
70
+ }
71
+
72
+ if (isInsideCodeBlock) {
73
+ continue;
74
+ }
75
+
76
+ const fromCommitmentMatch = FROM_COMMITMENT_LINE_PATTERN.exec(trimmedLine);
77
+ if (fromCommitmentMatch) {
78
+ explicitFromCommitments.push({
79
+ lineIndex,
80
+ content: (fromCommitmentMatch[1] || '').trim(),
81
+ });
82
+ }
83
+ }
84
+
85
+ return explicitFromCommitments;
86
+ }
87
+
88
+ /**
89
+ * Returns the effective explicit `FROM` commitment of one book.
90
+ *
91
+ * A book may repeat `FROM`, in which case the last one wins and overrides every earlier one.
92
+ *
93
+ * @param agentSource - Raw book source.
94
+ * @returns The last explicit `FROM` commitment, or `undefined` when the book declares no parent.
95
+ *
96
+ * @private utility of Agents Server inheritance resolution
97
+ */
98
+ export function getEffectiveExplicitFromCommitment(agentSource: string_book): ExplicitFromCommitment | undefined {
99
+ const explicitFromCommitments = collectExplicitFromCommitments(agentSource.split(/\r?\n/));
100
+ return explicitFromCommitments[explicitFromCommitments.length - 1];
101
+ }
102
+
103
+ /**
104
+ * Returns the effective explicit `FROM` commitment content of one book.
105
+ *
106
+ * A book may repeat `FROM`, in which case the last one wins and overrides every earlier one.
107
+ *
108
+ * @param agentSource - Raw book source.
109
+ * @returns Trimmed commitment content, empty string for a blank explicit `FROM`, or `undefined` when `FROM` is absent.
110
+ *
111
+ * @private utility of Agents Server inheritance resolution
112
+ */
113
+ export function getExplicitFromCommitmentContent(agentSource: string_book): string | undefined {
114
+ return getEffectiveExplicitFromCommitment(agentSource)?.content;
115
+ }
116
+
117
+ /**
118
+ * Returns true when one book declares no parent at all and therefore implicitly inherits from `@Adam`.
119
+ *
120
+ * Writing no `FROM` commitment is equivalent to writing `FROM @Adam`, so only an explicit
121
+ * `FROM @Null` / `FROM {Void}` turns the inheritance off.
122
+ *
123
+ * @param agentSource - Raw book source.
124
+ * @returns True when the implicit `@Adam` ancestor applies to this book.
125
+ *
126
+ * @private utility of Agents Server inheritance resolution
127
+ */
128
+ export function isImplicitAdamInheritance(agentSource: string_book): boolean {
129
+ return getExplicitFromCommitmentContent(agentSource) === undefined;
130
+ }
131
+
132
+ // Note: [💞] Ignore a discrepancy between file name and exported helper names.
@@ -0,0 +1,65 @@
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
+ /**
13
+ * Token payload used for lookup.
14
+ */
15
+ readonly reference: string;
16
+
17
+ /**
18
+ * Zero-based character offset of `token` in the scanned content.
19
+ */
20
+ readonly index: number;
21
+
22
+ /**
23
+ * Length of `token` in characters.
24
+ */
25
+ readonly length: number;
26
+ };
27
+
28
+ /**
29
+ * Matches supported compact reference token syntaxes in commitment content.
30
+ */
31
+ const AGENT_REFERENCE_TOKEN_REGEX = /(\{([^}]+)\}|@([A-Za-z0-9_-]+))/g;
32
+
33
+ /**
34
+ * Extracts compact agent-reference tokens from commitment content.
35
+ *
36
+ * @param content - Commitment content to inspect.
37
+ * @returns Matched compact reference tokens.
38
+ *
39
+ * @private internal utility of agent reference resolution
40
+ */
41
+ export function extractAgentReferenceTokens(content: string): Array<AgentReferenceTokenMatch> {
42
+ const matches: Array<AgentReferenceTokenMatch> = [];
43
+ let match: RegExpExecArray | null;
44
+
45
+ AGENT_REFERENCE_TOKEN_REGEX.lastIndex = 0;
46
+
47
+ while ((match = AGENT_REFERENCE_TOKEN_REGEX.exec(content)) !== null) {
48
+ const token = match[1];
49
+ const reference = (match[2] ?? match[3] ?? '').trim();
50
+ const index = match.index;
51
+
52
+ if (!token || index === undefined) {
53
+ continue;
54
+ }
55
+
56
+ matches.push({
57
+ token,
58
+ reference,
59
+ index,
60
+ length: token.length,
61
+ });
62
+ }
63
+
64
+ return matches;
65
+ }