Skip to content

Commit 3d7c1eb

Browse files
committed
fix(managed-agents): name every integration a template's alsoIntegrations claims
alsoIntegrations is documented as the blocks a template's prompt references, and it drives which catalog pages the template cross-lists on plus the icon cluster on the detail page. Three prompts named a service only implicitly, or not at all: the runaway stopper claimed Slack without mentioning it, the PR reviewer said "pull request" rather than GitHub, and the weekly report said "emails" rather than Gmail. Name the service in each prompt so the field is accurate and the templates surface on the right pages.
1 parent 12dc12b commit 3d7c1eb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

apps/sim/blocks/blocks/managed_agent.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ export const ManagedAgentBlockMeta = {
636636
icon: ClaudeIcon,
637637
title: 'Claude Managed Agents PR reviewer',
638638
prompt:
639-
'Create a workflow that triggers on a new pull request, runs a Claude Managed Agents session over the diff, and posts the findings back as a review comment on the PR.',
639+
'Create a workflow that triggers on a new GitHub pull request, runs a Claude Managed Agents session over the diff, and posts the findings back as a review comment on the PR.',
640640
modules: ['agent', 'workflows'],
641641
category: 'engineering',
642642
tags: ['engineering', 'code-review'],
@@ -665,7 +665,7 @@ export const ManagedAgentBlockMeta = {
665665
icon: ClaudeIcon,
666666
title: 'Claude Managed Agents weekly report',
667667
prompt:
668-
'Build a scheduled workflow that runs a Claude Managed Agents session every Monday to compile last week’s metrics into a spreadsheet, then emails the finished file to the leadership list.',
668+
'Build a scheduled workflow that runs a Claude Managed Agents session every Monday to compile last week’s metrics into a spreadsheet, then sends the finished file to the leadership list over Gmail.',
669669
modules: ['scheduled', 'files', 'agent', 'workflows'],
670670
category: 'operations',
671671
tags: ['reporting', 'automation'],
@@ -704,7 +704,7 @@ export const ManagedAgentBlockMeta = {
704704
icon: ClaudeIcon,
705705
title: 'Claude Managed Agents runaway stopper',
706706
prompt:
707-
'Build a scheduled workflow that checks long-running Claude Managed Agents sessions, interrupts any that have been working past a threshold, and archives the ones that already finished.',
707+
'Build a scheduled workflow that checks long-running Claude Managed Agents sessions, interrupts any that have been working past a threshold, archives the ones that already finished, and posts what it stopped to Slack.',
708708
modules: ['scheduled', 'agent', 'workflows'],
709709
category: 'operations',
710710
tags: ['monitoring', 'automation'],

0 commit comments

Comments
 (0)