MCPcopy Create free account
hub / github.com/GongShichen/LuminaCode / ResolveMCPTrust

Method ResolveMCPTrust

agent/loop.go:417–428  ·  view source on GitHub ↗
(granted bool)

Source from the content-addressed store, hash-verified

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

Calls

no outgoing calls