From e9f2d6df0abe2bec620298e2c4ff7d6893763a42 Mon Sep 17 00:00:00 2001 From: Sawyer Cutler Date: Fri, 21 Aug 2026 21:47:54 -0700 Subject: [PATCH] Rename the Due Diligence template's display title MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Owner: research is becoming its own separate template later, so this one's title and promise copy should read as diligence work specifically rather than research in general. The template id (due-diligence) is unchanged — it's already persisted as a workbench's template/id. --- apps/web/src/workbench-templates.ts | 4 ++-- apps/web/test/new-workbench-picker.test.tsx | 4 ++-- packages/workflow-catalog/src/templates.ts | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/web/src/workbench-templates.ts b/apps/web/src/workbench-templates.ts index 1ec38c5a..387c217d 100644 --- a/apps/web/src/workbench-templates.ts +++ b/apps/web/src/workbench-templates.ts @@ -26,9 +26,9 @@ export const WORKBENCH_TEMPLATES: readonly WorkbenchTemplate[] = [ }, { id: "due-diligence", - title: "Research & due diligence", + title: "Due Diligence", promise: - "Scout researches the web and what your team already knows, and saves what it finds so you can pick it up later.", + "Scout checks a company, deal, or vendor against the web and what your team already knows, and saves what it finds so you can pick it up later.", }, { id: "blank", diff --git a/apps/web/test/new-workbench-picker.test.tsx b/apps/web/test/new-workbench-picker.test.tsx index 881e6747..959a420f 100644 --- a/apps/web/test/new-workbench-picker.test.tsx +++ b/apps/web/test/new-workbench-picker.test.tsx @@ -182,11 +182,11 @@ describe("NewWorkbenchPickerRoute", () => { ); expect(radios.length).toBe(3); const dueDiligence = radios.find((row) => - row.textContent?.includes("Research & due diligence"), + row.textContent?.includes("Due Diligence"), ); expect(dueDiligence).not.toBeUndefined(); expect(dueDiligence?.textContent).toContain( - "Scout researches the web and what your team already knows", + "Scout checks a company, deal, or vendor", ); }); diff --git a/packages/workflow-catalog/src/templates.ts b/packages/workflow-catalog/src/templates.ts index d406f494..cc7e4f52 100644 --- a/packages/workflow-catalog/src/templates.ts +++ b/packages/workflow-catalog/src/templates.ts @@ -303,9 +303,9 @@ export const CODE_REVIEW_TEMPLATE: WorkbenchTemplateManifest = { */ export const DUE_DILIGENCE_TEMPLATE: WorkbenchTemplateManifest = { id: "due-diligence", - title: "Research & due diligence", + title: "Due Diligence", promise: - "Scout researches the web and what your team already knows, and saves what it finds so you can pick it up later.", + "Scout checks a company, deal, or vendor against the web and what your team already knows, and saves what it finds so you can pick it up later.", blocks: [], requiredConnections: [], optionalConnections: ["exa"],