@promptbook/cli 0.112.0-42 → 0.112.0-44

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 (68) hide show
  1. package/README.md +10 -3
  2. package/esm/index.es.js +1485 -171
  3. package/esm/index.es.js.map +1 -1
  4. package/esm/scripts/run-codex-prompts/common/formatUnknownErrorDetails.d.ts +4 -0
  5. package/esm/scripts/run-codex-prompts/common/runGoScript/$runGoScript.d.ts +1 -1
  6. package/esm/scripts/run-codex-prompts/common/runGoScript/$runGoScriptUntilMarkerIdle.d.ts +1 -1
  7. package/esm/scripts/run-codex-prompts/common/runGoScript/$runGoScriptWithOutput.d.ts +1 -1
  8. package/esm/scripts/run-codex-prompts/common/runGoScript/PromptRoundArtifacts.d.ts +35 -0
  9. package/esm/scripts/run-codex-prompts/common/runGoScript/buildScriptLogPath.d.ts +4 -0
  10. package/esm/scripts/run-codex-prompts/common/runGoScript/runBashScriptWithOutput.d.ts +5 -0
  11. package/esm/scripts/run-codex-prompts/common/runGoScript/scriptExecutionLog.d.ts +28 -0
  12. package/esm/scripts/run-codex-prompts/common/runGoScript/withPromptRuntimeLog.d.ts +5 -0
  13. package/esm/scripts/run-codex-prompts/common/runGoScript/withTempScript.d.ts +1 -1
  14. package/esm/scripts/run-codex-prompts/common/waitForPause.d.ts +21 -1
  15. package/esm/scripts/run-codex-prompts/git/commitChanges.d.ts +2 -2
  16. package/esm/scripts/run-codex-prompts/prompts/formatPromptAttemptMetadata.d.ts +4 -0
  17. package/esm/scripts/run-codex-prompts/prompts/markPromptDone.d.ts +1 -1
  18. package/esm/scripts/run-codex-prompts/prompts/markPromptFailed.d.ts +1 -1
  19. package/esm/scripts/run-codex-prompts/testing/runPromptTestCommand.d.ts +14 -0
  20. package/esm/scripts/run-codex-prompts/testing/runPromptWithTestFeedback.d.ts +25 -0
  21. package/esm/scripts/run-codex-prompts/ui/CoderRunUiState.d.ts +112 -0
  22. package/esm/scripts/run-codex-prompts/ui/renderCoderRunUi.d.ts +30 -0
  23. package/esm/src/book-2.0/agent-source/AgentBasicInformation.d.ts +2 -1
  24. package/esm/src/book-2.0/agent-source/TeammateProfileResolver.d.ts +2 -1
  25. package/esm/src/book-components/Chat/Chat/ChatProps.d.ts +1 -1
  26. package/esm/src/cli/cli-commands/coder/getTypescriptModule.d.ts +19 -0
  27. package/esm/src/cli/cli-commands/coder/getTypescriptModule.test.d.ts +1 -0
  28. package/esm/src/cli/cli-commands/coder/mergeStringRecordJsonFile.test.d.ts +1 -0
  29. package/esm/src/commitments/PERSONA/PERSONA.d.ts +7 -0
  30. package/esm/src/llm-providers/agent/Agent.test.d.ts +1 -0
  31. package/esm/src/llm-providers/agent/AgentLlmExecutionTools.d.ts +4 -0
  32. package/esm/src/llm-providers/agent/AgentOptions.d.ts +8 -0
  33. package/esm/src/llm-providers/agent/CreateAgentLlmExecutionToolsOptions.d.ts +9 -0
  34. package/esm/src/version.d.ts +1 -1
  35. package/package.json +3 -2
  36. package/umd/index.umd.js +1487 -174
  37. package/umd/index.umd.js.map +1 -1
  38. package/umd/scripts/run-codex-prompts/common/formatUnknownErrorDetails.d.ts +4 -0
  39. package/umd/scripts/run-codex-prompts/common/runGoScript/$runGoScript.d.ts +1 -1
  40. package/umd/scripts/run-codex-prompts/common/runGoScript/$runGoScriptUntilMarkerIdle.d.ts +1 -1
  41. package/umd/scripts/run-codex-prompts/common/runGoScript/$runGoScriptWithOutput.d.ts +1 -1
  42. package/umd/scripts/run-codex-prompts/common/runGoScript/PromptRoundArtifacts.d.ts +35 -0
  43. package/umd/scripts/run-codex-prompts/common/runGoScript/buildScriptLogPath.d.ts +4 -0
  44. package/umd/scripts/run-codex-prompts/common/runGoScript/runBashScriptWithOutput.d.ts +5 -0
  45. package/umd/scripts/run-codex-prompts/common/runGoScript/scriptExecutionLog.d.ts +28 -0
  46. package/umd/scripts/run-codex-prompts/common/runGoScript/withPromptRuntimeLog.d.ts +5 -0
  47. package/umd/scripts/run-codex-prompts/common/runGoScript/withTempScript.d.ts +1 -1
  48. package/umd/scripts/run-codex-prompts/common/waitForPause.d.ts +21 -1
  49. package/umd/scripts/run-codex-prompts/git/commitChanges.d.ts +2 -2
  50. package/umd/scripts/run-codex-prompts/prompts/formatPromptAttemptMetadata.d.ts +4 -0
  51. package/umd/scripts/run-codex-prompts/prompts/markPromptDone.d.ts +1 -1
  52. package/umd/scripts/run-codex-prompts/prompts/markPromptFailed.d.ts +1 -1
  53. package/umd/scripts/run-codex-prompts/testing/runPromptTestCommand.d.ts +14 -0
  54. package/umd/scripts/run-codex-prompts/testing/runPromptWithTestFeedback.d.ts +25 -0
  55. package/umd/scripts/run-codex-prompts/ui/CoderRunUiState.d.ts +112 -0
  56. package/umd/scripts/run-codex-prompts/ui/renderCoderRunUi.d.ts +30 -0
  57. package/umd/src/book-2.0/agent-source/AgentBasicInformation.d.ts +2 -1
  58. package/umd/src/book-2.0/agent-source/TeammateProfileResolver.d.ts +2 -1
  59. package/umd/src/book-components/Chat/Chat/ChatProps.d.ts +1 -1
  60. package/umd/src/cli/cli-commands/coder/getTypescriptModule.d.ts +19 -0
  61. package/umd/src/cli/cli-commands/coder/getTypescriptModule.test.d.ts +1 -0
  62. package/umd/src/cli/cli-commands/coder/mergeStringRecordJsonFile.test.d.ts +1 -0
  63. package/umd/src/commitments/PERSONA/PERSONA.d.ts +7 -0
  64. package/umd/src/llm-providers/agent/Agent.test.d.ts +1 -0
  65. package/umd/src/llm-providers/agent/AgentLlmExecutionTools.d.ts +4 -0
  66. package/umd/src/llm-providers/agent/AgentOptions.d.ts +8 -0
  67. package/umd/src/llm-providers/agent/CreateAgentLlmExecutionToolsOptions.d.ts +9 -0
  68. package/umd/src/version.d.ts +1 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.