From 103f388877573671cbb49949b00bbf8e125f6f3e Mon Sep 17 00:00:00 2001 From: "jinli.yl" Date: Wed, 22 Oct 2025 12:20:33 +0800 Subject: [PATCH 1/3] docs(docs): rename todo.md to future_work.md --- docs/{todo.md => future_work.md} | 8 +++++++- mkdocs.yml | 3 ++- 2 files changed, 9 insertions(+), 2 deletions(-) rename docs/{todo.md => future_work.md} (97%) diff --git a/docs/todo.md b/docs/future_work.md similarity index 97% rename from docs/todo.md rename to docs/future_work.md index 8e44c695..22f9530e 100644 --- a/docs/todo.md +++ b/docs/future_work.md @@ -1,17 +1,21 @@ -# TODO +# Future Work ## Planned Features ### 1. Automatic Tool Exploration Mode Add an automatic tool exploration mode that generates tool memory by: - Automatically discovering and testing available tools + - Learning tool usage patterns and best practices + - Building a comprehensive tool memory database from exploration results ### 2. Desktop Pet Personal Assistant Build a desktop pet personal assistant with: - Interactive desktop companion interface + - Personalized assistance capabilities + - Integration with ReMe's memory system ### 3. Task Memory Research Implementation @@ -20,6 +24,8 @@ We are currently working on implementing features based on task memory research ### 4. Mem-Agent Exploration We are exploring mem-agent to implement agentic memory pathways: - Investigating agent-driven memory management + - Developing autonomous memory retrieval and storage mechanisms + - Building more intelligent memory update strategies diff --git a/mkdocs.yml b/mkdocs.yml index 1cf1eb80..b5c725ff 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -45,7 +45,8 @@ nav: - BFCL: cookbook/bfcl/quickstart.md - FrozenLake: cookbook/frozenlake/quickstart.md - - TODO: todo.md + - Future Work: + - future_work.md - Contribution Guide: contribution.md From 327f96f0695083c9843581883086bd738b50edaa Mon Sep 17 00:00:00 2001 From: "jinli.yl" Date: Wed, 22 Oct 2025 12:24:52 +0800 Subject: [PATCH 2/3] docs(tool_memory): remove redundant see also section --- docs/tool_memory/tool_summary_ops.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/tool_memory/tool_summary_ops.md b/docs/tool_memory/tool_summary_ops.md index b02b2d09..fbc71318 100644 --- a/docs/tool_memory/tool_summary_ops.md +++ b/docs/tool_memory/tool_summary_ops.md @@ -76,7 +76,4 @@ The operation returns a response message indicating: Example: `"Successfully processed 5 tool memories: 2 summarized, 3 skipped (already up-to-date)"` -### See Also - -For detailed implementation and examples, see [is_summarized Feature Documentation](is_summarized_feature.md). From 3c64e46917d6a7b67b6b9ff736b7d93511a379a1 Mon Sep 17 00:00:00 2001 From: "jinli.yl" Date: Wed, 22 Oct 2025 12:25:20 +0800 Subject: [PATCH 3/3] chore: update .gitignore to exclude site directory- Add 'site/*' to ignore generated site files --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 34d11145..c534ea07 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,4 @@ cookbook/appworld/exp_result/* file_vector_store/* cookbook/appworld/file_vector_store/* /.venv/ +site/* \ No newline at end of file