@promptbook/cli 0.103.0-53 → 0.103.0-55

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 (76) hide show
  1. package/apps/agents-server/config.ts +0 -2
  2. package/apps/agents-server/src/app/admin/api-tokens/ApiTokensClient.tsx +186 -0
  3. package/apps/agents-server/src/app/admin/api-tokens/page.tsx +13 -0
  4. package/apps/agents-server/src/app/admin/chat-feedback/ChatFeedbackClient.tsx +79 -6
  5. package/apps/agents-server/src/app/admin/chat-history/ChatHistoryClient.tsx +171 -69
  6. package/apps/agents-server/src/app/agents/[agentName]/AgentChatWrapper.tsx +10 -2
  7. package/apps/agents-server/src/app/agents/[agentName]/api/mcp/route.ts +203 -0
  8. package/apps/agents-server/src/app/agents/[agentName]/api/modelRequirements/route.ts +3 -1
  9. package/apps/agents-server/src/app/agents/[agentName]/api/modelRequirements/systemMessage/route.ts +3 -1
  10. package/apps/agents-server/src/app/agents/[agentName]/api/openai/chat/completions/route.ts +10 -0
  11. package/apps/agents-server/src/app/agents/[agentName]/api/openrouter/chat/completions/route.ts +10 -0
  12. package/apps/agents-server/src/app/agents/[agentName]/links/page.tsx +218 -0
  13. package/apps/agents-server/src/app/agents/[agentName]/page.tsx +24 -3
  14. package/apps/agents-server/src/app/api/api-tokens/route.ts +76 -0
  15. package/apps/agents-server/src/app/api/auth/change-password/route.ts +75 -0
  16. package/apps/agents-server/src/app/api/chat-feedback/export/route.ts +55 -0
  17. package/apps/agents-server/src/app/api/chat-history/export/route.ts +55 -0
  18. package/apps/agents-server/src/app/docs/[docId]/page.tsx +1 -0
  19. package/apps/agents-server/src/app/docs/page.tsx +1 -0
  20. package/apps/agents-server/src/components/ChangePasswordDialog/ChangePasswordDialog.tsx +41 -0
  21. package/apps/agents-server/src/components/ChangePasswordForm/ChangePasswordForm.tsx +159 -0
  22. package/apps/agents-server/src/components/Header/Header.tsx +94 -33
  23. package/apps/agents-server/src/components/LayoutWrapper/LayoutWrapper.tsx +2 -1
  24. package/apps/agents-server/src/database/migrations/2025-12-0010-llm-cache.sql +12 -0
  25. package/apps/agents-server/src/database/migrations/2025-12-0060-api-tokens.sql +13 -0
  26. package/apps/agents-server/src/database/schema.ts +51 -0
  27. package/apps/agents-server/src/middleware.ts +50 -2
  28. package/apps/agents-server/src/tools/$provideCdnForServer.ts +3 -7
  29. package/apps/agents-server/src/tools/$provideExecutionToolsForServer.ts +10 -1
  30. package/apps/agents-server/src/utils/cache/SupabaseCacheStorage.ts +55 -0
  31. package/apps/agents-server/src/utils/cdn/classes/VercelBlobStorage.ts +63 -0
  32. package/apps/agents-server/src/utils/convertToCsv.ts +31 -0
  33. package/apps/agents-server/src/utils/handleChatCompletion.ts +183 -0
  34. package/apps/agents-server/src/utils/resolveInheritedAgentSource.ts +93 -0
  35. package/esm/index.es.js +846 -131
  36. package/esm/index.es.js.map +1 -1
  37. package/esm/typings/src/_packages/core.index.d.ts +8 -6
  38. package/esm/typings/src/_packages/types.index.d.ts +1 -1
  39. package/esm/typings/src/book-2.0/agent-source/AgentModelRequirements.d.ts +4 -0
  40. package/esm/typings/src/commitments/ACTION/ACTION.d.ts +4 -0
  41. package/esm/typings/src/commitments/CLOSED/CLOSED.d.ts +35 -0
  42. package/esm/typings/src/commitments/COMPONENT/COMPONENT.d.ts +28 -0
  43. package/esm/typings/src/commitments/DELETE/DELETE.d.ts +4 -0
  44. package/esm/typings/src/commitments/FORMAT/FORMAT.d.ts +4 -0
  45. package/esm/typings/src/commitments/FROM/FROM.d.ts +34 -0
  46. package/esm/typings/src/commitments/GOAL/GOAL.d.ts +4 -0
  47. package/esm/typings/src/commitments/IMPORTANT/IMPORTANT.d.ts +26 -0
  48. package/esm/typings/src/commitments/KNOWLEDGE/KNOWLEDGE.d.ts +4 -0
  49. package/esm/typings/src/commitments/LANGUAGE/LANGUAGE.d.ts +35 -0
  50. package/esm/typings/src/commitments/MEMORY/MEMORY.d.ts +4 -0
  51. package/esm/typings/src/commitments/MESSAGE/AgentMessageCommitmentDefinition.d.ts +4 -0
  52. package/esm/typings/src/commitments/MESSAGE/InitialMessageCommitmentDefinition.d.ts +4 -0
  53. package/esm/typings/src/commitments/MESSAGE/MESSAGE.d.ts +4 -0
  54. package/esm/typings/src/commitments/MESSAGE/UserMessageCommitmentDefinition.d.ts +4 -0
  55. package/esm/typings/src/commitments/META/META.d.ts +4 -0
  56. package/esm/typings/src/commitments/META_COLOR/META_COLOR.d.ts +4 -0
  57. package/esm/typings/src/commitments/META_IMAGE/META_IMAGE.d.ts +4 -0
  58. package/esm/typings/src/commitments/META_LINK/META_LINK.d.ts +4 -0
  59. package/esm/typings/src/commitments/MODEL/MODEL.d.ts +4 -0
  60. package/esm/typings/src/commitments/NOTE/NOTE.d.ts +4 -0
  61. package/esm/typings/src/commitments/OPEN/OPEN.d.ts +35 -0
  62. package/esm/typings/src/commitments/PERSONA/PERSONA.d.ts +4 -0
  63. package/esm/typings/src/commitments/RULE/RULE.d.ts +4 -0
  64. package/esm/typings/src/commitments/SAMPLE/SAMPLE.d.ts +4 -0
  65. package/esm/typings/src/commitments/SCENARIO/SCENARIO.d.ts +4 -0
  66. package/esm/typings/src/commitments/STYLE/STYLE.d.ts +4 -0
  67. package/esm/typings/src/commitments/_base/BaseCommitmentDefinition.d.ts +5 -0
  68. package/esm/typings/src/commitments/_base/CommitmentDefinition.d.ts +5 -0
  69. package/esm/typings/src/commitments/_base/NotYetImplementedCommitmentDefinition.d.ts +4 -0
  70. package/esm/typings/src/commitments/index.d.ts +1 -82
  71. package/esm/typings/src/commitments/registry.d.ts +68 -0
  72. package/esm/typings/src/version.d.ts +1 -1
  73. package/package.json +3 -3
  74. package/umd/index.umd.js +846 -131
  75. package/umd/index.umd.js.map +1 -1
  76. package/apps/agents-server/src/utils/cdn/classes/DigitalOceanSpaces.ts +0 -119
package/esm/index.es.js CHANGED
@@ -47,7 +47,7 @@ const BOOK_LANGUAGE_VERSION = '2.0.0';
47
47
  * @generated
48
48
  * @see https://github.com/webgptorg/promptbook
49
49
  */
50
- const PROMPTBOOK_ENGINE_VERSION = '0.103.0-53';
50
+ const PROMPTBOOK_ENGINE_VERSION = '0.103.0-55';
51
51
  /**
52
52
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
53
53
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -22535,6 +22535,12 @@ class ActionCommitmentDefinition extends BaseCommitmentDefinition {
22535
22535
  get description() {
22536
22536
  return 'Define agent capabilities and actions it can perform.';
22537
22537
  }
22538
+ /**
22539
+ * Icon for this commitment.
22540
+ */
22541
+ get icon() {
22542
+ return '⚡';
22543
+ }
22538
22544
  /**
22539
22545
  * Markdown documentation for ACTION commitment.
22540
22546
  */
@@ -22586,6 +22592,133 @@ class ActionCommitmentDefinition extends BaseCommitmentDefinition {
22586
22592
  * Note: [💞] Ignore a discrepancy between file name and entity name
22587
22593
  */
22588
22594
 
22595
+ /**
22596
+ * CLOSED commitment definition
22597
+ *
22598
+ * The CLOSED commitment specifies that the agent CANNOT be modified by conversation.
22599
+ * It prevents the agent from learning from interactions and updating its source code.
22600
+ *
22601
+ * Example usage in agent source:
22602
+ *
22603
+ * ```book
22604
+ * CLOSED
22605
+ * ```
22606
+ *
22607
+ * @private [🪔] Maybe export the commitments through some package
22608
+ */
22609
+ class ClosedCommitmentDefinition extends BaseCommitmentDefinition {
22610
+ constructor() {
22611
+ super('CLOSED');
22612
+ }
22613
+ /**
22614
+ * Short one-line description of CLOSED.
22615
+ */
22616
+ get description() {
22617
+ return 'Prevent the agent from being modified by conversation.';
22618
+ }
22619
+ /**
22620
+ * Icon for this commitment.
22621
+ */
22622
+ get icon() {
22623
+ return '🔒';
22624
+ }
22625
+ /**
22626
+ * Markdown documentation for CLOSED commitment.
22627
+ */
22628
+ get documentation() {
22629
+ return spaceTrim$1(`
22630
+ # CLOSED
22631
+
22632
+ Specifies that the agent **cannot** be modified by conversation with it.
22633
+ This means the agent will **not** learn from interactions and its source code will remain static during conversation.
22634
+
22635
+ By default (if not specified), agents are \`OPEN\` to modification.
22636
+
22637
+ > See also [OPEN](/docs/OPEN)
22638
+
22639
+ ## Example
22640
+
22641
+ \`\`\`book
22642
+ CLOSED
22643
+ \`\`\`
22644
+ `);
22645
+ }
22646
+ applyToAgentModelRequirements(requirements, _content) {
22647
+ const updatedMetadata = {
22648
+ ...requirements.metadata,
22649
+ isClosed: true,
22650
+ };
22651
+ return {
22652
+ ...requirements,
22653
+ metadata: updatedMetadata,
22654
+ };
22655
+ }
22656
+ }
22657
+ /**
22658
+ * Note: [💞] Ignore a discrepancy between file name and entity name
22659
+ */
22660
+
22661
+ /**
22662
+ * COMPONENT commitment definition
22663
+ *
22664
+ * The COMPONENT commitment defines a UI component that the agent can render in the chat.
22665
+ *
22666
+ * @private [🪔] Maybe export the commitments through some package
22667
+ */
22668
+ class ComponentCommitmentDefinition extends BaseCommitmentDefinition {
22669
+ constructor() {
22670
+ super('COMPONENT');
22671
+ }
22672
+ /**
22673
+ * Short one-line description of COMPONENT.
22674
+ */
22675
+ get description() {
22676
+ return 'Define a UI component that the agent can render in the chat.';
22677
+ }
22678
+ /**
22679
+ * Icon for this commitment.
22680
+ */
22681
+ get icon() {
22682
+ return '🧩';
22683
+ }
22684
+ /**
22685
+ * Markdown documentation for COMPONENT commitment.
22686
+ */
22687
+ get documentation() {
22688
+ return spaceTrim$1(`
22689
+ # COMPONENT
22690
+
22691
+ Defines a UI component that the agent can render in the chat.
22692
+
22693
+ ## Key aspects
22694
+
22695
+ - Tells the agent that a specific component is available.
22696
+ - Provides syntax for using the component.
22697
+
22698
+ ## Example
22699
+
22700
+ \`\`\`book
22701
+ COMPONENT Arrow
22702
+ The agent should render an arrow component in the chat UI.
22703
+ Syntax:
22704
+ <Arrow direction="up" color="red" />
22705
+ \`\`\`
22706
+ `);
22707
+ }
22708
+ applyToAgentModelRequirements(requirements, content) {
22709
+ const trimmedContent = content.trim();
22710
+ if (!trimmedContent) {
22711
+ return requirements;
22712
+ }
22713
+ // Add component capability to the system message
22714
+ const componentSection = `Component: ${trimmedContent}`;
22715
+ return this.appendToSystemMessage(requirements, componentSection, '\n\n');
22716
+ }
22717
+ }
22718
+ /**
22719
+ * Note: [💞] Ignore a discrepancy between file name and entity name
22720
+ */
22721
+
22589
22722
  /**
22590
22723
  * DELETE commitment definition
22591
22724
  *
@@ -22614,6 +22747,12 @@ class DeleteCommitmentDefinition extends BaseCommitmentDefinition {
22614
22747
  get description() {
22615
22748
  return 'Remove or **disregard** certain information, context, or previous commitments.';
22616
22749
  }
22750
+ /**
22751
+ * Icon for this commitment.
22752
+ */
22753
+ get icon() {
22754
+ return '🗑️';
22755
+ }
22617
22756
  /**
22618
22757
  * Markdown documentation for DELETE commitment.
22619
22758
  */
@@ -22730,6 +22869,12 @@ class FormatCommitmentDefinition extends BaseCommitmentDefinition {
22730
22869
  get description() {
22731
22870
  return 'Specify output structure or formatting requirements.';
22732
22871
  }
22872
+ /**
22873
+ * Icon for this commitment.
22874
+ */
22875
+ get icon() {
22876
+ return '📜';
22877
+ }
22733
22878
  /**
22734
22879
  * Markdown documentation for FORMAT commitment.
22735
22880
  */
@@ -22779,6 +22924,79 @@ class FormatCommitmentDefinition extends BaseCommitmentDefinition {
22779
22924
  * Note: [💞] Ignore a discrepancy between file name and entity name
22780
22925
  */
22781
22926
 
22927
+ /**
22928
+ * FROM commitment definition
22929
+ *
22930
+ * The FROM commitment tells the agent that its `agentSource` is inherited from another agent.
22931
+ *
22932
+ * Example usage in agent source:
22933
+ *
22934
+ * ```book
22935
+ * FROM https://s6.ptbk.io/benjamin-white
22936
+ * ```
22937
+ *
22938
+ * @private [🪔] Maybe export the commitments through some package
22939
+ */
22940
+ class FromCommitmentDefinition extends BaseCommitmentDefinition {
22941
+ constructor(type = 'FROM') {
22942
+ super(type);
22943
+ }
22944
+ /**
22945
+ * Short one-line description of FROM.
22946
+ */
22947
+ get description() {
22948
+ return 'Inherit agent source from another agent.';
22949
+ }
22950
+ /**
22951
+ * Icon for this commitment.
22952
+ */
22953
+ get icon() {
22954
+ return '🧬';
22955
+ }
22956
+ /**
22957
+ * Markdown documentation for FROM commitment.
22958
+ */
22959
+ get documentation() {
22960
+ return spaceTrim$1(`
22961
+ # ${this.type}
22962
+
22963
+ Inherits agent source from another agent.
22964
+
22965
+ ## Examples
22966
+
22967
+ \`\`\`book
22968
+ My AI Agent
22969
+
22970
+ FROM https://s6.ptbk.io/benjamin-white
22971
+ RULE Speak only in English.
22972
+ \`\`\`
22973
+ `);
22974
+ }
22975
+ applyToAgentModelRequirements(requirements, content) {
22976
+ const trimmedContent = content.trim();
22977
+ if (!trimmedContent) {
22978
+ return requirements;
22979
+ }
22980
+ // Validate URL
22981
+ try {
22982
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
22983
+ const url = new URL(trimmedContent);
22984
+ // TODO: Add more validation if needed (e.g. check for valid protocol)
22985
+ }
22986
+ catch (error) {
22987
+ console.warn(`Invalid URL in FROM commitment: ${trimmedContent}`);
22988
+ return requirements;
22989
+ }
22990
+ return {
22991
+ ...requirements,
22992
+ parentAgentUrl: trimmedContent,
22993
+ };
22994
+ }
22995
+ }
22996
+ /**
22997
+ * Note: [💞] Ignore a discrepancy between file name and entity name
22998
+ */
22999
+
22782
23000
  /**
22783
23001
  * GOAL commitment definition
22784
23002
  *
@@ -22805,6 +23023,12 @@ class GoalCommitmentDefinition extends BaseCommitmentDefinition {
22805
23023
  get description() {
22806
23024
  return 'Define main **goals** the AI assistant should achieve, with later goals having higher priority.';
22807
23025
  }
23026
+ /**
23027
+ * Icon for this commitment.
23028
+ */
23029
+ get icon() {
23030
+ return '🎯';
23031
+ }
22808
23032
  /**
22809
23033
  * Markdown documentation for GOAL commitment.
22810
23034
  */
@@ -22873,6 +23097,227 @@ class GoalCommitmentDefinition extends BaseCommitmentDefinition {
22873
23097
  * Note: [💞] Ignore a discrepancy between file name and entity name
22874
23098
  */
22875
23099
 
23100
+ /**
23101
+ * Placeholder commitment definition for commitments that are not yet implemented
23102
+ *
23103
+ * This commitment simply adds its content 1:1 into the system message,
23104
+ * preserving the original behavior until proper implementation is added.
23105
+ *
23106
+ * @public exported from `@promptbook/core`
23107
+ */
23108
+ class NotYetImplementedCommitmentDefinition extends BaseCommitmentDefinition {
23109
+ constructor(type) {
23110
+ super(type);
23111
+ }
23112
+ /**
23113
+ * Short one-line description of a placeholder commitment.
23114
+ */
23115
+ get description() {
23116
+ return 'Placeholder commitment that appends content verbatim to the system message.';
23117
+ }
23118
+ /**
23119
+ * Icon for this commitment.
23120
+ */
23121
+ get icon() {
23122
+ return '🚧';
23123
+ }
23124
+ /**
23125
+ * Markdown documentation available at runtime.
23126
+ */
23127
+ get documentation() {
23128
+ return spaceTrim$1(`
23129
+ # ${this.type}
23130
+
23131
+ This commitment is not yet fully implemented.
23132
+
23133
+ ## Key aspects
23134
+
23135
+ - Content is appended directly to the system message.
23136
+ - No special processing or validation is performed.
23137
+ - Behavior preserved until proper implementation is added.
23138
+
23139
+ ## Status
23140
+
23141
+ - **Status:** Placeholder implementation
23142
+ - **Effect:** Appends content prefixed by commitment type
23143
+ - **Future:** Will be replaced with specialized logic
23144
+
23145
+ ## Examples
23146
+
23147
+ \`\`\`book
23148
+ Example Agent
23149
+
23150
+ PERSONA You are a helpful assistant
23151
+ ${this.type} Your content here
23152
+ RULE Always be helpful
23153
+ \`\`\`
23154
+ `);
23155
+ }
23156
+ applyToAgentModelRequirements(requirements, content) {
23157
+ const trimmedContent = content.trim();
23158
+ if (!trimmedContent) {
23159
+ return requirements;
23160
+ }
23161
+ // Add the commitment content 1:1 to the system message
23162
+ const commitmentLine = `${this.type} ${trimmedContent}`;
23163
+ return this.appendToSystemMessage(requirements, commitmentLine, '\n\n');
23164
+ }
23165
+ }
23166
+
23167
+ /**
23168
+ * Registry of all available commitment definitions
23169
+ * This array contains instances of all commitment definitions
23170
+ * This is the single source of truth for all commitments in the system
23171
+ *
23172
+ * @private Use functions to access commitments instead of this array directly
23173
+ */
23174
+ const COMMITMENT_REGISTRY = [];
23175
+ /**
23176
+ * Registers a new commitment definition
23177
+ * @param definition The commitment definition to register
23178
+ *
23179
+ * @public exported from `@promptbook/core`
23180
+ */
23181
+ function registerCommitment(definition) {
23182
+ COMMITMENT_REGISTRY.push(definition);
23183
+ }
23184
+ /**
23185
+ * Gets a commitment definition by its type
23186
+ * @param type The commitment type to look up
23187
+ * @returns The commitment definition or null if not found
23188
+ *
23189
+ * @public exported from `@promptbook/core`
23190
+ */
23191
+ function getCommitmentDefinition(type) {
23192
+ return COMMITMENT_REGISTRY.find((commitmentDefinition) => commitmentDefinition.type === type) || null;
23193
+ }
23194
+ /**
23195
+ * Gets all available commitment definitions
23196
+ * @returns Array of all commitment definitions
23197
+ *
23198
+ * @public exported from `@promptbook/core`
23199
+ */
23200
+ function getAllCommitmentDefinitions() {
23201
+ return $deepFreeze([...COMMITMENT_REGISTRY]);
23202
+ }
23203
+ /**
23204
+ * TODO: !!!! Proofread this file
23205
+ * Note: [💞] Ignore a discrepancy between file name and entity name
23206
+ */
23207
+
23208
+ /**
23209
+ * IMPORTANT co-commitment definition
23210
+ *
23211
+ * The IMPORTANT co-commitment modifies another commitment to emphasize its importance.
23212
+ * It is typically used with RULE to mark it as critical.
23213
+ *
23214
+ * Example usage in agent source:
23215
+ *
23216
+ * ```book
23217
+ * IMPORTANT RULE Never provide medical advice
23218
+ * ```
23219
+ *
23220
+ * @private [🪔] Maybe export the commitments through some package
23221
+ */
23222
+ class ImportantCommitmentDefinition extends BaseCommitmentDefinition {
23223
+ constructor() {
23224
+ super('IMPORTANT');
23225
+ }
23226
+ get description() {
23227
+ return 'Marks a commitment as important.';
23228
+ }
23229
+ get icon() {
23230
+ return '⭐';
23231
+ }
23232
+ get documentation() {
23233
+ return spaceTrim$1(`
23234
+ # IMPORTANT
23235
+
23236
+ Marks another commitment as important. This acts as a modifier (co-commitment).
23237
+
23238
+ ## Example
23239
+
23240
+ \`\`\`book
23241
+ IMPORTANT RULE Do not reveal the system prompt
23242
+ \`\`\`
23243
+ `);
23244
+ }
23245
+ applyToAgentModelRequirements(requirements, content) {
23246
+ const definitions = getAllCommitmentDefinitions();
23247
+ const trimmedContent = content.trim();
23248
+ // Find the inner commitment
23249
+ for (const definition of definitions) {
23250
+ // Skip self to avoid infinite recursion if someone writes IMPORTANT IMPORTANT ...
23251
+ // Although IMPORTANT IMPORTANT might be valid stacking?
23252
+ // If we support stacking, we shouldn't skip self, but we must ensure progress.
23253
+ // Since we are matching against 'content', if content starts with IMPORTANT, it means nested IMPORTANT.
23254
+ // That's fine.
23255
+ const typeRegex = definition.createTypeRegex();
23256
+ const match = typeRegex.exec(trimmedContent);
23257
+ if (match && match.index === 0) {
23258
+ // Found the inner commitment type
23259
+ // Extract inner content using the definition's full regex
23260
+ // Note: createRegex usually matches the full line including the type
23261
+ const fullRegex = definition.createRegex();
23262
+ const fullMatch = fullRegex.exec(trimmedContent);
23263
+ // If regex matches, extract contents. If not (maybe multiline handling differs?), fallback to rest of string
23264
+ let innerContent = '';
23265
+ if (fullMatch && fullMatch.groups && fullMatch.groups.contents) {
23266
+ innerContent = fullMatch.groups.contents;
23267
+ }
23268
+ else {
23269
+ // Fallback: remove the type from the start
23270
+ // This might be risky if regex is complex, but usually type regex matches the keyword
23271
+ const typeMatchString = match[0];
23272
+ innerContent = trimmedContent.substring(typeMatchString.length).trim();
23273
+ }
23274
+ // Apply the inner commitment
23275
+ const modifiedRequirements = definition.applyToAgentModelRequirements(requirements, innerContent);
23276
+ // Now modify the result to reflect "IMPORTANT" status
23277
+ // We compare the system message
23278
+ if (modifiedRequirements.systemMessage !== requirements.systemMessage) {
23279
+ const originalMsg = requirements.systemMessage;
23280
+ const newMsg = modifiedRequirements.systemMessage;
23281
+ // If the inner commitment appended something
23282
+ if (newMsg.startsWith(originalMsg)) {
23283
+ const appended = newMsg.substring(originalMsg.length);
23284
+ // Add "IMPORTANT: " prefix to the appended part
23285
+ // We need to be careful about newlines
23286
+ // Heuristic: If appended starts with separator (newlines), preserve them
23287
+ const matchSep = appended.match(/^(\s*)(.*)/s);
23288
+ if (matchSep) {
23289
+ const [, separator, text] = matchSep;
23290
+ // Check if it already has "Rule:" prefix or similar
23291
+ // We want "IMPORTANT Rule: ..."
23292
+ // Let's just prepend IMPORTANT to the text
23293
+ // But formatted nicely
23294
+ // If it's a rule: "\n\nRule: content"
23295
+ // We want "\n\nIMPORTANT Rule: content"
23296
+ const importantText = `IMPORTANT ${text}`;
23297
+ return {
23298
+ ...modifiedRequirements,
23299
+ systemMessage: originalMsg + separator + importantText
23300
+ };
23301
+ }
23302
+ }
23303
+ }
23304
+ // If no system message change or we couldn't detect how to modify it, just return the modified requirements
23305
+ // Maybe the inner commitment modified metadata?
23306
+ return modifiedRequirements;
23307
+ }
23308
+ }
23309
+ // If no inner commitment found, treat as a standalone note?
23310
+ // Or warn?
23311
+ // For now, treat as no-op or maybe just append as text?
23312
+ // Let's treat as Note if fallback? No, explicit is better.
23313
+ console.warn(`IMPORTANT commitment used without a valid inner commitment: ${content}`);
23314
+ return requirements;
23315
+ }
23316
+ }
23317
+ /**
23318
+ * Note: [💞] Ignore a discrepancy between file name and entity name
23319
+ */
23320
+
22876
23321
  /**
22877
23322
  * KNOWLEDGE commitment definition
22878
23323
  *
@@ -22901,6 +23346,12 @@ class KnowledgeCommitmentDefinition extends BaseCommitmentDefinition {
22901
23346
  get description() {
22902
23347
  return 'Add domain **knowledge** via direct text or external sources (RAG).';
22903
23348
  }
23349
+ /**
23350
+ * Icon for this commitment.
23351
+ */
23352
+ get icon() {
23353
+ return '🧠';
23354
+ }
22904
23355
  /**
22905
23356
  * Markdown documentation for KNOWLEDGE commitment.
22906
23357
  */
@@ -22975,6 +23426,77 @@ class KnowledgeCommitmentDefinition extends BaseCommitmentDefinition {
22975
23426
  * Note: [💞] Ignore a discrepancy between file name and entity name
22976
23427
  */
22977
23428
 
23429
+ /**
23430
+ * LANGUAGE commitment definition
23431
+ *
23432
+ * The LANGUAGE/LANGUAGES commitment specifies the language(s) the agent should use in its responses.
23433
+ *
23434
+ * Example usage in agent source:
23435
+ *
23436
+ * ```book
23437
+ * LANGUAGE English
23438
+ * LANGUAGE French, English and Czech
23439
+ * ```
23440
+ *
23441
+ * @private [🪔] Maybe export the commitments through some package
23442
+ */
23443
+ class LanguageCommitmentDefinition extends BaseCommitmentDefinition {
23444
+ constructor(type = 'LANGUAGE') {
23445
+ super(type);
23446
+ }
23447
+ /**
23448
+ * Short one-line description of LANGUAGE/LANGUAGES.
23449
+ */
23450
+ get description() {
23451
+ return 'Specifies the language(s) the agent should use.';
23452
+ }
23453
+ /**
23454
+ * Icon for this commitment.
23455
+ */
23456
+ get icon() {
23457
+ return '🌐';
23458
+ }
23459
+ /**
23460
+ * Markdown documentation for LANGUAGE/LANGUAGES commitment.
23461
+ */
23462
+ get documentation() {
23463
+ return spaceTrim$1(`
23464
+ # ${this.type}
23465
+
23466
+ Specifies the language(s) the agent should use in its responses.
23467
+ This is a specialized variation of the RULE commitment focused on language constraints.
23468
+
23469
+ ## Examples
23470
+
23471
+ \`\`\`book
23472
+ Paul Smith & Associés
23473
+
23474
+ PERSONA You are a company lawyer.
23475
+ LANGUAGE French, English and Czech
23476
+ \`\`\`
23477
+
23478
+ \`\`\`book
23479
+ Customer Support
23480
+
23481
+ PERSONA You are a customer support agent.
23482
+ LANGUAGE English
23483
+ \`\`\`
23484
+ `);
23485
+ }
23486
+ applyToAgentModelRequirements(requirements, content) {
23487
+ const trimmedContent = content.trim();
23488
+ if (!trimmedContent) {
23489
+ return requirements;
23490
+ }
23491
+ // Add language rule to the system message
23492
+ const languageSection = `Language: ${trimmedContent}`;
23493
+ return this.appendToSystemMessage(requirements, languageSection, '\n\n');
23494
+ }
23495
+ }
23496
+ /**
23497
+ * Note: [💞] Ignore a discrepancy between file name and entity name
23498
+ */
23499
+
22978
23500
  /**
22979
23501
  * MEMORY commitment definition
22980
23502
  *
@@ -23002,6 +23524,12 @@ class MemoryCommitmentDefinition extends BaseCommitmentDefinition {
23002
23524
  get description() {
23003
23525
  return 'Remember past interactions and user **preferences** for personalized responses.';
23004
23526
  }
23527
+ /**
23528
+ * Icon for this commitment.
23529
+ */
23530
+ get icon() {
23531
+ return '🧠';
23532
+ }
23005
23533
  /**
23006
23534
  * Markdown documentation for MEMORY commitment.
23007
23535
  */
@@ -23100,6 +23628,12 @@ class AgentMessageCommitmentDefinition extends BaseCommitmentDefinition {
23100
23628
  get description() {
23101
23629
  return 'Defines a **message from the agent** in the conversation history.';
23102
23630
  }
23631
+ /**
23632
+ * Icon for this commitment.
23633
+ */
23634
+ get icon() {
23635
+ return '🤖';
23636
+ }
23103
23637
  /**
23104
23638
  * Markdown documentation for AGENT MESSAGE commitment.
23105
23639
  */
@@ -23171,6 +23705,12 @@ class InitialMessageCommitmentDefinition extends BaseCommitmentDefinition {
23171
23705
  get description() {
23172
23706
  return 'Defines the **initial message** shown to the user when the chat starts.';
23173
23707
  }
23708
+ /**
23709
+ * Icon for this commitment.
23710
+ */
23711
+ get icon() {
23712
+ return '👋';
23713
+ }
23174
23714
  /**
23175
23715
  * Markdown documentation for INITIAL MESSAGE commitment.
23176
23716
  */
@@ -23229,6 +23769,12 @@ class MessageCommitmentDefinition extends BaseCommitmentDefinition {
23229
23769
  get description() {
23230
23770
  return 'Include actual **messages** the AI assistant has sent during conversation history.';
23231
23771
  }
23772
+ /**
23773
+ * Icon for this commitment.
23774
+ */
23775
+ get icon() {
23776
+ return '💬';
23777
+ }
23232
23778
  /**
23233
23779
  * Markdown documentation for MESSAGE commitment.
23234
23780
  */
@@ -23335,6 +23881,12 @@ class UserMessageCommitmentDefinition extends BaseCommitmentDefinition {
23335
23881
  get description() {
23336
23882
  return 'Defines a **message from the user** in the conversation history.';
23337
23883
  }
23884
+ /**
23885
+ * Icon for this commitment.
23886
+ */
23887
+ get icon() {
23888
+ return '🧑';
23889
+ }
23338
23890
  /**
23339
23891
  * Markdown documentation for USER MESSAGE commitment.
23340
23892
  */
@@ -23408,6 +23960,12 @@ class MetaCommitmentDefinition extends BaseCommitmentDefinition {
23408
23960
  get description() {
23409
23961
  return 'Set meta-information about the agent (IMAGE, LINK, TITLE, DESCRIPTION, etc.).';
23410
23962
  }
23963
+ /**
23964
+ * Icon for this commitment.
23965
+ */
23966
+ get icon() {
23967
+ return 'ℹ️';
23968
+ }
23411
23969
  /**
23412
23970
  * Markdown documentation for META commitment.
23413
23971
  */
@@ -23535,6 +24093,12 @@ class MetaColorCommitmentDefinition extends BaseCommitmentDefinition {
23535
24093
  get description() {
23536
24094
  return "Set the agent's accent color.";
23537
24095
  }
24096
+ /**
24097
+ * Icon for this commitment.
24098
+ */
24099
+ get icon() {
24100
+ return '🎨';
24101
+ }
23538
24102
  /**
23539
24103
  * Markdown documentation for META COLOR commitment.
23540
24104
  */
@@ -23613,6 +24177,12 @@ class MetaImageCommitmentDefinition extends BaseCommitmentDefinition {
23613
24177
  get description() {
23614
24178
  return "Set the agent's profile image URL.";
23615
24179
  }
24180
+ /**
24181
+ * Icon for this commitment.
24182
+ */
24183
+ get icon() {
24184
+ return '🖼️';
24185
+ }
23616
24186
  /**
23617
24187
  * Markdown documentation for META IMAGE commitment.
23618
24188
  */
@@ -23668,6 +24238,115 @@ class MetaImageCommitmentDefinition extends BaseCommitmentDefinition {
23668
24238
  * Note: [💞] Ignore a discrepancy between file name and entity name
23669
24239
  */
23670
24240
 
24241
+ /**
24242
+ * META LINK commitment definition
24243
+ *
24244
+ * The `META LINK` commitment represents the link to the person from whom the agent is created.
24245
+ * This commitment is special because it doesn't affect the system message,
24246
+ * but is handled separately in the parsing logic for profile display.
24247
+ *
24248
+ * Example usage in agent source:
24249
+ *
24250
+ * ```
24251
+ * META LINK https://twitter.com/username
24252
+ * META LINK https://linkedin.com/in/profile
24253
+ * META LINK https://github.com/username
24254
+ * ```
24255
+ *
24256
+ * Multiple `META LINK` commitments can be used when there are multiple sources:
24257
+ *
24258
+ * ```book
24259
+ * META LINK https://twitter.com/username
24260
+ * META LINK https://linkedin.com/in/profile
24261
+ * ```
24262
+ *
24263
+ * @private [🪔] Maybe export the commitments through some package
24264
+ */
24265
+ class MetaLinkCommitmentDefinition extends BaseCommitmentDefinition {
24266
+ constructor() {
24267
+ super('META LINK');
24268
+ }
24269
+ /**
24270
+ * Short one-line description of META LINK.
24271
+ */
24272
+ get description() {
24273
+ return 'Provide profile/source links for the person the agent models.';
24274
+ }
24275
+ /**
24276
+ * Icon for this commitment.
24277
+ */
24278
+ get icon() {
24279
+ return '🔗';
24280
+ }
24281
+ /**
24282
+ * Markdown documentation for META LINK commitment.
24283
+ */
24284
+ get documentation() {
24285
+ return spaceTrim$1(`
24286
+ # META LINK
24287
+
24288
+ Represents a profile or source link for the person the agent is modeled after.
24289
+
24290
+ ## Key aspects
24291
+
24292
+ - Does not modify the agent's behavior or responses.
24293
+ - Multiple \`META LINK\` commitments can be used for different social profiles.
24294
+ - Used for attribution and crediting the original person.
24295
+ - Displayed in user interfaces for transparency.
24296
+
24297
+ ## Examples
24298
+
24299
+ \`\`\`book
24300
+ Expert Consultant
24301
+
24302
+ META LINK https://twitter.com/expertname
24303
+ META LINK https://linkedin.com/in/expertprofile
24304
+ PERSONA You are Dr. Smith, a renowned expert in artificial intelligence
24305
+ KNOWLEDGE Extensive background in machine learning and neural networks
24306
+ \`\`\`
24307
+
24308
+ \`\`\`book
24309
+ Open Source Developer
24310
+
24311
+ META LINK https://github.com/developer
24312
+ META LINK https://twitter.com/devhandle
24313
+ PERSONA You are an experienced open source developer
24314
+ ACTION Can help with code reviews and architecture decisions
24315
+ STYLE Be direct and technical in explanations
24316
+ \`\`\`
24317
+ `);
24318
+ }
24319
+ applyToAgentModelRequirements(requirements, content) {
24320
+ // META LINK doesn't modify the system message or model requirements
24321
+ // It's handled separately in the parsing logic for profile link extraction
24322
+ // This method exists for consistency with the CommitmentDefinition interface
24323
+ return requirements;
24324
+ }
24325
+ /**
24326
+ * Extracts the profile link URL from the content
24327
+ * This is used by the parsing logic
24328
+ */
24329
+ extractProfileLinkUrl(content) {
24330
+ const trimmedContent = content.trim();
24331
+ return trimmedContent || null;
24332
+ }
24333
+ /**
24334
+ * Validates if the provided content is a valid URL
24335
+ */
24336
+ isValidUrl(content) {
24337
+ try {
24338
+ new URL(content.trim());
24339
+ return true;
24340
+ }
24341
+ catch (_a) {
24342
+ return false;
24343
+ }
24344
+ }
24345
+ }
24346
+ /**
24347
+ * Note: [💞] Ignore a discrepancy between file name and entity name
24348
+ */
24349
+
23671
24350
  /**
23672
24351
  * MODEL commitment definition
23673
24352
  *
@@ -23703,6 +24382,12 @@ class ModelCommitmentDefinition extends BaseCommitmentDefinition {
23703
24382
  get description() {
23704
24383
  return 'Enforce AI model requirements including name and technical parameters.';
23705
24384
  }
24385
+ /**
24386
+ * Icon for this commitment.
24387
+ */
24388
+ get icon() {
24389
+ return '⚙️';
24390
+ }
23706
24391
  /**
23707
24392
  * Markdown documentation for MODEL commitment.
23708
24393
  */
@@ -23938,6 +24623,12 @@ class NoteCommitmentDefinition extends BaseCommitmentDefinition {
23938
24623
  get description() {
23939
24624
  return 'Add developer-facing notes without changing behavior or output.';
23940
24625
  }
24626
+ /**
24627
+ * Icon for this commitment.
24628
+ */
24629
+ get icon() {
24630
+ return '📝';
24631
+ }
23941
24632
  /**
23942
24633
  * Markdown documentation for NOTE commitment.
23943
24634
  */
@@ -24007,6 +24698,74 @@ class NoteCommitmentDefinition extends BaseCommitmentDefinition {
24007
24698
  * [💞] Ignore a discrepancy between file name and entity name
24008
24699
  */
24009
24700
 
24701
+ /**
24702
+ * OPEN commitment definition
24703
+ *
24704
+ * The OPEN commitment specifies that the agent can be modified by conversation.
24705
+ * This is the default behavior.
24706
+ *
24707
+ * Example usage in agent source:
24708
+ *
24709
+ * ```book
24710
+ * OPEN
24711
+ * ```
24712
+ *
24713
+ * @private [🪔] Maybe export the commitments through some package
24714
+ */
24715
+ class OpenCommitmentDefinition extends BaseCommitmentDefinition {
24716
+ constructor() {
24717
+ super('OPEN');
24718
+ }
24719
+ /**
24720
+ * Short one-line description of OPEN.
24721
+ */
24722
+ get description() {
24723
+ return 'Allow the agent to be modified by conversation (default).';
24724
+ }
24725
+ /**
24726
+ * Icon for this commitment.
24727
+ */
24728
+ get icon() {
24729
+ return '🔓';
24730
+ }
24731
+ /**
24732
+ * Markdown documentation for OPEN commitment.
24733
+ */
24734
+ get documentation() {
24735
+ return spaceTrim$1(`
24736
+ # OPEN
24737
+
24738
+ Specifies that the agent can be modified by conversation with it.
24739
+ This means the agent will learn from interactions and update its source code.
24740
+
24741
+ This is the default behavior if neither \`OPEN\` nor \`CLOSED\` is specified.
24742
+
24743
+ > See also [CLOSED](/docs/CLOSED)
24744
+
24745
+ ## Example
24746
+
24747
+ \`\`\`book
24748
+ OPEN
24749
+ \`\`\`
24750
+ `);
24751
+ }
24752
+ applyToAgentModelRequirements(requirements, _content) {
24753
+ // Since OPEN is default, we can just ensure isClosed is false
24754
+ // But to be explicit we can set it
24755
+ const updatedMetadata = {
24756
+ ...requirements.metadata,
24757
+ isClosed: false,
24758
+ };
24759
+ return {
24760
+ ...requirements,
24761
+ metadata: updatedMetadata,
24762
+ };
24763
+ }
24764
+ }
24765
+ /**
24766
+ * Note: [💞] Ignore a discrepancy between file name and entity name
24767
+ */
24768
+
24010
24769
  /**
24011
24770
  * PERSONA commitment definition
24012
24771
  *
@@ -24040,6 +24799,12 @@ class PersonaCommitmentDefinition extends BaseCommitmentDefinition {
24040
24799
  get description() {
24041
24800
  return 'Define who the agent is: background, expertise, and personality.';
24042
24801
  }
24802
+ /**
24803
+ * Icon for this commitment.
24804
+ */
24805
+ get icon() {
24806
+ return '👤';
24807
+ }
24043
24808
  /**
24044
24809
  * Markdown documentation for PERSONA commitment.
24045
24810
  */
@@ -24167,6 +24932,12 @@ class RuleCommitmentDefinition extends BaseCommitmentDefinition {
24167
24932
  get description() {
24168
24933
  return 'Add behavioral rules the agent must follow.';
24169
24934
  }
24935
+ /**
24936
+ * Icon for this commitment.
24937
+ */
24938
+ get icon() {
24939
+ return '⚖️';
24940
+ }
24170
24941
  /**
24171
24942
  * Markdown documentation for RULE/RULES commitment.
24172
24943
  */
@@ -24243,6 +25014,12 @@ class SampleCommitmentDefinition extends BaseCommitmentDefinition {
24243
25014
  get description() {
24244
25015
  return 'Provide example responses to guide behavior.';
24245
25016
  }
25017
+ /**
25018
+ * Icon for this commitment.
25019
+ */
25020
+ get icon() {
25021
+ return '🔍';
25022
+ }
24246
25023
  /**
24247
25024
  * Markdown documentation for SAMPLE/EXAMPLE commitment.
24248
25025
  */
@@ -24320,6 +25097,12 @@ class ScenarioCommitmentDefinition extends BaseCommitmentDefinition {
24320
25097
  get description() {
24321
25098
  return 'Define specific **situations** or contexts for AI responses, with later scenarios having higher priority.';
24322
25099
  }
25100
+ /**
25101
+ * Icon for this commitment.
25102
+ */
25103
+ get icon() {
25104
+ return '🎭';
25105
+ }
24323
25106
  /**
24324
25107
  * Markdown documentation for SCENARIO commitment.
24325
25108
  */
@@ -24436,6 +25219,12 @@ class StyleCommitmentDefinition extends BaseCommitmentDefinition {
24436
25219
  get description() {
24437
25220
  return 'Control the tone and writing style of responses.';
24438
25221
  }
25222
+ /**
25223
+ * Icon for this commitment.
25224
+ */
25225
+ get icon() {
25226
+ return '🖋️';
25227
+ }
24439
25228
  /**
24440
25229
  * Markdown documentation for STYLE commitment.
24441
25230
  */
@@ -24487,136 +25276,60 @@ class StyleCommitmentDefinition extends BaseCommitmentDefinition {
24487
25276
  * [💞] Ignore a discrepancy between file name and entity name
24488
25277
  */
24489
25278
 
24490
- /**
24491
- * Placeholder commitment definition for commitments that are not yet implemented
24492
- *
24493
- * This commitment simply adds its content 1:1 into the system message,
24494
- * preserving the original behavior until proper implementation is added.
24495
- *
24496
- * @public exported from `@promptbook/core`
24497
- */
24498
- class NotYetImplementedCommitmentDefinition extends BaseCommitmentDefinition {
24499
- constructor(type) {
24500
- super(type);
24501
- }
24502
- /**
24503
- * Short one-line description of a placeholder commitment.
24504
- */
24505
- get description() {
24506
- return 'Placeholder commitment that appends content verbatim to the system message.';
24507
- }
24508
- /**
24509
- * Markdown documentation available at runtime.
24510
- */
24511
- get documentation() {
24512
- return spaceTrim$1(`
24513
- # ${this.type}
24514
-
24515
- This commitment is not yet fully implemented.
24516
-
24517
- ## Key aspects
24518
-
24519
- - Content is appended directly to the system message.
24520
- - No special processing or validation is performed.
24521
- - Behavior preserved until proper implementation is added.
24522
-
24523
- ## Status
24524
-
24525
- - **Status:** Placeholder implementation
24526
- - **Effect:** Appends content prefixed by commitment type
24527
- - **Future:** Will be replaced with specialized logic
24528
-
24529
- ## Examples
24530
-
24531
- \`\`\`book
24532
- Example Agent
24533
-
24534
- PERSONA You are a helpful assistant
24535
- ${this.type} Your content here
24536
- RULE Always be helpful
24537
- \`\`\`
24538
- `);
24539
- }
24540
- applyToAgentModelRequirements(requirements, content) {
24541
- const trimmedContent = content.trim();
24542
- if (!trimmedContent) {
24543
- return requirements;
24544
- }
24545
- // Add the commitment content 1:1 to the system message
24546
- const commitmentLine = `${this.type} ${trimmedContent}`;
24547
- return this.appendToSystemMessage(requirements, commitmentLine, '\n\n');
24548
- }
24549
- }
24550
-
24551
25279
  // Import all commitment definition classes
24552
- /**
24553
- * Registry of all available commitment definitions
24554
- * This array contains instances of all commitment definitions
24555
- * This is the single source of truth for all commitments in the system
24556
- *
24557
- * @private Use functions to access commitments instead of this array directly
24558
- */
24559
- const COMMITMENT_REGISTRY = [
24560
- // Fully implemented commitments
24561
- new PersonaCommitmentDefinition('PERSONA'),
24562
- new PersonaCommitmentDefinition('PERSONAE'),
24563
- new KnowledgeCommitmentDefinition(),
24564
- new MemoryCommitmentDefinition('MEMORY'),
24565
- new MemoryCommitmentDefinition('MEMORIES'),
24566
- new StyleCommitmentDefinition('STYLE'),
24567
- new StyleCommitmentDefinition('STYLES'),
24568
- new RuleCommitmentDefinition('RULE'),
24569
- new RuleCommitmentDefinition('RULES'),
24570
- new SampleCommitmentDefinition('SAMPLE'),
24571
- new SampleCommitmentDefinition('EXAMPLE'),
24572
- new FormatCommitmentDefinition('FORMAT'),
24573
- new FormatCommitmentDefinition('FORMATS'),
24574
- new ModelCommitmentDefinition('MODEL'),
24575
- new ModelCommitmentDefinition('MODELS'),
24576
- new ActionCommitmentDefinition('ACTION'),
24577
- new ActionCommitmentDefinition('ACTIONS'),
24578
- new MetaImageCommitmentDefinition(),
24579
- new MetaColorCommitmentDefinition(),
24580
- new MetaCommitmentDefinition(),
24581
- new NoteCommitmentDefinition('NOTE'),
24582
- new NoteCommitmentDefinition('NOTES'),
24583
- new NoteCommitmentDefinition('COMMENT'),
24584
- new NoteCommitmentDefinition('NONCE'),
24585
- new GoalCommitmentDefinition('GOAL'),
24586
- new GoalCommitmentDefinition('GOALS'),
24587
- new InitialMessageCommitmentDefinition(),
24588
- new UserMessageCommitmentDefinition(),
24589
- new AgentMessageCommitmentDefinition(),
24590
- new MessageCommitmentDefinition('MESSAGE'),
24591
- new MessageCommitmentDefinition('MESSAGES'),
24592
- new ScenarioCommitmentDefinition('SCENARIO'),
24593
- new ScenarioCommitmentDefinition('SCENARIOS'),
24594
- new DeleteCommitmentDefinition('DELETE'),
24595
- new DeleteCommitmentDefinition('CANCEL'),
24596
- new DeleteCommitmentDefinition('DISCARD'),
24597
- new DeleteCommitmentDefinition('REMOVE'),
24598
- // Not yet implemented commitments (using placeholder)
24599
- new NotYetImplementedCommitmentDefinition('EXPECT'),
24600
- new NotYetImplementedCommitmentDefinition('BEHAVIOUR'),
24601
- new NotYetImplementedCommitmentDefinition('BEHAVIOURS'),
24602
- new NotYetImplementedCommitmentDefinition('AVOID'),
24603
- new NotYetImplementedCommitmentDefinition('AVOIDANCE'),
24604
- new NotYetImplementedCommitmentDefinition('CONTEXT'),
24605
- ];
24606
- /**
24607
- * Gets a commitment definition by its type
24608
- * @param type The commitment type to look up
24609
- * @returns The commitment definition or null if not found
24610
- *
24611
- * @public exported from `@promptbook/core`
24612
- */
24613
- function getCommitmentDefinition(type) {
24614
- return COMMITMENT_REGISTRY.find((commitmentDefinition) => commitmentDefinition.type === type) || null;
24615
- }
24616
- /**
24617
- * TODO: [🧠] Maybe create through standardized $register
24618
- * Note: [💞] Ignore a discrepancy between file name and entity name
24619
- */
25280
+ // Register fully implemented commitments
25281
+ registerCommitment(new PersonaCommitmentDefinition('PERSONA'));
25282
+ registerCommitment(new PersonaCommitmentDefinition('PERSONAE'));
25283
+ registerCommitment(new KnowledgeCommitmentDefinition());
25284
+ registerCommitment(new MemoryCommitmentDefinition('MEMORY'));
25285
+ registerCommitment(new MemoryCommitmentDefinition('MEMORIES'));
25286
+ registerCommitment(new StyleCommitmentDefinition('STYLE'));
25287
+ registerCommitment(new StyleCommitmentDefinition('STYLES'));
25288
+ registerCommitment(new RuleCommitmentDefinition('RULE'));
25289
+ registerCommitment(new RuleCommitmentDefinition('RULES'));
25290
+ registerCommitment(new LanguageCommitmentDefinition('LANGUAGE'));
25291
+ registerCommitment(new LanguageCommitmentDefinition('LANGUAGES'));
25292
+ registerCommitment(new SampleCommitmentDefinition('SAMPLE'));
25293
+ registerCommitment(new SampleCommitmentDefinition('EXAMPLE'));
25294
+ registerCommitment(new FormatCommitmentDefinition('FORMAT'));
25295
+ registerCommitment(new FormatCommitmentDefinition('FORMATS'));
25296
+ registerCommitment(new FromCommitmentDefinition('FROM'));
25297
+ registerCommitment(new ModelCommitmentDefinition('MODEL'));
25298
+ registerCommitment(new ModelCommitmentDefinition('MODELS'));
25299
+ registerCommitment(new ActionCommitmentDefinition('ACTION'));
25300
+ registerCommitment(new ActionCommitmentDefinition('ACTIONS'));
25301
+ registerCommitment(new ComponentCommitmentDefinition());
25302
+ registerCommitment(new MetaImageCommitmentDefinition());
25303
+ registerCommitment(new MetaColorCommitmentDefinition());
25304
+ registerCommitment(new MetaLinkCommitmentDefinition());
25305
+ registerCommitment(new MetaCommitmentDefinition());
25306
+ registerCommitment(new NoteCommitmentDefinition('NOTE'));
25307
+ registerCommitment(new NoteCommitmentDefinition('NOTES'));
25308
+ registerCommitment(new NoteCommitmentDefinition('COMMENT'));
25309
+ registerCommitment(new NoteCommitmentDefinition('NONCE'));
25310
+ registerCommitment(new GoalCommitmentDefinition('GOAL'));
25311
+ registerCommitment(new GoalCommitmentDefinition('GOALS'));
25312
+ registerCommitment(new ImportantCommitmentDefinition());
25313
+ registerCommitment(new InitialMessageCommitmentDefinition());
25314
+ registerCommitment(new UserMessageCommitmentDefinition());
25315
+ registerCommitment(new AgentMessageCommitmentDefinition());
25316
+ registerCommitment(new MessageCommitmentDefinition('MESSAGE'));
25317
+ registerCommitment(new MessageCommitmentDefinition('MESSAGES'));
25318
+ registerCommitment(new ScenarioCommitmentDefinition('SCENARIO'));
25319
+ registerCommitment(new ScenarioCommitmentDefinition('SCENARIOS'));
25320
+ registerCommitment(new DeleteCommitmentDefinition('DELETE'));
25321
+ registerCommitment(new DeleteCommitmentDefinition('CANCEL'));
25322
+ registerCommitment(new DeleteCommitmentDefinition('DISCARD'));
25323
+ registerCommitment(new DeleteCommitmentDefinition('REMOVE'));
25324
+ registerCommitment(new OpenCommitmentDefinition());
25325
+ registerCommitment(new ClosedCommitmentDefinition());
25326
+ // Register not yet implemented commitments
25327
+ registerCommitment(new NotYetImplementedCommitmentDefinition('EXPECT'));
25328
+ registerCommitment(new NotYetImplementedCommitmentDefinition('BEHAVIOUR'));
25329
+ registerCommitment(new NotYetImplementedCommitmentDefinition('BEHAVIOURS'));
25330
+ registerCommitment(new NotYetImplementedCommitmentDefinition('AVOID'));
25331
+ registerCommitment(new NotYetImplementedCommitmentDefinition('AVOIDANCE'));
25332
+ registerCommitment(new NotYetImplementedCommitmentDefinition('CONTEXT'));
24620
25333
 
24621
25334
  /**
24622
25335
  * Creates an empty/basic agent model requirements object
@@ -25028,7 +25741,9 @@ function parseAgentSource(agentSource) {
25028
25741
  const links = [];
25029
25742
  for (const commitment of parseResult.commitments) {
25030
25743
  if (commitment.type === 'META LINK') {
25031
- links.push(spaceTrim(commitment.content));
25744
+ const linkValue = spaceTrim(commitment.content);
25745
+ links.push(linkValue);
25746
+ meta.link = linkValue;
25032
25747
  continue;
25033
25748
  }
25034
25749
  if (commitment.type === 'META IMAGE') {