@promptbook/cli 0.112.0-121 → 0.112.0-123

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 (34) hide show
  1. package/apps/agents-server/src/app/agents/[agentName]/api/user-chats/[chatId]/messages/route.ts +4 -11
  2. package/esm/index.es.js +1353 -277
  3. package/esm/index.es.js.map +1 -1
  4. package/esm/scripts/run-codex-prompts/common/resolveAgentSystemMessage.d.ts +6 -0
  5. package/esm/scripts/run-codex-prompts/main/findUnwrittenPrompts.d.ts +19 -0
  6. package/esm/scripts/run-codex-prompts/main/runCodexPromptsServer.d.ts +27 -0
  7. package/esm/scripts/run-codex-prompts/main/runPromptRound.d.ts +2 -1
  8. package/esm/scripts/run-codex-prompts/server/coderServerHtml.d.ts +9 -0
  9. package/esm/scripts/run-codex-prompts/server/runCoderHttpServer.d.ts +23 -0
  10. package/esm/scripts/run-codex-prompts/server/updatePromptSection.d.ts +9 -0
  11. package/esm/src/cli/cli-commands/coder/find-unwritten.d.ts +10 -0
  12. package/esm/src/cli/cli-commands/coder/server.d.ts +13 -0
  13. package/esm/src/version.d.ts +1 -1
  14. package/package.json +1 -1
  15. package/src/cli/cli-commands/coder/find-unwritten.ts +58 -0
  16. package/src/cli/cli-commands/coder/init.ts +4 -1
  17. package/src/cli/cli-commands/coder/run.ts +26 -11
  18. package/src/cli/cli-commands/coder/server.ts +239 -0
  19. package/src/cli/cli-commands/coder.ts +6 -0
  20. package/src/other/templates/getTemplatesPipelineCollection.ts +825 -1034
  21. package/src/version.ts +2 -2
  22. package/src/versions.txt +2 -1
  23. package/umd/index.umd.js +1355 -279
  24. package/umd/index.umd.js.map +1 -1
  25. package/umd/scripts/run-codex-prompts/common/resolveAgentSystemMessage.d.ts +6 -0
  26. package/umd/scripts/run-codex-prompts/main/findUnwrittenPrompts.d.ts +19 -0
  27. package/umd/scripts/run-codex-prompts/main/runCodexPromptsServer.d.ts +27 -0
  28. package/umd/scripts/run-codex-prompts/main/runPromptRound.d.ts +2 -1
  29. package/umd/scripts/run-codex-prompts/server/coderServerHtml.d.ts +9 -0
  30. package/umd/scripts/run-codex-prompts/server/runCoderHttpServer.d.ts +23 -0
  31. package/umd/scripts/run-codex-prompts/server/updatePromptSection.d.ts +9 -0
  32. package/umd/src/cli/cli-commands/coder/find-unwritten.d.ts +10 -0
  33. package/umd/src/cli/cli-commands/coder/server.d.ts +13 -0
  34. package/umd/src/version.d.ts +1 -1
package/src/version.ts CHANGED
@@ -16,11 +16,11 @@ export const BOOK_LANGUAGE_VERSION: string_semantic_version = '2.0.0';
16
16
  * @generated
17
17
  * @see https://github.com/webgptorg/promptbook
18
18
  */
19
- export const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version = '0.112.0-121';
19
+ export const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version = '0.112.0-123';
20
20
 
21
21
  /**
22
22
  * Represents the version string of the Promptbook engine.
23
- * It follows semantic versioning (e.g., `0.112.0-119`).
23
+ * It follows semantic versioning (e.g., `0.112.0-122`).
24
24
  *
25
25
  * @generated
26
26
  */
package/src/versions.txt CHANGED
@@ -1153,4 +1153,5 @@
1153
1153
  0.112.0-117
1154
1154
  0.112.0-118
1155
1155
  0.112.0-119
1156
- 0.112.0-121
1156
+ 0.112.0-122
1157
+ 0.112.0-123