Add generic memory gateway v1

This commit is contained in:
2026-05-05 16:18:31 +08:00
parent ba84b1ddb3
commit e65731a273
54 changed files with 4082 additions and 49 deletions

View File

@ -0,0 +1,9 @@
from .base import MemorySkill, SkillResult
class IngestSkill(MemorySkill):
name = "ingest_skill"
async def run(self, payload: dict) -> SkillResult:
return SkillResult(status="ok", output={"normalized": payload})