@autohq/cli 0.1.599 → 0.1.600
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.
- package/dist/agent-bridge.js +4 -3
- package/dist/index.js +4 -3
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -37736,7 +37736,7 @@ Object.assign(lookup, {
|
|
|
37736
37736
|
// package.json
|
|
37737
37737
|
var package_default = {
|
|
37738
37738
|
name: "@autohq/cli",
|
|
37739
|
-
version: "0.1.
|
|
37739
|
+
version: "0.1.600",
|
|
37740
37740
|
license: "SEE LICENSE IN README.md",
|
|
37741
37741
|
publishConfig: {
|
|
37742
37742
|
access: "public"
|
|
@@ -78551,7 +78551,7 @@ var AskUserServer = class {
|
|
|
78551
78551
|
{
|
|
78552
78552
|
name: ASK_USER_MCP_TOOL_NAME,
|
|
78553
78553
|
title: ASK_USER_TOOL_NAME,
|
|
78554
|
-
description: "Ask the user one to four blocking questions and wait for their answer.",
|
|
78554
|
+
description: "Ask the user one to four blocking questions and wait for their answer. This call returns only after the prompt is answered or explicitly falls back; an answered result means the prompt is closed, so continue exactly once using that answer and never report that it is still awaiting the user.",
|
|
78555
78555
|
inputSchema: external_exports.toJSONSchema(AskUserQuestionInputSchema2)
|
|
78556
78556
|
}
|
|
78557
78557
|
]
|
|
@@ -78618,7 +78618,8 @@ function settlementResult(settlement) {
|
|
|
78618
78618
|
{
|
|
78619
78619
|
type: "text",
|
|
78620
78620
|
text: [
|
|
78621
|
-
"
|
|
78621
|
+
"Question resolved: the user answered and this prompt is now closed.",
|
|
78622
|
+
"Continue exactly once using these answers; do not say or imply that the question is still open or awaiting the user:",
|
|
78622
78623
|
...lines,
|
|
78623
78624
|
...answer.response ? [`The user also responded: ${answer.response}`] : []
|
|
78624
78625
|
].join("\n")
|
package/dist/index.js
CHANGED
|
@@ -91158,7 +91158,7 @@ var init_package = __esm({
|
|
|
91158
91158
|
"package.json"() {
|
|
91159
91159
|
package_default = {
|
|
91160
91160
|
name: "@autohq/cli",
|
|
91161
|
-
version: "0.1.
|
|
91161
|
+
version: "0.1.600",
|
|
91162
91162
|
license: "SEE LICENSE IN README.md",
|
|
91163
91163
|
publishConfig: {
|
|
91164
91164
|
access: "public"
|
|
@@ -104307,7 +104307,7 @@ var AskUserServer = class {
|
|
|
104307
104307
|
{
|
|
104308
104308
|
name: ASK_USER_MCP_TOOL_NAME,
|
|
104309
104309
|
title: ASK_USER_TOOL_NAME,
|
|
104310
|
-
description: "Ask the user one to four blocking questions and wait for their answer.",
|
|
104310
|
+
description: "Ask the user one to four blocking questions and wait for their answer. This call returns only after the prompt is answered or explicitly falls back; an answered result means the prompt is closed, so continue exactly once using that answer and never report that it is still awaiting the user.",
|
|
104311
104311
|
inputSchema: external_exports.toJSONSchema(AskUserQuestionInputSchema2)
|
|
104312
104312
|
}
|
|
104313
104313
|
]
|
|
@@ -104374,7 +104374,8 @@ function settlementResult(settlement) {
|
|
|
104374
104374
|
{
|
|
104375
104375
|
type: "text",
|
|
104376
104376
|
text: [
|
|
104377
|
-
"
|
|
104377
|
+
"Question resolved: the user answered and this prompt is now closed.",
|
|
104378
|
+
"Continue exactly once using these answers; do not say or imply that the question is still open or awaiting the user:",
|
|
104378
104379
|
...lines,
|
|
104379
104380
|
...answer.response ? [`The user also responded: ${answer.response}`] : []
|
|
104380
104381
|
].join("\n")
|