* Tool execution context
| 61 | * Tool execution context |
| 62 | */ |
| 63 | interface ToolContext { |
| 64 | sessionId: string; |
| 65 | requestId?: string | number | null; |
| 66 | orchestrator?: unknown; |
| 67 | swarmCoordinator?: unknown; |
| 68 | agentManager?: unknown; |
| 69 | claimsService?: ClaimsService; |
| 70 | metadata?: Record<string, unknown>; |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Tool handler function type |
nothing calls this directly
no outgoing calls
no test coverage detected