@design.estate/dees-catalog 4.5.0 → 4.5.1

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.
@@ -175653,7 +175653,7 @@ var _DeesHarnessMessageList = class _DeesHarnessMessageList extends (_a85 = Dees
175653
175653
  const items = this.messages.map((message2, index3) => {
175654
175654
  const call = message2.toolCall;
175655
175655
  const runningSubagent = Boolean(call) && (call.name === "task" || call.name === "subagent" || call.kind === "subtask") && (call.status === "pending" || call.status === "running");
175656
- const stale = !sessionActive || this.messages.length - 1 - index3 >= 500;
175656
+ const stale = !sessionActive || this.messages.length - 1 - index3 >= 100;
175657
175657
  return {
175658
175658
  kind: "message",
175659
175659
  time: runningSubagent && !stale ? runningSubagentBase + (message2.createdAt || 0) : message2.createdAt || 0,
@@ -199583,7 +199583,7 @@ init_group_runtime();
199583
199583
  // ts_web/00_commitinfo_data.ts
199584
199584
  var commitinfo = {
199585
199585
  name: "@design.estate/dees-catalog",
199586
- version: "4.5.0",
199586
+ version: "4.5.1",
199587
199587
  description: "A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript."
199588
199588
  };
199589
199589
 
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@design.estate/dees-catalog',
6
- version: '4.5.0',
6
+ version: '4.5.1',
7
7
  description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHNfd2ViLzAwX2NvbW1pdGluZm9fZGF0YS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUNILE1BQU0sQ0FBQyxNQUFNLFVBQVUsR0FBRztJQUN4QixJQUFJLEVBQUUsNkJBQTZCO0lBQ25DLE9BQU8sRUFBRSxPQUFPO0lBQ2hCLFdBQVcsRUFBRSxzSkFBc0o7Q0FDcEssQ0FBQSJ9
@@ -269,7 +269,7 @@ let DeesHarnessMessageList = (() => {
269
269
  // pending permission/question cards (those demand action). On completion
270
270
  // a subagent returns to its chronological position in the flow.
271
271
  // Stale ones do not pin: a "running" call is orphaned when the session
272
- // itself is idle (nothing can still be running it), or ancient when 500+
272
+ // itself is idle (nothing can still be running it), or ancient when 100+
273
273
  // messages have passed it by.
274
274
  const runningSubagentBase = Number.MAX_SAFE_INTEGER / 2;
275
275
  const sessionActive = this.status?.type === 'busy';
@@ -278,7 +278,7 @@ let DeesHarnessMessageList = (() => {
278
278
  const runningSubagent = Boolean(call)
279
279
  && (call.name === 'task' || call.name === 'subagent' || call.kind === 'subtask')
280
280
  && (call.status === 'pending' || call.status === 'running');
281
- const stale = !sessionActive || this.messages.length - 1 - index >= 500;
281
+ const stale = !sessionActive || this.messages.length - 1 - index >= 100;
282
282
  return {
283
283
  kind: 'message',
284
284
  time: runningSubagent && !stale
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@design.estate/dees-catalog",
3
- "version": "4.5.0",
3
+ "version": "4.5.1",
4
4
  "private": false,
5
5
  "description": "A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.",
6
6
  "main": "dist_ts_web/index.js",
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@design.estate/dees-catalog',
6
- version: '4.5.0',
6
+ version: '4.5.1',
7
7
  description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
8
8
  }
@@ -185,7 +185,7 @@ export class DeesHarnessMessageList extends DeesElement {
185
185
  // pending permission/question cards (those demand action). On completion
186
186
  // a subagent returns to its chronological position in the flow.
187
187
  // Stale ones do not pin: a "running" call is orphaned when the session
188
- // itself is idle (nothing can still be running it), or ancient when 500+
188
+ // itself is idle (nothing can still be running it), or ancient when 100+
189
189
  // messages have passed it by.
190
190
  const runningSubagentBase = Number.MAX_SAFE_INTEGER / 2;
191
191
  const sessionActive = this.status?.type === 'busy';
@@ -194,7 +194,7 @@ export class DeesHarnessMessageList extends DeesElement {
194
194
  const runningSubagent = Boolean(call)
195
195
  && (call!.name === 'task' || call!.name === 'subagent' || call!.kind === 'subtask')
196
196
  && (call!.status === 'pending' || call!.status === 'running');
197
- const stale = !sessionActive || this.messages.length - 1 - index >= 500;
197
+ const stale = !sessionActive || this.messages.length - 1 - index >= 100;
198
198
  return {
199
199
  kind: 'message' as const,
200
200
  time: runningSubagent && !stale