├── .gitignore ├── LICENSE ├── README.md └── api ├── .env.example ├── app ├── agent │ ├── __init__.py │ ├── base.py │ ├── comman_agent.py │ ├── edit_file_agent.py │ ├── plan_agent.py │ └── str_replace_edit_agent.py ├── common │ ├── __init__.py │ ├── enums.py │ ├── exceptions.py │ └── response.py ├── constants │ ├── __init__.py │ ├── prompts │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── function_calling.cpython-310.pyc │ │ │ └── plan_prompt.cpython-310.pyc │ │ ├── entry.py │ │ ├── function_calling.py │ │ └── plan_prompt.py │ └── tools │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── command_tool.cpython-310.pyc │ │ ├── edit_tool.cpython-310.pyc │ │ ├── file_operations.cpython-310.pyc │ │ ├── manus_tools.cpython-310.pyc │ │ └── str_replace_tool.cpython-310.pyc │ │ ├── command_tool.py │ │ ├── edit_tool.py │ │ ├── file_operations.py │ │ ├── manus_tools.py │ │ ├── search_tool.py │ │ └── str_replace_tool.py ├── controller │ ├── manus.py │ └── runtime.py ├── core │ ├── db.py │ ├── llm.py │ ├── logger.py │ ├── sandbox.py │ └── setting.py ├── exceptions.py ├── middreware │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── exception_handler.cpython-310.pyc │ │ ├── loger_intercept_hander.cpython-310.pyc │ │ └── uuid_log.cpython-310.pyc │ └── exception_handler.py ├── runtime │ └── base.py ├── schema │ ├── __init__.py │ └── llm.py └── service │ └── manus_service.py ├── main.py ├── requirements.lock ├── requirements.txt ├── run.py └── scripts └── manage_deps.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/README.md -------------------------------------------------------------------------------- /api/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/.env.example -------------------------------------------------------------------------------- /api/app/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/agent/__init__.py -------------------------------------------------------------------------------- /api/app/agent/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/agent/base.py -------------------------------------------------------------------------------- /api/app/agent/comman_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/agent/comman_agent.py -------------------------------------------------------------------------------- /api/app/agent/edit_file_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/agent/edit_file_agent.py -------------------------------------------------------------------------------- /api/app/agent/plan_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/agent/plan_agent.py -------------------------------------------------------------------------------- /api/app/agent/str_replace_edit_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/agent/str_replace_edit_agent.py -------------------------------------------------------------------------------- /api/app/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/common/__init__.py -------------------------------------------------------------------------------- /api/app/common/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/common/enums.py -------------------------------------------------------------------------------- /api/app/common/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/common/exceptions.py -------------------------------------------------------------------------------- /api/app/common/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/common/response.py -------------------------------------------------------------------------------- /api/app/constants/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/__init__.py -------------------------------------------------------------------------------- /api/app/constants/prompts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/prompts/__init__.py -------------------------------------------------------------------------------- /api/app/constants/prompts/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/prompts/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/constants/prompts/__pycache__/function_calling.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/prompts/__pycache__/function_calling.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/constants/prompts/__pycache__/plan_prompt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/prompts/__pycache__/plan_prompt.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/constants/prompts/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/prompts/entry.py -------------------------------------------------------------------------------- /api/app/constants/prompts/function_calling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/prompts/function_calling.py -------------------------------------------------------------------------------- /api/app/constants/prompts/plan_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/prompts/plan_prompt.py -------------------------------------------------------------------------------- /api/app/constants/tools/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/tools/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/constants/tools/__pycache__/command_tool.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/tools/__pycache__/command_tool.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/constants/tools/__pycache__/edit_tool.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/tools/__pycache__/edit_tool.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/constants/tools/__pycache__/file_operations.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/tools/__pycache__/file_operations.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/constants/tools/__pycache__/manus_tools.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/tools/__pycache__/manus_tools.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/constants/tools/__pycache__/str_replace_tool.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/tools/__pycache__/str_replace_tool.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/constants/tools/command_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/tools/command_tool.py -------------------------------------------------------------------------------- /api/app/constants/tools/edit_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/tools/edit_tool.py -------------------------------------------------------------------------------- /api/app/constants/tools/file_operations.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/app/constants/tools/manus_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/tools/manus_tools.py -------------------------------------------------------------------------------- /api/app/constants/tools/search_tool.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/app/constants/tools/str_replace_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/constants/tools/str_replace_tool.py -------------------------------------------------------------------------------- /api/app/controller/manus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/controller/manus.py -------------------------------------------------------------------------------- /api/app/controller/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/controller/runtime.py -------------------------------------------------------------------------------- /api/app/core/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/core/db.py -------------------------------------------------------------------------------- /api/app/core/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/core/llm.py -------------------------------------------------------------------------------- /api/app/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/core/logger.py -------------------------------------------------------------------------------- /api/app/core/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/core/sandbox.py -------------------------------------------------------------------------------- /api/app/core/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/core/setting.py -------------------------------------------------------------------------------- /api/app/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/exceptions.py -------------------------------------------------------------------------------- /api/app/middreware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/app/middreware/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/middreware/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/middreware/__pycache__/exception_handler.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/middreware/__pycache__/exception_handler.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/middreware/__pycache__/loger_intercept_hander.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/middreware/__pycache__/loger_intercept_hander.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/middreware/__pycache__/uuid_log.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/middreware/__pycache__/uuid_log.cpython-310.pyc -------------------------------------------------------------------------------- /api/app/middreware/exception_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/middreware/exception_handler.py -------------------------------------------------------------------------------- /api/app/runtime/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/runtime/base.py -------------------------------------------------------------------------------- /api/app/schema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/schema/__init__.py -------------------------------------------------------------------------------- /api/app/schema/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/schema/llm.py -------------------------------------------------------------------------------- /api/app/service/manus_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/app/service/manus_service.py -------------------------------------------------------------------------------- /api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/main.py -------------------------------------------------------------------------------- /api/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/requirements.lock -------------------------------------------------------------------------------- /api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/requirements.txt -------------------------------------------------------------------------------- /api/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/run.py -------------------------------------------------------------------------------- /api/scripts/manage_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shareAI-lab/LocalManus/HEAD/api/scripts/manage_deps.py --------------------------------------------------------------------------------