palmier 0.4.9 → 0.5.0

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.
@@ -4,7 +4,7 @@ import * as readline from "readline";
4
4
  import { spawnCommand, spawnStreamingCommand } from "../spawn-command.js";
5
5
  import { loadConfig } from "../config.js";
6
6
  import { connectNats } from "../nats-client.js";
7
- import { parseTaskFile, getTaskDir, writeTaskFile, writeTaskStatus, readTaskStatus, appendHistory, createRunDir, appendRunMessage, readRunMessages, getRunDir } from "../task.js";
7
+ import { parseTaskFile, getTaskDir, writeTaskFile, writeTaskStatus, readTaskStatus, appendHistory, createRunDir, appendRunMessage, readRunMessages, getRunDir, beginStreamingMessage } from "../task.js";
8
8
  import { getAgent } from "../agents/agent.js";
9
9
  import { getPlatform } from "../platform/index.js";
10
10
  import { TASK_SUCCESS_MARKER, TASK_FAILURE_MARKER, TASK_REPORT_PREFIX, TASK_PERMISSION_PREFIX } from "../agents/shared-prompt.js";
@@ -19,6 +19,20 @@ import { publishHostEvent } from "../events.js";
19
19
  async function invokeAgentWithRetries(ctx, invokeTask) {
20
20
  // eslint-disable-next-line no-constant-condition
21
21
  while (true) {
22
+ // Stream agent output to TASKRUN.md in real-time, throttled to 500ms
23
+ const writer = beginStreamingMessage(ctx.taskDir, ctx.runId, Date.now());
24
+ let lineBuf = "";
25
+ let notifyPending = false;
26
+ let notifyTimer;
27
+ function throttledNotify() {
28
+ if (notifyPending)
29
+ return;
30
+ notifyPending = true;
31
+ notifyTimer = setTimeout(() => {
32
+ notifyPending = false;
33
+ publishHostEvent(ctx.nc, ctx.config.hostId, ctx.taskId, { event_type: "result-updated", run_id: ctx.runId });
34
+ }, 500);
35
+ }
22
36
  const { command, args, stdin } = ctx.agent.getTaskRunCommandLine(invokeTask, undefined, ctx.transientPermissions);
23
37
  const result = await spawnCommand(command, args, {
24
38
  cwd: getRunDir(ctx.taskDir, ctx.runId),
@@ -26,17 +40,33 @@ async function invokeAgentWithRetries(ctx, invokeTask) {
26
40
  echoStdout: true,
27
41
  resolveOnFailure: true,
28
42
  stdin,
43
+ onData: (chunk) => {
44
+ lineBuf += chunk;
45
+ const lines = lineBuf.split("\n");
46
+ lineBuf = lines.pop() ?? "";
47
+ const filtered = lines.filter((l) => !l.startsWith("[PALMIER"));
48
+ if (filtered.length > 0) {
49
+ writer.write(filtered.join("\n") + "\n");
50
+ throttledNotify();
51
+ }
52
+ },
29
53
  });
54
+ if (notifyTimer)
55
+ clearTimeout(notifyTimer);
30
56
  const outcome = result.exitCode !== 0 ? "failed" : parseTaskOutcome(result.output);
31
57
  const reportFiles = parseReportFiles(result.output);
32
58
  const requiredPermissions = parsePermissions(result.output);
33
- // Append assistant message for this invocation
34
- await appendAndNotify(ctx, {
35
- role: "assistant",
36
- time: Date.now(),
37
- content: stripPalmierMarkers(result.output),
38
- attachments: reportFiles.length > 0 ? reportFiles : undefined,
39
- });
59
+ // Flush remaining buffered content
60
+ if (lineBuf && !lineBuf.startsWith("[PALMIER")) {
61
+ writer.write(lineBuf);
62
+ }
63
+ // Include permission requests in the assistant message
64
+ if (requiredPermissions.length > 0) {
65
+ const permLines = requiredPermissions.map((p) => `- **${p.name}** ${p.description}`).join("\n");
66
+ writer.write(`\n\n**Permissions requested:**\n${permLines}\n`);
67
+ }
68
+ writer.end(reportFiles.length > 0 ? reportFiles : undefined);
69
+ await publishHostEvent(ctx.nc, ctx.config.hostId, ctx.taskId, { event_type: "result-updated", run_id: ctx.runId });
40
70
  // Permission handling — agent requested permissions
41
71
  if (requiredPermissions.length > 0) {
42
72
  const response = await requestPermission(ctx.config, ctx.task, ctx.taskDir, requiredPermissions);
@@ -44,18 +74,17 @@ async function invokeAgentWithRetries(ctx, invokeTask) {
44
74
  await appendAndNotify(ctx, {
45
75
  role: "user",
46
76
  time: Date.now(),
47
- content: "Permissions denied. Task aborted.",
77
+ content: "Denied",
48
78
  type: "permission",
49
79
  });
50
80
  return { outcome: "failed" };
51
81
  }
52
82
  const newPerms = requiredPermissions.filter((rp) => !ctx.task.frontmatter.permissions?.some((ep) => ep.name === rp.name)
53
83
  && !ctx.transientPermissions.some((ep) => ep.name === rp.name));
54
- // Append user message for permission grant
55
84
  await appendAndNotify(ctx, {
56
85
  role: "user",
57
86
  time: Date.now(),
58
- content: `Permissions granted: ${newPerms.map((p) => p.name).join(", ")}`,
87
+ content: response === "granted_all" ? "Granted for all" : "Granted",
59
88
  type: "permission",
60
89
  });
61
90
  if (response === "granted_all") {
@@ -212,6 +241,8 @@ const MAX_LINE_LENGTH = 200_000;
212
241
  async function runCommandTriggeredMode(ctx) {
213
242
  const commandStr = ctx.task.frontmatter.command;
214
243
  console.log(`[command-triggered] Spawning: ${commandStr}`);
244
+ appendRunMessage(ctx.taskDir, ctx.runId, { role: "status", time: Date.now(), content: "", type: "monitoring" });
245
+ await publishHostEvent(ctx.nc, ctx.config.hostId, ctx.taskId, { event_type: "result-updated", run_id: ctx.runId });
215
246
  const child = spawnStreamingCommand(commandStr, {
216
247
  cwd: getRunDir(ctx.taskDir, ctx.runId),
217
248
  env: { ...ctx.guiEnv, PALMIER_TASK_ID: ctx.task.frontmatter.id, PALMIER_RUN_DIR: getRunDir(ctx.taskDir, ctx.runId), PALMIER_HTTP_PORT: String(ctx.config.httpPort ?? 7400) },
@@ -82,7 +82,14 @@ export async function serveCommand() {
82
82
  config.agents = agents;
83
83
  saveConfig(config);
84
84
  console.log(`Detected agents: ${agents.map((a) => a.key).join(", ") || "none"}`);
85
- const nc = await connectNats(config);
85
+ let nc;
86
+ try {
87
+ nc = await connectNats(config);
88
+ console.log("[nats] Connected");
89
+ }
90
+ catch (err) {
91
+ console.warn(`[nats] Connection failed (server mode unavailable): ${err}`);
92
+ }
86
93
  // Reconcile any tasks stuck from before daemon started
87
94
  await checkStaleTasks(config, nc);
88
95
  // Poll for crashed tasks every 30 seconds
@@ -20,7 +20,10 @@ export declare function buildTaskXml(tr: string, triggers: string[]): string;
20
20
  export declare class WindowsPlatform implements PlatformService {
21
21
  installDaemon(config: HostConfig): void;
22
22
  restartDaemon(): Promise<void>;
23
- private spawnDaemon;
23
+ /** Create or update the Task Scheduler entry for the daemon. */
24
+ private ensureDaemonTask;
25
+ /** Start the daemon via Task Scheduler (runs outside any session's job object). */
26
+ private startDaemonTask;
24
27
  installTaskTimer(config: HostConfig, task: ParsedTask): void;
25
28
  removeTaskTimer(taskId: string): void;
26
29
  startTask(taskId: string): Promise<void>;
@@ -1,7 +1,6 @@
1
1
  import * as fs from "fs";
2
2
  import * as path from "path";
3
3
  import { execFileSync } from "child_process";
4
- import { spawn as nodeSpawn } from "child_process";
5
4
  import { CONFIG_DIR, loadConfig } from "../config.js";
6
5
  import { getTaskDir, readTaskStatus } from "../task.js";
7
6
  const TASK_PREFIX = "\\Palmier\\PalmierTask-";
@@ -78,11 +77,11 @@ function schtasksTaskName(taskId) {
78
77
  export class WindowsPlatform {
79
78
  installDaemon(config) {
80
79
  const script = process.argv[1] || "palmier";
81
- // Write a VBS launcher that starts the daemon with no visible console window.
82
- // VBS doesn't use backslash escaping — only quotes need doubling ("").
83
- const vbs = `CreateObject("WScript.Shell").Run """${process.execPath}"" ""${script}"" serve", 0, False`;
84
- fs.writeFileSync(DAEMON_VBS_FILE, vbs, "utf-8");
85
- const regValue = `"${process.env.SYSTEMROOT || "C:\\Windows"}\\System32\\wscript.exe" "${DAEMON_VBS_FILE}"`;
80
+ // Create the Task Scheduler entry for the daemon
81
+ this.ensureDaemonTask(script);
82
+ // Registry Run key triggers the Task Scheduler entry on logon,
83
+ // so the daemon always runs outside any session's job object.
84
+ const regValue = `schtasks /run /tn "\\Palmier\\${DAEMON_TASK_NAME}"`;
86
85
  try {
87
86
  execFileSync("reg", [
88
87
  "add", "HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Run",
@@ -95,17 +94,16 @@ export class WindowsPlatform {
95
94
  console.error("You may need to start palmier serve manually.");
96
95
  }
97
96
  // Start the daemon now
98
- this.spawnDaemon(script);
97
+ this.startDaemonTask();
99
98
  console.log("\nHost initialization complete!");
100
99
  }
101
100
  async restartDaemon() {
102
- const script = process.argv[1] || "palmier";
103
101
  const oldPid = fs.existsSync(DAEMON_PID_FILE)
104
102
  ? fs.readFileSync(DAEMON_PID_FILE, "utf-8").trim()
105
103
  : null;
106
104
  if (oldPid && oldPid === String(process.pid)) {
107
105
  // We ARE the old daemon (auto-update) — spawn replacement then exit.
108
- this.spawnDaemon(script);
106
+ this.startDaemonTask();
109
107
  process.exit(0);
110
108
  }
111
109
  // Kill old daemon first, then spawn new one.
@@ -117,21 +115,43 @@ export class WindowsPlatform {
117
115
  // Process may have already exited
118
116
  }
119
117
  }
120
- this.spawnDaemon(script);
118
+ this.startDaemonTask();
121
119
  }
122
- spawnDaemon(script) {
123
- // Write a VBS launcher that starts the daemon with no visible console window.
120
+ /** Create or update the Task Scheduler entry for the daemon. */
121
+ ensureDaemonTask(script) {
124
122
  const vbs = `CreateObject("WScript.Shell").Run """${process.execPath}"" ""${script}"" serve", 0, False`;
125
123
  fs.writeFileSync(DAEMON_VBS_FILE, vbs, "utf-8");
126
- // Use `cmd /c start` to break out of the SSH session's job object.
127
- // Without this, the daemon is killed when the SSH session disconnects.
128
- const child = nodeSpawn("cmd", ["/c", "start", "/b", "wscript.exe", DAEMON_VBS_FILE], {
129
- detached: true,
130
- stdio: "ignore",
131
- windowsHide: true,
132
- });
133
- child.unref();
134
- // PID file will be written by the serve command itself when it starts.
124
+ const wscript = `${process.env.SYSTEMROOT || "C:\\Windows"}\\System32\\wscript.exe`;
125
+ const tn = `\\Palmier\\${DAEMON_TASK_NAME}`;
126
+ const tr = `"${wscript}" "${DAEMON_VBS_FILE}"`;
127
+ const xml = buildTaskXml(tr, [`<TimeTrigger><StartBoundary>2000-01-01T00:00:00</StartBoundary></TimeTrigger>`]);
128
+ const xmlPath = path.join(CONFIG_DIR, "daemon-task.xml");
129
+ try {
130
+ const bom = Buffer.from([0xFF, 0xFE]);
131
+ fs.writeFileSync(xmlPath, Buffer.concat([bom, Buffer.from(xml, "utf16le")]));
132
+ execFileSync("schtasks", ["/create", "/tn", tn, "/xml", xmlPath, "/f"], { encoding: "utf-8", windowsHide: true, stdio: "pipe" });
133
+ }
134
+ catch (err) {
135
+ const e = err;
136
+ console.error(`Failed to create daemon task: ${e.stderr || err}`);
137
+ }
138
+ finally {
139
+ try {
140
+ fs.unlinkSync(xmlPath);
141
+ }
142
+ catch { /* ignore */ }
143
+ }
144
+ }
145
+ /** Start the daemon via Task Scheduler (runs outside any session's job object). */
146
+ startDaemonTask() {
147
+ const tn = `\\Palmier\\${DAEMON_TASK_NAME}`;
148
+ try {
149
+ execFileSync("schtasks", ["/run", "/tn", tn], { encoding: "utf-8", windowsHide: true, stdio: "pipe" });
150
+ }
151
+ catch (err) {
152
+ const e = err;
153
+ console.error(`Failed to start daemon via Task Scheduler: ${e.stderr || err}`);
154
+ }
135
155
  console.log("Palmier daemon started.");
136
156
  }
137
157
  installTaskTimer(config, task) {
@@ -39,8 +39,8 @@ function parseResultFrontmatter(raw) {
39
39
  const terminalMsg = [...statusMessages].reverse().find((m) => terminalStates.includes(m.type ?? ""));
40
40
  // If last status is "started", determine if it's a task run or follow-up
41
41
  let runningState;
42
- if (lastStatus?.type === "started") {
43
- runningState = terminalMsg ? "followup" : "started";
42
+ if (lastStatus?.type === "started" || lastStatus?.type === "monitoring") {
43
+ runningState = terminalMsg ? "followup" : (lastStatus?.type ?? "started");
44
44
  }
45
45
  else {
46
46
  runningState = lastStatus?.type;
@@ -29,6 +29,8 @@ export interface SpawnCommandOptions {
29
29
  resolveOnFailure?: boolean;
30
30
  /** If provided, write this string to the process's stdin and then close the pipe. */
31
31
  stdin?: string;
32
+ /** Called on each chunk of output (stdout + stderr combined). */
33
+ onData?: (chunk: string) => void;
32
34
  }
33
35
  /**
34
36
  * Spawn a command with additional arguments.
@@ -57,10 +57,14 @@ export function spawnCommand(command, args, opts) {
57
57
  chunks.push(d);
58
58
  if (opts.echoStdout)
59
59
  process.stdout.write(d);
60
+ if (opts.onData)
61
+ opts.onData(d.toString("utf-8"));
60
62
  });
61
63
  child.stderr.on("data", (d) => {
62
64
  chunks.push(d);
63
65
  process.stderr.write(d);
66
+ if (opts.onData)
67
+ opts.onData(d.toString("utf-8"));
64
68
  });
65
69
  let timer;
66
70
  if (opts.timeout) {
package/dist/task.d.ts CHANGED
@@ -51,6 +51,20 @@ export declare function getRunDir(taskDir: string, runId: string): string;
51
51
  * Append a conversation message to a run's TASKRUN.md file.
52
52
  */
53
53
  export declare function appendRunMessage(taskDir: string, runId: string, msg: ConversationMessage): void;
54
+ /**
55
+ * Begin a streaming assistant message — writes the delimiter only.
56
+ * Returns a writer that appends content chunks and finalizes the message.
57
+ */
58
+ export declare function beginStreamingMessage(taskDir: string, runId: string, time: number): StreamingMessageWriter;
59
+ export declare class StreamingMessageWriter {
60
+ private filePath;
61
+ private delimiter;
62
+ constructor(filePath: string, delimiter: string);
63
+ /** Append a chunk of content to the current message. */
64
+ write(chunk: string): void;
65
+ /** Finalize the message. If attachments are provided, rewrites the delimiter to include them. */
66
+ end(attachments?: string[]): void;
67
+ }
54
68
  /**
55
69
  * Read conversation messages from a run's TASKRUN.md file.
56
70
  */
package/dist/task.js CHANGED
@@ -161,6 +161,37 @@ export function appendRunMessage(taskDir, runId, msg) {
161
161
  const entry = `${delimiter}\n\n${msg.content}\n\n`;
162
162
  fs.appendFileSync(path.join(taskDir, runId, "TASKRUN.md"), entry, "utf-8");
163
163
  }
164
+ /**
165
+ * Begin a streaming assistant message — writes the delimiter only.
166
+ * Returns a writer that appends content chunks and finalizes the message.
167
+ */
168
+ export function beginStreamingMessage(taskDir, runId, time) {
169
+ const filePath = path.join(taskDir, runId, "TASKRUN.md");
170
+ const delimiter = `<!-- palmier:message role="assistant" time="${time}" -->`;
171
+ fs.appendFileSync(filePath, `${delimiter}\n\n`, "utf-8");
172
+ return new StreamingMessageWriter(filePath, delimiter);
173
+ }
174
+ export class StreamingMessageWriter {
175
+ filePath;
176
+ delimiter;
177
+ constructor(filePath, delimiter) {
178
+ this.filePath = filePath;
179
+ this.delimiter = delimiter;
180
+ }
181
+ /** Append a chunk of content to the current message. */
182
+ write(chunk) {
183
+ fs.appendFileSync(this.filePath, chunk, "utf-8");
184
+ }
185
+ /** Finalize the message. If attachments are provided, rewrites the delimiter to include them. */
186
+ end(attachments) {
187
+ fs.appendFileSync(this.filePath, "\n\n", "utf-8");
188
+ if (attachments?.length) {
189
+ const raw = fs.readFileSync(this.filePath, "utf-8");
190
+ const updated = raw.replace(this.delimiter, `${this.delimiter.slice(0, -4)} attachments="${attachments.join(",")}" -->`);
191
+ fs.writeFileSync(this.filePath, updated, "utf-8");
192
+ }
193
+ }
194
+ }
164
195
  /**
165
196
  * Read conversation messages from a run's TASKRUN.md file.
166
197
  */
package/dist/types.d.ts CHANGED
@@ -60,7 +60,7 @@ export interface ConversationMessage {
60
60
  role: "assistant" | "user" | "status";
61
61
  time: number;
62
62
  content: string;
63
- type?: "input" | "permission" | "confirmation" | "started" | "finished" | "failed" | "aborted" | "stopped";
63
+ type?: "input" | "permission" | "confirmation" | "monitoring" | "started" | "finished" | "failed" | "aborted" | "stopped";
64
64
  attachments?: string[];
65
65
  }
66
66
  export interface RpcMessage {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "palmier",
3
- "version": "0.4.9",
3
+ "version": "0.5.0",
4
4
  "description": "Palmier host CLI - provisions, executes tasks, and serves NATS RPC",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Hongxu Cai",
@@ -4,7 +4,7 @@ import * as readline from "readline";
4
4
  import { spawnCommand, spawnStreamingCommand } from "../spawn-command.js";
5
5
  import { loadConfig } from "../config.js";
6
6
  import { connectNats } from "../nats-client.js";
7
- import { parseTaskFile, getTaskDir, writeTaskFile, writeTaskStatus, readTaskStatus, appendHistory, createRunDir, appendRunMessage, readRunMessages, getRunDir } from "../task.js";
7
+ import { parseTaskFile, getTaskDir, writeTaskFile, writeTaskStatus, readTaskStatus, appendHistory, createRunDir, appendRunMessage, readRunMessages, getRunDir, beginStreamingMessage } from "../task.js";
8
8
  import { getAgent } from "../agents/agent.js";
9
9
  import { getPlatform } from "../platform/index.js";
10
10
  import { TASK_SUCCESS_MARKER, TASK_FAILURE_MARKER, TASK_REPORT_PREFIX, TASK_PERMISSION_PREFIX } from "../agents/shared-prompt.js";
@@ -47,6 +47,21 @@ async function invokeAgentWithRetries(
47
47
  ): Promise<InvocationResult> {
48
48
  // eslint-disable-next-line no-constant-condition
49
49
  while (true) {
50
+ // Stream agent output to TASKRUN.md in real-time, throttled to 500ms
51
+ const writer = beginStreamingMessage(ctx.taskDir, ctx.runId, Date.now());
52
+ let lineBuf = "";
53
+ let notifyPending = false;
54
+ let notifyTimer: ReturnType<typeof setTimeout> | undefined;
55
+
56
+ function throttledNotify() {
57
+ if (notifyPending) return;
58
+ notifyPending = true;
59
+ notifyTimer = setTimeout(() => {
60
+ notifyPending = false;
61
+ publishHostEvent(ctx.nc, ctx.config.hostId, ctx.taskId, { event_type: "result-updated", run_id: ctx.runId });
62
+ }, 500);
63
+ }
64
+
50
65
  const { command, args, stdin } = ctx.agent.getTaskRunCommandLine(invokeTask, undefined, ctx.transientPermissions);
51
66
  const result = await spawnCommand(command, args, {
52
67
  cwd: getRunDir(ctx.taskDir, ctx.runId),
@@ -54,19 +69,37 @@ async function invokeAgentWithRetries(
54
69
  echoStdout: true,
55
70
  resolveOnFailure: true,
56
71
  stdin,
72
+ onData: (chunk) => {
73
+ lineBuf += chunk;
74
+ const lines = lineBuf.split("\n");
75
+ lineBuf = lines.pop() ?? "";
76
+ const filtered = lines.filter((l) => !l.startsWith("[PALMIER"));
77
+ if (filtered.length > 0) {
78
+ writer.write(filtered.join("\n") + "\n");
79
+ throttledNotify();
80
+ }
81
+ },
57
82
  });
58
83
 
84
+ if (notifyTimer) clearTimeout(notifyTimer);
85
+
59
86
  const outcome: TaskRunningState = result.exitCode !== 0 ? "failed" : parseTaskOutcome(result.output);
60
87
  const reportFiles = parseReportFiles(result.output);
61
88
  const requiredPermissions = parsePermissions(result.output);
62
89
 
63
- // Append assistant message for this invocation
64
- await appendAndNotify(ctx, {
65
- role: "assistant",
66
- time: Date.now(),
67
- content: stripPalmierMarkers(result.output),
68
- attachments: reportFiles.length > 0 ? reportFiles : undefined,
69
- });
90
+ // Flush remaining buffered content
91
+ if (lineBuf && !lineBuf.startsWith("[PALMIER")) {
92
+ writer.write(lineBuf);
93
+ }
94
+
95
+ // Include permission requests in the assistant message
96
+ if (requiredPermissions.length > 0) {
97
+ const permLines = requiredPermissions.map((p) => `- **${p.name}** ${p.description}`).join("\n");
98
+ writer.write(`\n\n**Permissions requested:**\n${permLines}\n`);
99
+ }
100
+
101
+ writer.end(reportFiles.length > 0 ? reportFiles : undefined);
102
+ await publishHostEvent(ctx.nc, ctx.config.hostId, ctx.taskId, { event_type: "result-updated", run_id: ctx.runId });
70
103
 
71
104
  // Permission handling — agent requested permissions
72
105
  if (requiredPermissions.length > 0) {
@@ -76,7 +109,7 @@ async function invokeAgentWithRetries(
76
109
  await appendAndNotify(ctx, {
77
110
  role: "user",
78
111
  time: Date.now(),
79
- content: "Permissions denied. Task aborted.",
112
+ content: "Denied",
80
113
  type: "permission",
81
114
  });
82
115
  return { outcome: "failed" };
@@ -87,11 +120,10 @@ async function invokeAgentWithRetries(
87
120
  && !ctx.transientPermissions.some((ep) => ep.name === rp.name),
88
121
  );
89
122
 
90
- // Append user message for permission grant
91
123
  await appendAndNotify(ctx, {
92
124
  role: "user",
93
125
  time: Date.now(),
94
- content: `Permissions granted: ${newPerms.map((p) => p.name).join(", ")}`,
126
+ content: response === "granted_all" ? "Granted for all" : "Granted",
95
127
  type: "permission",
96
128
  });
97
129
 
@@ -267,6 +299,9 @@ async function runCommandTriggeredMode(
267
299
  const commandStr = ctx.task.frontmatter.command!;
268
300
  console.log(`[command-triggered] Spawning: ${commandStr}`);
269
301
 
302
+ appendRunMessage(ctx.taskDir, ctx.runId, { role: "status", time: Date.now(), content: "", type: "monitoring" });
303
+ await publishHostEvent(ctx.nc, ctx.config.hostId, ctx.taskId, { event_type: "result-updated", run_id: ctx.runId });
304
+
270
305
  const child = spawnStreamingCommand(commandStr, {
271
306
  cwd: getRunDir(ctx.taskDir, ctx.runId),
272
307
  env: { ...ctx.guiEnv, PALMIER_TASK_ID: ctx.task.frontmatter.id, PALMIER_RUN_DIR: getRunDir(ctx.taskDir, ctx.runId), PALMIER_HTTP_PORT: String(ctx.config.httpPort ?? 7400) },
@@ -95,7 +95,13 @@ export async function serveCommand(): Promise<void> {
95
95
  saveConfig(config);
96
96
  console.log(`Detected agents: ${agents.map((a) => a.key).join(", ") || "none"}`);
97
97
 
98
- const nc = await connectNats(config);
98
+ let nc: NatsConnection | undefined;
99
+ try {
100
+ nc = await connectNats(config);
101
+ console.log("[nats] Connected");
102
+ } catch (err) {
103
+ console.warn(`[nats] Connection failed (server mode unavailable): ${err}`);
104
+ }
99
105
 
100
106
  // Reconcile any tasks stuck from before daemon started
101
107
  await checkStaleTasks(config, nc);
@@ -1,7 +1,6 @@
1
1
  import * as fs from "fs";
2
2
  import * as path from "path";
3
3
  import { execFileSync } from "child_process";
4
- import { spawn as nodeSpawn } from "child_process";
5
4
  import type { PlatformService } from "./platform.js";
6
5
  import type { HostConfig, ParsedTask } from "../types.js";
7
6
  import { CONFIG_DIR, loadConfig } from "../config.js";
@@ -94,13 +93,12 @@ export class WindowsPlatform implements PlatformService {
94
93
  installDaemon(config: HostConfig): void {
95
94
  const script = process.argv[1] || "palmier";
96
95
 
97
- // Write a VBS launcher that starts the daemon with no visible console window.
98
- // VBS doesn't use backslash escaping — only quotes need doubling ("").
99
- const vbs = `CreateObject("WScript.Shell").Run """${process.execPath}"" ""${script}"" serve", 0, False`;
100
- fs.writeFileSync(DAEMON_VBS_FILE, vbs, "utf-8");
101
-
102
- const regValue = `"${process.env.SYSTEMROOT || "C:\\Windows"}\\System32\\wscript.exe" "${DAEMON_VBS_FILE}"`;
96
+ // Create the Task Scheduler entry for the daemon
97
+ this.ensureDaemonTask(script);
103
98
 
99
+ // Registry Run key triggers the Task Scheduler entry on logon,
100
+ // so the daemon always runs outside any session's job object.
101
+ const regValue = `schtasks /run /tn "\\Palmier\\${DAEMON_TASK_NAME}"`;
104
102
  try {
105
103
  execFileSync("reg", [
106
104
  "add", "HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Run",
@@ -113,20 +111,19 @@ export class WindowsPlatform implements PlatformService {
113
111
  }
114
112
 
115
113
  // Start the daemon now
116
- this.spawnDaemon(script);
114
+ this.startDaemonTask();
117
115
 
118
116
  console.log("\nHost initialization complete!");
119
117
  }
120
118
 
121
119
  async restartDaemon(): Promise<void> {
122
- const script = process.argv[1] || "palmier";
123
120
  const oldPid = fs.existsSync(DAEMON_PID_FILE)
124
121
  ? fs.readFileSync(DAEMON_PID_FILE, "utf-8").trim()
125
122
  : null;
126
123
 
127
124
  if (oldPid && oldPid === String(process.pid)) {
128
125
  // We ARE the old daemon (auto-update) — spawn replacement then exit.
129
- this.spawnDaemon(script);
126
+ this.startDaemonTask();
130
127
  process.exit(0);
131
128
  }
132
129
 
@@ -139,23 +136,40 @@ export class WindowsPlatform implements PlatformService {
139
136
  }
140
137
  }
141
138
 
142
- this.spawnDaemon(script);
139
+ this.startDaemonTask();
143
140
  }
144
141
 
145
- private spawnDaemon(script: string): void {
146
- // Write a VBS launcher that starts the daemon with no visible console window.
142
+ /** Create or update the Task Scheduler entry for the daemon. */
143
+ private ensureDaemonTask(script: string): void {
147
144
  const vbs = `CreateObject("WScript.Shell").Run """${process.execPath}"" ""${script}"" serve", 0, False`;
148
145
  fs.writeFileSync(DAEMON_VBS_FILE, vbs, "utf-8");
149
146
 
150
- // Use `cmd /c start` to break out of the SSH session's job object.
151
- // Without this, the daemon is killed when the SSH session disconnects.
152
- const child = nodeSpawn("cmd", ["/c", "start", "/b", "wscript.exe", DAEMON_VBS_FILE], {
153
- detached: true,
154
- stdio: "ignore",
155
- windowsHide: true,
156
- });
157
- child.unref();
158
- // PID file will be written by the serve command itself when it starts.
147
+ const wscript = `${process.env.SYSTEMROOT || "C:\\Windows"}\\System32\\wscript.exe`;
148
+ const tn = `\\Palmier\\${DAEMON_TASK_NAME}`;
149
+ const tr = `"${wscript}" "${DAEMON_VBS_FILE}"`;
150
+ const xml = buildTaskXml(tr, [`<TimeTrigger><StartBoundary>2000-01-01T00:00:00</StartBoundary></TimeTrigger>`]);
151
+ const xmlPath = path.join(CONFIG_DIR, "daemon-task.xml");
152
+ try {
153
+ const bom = Buffer.from([0xFF, 0xFE]);
154
+ fs.writeFileSync(xmlPath, Buffer.concat([bom, Buffer.from(xml, "utf16le")]));
155
+ execFileSync("schtasks", ["/create", "/tn", tn, "/xml", xmlPath, "/f"], { encoding: "utf-8", windowsHide: true, stdio: "pipe" });
156
+ } catch (err: unknown) {
157
+ const e = err as { stderr?: string };
158
+ console.error(`Failed to create daemon task: ${e.stderr || err}`);
159
+ } finally {
160
+ try { fs.unlinkSync(xmlPath); } catch { /* ignore */ }
161
+ }
162
+ }
163
+
164
+ /** Start the daemon via Task Scheduler (runs outside any session's job object). */
165
+ private startDaemonTask(): void {
166
+ const tn = `\\Palmier\\${DAEMON_TASK_NAME}`;
167
+ try {
168
+ execFileSync("schtasks", ["/run", "/tn", tn], { encoding: "utf-8", windowsHide: true, stdio: "pipe" });
169
+ } catch (err: unknown) {
170
+ const e = err as { stderr?: string };
171
+ console.error(`Failed to start daemon via Task Scheduler: ${e.stderr || err}`);
172
+ }
159
173
  console.log("Palmier daemon started.");
160
174
  }
161
175
 
@@ -49,8 +49,8 @@ function parseResultFrontmatter(raw: string): Record<string, unknown> {
49
49
 
50
50
  // If last status is "started", determine if it's a task run or follow-up
51
51
  let runningState: string | undefined;
52
- if (lastStatus?.type === "started") {
53
- runningState = terminalMsg ? "followup" : "started";
52
+ if (lastStatus?.type === "started" || lastStatus?.type === "monitoring") {
53
+ runningState = terminalMsg ? "followup" : (lastStatus?.type ?? "started");
54
54
  } else {
55
55
  runningState = lastStatus?.type;
56
56
  }
@@ -55,6 +55,8 @@ export interface SpawnCommandOptions {
55
55
  resolveOnFailure?: boolean;
56
56
  /** If provided, write this string to the process's stdin and then close the pipe. */
57
57
  stdin?: string;
58
+ /** Called on each chunk of output (stdout + stderr combined). */
59
+ onData?: (chunk: string) => void;
58
60
  }
59
61
 
60
62
  /**
@@ -105,10 +107,12 @@ export function spawnCommand(
105
107
  child.stdout!.on("data", (d: Buffer) => {
106
108
  chunks.push(d);
107
109
  if (opts.echoStdout) process.stdout.write(d);
110
+ if (opts.onData) opts.onData(d.toString("utf-8"));
108
111
  });
109
112
  child.stderr!.on("data", (d: Buffer) => {
110
113
  chunks.push(d);
111
114
  process.stderr.write(d);
115
+ if (opts.onData) opts.onData(d.toString("utf-8"));
112
116
  });
113
117
 
114
118
  let timer: ReturnType<typeof setTimeout> | undefined;
package/src/task.ts CHANGED
@@ -190,6 +190,43 @@ export function appendRunMessage(
190
190
  fs.appendFileSync(path.join(taskDir, runId, "TASKRUN.md"), entry, "utf-8");
191
191
  }
192
192
 
193
+ /**
194
+ * Begin a streaming assistant message — writes the delimiter only.
195
+ * Returns a writer that appends content chunks and finalizes the message.
196
+ */
197
+ export function beginStreamingMessage(
198
+ taskDir: string,
199
+ runId: string,
200
+ time: number,
201
+ ): StreamingMessageWriter {
202
+ const filePath = path.join(taskDir, runId, "TASKRUN.md");
203
+ const delimiter = `<!-- palmier:message role="assistant" time="${time}" -->`;
204
+ fs.appendFileSync(filePath, `${delimiter}\n\n`, "utf-8");
205
+ return new StreamingMessageWriter(filePath, delimiter);
206
+ }
207
+
208
+ export class StreamingMessageWriter {
209
+ private delimiter: string;
210
+ constructor(private filePath: string, delimiter: string) {
211
+ this.delimiter = delimiter;
212
+ }
213
+
214
+ /** Append a chunk of content to the current message. */
215
+ write(chunk: string): void {
216
+ fs.appendFileSync(this.filePath, chunk, "utf-8");
217
+ }
218
+
219
+ /** Finalize the message. If attachments are provided, rewrites the delimiter to include them. */
220
+ end(attachments?: string[]): void {
221
+ fs.appendFileSync(this.filePath, "\n\n", "utf-8");
222
+ if (attachments?.length) {
223
+ const raw = fs.readFileSync(this.filePath, "utf-8");
224
+ const updated = raw.replace(this.delimiter, `${this.delimiter.slice(0, -4)} attachments="${attachments.join(",")}" -->`);
225
+ fs.writeFileSync(this.filePath, updated, "utf-8");
226
+ }
227
+ }
228
+ }
229
+
193
230
  /**
194
231
  * Read conversation messages from a run's TASKRUN.md file.
195
232
  */
package/src/types.ts CHANGED
@@ -71,7 +71,7 @@ export interface ConversationMessage {
71
71
  role: "assistant" | "user" | "status";
72
72
  time: number;
73
73
  content: string;
74
- type?: "input" | "permission" | "confirmation" | "started" | "finished" | "failed" | "aborted" | "stopped";
74
+ type?: "input" | "permission" | "confirmation" | "monitoring" | "started" | "finished" | "failed" | "aborted" | "stopped";
75
75
  attachments?: string[];
76
76
  }
77
77