gitextract_o63q7tbk/ ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── config.yaml │ │ ├── request_new_features.md │ │ └── show_me_the_bug.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── build-package.yaml │ ├── pre-commit.yaml │ └── stale.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── DEVELOPMENT_LOG.md ├── LICENSE ├── README.md ├── README_zh.md ├── app/ │ ├── __init__.py │ ├── agent/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── llm_wrapper.py │ │ ├── manus.py │ │ ├── planning.py │ │ ├── react.py │ │ ├── swe.py │ │ └── toolcall.py │ ├── config.py │ ├── exceptions.py │ ├── flow/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── flow_factory.py │ │ ├── planning.py │ │ └── tracking_support.py │ ├── llm.py │ ├── logger.py │ ├── prompt/ │ │ ├── __init__.py │ │ ├── manus.py │ │ ├── planning.py │ │ ├── swe.py │ │ └── toolcall.py │ ├── schema.py │ ├── tool/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── bash.py │ │ ├── browser_use_tool.py │ │ ├── create_chat_completion.py │ │ ├── file_saver.py │ │ ├── google_search.py │ │ ├── planning.py │ │ ├── python_execute.py │ │ ├── run.py │ │ ├── str_replace_editor.py │ │ ├── terminate.py │ │ └── tool_collection.py │ ├── utils/ │ │ └── log_monitor.py │ └── web/ │ ├── README.md │ ├── __init__.py │ ├── api.py │ ├── app.py │ ├── llm_monitor.py │ ├── log_handler.py │ ├── log_parser.py │ ├── static/ │ │ ├── archive/ │ │ │ ├── apiManager.js │ │ │ ├── chatManager.js │ │ │ ├── fileViewerManager.js │ │ │ ├── final_interface.html │ │ │ ├── index.html │ │ │ ├── logManager.js │ │ │ ├── main.js │ │ │ ├── new_chatManager.js │ │ │ ├── new_fileViewerManager.js │ │ │ ├── new_index.html │ │ │ ├── new_interface_demo.html │ │ │ ├── new_main.js │ │ │ ├── new_style.css │ │ │ ├── new_thinkingManager.js │ │ │ ├── new_websocketManager.js │ │ │ ├── new_workspaceManager.js │ │ │ ├── simple_test.html │ │ │ ├── standalone.html │ │ │ ├── style.css │ │ │ ├── terminalManager.js │ │ │ └── websocketManager.js │ │ ├── connected_chatManager.js │ │ ├── connected_fileViewerManager.js │ │ ├── connected_interface.html │ │ ├── connected_interface.js │ │ ├── connected_thinkingManager.js │ │ ├── connected_websocketManager.js │ │ ├── connected_workspaceManager.js │ │ └── i18n.js │ ├── templates/ │ │ ├── archive/ │ │ │ ├── index.html │ │ │ └── new_index.html │ │ ├── index.html │ │ └── job_detail.html │ └── thinking_tracker.py ├── config/ │ └── config.example.toml ├── examples/ │ ├── japan-travel-plan/ │ │ ├── japan_travel_guide_instructions.txt │ │ ├── japan_travel_handbook.html │ │ ├── japan_travel_handbook_mobile.html │ │ └── japan_travel_handbook_print.html │ └── readme.md ├── main.py ├── pytest.ini ├── requirements.txt ├── run_flow.py ├── setup.py ├── tools/ │ └── debug_log_monitor.py └── web_run.py