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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "macroclaw",
3
- "version": "0.16.0",
3
+ "version": "0.17.0",
4
4
  "description": "Telegram-to-Claude-Code bridge",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -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
- "Give a brief status update: what has been done so far, what's currently happening, and what's remaining. 2-3 sentences max.",
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
  );