macroclaw 0.16.0 → 0.17.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.
- package/package.json +1 -1
- package/src/orchestrator.ts +2 -1
package/package.json
CHANGED
package/src/orchestrator.ts
CHANGED
|
@@ -170,9 +170,10 @@ export class Orchestrator {
|
|
|
170
170
|
this.#callOnResponse({ message: `Peeking at <b>${escapeHtml(agent.name)}</b>...` });
|
|
171
171
|
|
|
172
172
|
try {
|
|
173
|
+
const startedAt = agent.query.startedAt.toISOString();
|
|
173
174
|
const query = this.#claude.forkSession(
|
|
174
175
|
sessionId,
|
|
175
|
-
|
|
176
|
+
`This session started at ${startedAt}. Only consider events after that time. Give a brief status update: what has been done so far, what's currently happening, and what's remaining. 2-3 sentences max.`,
|
|
176
177
|
textResultType,
|
|
177
178
|
{ model: "haiku" },
|
|
178
179
|
);
|