@design.estate/dees-catalog 6.8.2 → 6.9.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.
@@ -222,7 +222,7 @@ export interface IHarnessToolCall {
222
222
  isError?: boolean;
223
223
  errorText?: string;
224
224
  mcp?: IHarnessMcpMeta;
225
- /** Session spawned by this call (subagent/task tools); enables drill-in. */
225
+ /** Session spawned by this call (delegate/subagent tools); enables drill-in. */
226
226
  childSessionId?: string;
227
227
  /** Bounded live preview of the spawned session. Consumers own hydration. */
228
228
  subtask?: IHarnessSubtaskStream;
@@ -464,6 +464,12 @@ export interface IHarnessComposerOption {
464
464
  value: string;
465
465
  }
466
466
 
467
+ export interface IHarnessComposerSuggestion {
468
+ label: string;
469
+ value: string;
470
+ description?: string;
471
+ }
472
+
467
473
  export interface IHarnessAccountChangeDetail {
468
474
  account: string;
469
475
  }
@@ -180,7 +180,7 @@ const defaultDescriptors: IHarnessToolDescriptor[] = [
180
180
  },
181
181
  {
182
182
  kind: 'subtask',
183
- names: ['task', 'subagent'],
183
+ names: ['delegate', 'subagent'],
184
184
  label: 'Subagent',
185
185
  icon: 'lucide:Bot',
186
186
  // The child's model belongs in the collapsed header: a subagent often
@@ -202,6 +202,16 @@ const defaultDescriptors: IHarnessToolDescriptor[] = [
202
202
  subtitle: (call) => inputField(call, 'question') || inputField(call, 'prompt') || harnessSummaryLine(call.input),
203
203
  defaultExpanded: true,
204
204
  },
205
+ {
206
+ kind: 'project-task',
207
+ names: ['task'],
208
+ label: 'Project task',
209
+ icon: 'lucide:ListChecks',
210
+ subtitle: (call) => {
211
+ const action = inputField(call, 'action');
212
+ return action ? `Action: ${action}` : harnessSummaryLine(call.input);
213
+ },
214
+ },
205
215
  {
206
216
  kind: 'todo',
207
217
  names: ['todowrite', 'todo_write', 'todoread'],