Versions in this module Expand all Collapse all v1 v1.5.0 Apr 2, 2026 v0 v0.1.0 Apr 6, 2026 Changes in this version + type ContextContinuityProtocol struct + func NewCCP(db *sql.DB) *ContextContinuityProtocol + func (ccp *ContextContinuityProtocol) Cleanup() error + func (ccp *ContextContinuityProtocol) Init() error + func (ccp *ContextContinuityProtocol) Retrieve(project string, memType MemoryType, limit int) ([]MemoryEntry, error) + func (ccp *ContextContinuityProtocol) Store(entry *MemoryEntry) error + type MemoryEntry struct + Content string + CreatedAt time.Time + ExpiresAt time.Time + ID int64 + Project string + Relevance float64 + SessionID string + Type MemoryType + type MemoryType string + const MemoryDecision + const MemoryFinding + const MemoryKnowledge + const MemoryTask + type Scratchpad struct + func NewScratchpad(agentID string) *Scratchpad + func (s *Scratchpad) List() map[string]string + func (s *Scratchpad) Read(key string) string + func (s *Scratchpad) Write(key, value string)