@backburner/cli 0.1.4 → 0.1.5
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.
|
@@ -28,7 +28,7 @@ export function buildAntigravityCliArgs(options) {
|
|
|
28
28
|
else {
|
|
29
29
|
args.push("--dangerously-skip-permissions");
|
|
30
30
|
}
|
|
31
|
-
args.push("--print",
|
|
31
|
+
args.push("--print", options.promptText);
|
|
32
32
|
return args;
|
|
33
33
|
}
|
|
34
34
|
export async function writeAntigravitySettings(settingsPath, options) {
|
|
@@ -64,7 +64,8 @@ export class AntigravityCliAgent {
|
|
|
64
64
|
...(agentConfig.model ? { model: agentConfig.model } : {}),
|
|
65
65
|
...(resumeConversationId ? { conversationId: resumeConversationId } : {}),
|
|
66
66
|
printTimeout: this.printTimeout,
|
|
67
|
-
logFilePath
|
|
67
|
+
logFilePath,
|
|
68
|
+
promptText
|
|
68
69
|
});
|
|
69
70
|
this.logger?.info(JSON.stringify({
|
|
70
71
|
component: "antigravity-launch",
|
|
@@ -102,7 +103,6 @@ export class AntigravityCliAgent {
|
|
|
102
103
|
}
|
|
103
104
|
const result = await this.options.commandRunner.run(agentConfig.command, args, {
|
|
104
105
|
cwd,
|
|
105
|
-
input: promptText,
|
|
106
106
|
env: getAntigravityEnvOverrides(),
|
|
107
107
|
timeoutMs: this.timeoutMs
|
|
108
108
|
});
|