Commit 3f6be08
committed
feat(managed-agent): name Anthropic sessions after the origin workflow node
Previously Claude Managed Agent sessions opened untitled, which made
them hard to trace back from the Claude Platform side to the workflow
that created them.
Sessions now open with a human-legible title composed from the Sim
workspace, workflow, and node names:
sim.ai - <workspace name> - <workflow name> - <block name>
Segments whose DB lookup fails (deleted workspace/workflow, unnamed
block) are silently dropped so the session still opens with whatever
context is available. If nothing beyond the "sim.ai" prefix resolves,
we skip the title entirely rather than create a placeholder-titled
session.
Plumbing:
- The generic block handler now also passes `blockId` and `blockName`
on `_context` when it invokes a tool. `WorkflowToolExecutionContext`
gains matching optional fields — opt-in for any tool that wants to
emit externally-visible records tied to their origin node.
- `run_session.server.ts` looks up the workspace/workflow names via
`@sim/db` at execute time (a two-column SELECT per name; wrapped in
a defensive try/catch so a DB blip never blocks session creation).
- `buildSessionCreatePayload` already accepts `title` — no session-
client change needed.1 parent bd7dbda commit 3f6be08
3 files changed
Lines changed: 72 additions & 0 deletions
File tree
- apps/sim
- executor/handlers/generic
- tools
- managed_agent
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
| 73 | + | |
| 74 | + | |
73 | 75 | | |
74 | 76 | | |
75 | 77 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
3 | 5 | | |
4 | 6 | | |
5 | 7 | | |
| 8 | + | |
6 | 9 | | |
7 | 10 | | |
8 | 11 | | |
| |||
133 | 136 | | |
134 | 137 | | |
135 | 138 | | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
136 | 149 | | |
137 | 150 | | |
138 | 151 | | |
139 | 152 | | |
140 | 153 | | |
| 154 | + | |
141 | 155 | | |
142 | 156 | | |
143 | 157 | | |
| |||
478 | 492 | | |
479 | 493 | | |
480 | 494 | | |
| 495 | + | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
| 499 | + | |
| 500 | + | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + | |
| 506 | + | |
| 507 | + | |
| 508 | + | |
| 509 | + | |
| 510 | + | |
| 511 | + | |
| 512 | + | |
| 513 | + | |
| 514 | + | |
| 515 | + | |
| 516 | + | |
| 517 | + | |
| 518 | + | |
| 519 | + | |
| 520 | + | |
| 521 | + | |
| 522 | + | |
| 523 | + | |
| 524 | + | |
| 525 | + | |
| 526 | + | |
| 527 | + | |
| 528 | + | |
| 529 | + | |
| 530 | + | |
| 531 | + | |
| 532 | + | |
| 533 | + | |
| 534 | + | |
| 535 | + | |
| 536 | + | |
| 537 | + | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + | |
| 542 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
51 | 51 | | |
52 | 52 | | |
53 | 53 | | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
54 | 62 | | |
55 | 63 | | |
56 | 64 | | |
| |||
0 commit comments