(agentScope string)
| 374 | if e.skillPersistence != nil { |
| 375 | e.skillPersistence.ClearAll() |
| 376 | } |
| 377 | e.mu.Lock() |
| 378 | defer e.mu.Unlock() |
| 379 | e.aborted = false |
| 380 | e.LastState = nil |
| 381 | e.skillRecoveryReady = map[string]bool{} |
| 382 | e.l3Regions = nil |
| 383 | } |
| 384 | |
| 385 | func (e *CoreExecutionEngine) Shutdown() { |
| 386 | e.disconnectMCP(context.Background()) |
| 387 | if e.TaskRuntime != nil { |
| 388 | e.TaskRuntime.Shutdown() |
| 389 | } |
no outgoing calls
no test coverage detected