(granted bool)
| 415 | } |
| 416 | |
| 417 | func (e *CoreExecutionEngine) ExportSkillRecoverySnapshot() map[string]any { |
| 418 | if e.skillPersistence == nil { |
| 419 | return nil |
| 420 | } |
| 421 | return e.skillPersistence.ExportSnapshot() |
| 422 | } |
| 423 | |
| 424 | func (e *CoreExecutionEngine) ImportSkillRecoverySnapshot(snapshot map[string]any) { |
| 425 | if e.skillPersistence == nil { |
| 426 | return |
| 427 | } |
| 428 | e.skillPersistence.ImportSnapshot(snapshot) |
| 429 | } |
| 430 | |
| 431 | func (e *CoreExecutionEngine) MarkSkillHistoryCompacted(agentScope string) { |
no outgoing calls