├── .gitignore ├── CLAUDE.md ├── LICENSE ├── README.md ├── docs ├── Lingxi Technical Report 2505.pdf ├── Lingxi v1.5 Technical Report 200725.pdf ├── LingxiBenchmark.png └── lingxiarch.png ├── imgs ├── AddMsg.png ├── GraphSelect.png ├── HILenable.png ├── Lingxi_logo.png ├── graph1.png ├── graph2.png └── graph3.png ├── langgraph.json ├── pyproject.toml └── src ├── agent ├── README.md ├── __init__.py ├── constant.py ├── github_utils.py ├── hierarchy_graph_demo.py ├── llm.py ├── logging_config.py ├── parsers.py ├── prompt │ ├── __init__.py │ ├── context_manager.py │ ├── dev_knowledge_prompts.py │ ├── mam.py │ ├── problem_decoder.py │ ├── problem_solver.py │ ├── reviewer.py │ ├── solution_mapper.py │ └── supervisor.py ├── runtime_config.py ├── state.py ├── supervisor_graph_demo.py ├── swerex_utils.py ├── tool_set │ ├── constant.py │ ├── context_tools.py │ ├── deepwiki_tool.py │ ├── dev_knowledge.py │ ├── edit_history.py │ ├── edit_tool.py │ ├── linter │ │ ├── __init__.py │ │ ├── base.py │ │ ├── impl │ │ │ ├── python.py │ │ │ ├── treesitter.py │ │ │ └── treesitter_compat.py │ │ └── linter.py │ ├── oheditor.py │ ├── sepl_tools.py │ └── utils.py └── utils.py ├── utils ├── __init__.py └── format_utils.py └── workflow └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/README.md -------------------------------------------------------------------------------- /docs/Lingxi Technical Report 2505.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/docs/Lingxi Technical Report 2505.pdf -------------------------------------------------------------------------------- /docs/Lingxi v1.5 Technical Report 200725.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/docs/Lingxi v1.5 Technical Report 200725.pdf -------------------------------------------------------------------------------- /docs/LingxiBenchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/docs/LingxiBenchmark.png -------------------------------------------------------------------------------- /docs/lingxiarch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/docs/lingxiarch.png -------------------------------------------------------------------------------- /imgs/AddMsg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/imgs/AddMsg.png -------------------------------------------------------------------------------- /imgs/GraphSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/imgs/GraphSelect.png -------------------------------------------------------------------------------- /imgs/HILenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/imgs/HILenable.png -------------------------------------------------------------------------------- /imgs/Lingxi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/imgs/Lingxi_logo.png -------------------------------------------------------------------------------- /imgs/graph1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/imgs/graph1.png -------------------------------------------------------------------------------- /imgs/graph2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/imgs/graph2.png -------------------------------------------------------------------------------- /imgs/graph3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/imgs/graph3.png -------------------------------------------------------------------------------- /langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/langgraph.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/README.md -------------------------------------------------------------------------------- /src/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/__init__.py -------------------------------------------------------------------------------- /src/agent/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/constant.py -------------------------------------------------------------------------------- /src/agent/github_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/github_utils.py -------------------------------------------------------------------------------- /src/agent/hierarchy_graph_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/hierarchy_graph_demo.py -------------------------------------------------------------------------------- /src/agent/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/llm.py -------------------------------------------------------------------------------- /src/agent/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/logging_config.py -------------------------------------------------------------------------------- /src/agent/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/parsers.py -------------------------------------------------------------------------------- /src/agent/prompt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/prompt/__init__.py -------------------------------------------------------------------------------- /src/agent/prompt/context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/prompt/context_manager.py -------------------------------------------------------------------------------- /src/agent/prompt/dev_knowledge_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/prompt/dev_knowledge_prompts.py -------------------------------------------------------------------------------- /src/agent/prompt/mam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/prompt/mam.py -------------------------------------------------------------------------------- /src/agent/prompt/problem_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/prompt/problem_decoder.py -------------------------------------------------------------------------------- /src/agent/prompt/problem_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/prompt/problem_solver.py -------------------------------------------------------------------------------- /src/agent/prompt/reviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/prompt/reviewer.py -------------------------------------------------------------------------------- /src/agent/prompt/solution_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/prompt/solution_mapper.py -------------------------------------------------------------------------------- /src/agent/prompt/supervisor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/prompt/supervisor.py -------------------------------------------------------------------------------- /src/agent/runtime_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/runtime_config.py -------------------------------------------------------------------------------- /src/agent/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/state.py -------------------------------------------------------------------------------- /src/agent/supervisor_graph_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/supervisor_graph_demo.py -------------------------------------------------------------------------------- /src/agent/swerex_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/swerex_utils.py -------------------------------------------------------------------------------- /src/agent/tool_set/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/tool_set/constant.py -------------------------------------------------------------------------------- /src/agent/tool_set/context_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/tool_set/context_tools.py -------------------------------------------------------------------------------- /src/agent/tool_set/deepwiki_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/tool_set/deepwiki_tool.py -------------------------------------------------------------------------------- /src/agent/tool_set/dev_knowledge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/tool_set/dev_knowledge.py -------------------------------------------------------------------------------- /src/agent/tool_set/edit_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/tool_set/edit_history.py -------------------------------------------------------------------------------- /src/agent/tool_set/edit_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/tool_set/edit_tool.py -------------------------------------------------------------------------------- /src/agent/tool_set/linter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/tool_set/linter/__init__.py -------------------------------------------------------------------------------- /src/agent/tool_set/linter/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/tool_set/linter/base.py -------------------------------------------------------------------------------- /src/agent/tool_set/linter/impl/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/tool_set/linter/impl/python.py -------------------------------------------------------------------------------- /src/agent/tool_set/linter/impl/treesitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/tool_set/linter/impl/treesitter.py -------------------------------------------------------------------------------- /src/agent/tool_set/linter/impl/treesitter_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/tool_set/linter/impl/treesitter_compat.py -------------------------------------------------------------------------------- /src/agent/tool_set/linter/linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/tool_set/linter/linter.py -------------------------------------------------------------------------------- /src/agent/tool_set/oheditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/tool_set/oheditor.py -------------------------------------------------------------------------------- /src/agent/tool_set/sepl_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/tool_set/sepl_tools.py -------------------------------------------------------------------------------- /src/agent/tool_set/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/tool_set/utils.py -------------------------------------------------------------------------------- /src/agent/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/agent/utils.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # Utils package -------------------------------------------------------------------------------- /src/utils/format_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi-agent/Lingxi/HEAD/src/utils/format_utils.py -------------------------------------------------------------------------------- /src/workflow/__init__.py: -------------------------------------------------------------------------------- 1 | # Workflow package --------------------------------------------------------------------------------