# manage_memos 管理备忘录:添加、列出、删除。 备忘录存储在 `.data/memos.json` 文件中。 ## Risk Level High ## Parameters ```json { "type": "object", "properties": { "action": { "type": "string", "description": "操作类型", "enum": ["add", "list", "delete"] }, "content": { "type": "string", "description": "备忘内容(add 时需要)" }, "id": { "type": "integer", "description": "备忘编号(delete 时需要)" } }, "required": ["action"] } ``` ## Execute ```bash scripts/memo.sh ```