We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20a073b commit 33af542Copy full SHA for 33af542
2 files changed
CHANGELOG.md
@@ -4,6 +4,10 @@
4
5
## [Unreleased]
6
7
+### Changed
8
+
9
+- **`GatewaySessionRow`** — added `spawnedBy?: string` field; tracks which session spawned a sub-agent session
10
11
### Added
12
13
#### OpenClaw v2026.3.12 Compatibility
src/lib/gateway/types.ts
@@ -94,6 +94,7 @@ export type AgentsListResult = {
94
95
export type GatewaySessionRow = {
96
key: string
97
+ spawnedBy?: string
98
kind: 'direct' | 'group' | 'global' | 'unknown'
99
label?: string
100
displayName?: string
0 commit comments