├── Agent-KB-GAIA
├── .env_template
├── .gitignore
├── examples
│ ├── agent_from_any_llm.py
│ ├── benchmark.ipynb
│ ├── e2b_example.py
│ ├── gradio_upload.py
│ ├── inspect_multiagent_run.py
│ ├── multiple_tools.py
│ ├── open_deep_research
│ │ ├── agent_kb
│ │ │ ├── agent_kb_retrieval.py
│ │ │ ├── agent_kb_service.py
│ │ │ ├── agent_kb_utils.py
│ │ │ ├── knowledge_base.json
│ │ │ └── prompts.yaml
│ │ ├── rag
│ │ │ ├── __init__.py
│ │ │ ├── embeddings
│ │ │ │ ├── __init__.py
│ │ │ │ ├── base.py
│ │ │ │ ├── jina_embedding.py
│ │ │ │ ├── mistral_embedding.py
│ │ │ │ ├── openai_compatible_embedding.py
│ │ │ │ ├── openai_embedding.py
│ │ │ │ ├── sentence_transformers_embeddings.py
│ │ │ │ └── vlm_embedding.py
│ │ │ ├── loaders
│ │ │ │ ├── __init__.py
│ │ │ │ ├── apify_reader.py
│ │ │ │ ├── base_io.py
│ │ │ │ ├── chunkr_reader.py
│ │ │ │ ├── firecrawl_reader.py
│ │ │ │ ├── jina_url_reader.py
│ │ │ │ └── unstructured_io.py
│ │ │ ├── logger.py
│ │ │ ├── messages
│ │ │ │ ├── __init__.py
│ │ │ │ ├── base.py
│ │ │ │ ├── conversion
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── alpaca.py
│ │ │ │ │ ├── conversation_models.py
│ │ │ │ │ └── sharegpt
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── function_call_formatter.py
│ │ │ │ │ │ └── hermes
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ └── hermes_function_formatter.py
│ │ │ │ └── func_message.py
│ │ │ ├── retrievers
│ │ │ │ ├── __init__.py
│ │ │ │ ├── auto_retriever.py
│ │ │ │ ├── base.py
│ │ │ │ ├── bm25_retriever.py
│ │ │ │ ├── cohere_rerank_retriever.py
│ │ │ │ ├── graph_auto_retriever.py
│ │ │ │ ├── simple_vector_retriever.py
│ │ │ │ └── vector_retriever.py
│ │ │ ├── storages
│ │ │ │ ├── __init__.py
│ │ │ │ ├── graph_storages
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── graph_element.py
│ │ │ │ │ ├── nebula_graph.py
│ │ │ │ │ └── neo4j_graph.py
│ │ │ │ ├── key_value_storages
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── in_memory.py
│ │ │ │ │ ├── json.py
│ │ │ │ │ └── redis.py
│ │ │ │ ├── object_storages
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── amazon_s3.py
│ │ │ │ │ ├── azure_blob.py
│ │ │ │ │ ├── base.py
│ │ │ │ │ └── google_cloud.py
│ │ │ │ └── vectordb_storages
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── milvus.py
│ │ │ │ │ └── qdrant.py
│ │ │ ├── types
│ │ │ │ ├── __init__.py
│ │ │ │ ├── enums.py
│ │ │ │ ├── openai_types.py
│ │ │ │ └── unified_model_type.py
│ │ │ └── utils
│ │ │ │ ├── __init__.py
│ │ │ │ ├── async_func.py
│ │ │ │ ├── commons.py
│ │ │ │ ├── constants.py
│ │ │ │ ├── response_format.py
│ │ │ │ └── token_counting.py
│ │ ├── reflectors
│ │ │ ├── __init__.py
│ │ │ ├── search_prompts.yaml
│ │ │ └── search_reflector.py
│ │ ├── requirements.txt
│ │ ├── run_gaia.py
│ │ ├── scripts
│ │ │ ├── async_web_crawler.py
│ │ │ ├── audio_inspector_tool.py
│ │ │ ├── automodel.py
│ │ │ ├── cookies.py
│ │ │ ├── gaia_scorer.py
│ │ │ ├── mdconvert.py
│ │ │ ├── reformulator.py
│ │ │ ├── run_agents.py
│ │ │ ├── scorer.py
│ │ │ ├── searcher.py
│ │ │ ├── similarity.py
│ │ │ ├── text_inspector_tool.py
│ │ │ └── visual_inspector_tool.py
│ │ └── trajectory_logs
│ │ │ └── example_log.jsonl
│ ├── rag.py
│ ├── rag_using_chromadb.py
│ └── text_to_sql.py
├── pyproject.toml
└── src
│ └── smolagents
│ ├── LICENSE
│ ├── README.md
│ ├── __init__.py
│ ├── _function_type_hints_utils.py
│ ├── agent_types.py
│ ├── agents.py
│ ├── cli.py
│ ├── default_tools.py
│ ├── e2b_executor.py
│ ├── gradio_ui.py
│ ├── local_python_executor.py
│ ├── memory.py
│ ├── models.py
│ ├── monitoring.py
│ ├── prompts
│ ├── code_agent.yaml
│ └── toolcalling_agent.yaml
│ ├── tool_validation.py
│ ├── tools.py
│ ├── utils.py
│ └── vision_web_browser.py
├── Agent-KB-SWE-bench
├── .dockerignore
├── .gitattributes
├── .gitignore
├── .nvmrc
├── .openhands
│ ├── microagents
│ │ ├── glossary.md
│ │ └── repo.md
│ └── setup.sh
├── CITATION.cff
├── MANIFEST.in
├── Makefile
├── containers
│ ├── README.md
│ ├── app
│ │ ├── Dockerfile
│ │ ├── config.sh
│ │ └── entrypoint.sh
│ ├── build.sh
│ ├── dev
│ │ ├── Dockerfile
│ │ ├── README.md
│ │ ├── compose.yml
│ │ └── dev.sh
│ ├── e2b-sandbox
│ │ ├── Dockerfile
│ │ ├── README.md
│ │ └── e2b.toml
│ └── runtime
│ │ ├── README.md
│ │ └── config.sh
├── dev_config
│ └── python
│ │ ├── .pre-commit-config.yaml
│ │ ├── mypy.ini
│ │ └── ruff.toml
├── docker-compose.yml
├── docs
│ ├── .gitignore
│ ├── DOC_STYLE_GUIDE.md
│ ├── README.md
│ ├── babel.config.js
│ ├── docusaurus.config.ts
│ ├── i18n
│ │ ├── fr
│ │ │ ├── code.json
│ │ │ ├── docusaurus-plugin-content-blog
│ │ │ │ └── options.json
│ │ │ ├── docusaurus-plugin-content-docs
│ │ │ │ ├── current.json
│ │ │ │ └── current
│ │ │ │ │ ├── python
│ │ │ │ │ ├── python.md
│ │ │ │ │ └── sidebar.json
│ │ │ │ │ └── usage
│ │ │ │ │ ├── about.md
│ │ │ │ │ ├── agents.md
│ │ │ │ │ ├── architecture.mdx
│ │ │ │ │ ├── architecture
│ │ │ │ │ ├── backend.mdx
│ │ │ │ │ └── runtime.md
│ │ │ │ │ ├── configuration-options.md
│ │ │ │ │ ├── custom_sandbox_guide.md
│ │ │ │ │ ├── feedback.md
│ │ │ │ │ ├── getting-started.mdx
│ │ │ │ │ ├── how-to
│ │ │ │ │ ├── cli-mode.md
│ │ │ │ │ ├── custom-sandbox-guide.md
│ │ │ │ │ ├── debugging.md
│ │ │ │ │ ├── evaluation-harness.md
│ │ │ │ │ ├── github-action.md
│ │ │ │ │ ├── gui-mode.md
│ │ │ │ │ ├── headless-mode.md
│ │ │ │ │ └── persist-session-data.md
│ │ │ │ │ ├── installation.mdx
│ │ │ │ │ ├── intro.mdx
│ │ │ │ │ ├── llms
│ │ │ │ │ ├── azure-llms.md
│ │ │ │ │ ├── azureLLMs.md
│ │ │ │ │ ├── custom-llm-configs.md
│ │ │ │ │ ├── google-llms.md
│ │ │ │ │ ├── googleLLMs.md
│ │ │ │ │ ├── groq.md
│ │ │ │ │ ├── litellm-proxy.md
│ │ │ │ │ ├── llms.md
│ │ │ │ │ ├── local-llms.md
│ │ │ │ │ ├── localLLMs.md
│ │ │ │ │ ├── openai-llms.md
│ │ │ │ │ └── openrouter.md
│ │ │ │ │ ├── prompting-best-practices.md
│ │ │ │ │ ├── prompting
│ │ │ │ │ ├── customization.md
│ │ │ │ │ ├── microagents.md
│ │ │ │ │ └── prompting-best-practices.md
│ │ │ │ │ ├── runtimes.md
│ │ │ │ │ ├── troubleshooting
│ │ │ │ │ └── troubleshooting.md
│ │ │ │ │ └── upgrade-guide.md
│ │ │ └── docusaurus-theme-classic
│ │ │ │ └── navbar.json
│ │ ├── ja
│ │ │ ├── code.json
│ │ │ ├── docusaurus-plugin-content-blog
│ │ │ │ └── options.json
│ │ │ ├── docusaurus-plugin-content-docs
│ │ │ │ ├── current.json
│ │ │ │ └── current
│ │ │ │ │ ├── python
│ │ │ │ │ ├── python.md
│ │ │ │ │ └── sidebar.json
│ │ │ │ │ └── usage
│ │ │ │ │ ├── about.md
│ │ │ │ │ ├── agents.md
│ │ │ │ │ ├── architecture.mdx
│ │ │ │ │ ├── architecture
│ │ │ │ │ ├── backend.mdx
│ │ │ │ │ └── runtime.md
│ │ │ │ │ ├── configuration-options.md
│ │ │ │ │ ├── custom_sandbox_guide.md
│ │ │ │ │ ├── feedback.md
│ │ │ │ │ ├── getting-started.mdx
│ │ │ │ │ ├── how-to
│ │ │ │ │ ├── cli-mode.md
│ │ │ │ │ ├── custom-sandbox-guide.md
│ │ │ │ │ ├── debugging.md
│ │ │ │ │ ├── evaluation-harness.md
│ │ │ │ │ ├── github-action.md
│ │ │ │ │ ├── gui-mode.md
│ │ │ │ │ ├── headless-mode.md
│ │ │ │ │ └── persist-session-data.md
│ │ │ │ │ ├── installation.mdx
│ │ │ │ │ ├── intro.mdx
│ │ │ │ │ ├── key-features.md
│ │ │ │ │ ├── llms.md
│ │ │ │ │ ├── llms
│ │ │ │ │ ├── azure-llms.md
│ │ │ │ │ ├── azureLLMs.md
│ │ │ │ │ ├── custom-llm-configs.md
│ │ │ │ │ ├── google-llms.md
│ │ │ │ │ ├── googleLLMs.md
│ │ │ │ │ ├── groq.md
│ │ │ │ │ ├── litellm-proxy.md
│ │ │ │ │ ├── llms.md
│ │ │ │ │ ├── local-llms.md
│ │ │ │ │ ├── localLLMs.md
│ │ │ │ │ ├── openai-llms.md
│ │ │ │ │ └── openrouter.md
│ │ │ │ │ ├── prompting-best-practices.md
│ │ │ │ │ ├── prompting
│ │ │ │ │ ├── customization.md
│ │ │ │ │ ├── microagents-overview.md
│ │ │ │ │ ├── microagents-public.md
│ │ │ │ │ ├── microagents-repo.md
│ │ │ │ │ ├── microagents.md
│ │ │ │ │ └── prompting-best-practices.md
│ │ │ │ │ ├── runtimes-index.md
│ │ │ │ │ ├── runtimes.md
│ │ │ │ │ ├── runtimes
│ │ │ │ │ ├── daytona.md
│ │ │ │ │ ├── docker.md
│ │ │ │ │ ├── local.md
│ │ │ │ │ ├── modal.md
│ │ │ │ │ └── remote.md
│ │ │ │ │ ├── troubleshooting
│ │ │ │ │ └── troubleshooting.md
│ │ │ │ │ └── upgrade-guide.md
│ │ │ └── docusaurus-theme-classic
│ │ │ │ └── navbar.json
│ │ ├── pt-BR
│ │ │ ├── code.json
│ │ │ ├── docusaurus-plugin-content-blog
│ │ │ │ └── options.json
│ │ │ └── docusaurus-plugin-content-docs
│ │ │ │ ├── current.json
│ │ │ │ └── current
│ │ │ │ ├── python
│ │ │ │ ├── python.md
│ │ │ │ └── sidebar.json
│ │ │ │ └── usage
│ │ │ │ ├── about.md
│ │ │ │ ├── agents.md
│ │ │ │ ├── architecture
│ │ │ │ ├── backend.mdx
│ │ │ │ └── runtime.md
│ │ │ │ ├── cloud
│ │ │ │ ├── cloud-github-resolver.md
│ │ │ │ └── openhands-cloud.md
│ │ │ │ ├── configuration-options.md
│ │ │ │ ├── feedback.md
│ │ │ │ ├── getting-started.mdx
│ │ │ │ ├── how-to
│ │ │ │ ├── cli-mode.md
│ │ │ │ ├── custom-sandbox-guide.md
│ │ │ │ ├── debugging.md
│ │ │ │ ├── development-overview.md
│ │ │ │ ├── evaluation-harness.md
│ │ │ │ ├── github-action.md
│ │ │ │ ├── gui-mode.md
│ │ │ │ └── headless-mode.md
│ │ │ │ ├── installation.mdx
│ │ │ │ ├── llms
│ │ │ │ ├── azure-llms.md
│ │ │ │ ├── custom-llm-configs.md
│ │ │ │ ├── google-llms.md
│ │ │ │ ├── groq.md
│ │ │ │ ├── litellm-proxy.md
│ │ │ │ ├── llms.md
│ │ │ │ ├── local-llms.md
│ │ │ │ ├── openai-llms.md
│ │ │ │ └── openrouter.md
│ │ │ │ ├── prompting
│ │ │ │ ├── microagents-overview.md
│ │ │ │ ├── microagents-public.md
│ │ │ │ ├── microagents-repo.md
│ │ │ │ └── prompting-best-practices.md
│ │ │ │ ├── runtimes.md
│ │ │ │ └── troubleshooting
│ │ │ │ └── troubleshooting.md
│ │ └── zh-Hans
│ │ │ ├── code.json
│ │ │ ├── docusaurus-plugin-content-blog
│ │ │ └── options.json
│ │ │ ├── docusaurus-plugin-content-docs
│ │ │ ├── current.json
│ │ │ └── current
│ │ │ │ ├── python
│ │ │ │ ├── python.md
│ │ │ │ └── sidebar.json
│ │ │ │ └── usage
│ │ │ │ ├── about.md
│ │ │ │ ├── agents.md
│ │ │ │ ├── architecture.mdx
│ │ │ │ ├── architecture
│ │ │ │ ├── backend.mdx
│ │ │ │ └── runtime.md
│ │ │ │ ├── configuration-options.md
│ │ │ │ ├── custom_sandbox_guide.md
│ │ │ │ ├── feedback.md
│ │ │ │ ├── getting-started.mdx
│ │ │ │ ├── how-to
│ │ │ │ ├── cli-mode.md
│ │ │ │ ├── custom-sandbox-guide.md
│ │ │ │ ├── debugging.md
│ │ │ │ ├── evaluation-harness.md
│ │ │ │ ├── github-action.md
│ │ │ │ ├── gui-mode.md
│ │ │ │ ├── headless-mode.md
│ │ │ │ └── persist-session-data.md
│ │ │ │ ├── installation.mdx
│ │ │ │ ├── intro.mdx
│ │ │ │ ├── llms
│ │ │ │ ├── azure-llms.md
│ │ │ │ ├── azureLLMs.md
│ │ │ │ ├── google-llms.md
│ │ │ │ ├── googleLLMs.md
│ │ │ │ ├── groq.md
│ │ │ │ ├── litellm-proxy.md
│ │ │ │ ├── llms.md
│ │ │ │ ├── local-llms.md
│ │ │ │ ├── localLLMs.md
│ │ │ │ ├── openai-llms.md
│ │ │ │ └── openrouter.md
│ │ │ │ ├── prompting-best-practices.md
│ │ │ │ ├── prompting
│ │ │ │ ├── customization.md
│ │ │ │ ├── microagents.md
│ │ │ │ └── prompting-best-practices.md
│ │ │ │ ├── runtimes.md
│ │ │ │ ├── troubleshooting
│ │ │ │ └── troubleshooting.md
│ │ │ │ └── upgrade-guide.md
│ │ │ └── docusaurus-theme-classic
│ │ │ └── navbar.json
│ ├── modules
│ │ ├── python
│ │ │ ├── python.md
│ │ │ └── sidebar.json
│ │ └── usage
│ │ │ ├── about.md
│ │ │ ├── agents.md
│ │ │ ├── architecture
│ │ │ ├── backend.mdx
│ │ │ └── runtime.md
│ │ │ ├── cloud
│ │ │ ├── cloud-github-resolver.md
│ │ │ └── openhands-cloud.md
│ │ │ ├── configuration-options.md
│ │ │ ├── customization
│ │ │ └── repository.md
│ │ │ ├── feedback.md
│ │ │ ├── getting-started.mdx
│ │ │ ├── how-to
│ │ │ ├── cli-mode.md
│ │ │ ├── custom-sandbox-guide.md
│ │ │ ├── debugging.md
│ │ │ ├── development-overview.md
│ │ │ ├── evaluation-harness.md
│ │ │ ├── github-action.md
│ │ │ ├── gui-mode.md
│ │ │ └── headless-mode.md
│ │ │ ├── installation.mdx
│ │ │ ├── key-features.md
│ │ │ ├── llms
│ │ │ ├── azure-llms.md
│ │ │ ├── custom-llm-configs.md
│ │ │ ├── google-llms.md
│ │ │ ├── groq.md
│ │ │ ├── litellm-proxy.md
│ │ │ ├── llms.md
│ │ │ ├── local-llms.md
│ │ │ ├── openai-llms.md
│ │ │ └── openrouter.md
│ │ │ ├── prompting
│ │ │ ├── microagents-overview.md
│ │ │ ├── microagents-public.md
│ │ │ ├── microagents-repo.md
│ │ │ ├── microagents-syntax.md
│ │ │ └── prompting-best-practices.md
│ │ │ ├── runtimes-index.md
│ │ │ ├── runtimes.md
│ │ │ ├── runtimes
│ │ │ ├── daytona.md
│ │ │ ├── docker.md
│ │ │ ├── local.md
│ │ │ ├── modal.md
│ │ │ └── remote.md
│ │ │ └── troubleshooting
│ │ │ └── troubleshooting.md
│ ├── package-lock.json
│ ├── package.json
│ ├── plugins
│ │ └── tailwind-config.cjs
│ ├── sidebars.ts
│ ├── src
│ │ ├── components
│ │ │ ├── CustomFooter.tsx
│ │ │ ├── Demo
│ │ │ │ ├── Demo.tsx
│ │ │ │ └── index.module.css
│ │ │ └── HomepageHeader
│ │ │ │ └── HomepageHeader.tsx
│ │ ├── css
│ │ │ ├── custom.css
│ │ │ ├── footer.css
│ │ │ └── homepageHeader.css
│ │ ├── pages
│ │ │ ├── _footer.tsx
│ │ │ └── index.tsx
│ │ └── theme
│ │ │ └── Layout
│ │ │ └── index.tsx
│ ├── static
│ │ ├── .nojekyll
│ │ └── img
│ │ │ ├── backend_architecture.png
│ │ │ ├── backend_architecture.puml
│ │ │ ├── backend_architecture.svg
│ │ │ ├── logo-square.png
│ │ │ ├── logo.png
│ │ │ ├── results.png
│ │ │ ├── screenshot.png
│ │ │ ├── system_architecture.png
│ │ │ ├── system_architecture.puml
│ │ │ ├── system_architecture.svg
│ │ │ ├── system_architecture_overview.png
│ │ │ └── teaser.mp4
│ ├── translation_cache.json
│ ├── translation_updater.py
│ ├── tsconfig.json
│ └── yarn.lock
├── evaluation
│ ├── README.md
│ ├── __init__.py
│ ├── benchmarks
│ │ ├── EDA
│ │ │ ├── README.md
│ │ │ ├── game.py
│ │ │ ├── run_infer.py
│ │ │ └── scripts
│ │ │ │ └── run_infer.sh
│ │ ├── agent_bench
│ │ │ ├── README.md
│ │ │ ├── __init__.py
│ │ │ ├── helper.py
│ │ │ ├── run_infer.py
│ │ │ └── scripts
│ │ │ │ ├── run_infer.sh
│ │ │ │ └── summarise_results.py
│ │ ├── aider_bench
│ │ │ ├── README.md
│ │ │ ├── create_dataset.py
│ │ │ ├── helper.py
│ │ │ ├── run_infer.py
│ │ │ └── scripts
│ │ │ │ ├── run_infer.sh
│ │ │ │ └── summarize_results.py
│ │ ├── biocoder
│ │ │ ├── README.md
│ │ │ ├── run_infer.py
│ │ │ ├── scripts
│ │ │ │ ├── run_infer.sh
│ │ │ │ └── setup
│ │ │ │ │ ├── copy_changed_code.py
│ │ │ │ │ └── remove_code.py
│ │ │ └── utils.py
│ │ ├── bird
│ │ │ ├── README.md
│ │ │ ├── __init__.py
│ │ │ ├── run_infer.py
│ │ │ └── scripts
│ │ │ │ └── run_infer.sh
│ │ ├── browsing_delegation
│ │ │ ├── README.md
│ │ │ ├── run_infer.py
│ │ │ └── scripts
│ │ │ │ └── run_infer.sh
│ │ ├── commit0
│ │ │ ├── README.md
│ │ │ ├── run_infer.py
│ │ │ └── scripts
│ │ │ │ └── run_infer.sh
│ │ ├── discoverybench
│ │ │ ├── README.md
│ │ │ ├── eval_utils
│ │ │ │ ├── README.md
│ │ │ │ ├── __init__.py
│ │ │ │ ├── eval_w_subhypo_gen.py
│ │ │ │ ├── lm_utils.py
│ │ │ │ ├── openai_helpers.py
│ │ │ │ ├── openai_semantic_gen_prompts.py
│ │ │ │ └── response_parser.py
│ │ │ ├── run_infer.py
│ │ │ └── scripts
│ │ │ │ └── run_infer.sh
│ │ ├── gaia
│ │ │ ├── README.md
│ │ │ ├── data
│ │ │ │ ├── smolagents_output
│ │ │ │ │ └── zhdq-o1-0324-rollout-3-search_budget-30BON-wise-all.jsonl
│ │ │ │ ├── test_metadata.jsonl
│ │ │ │ └── validation_metadata.jsonl
│ │ │ ├── get_score.py
│ │ │ ├── run_infer.py
│ │ │ ├── scorer.py
│ │ │ ├── scripts
│ │ │ │ └── run_infer.sh
│ │ │ └── tmp.ipynb
│ │ ├── gorilla
│ │ │ ├── README.md
│ │ │ ├── ast_eval_hf.py
│ │ │ ├── ast_eval_tf.py
│ │ │ ├── ast_eval_th.py
│ │ │ ├── run_infer.py
│ │ │ ├── scripts
│ │ │ │ └── run_infer.sh
│ │ │ └── utils.py
│ │ ├── gpqa
│ │ │ ├── README.md
│ │ │ ├── __init__.py
│ │ │ ├── run_infer.py
│ │ │ └── scripts
│ │ │ │ └── run_infer.sh
│ │ ├── humanevalfix
│ │ │ ├── README.md
│ │ │ ├── __init__.py
│ │ │ ├── run_infer.py
│ │ │ └── scripts
│ │ │ │ └── run_infer.sh
│ │ ├── logic_reasoning
│ │ │ ├── .cache_program
│ │ │ │ ├── facts.kfb
│ │ │ │ └── rules.krb
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ ├── __init__.py
│ │ │ ├── instruction.txt
│ │ │ ├── logic_inference.py
│ │ │ ├── run_infer.py
│ │ │ └── scripts
│ │ │ │ └── run_infer.sh
│ │ ├── miniwob
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ ├── get_avg_reward.py
│ │ │ ├── run_infer.py
│ │ │ └── scripts
│ │ │ │ └── run_infer.sh
│ │ ├── mint
│ │ │ ├── .gitignore
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ ├── config_variables.py
│ │ │ ├── datatypes.py
│ │ │ ├── env.py
│ │ │ ├── prompts
│ │ │ │ ├── __init__.py
│ │ │ │ └── template_with_tool.txt
│ │ │ ├── requirements.txt
│ │ │ ├── run_infer.py
│ │ │ ├── scripts
│ │ │ │ └── run_infer.sh
│ │ │ ├── tasks
│ │ │ │ ├── __init__.py
│ │ │ │ ├── base.py
│ │ │ │ ├── codegen.py
│ │ │ │ ├── in_context_examples
│ │ │ │ │ ├── humaneval
│ │ │ │ │ │ └── with_tool.txt
│ │ │ │ │ ├── mbpp
│ │ │ │ │ │ └── with_tool.txt
│ │ │ │ │ └── reasoning
│ │ │ │ │ │ └── with_tool.txt
│ │ │ │ └── reasoning.py
│ │ │ └── utils.py
│ │ ├── ml_bench
│ │ │ ├── README.md
│ │ │ ├── __init__.py
│ │ │ ├── run_analysis.py
│ │ │ ├── run_infer.py
│ │ │ └── scripts
│ │ │ │ ├── cleanup.sh
│ │ │ │ ├── run_analysis.sh
│ │ │ │ ├── run_infer.sh
│ │ │ │ └── summarise_results.py
│ │ ├── scienceagentbench
│ │ │ ├── Dockerfile
│ │ │ ├── Dockerfile.evaluator
│ │ │ ├── README.md
│ │ │ ├── post_proc.py
│ │ │ ├── run_infer.py
│ │ │ └── scripts
│ │ │ │ └── run_infer.sh
│ │ ├── swe_bench.zip
│ │ ├── swe_bench
│ │ │ ├── README.md
│ │ │ ├── SWE-Gym.md
│ │ │ ├── __init__.py
│ │ │ ├── cp_testbed_files.py
│ │ │ ├── eval_infer.py
│ │ │ ├── examples
│ │ │ │ ├── README.md
│ │ │ │ ├── report.json
│ │ │ │ └── run_id.txt
│ │ │ ├── resource
│ │ │ │ ├── SWE-Gym__SWE-Gym-train.json
│ │ │ │ └── mapping.py
│ │ │ ├── run_infer.py
│ │ │ ├── run_infer_agentless.py
│ │ │ ├── run_infer_agentless_all_bench_hints.py
│ │ │ ├── run_infer_agentless_repo_2nd.py
│ │ │ ├── run_infer_finegrained_hints.py
│ │ │ ├── run_infer_hints_agentless.py
│ │ │ ├── run_infer_hints_agentless_all_bench_hints.py
│ │ │ ├── run_infer_hints_agentless_repo.py
│ │ │ ├── run_infer_hints_agentless_repo_2nd.py
│ │ │ ├── run_infer_plain.py
│ │ │ ├── run_infer_two_round.py
│ │ │ ├── scripts
│ │ │ │ ├── docker
│ │ │ │ │ ├── all-swebench-full-instance-images.txt
│ │ │ │ │ ├── all-swebench-lite-instance-images.txt
│ │ │ │ │ ├── all-swebench-verified-instance-images.txt
│ │ │ │ │ ├── get_docker_image_names.py
│ │ │ │ │ ├── pull_all_eval_docker.sh
│ │ │ │ │ ├── push_docker_instance_images.py
│ │ │ │ │ └── push_eval_docker.sh
│ │ │ │ ├── eval
│ │ │ │ │ ├── combine_final_completions.py
│ │ │ │ │ ├── compare_outputs.py
│ │ │ │ │ ├── convert_oh_folder_to_swebench_submission.sh
│ │ │ │ │ ├── convert_oh_output_to_md.py
│ │ │ │ │ ├── convert_oh_output_to_swe_json.py
│ │ │ │ │ ├── download_gold_patch.py
│ │ │ │ │ ├── summarize_outputs.py
│ │ │ │ │ ├── update_output_with_eval.py
│ │ │ │ │ └── verify_costs.py
│ │ │ │ ├── eval_infer.sh
│ │ │ │ ├── eval_infer_remote.sh
│ │ │ │ ├── rollout_swegym.sh
│ │ │ │ ├── run_infer.sh
│ │ │ │ ├── run_infer_agentless.sh
│ │ │ │ ├── run_infer_agentless_all_bench_hints.sh
│ │ │ │ ├── run_infer_agentless_repo_2nd.sh
│ │ │ │ ├── run_infer_hints_agentless.sh
│ │ │ │ ├── run_infer_hints_agentless_all_bench_hints.sh
│ │ │ │ ├── run_infer_hints_agentless_repo.sh
│ │ │ │ ├── run_infer_hints_agentless_repo_2nd.sh
│ │ │ │ ├── run_infer_plain.sh
│ │ │ │ ├── setup
│ │ │ │ │ ├── compare_patch_filename.py
│ │ │ │ │ ├── instance_swe_entry.sh
│ │ │ │ │ ├── prepare_swe_utils.sh
│ │ │ │ │ └── swe_entry.sh
│ │ │ │ └── swegym
│ │ │ │ │ └── convert_data.ipynb
│ │ │ ├── split
│ │ │ │ └── swegym_verified_instances.json
│ │ │ ├── testbed.zip
│ │ │ └── testbed
│ │ │ │ ├── astropy__astropy-14365
│ │ │ │ ├── prompt.txt
│ │ │ │ ├── report.json
│ │ │ │ └── test_qdp.py
│ │ │ │ ├── astropy__astropy-14995
│ │ │ │ ├── report.json
│ │ │ │ └── test_ndarithmetic.py
│ │ │ │ ├── pallets__flask-4045
│ │ │ │ ├── report.json
│ │ │ │ ├── test_basic.py
│ │ │ │ └── test_blueprints.py
│ │ │ │ ├── pallets__flask-5063
│ │ │ │ ├── report.json
│ │ │ │ └── test_cli.py
│ │ │ │ ├── psf__requests-2674
│ │ │ │ ├── report.json
│ │ │ │ └── test_requests.py
│ │ │ │ ├── pydata__xarray-4248
│ │ │ │ ├── report.json
│ │ │ │ ├── test_formatting.py
│ │ │ │ └── tests
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── data
│ │ │ │ │ ├── bears.nc
│ │ │ │ │ ├── example.grib
│ │ │ │ │ ├── example.ict
│ │ │ │ │ ├── example.uamiv
│ │ │ │ │ ├── example_1.nc
│ │ │ │ │ └── example_1.nc.gz
│ │ │ │ │ ├── test_accessor_dt.py
│ │ │ │ │ ├── test_accessor_str.py
│ │ │ │ │ ├── test_backends.py
│ │ │ │ │ ├── test_backends_api.py
│ │ │ │ │ ├── test_backends_common.py
│ │ │ │ │ ├── test_backends_file_manager.py
│ │ │ │ │ ├── test_backends_locks.py
│ │ │ │ │ ├── test_backends_lru_cache.py
│ │ │ │ │ ├── test_cftime_offsets.py
│ │ │ │ │ ├── test_cftimeindex.py
│ │ │ │ │ ├── test_cftimeindex_resample.py
│ │ │ │ │ ├── test_coding.py
│ │ │ │ │ ├── test_coding_strings.py
│ │ │ │ │ ├── test_coding_times.py
│ │ │ │ │ ├── test_combine.py
│ │ │ │ │ ├── test_computation.py
│ │ │ │ │ ├── test_concat.py
│ │ │ │ │ ├── test_conventions.py
│ │ │ │ │ ├── test_cupy.py
│ │ │ │ │ ├── test_dask.py
│ │ │ │ │ ├── test_dataarray.py
│ │ │ │ │ ├── test_dataset.py
│ │ │ │ │ ├── test_distributed.py
│ │ │ │ │ ├── test_dtypes.py
│ │ │ │ │ ├── test_duck_array_ops.py
│ │ │ │ │ ├── test_extensions.py
│ │ │ │ │ ├── test_formatting.py
│ │ │ │ │ ├── test_formatting_html.py
│ │ │ │ │ ├── test_groupby.py
│ │ │ │ │ ├── test_indexing.py
│ │ │ │ │ ├── test_interp.py
│ │ │ │ │ ├── test_merge.py
│ │ │ │ │ ├── test_missing.py
│ │ │ │ │ ├── test_nputils.py
│ │ │ │ │ ├── test_options.py
│ │ │ │ │ ├── test_plot.py
│ │ │ │ │ ├── test_print_versions.py
│ │ │ │ │ ├── test_sparse.py
│ │ │ │ │ ├── test_testing.py
│ │ │ │ │ ├── test_tutorial.py
│ │ │ │ │ ├── test_ufuncs.py
│ │ │ │ │ ├── test_units.py
│ │ │ │ │ ├── test_utils.py
│ │ │ │ │ ├── test_variable.py
│ │ │ │ │ └── test_weighted.py
│ │ │ │ ├── pytest-dev__pytest-7373
│ │ │ │ ├── report.json
│ │ │ │ └── test_mark.py
│ │ │ │ └── scikit-learn__scikit-learn-10949
│ │ │ │ ├── report.json
│ │ │ │ └── test_validation.py
│ │ ├── testgeneval
│ │ │ ├── NOTES.md
│ │ │ ├── README.md
│ │ │ ├── __init__.py
│ │ │ ├── compute_readability.py
│ │ │ ├── constants.py
│ │ │ ├── eval_infer.py
│ │ │ ├── log_parsers.py
│ │ │ ├── metrics.py
│ │ │ ├── prompt.py
│ │ │ ├── pygments_utils.py
│ │ │ ├── report_utils.py
│ │ │ ├── run_infer.py
│ │ │ ├── scripts
│ │ │ │ ├── docker
│ │ │ │ │ ├── add_testing_dependencies.py
│ │ │ │ │ ├── all-swebench-full-instance-images.txt
│ │ │ │ │ ├── all-swebench-lite-instance-images.txt
│ │ │ │ │ ├── compare_txt_files.py
│ │ │ │ │ ├── delete_all_images.sh
│ │ │ │ │ └── hf_to_image_list.py
│ │ │ │ ├── eval
│ │ │ │ │ ├── build_outputs_ablation.py
│ │ │ │ │ ├── compare_outputs.py
│ │ │ │ │ ├── convert_oh_folder_to_swebench_submission.sh
│ │ │ │ │ ├── convert_oh_output_to_md.py
│ │ │ │ │ ├── convert_oh_output_to_swe_json.py
│ │ │ │ │ ├── download_gold_test_suites.py
│ │ │ │ │ └── summarize_outputs.py
│ │ │ │ ├── eval_infer.sh
│ │ │ │ ├── run_infer.sh
│ │ │ │ └── setup
│ │ │ │ │ ├── instance_swe_entry.sh
│ │ │ │ │ ├── prepare_swe_utils.sh
│ │ │ │ │ └── swe_entry.sh
│ │ │ ├── test_filter.py
│ │ │ ├── test_spec.py
│ │ │ └── utils.py
│ │ ├── the_agent_company
│ │ │ ├── README.md
│ │ │ ├── browsing.py
│ │ │ ├── run_infer.py
│ │ │ └── scripts
│ │ │ │ ├── run_infer.sh
│ │ │ │ └── summarise_results.py
│ │ ├── toolqa
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ ├── run_infer.py
│ │ │ ├── scripts
│ │ │ │ └── run_infer.sh
│ │ │ └── utils.py
│ │ ├── visualwebarena
│ │ │ ├── README.md
│ │ │ ├── __init__.py
│ │ │ ├── get_success_rate.py
│ │ │ ├── run_infer.py
│ │ │ └── scripts
│ │ │ │ └── run_infer.sh
│ │ └── webarena
│ │ │ ├── README.md
│ │ │ ├── __init__.py
│ │ │ ├── get_success_rate.py
│ │ │ ├── run_infer.py
│ │ │ └── scripts
│ │ │ └── run_infer.sh
│ ├── integration_tests
│ │ ├── README.md
│ │ ├── __init__.py
│ │ ├── run_infer.py
│ │ ├── scripts
│ │ │ └── run_infer.sh
│ │ └── tests
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── t01_fix_simple_typo.py
│ │ │ ├── t02_add_bash_hello.py
│ │ │ ├── t03_jupyter_write_file.py
│ │ │ ├── t04_git_staging.py
│ │ │ ├── t05_simple_browsing.py
│ │ │ ├── t06_github_pr_browsing.py
│ │ │ └── t07_interactive_commands.py
│ ├── regression
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── cases
│ │ │ ├── client-server
│ │ │ │ └── task.txt
│ │ │ ├── express
│ │ │ │ └── task.txt
│ │ │ ├── hello-name
│ │ │ │ ├── start
│ │ │ │ │ └── hello_world.sh
│ │ │ │ └── task.txt
│ │ │ ├── hello-world
│ │ │ │ ├── task.txt
│ │ │ │ └── test_hello_world.py
│ │ │ ├── node-cli-rewrite
│ │ │ │ ├── start
│ │ │ │ │ ├── commands
│ │ │ │ │ │ ├── length.py
│ │ │ │ │ │ ├── lowercase.py
│ │ │ │ │ │ ├── reverse.py
│ │ │ │ │ │ ├── scramble.py
│ │ │ │ │ │ ├── spongebob.py
│ │ │ │ │ │ └── uppercase.py
│ │ │ │ │ └── string_cli.py
│ │ │ │ └── task.txt
│ │ │ ├── python-cli-help
│ │ │ │ ├── start
│ │ │ │ │ ├── commands
│ │ │ │ │ │ ├── length.py
│ │ │ │ │ │ ├── lowercase.py
│ │ │ │ │ │ ├── reverse.py
│ │ │ │ │ │ ├── scramble.py
│ │ │ │ │ │ ├── spongebob.py
│ │ │ │ │ │ └── uppercase.py
│ │ │ │ │ └── string_cli.py
│ │ │ │ └── task.txt
│ │ │ ├── python-cli
│ │ │ │ └── task.txt
│ │ │ ├── react-todo
│ │ │ │ └── task.txt
│ │ │ └── server-test
│ │ │ │ ├── start
│ │ │ │ └── server.py
│ │ │ │ └── task.txt
│ │ ├── conftest.py
│ │ └── run_tests.py
│ ├── static
│ │ └── example_task_1.png
│ └── utils
│ │ ├── agentic_knowledge_base.py
│ │ ├── scripts
│ │ └── cleanup_remote_runtime.sh
│ │ ├── shared.py
│ │ └── version_control.sh
├── frontend
│ ├── .env.sample
│ ├── .eslintrc
│ ├── .gitignore
│ ├── .husky
│ │ └── pre-commit
│ ├── .npmrc
│ ├── .prettierrc.json
│ ├── README.md
│ ├── __tests__
│ │ ├── components
│ │ │ ├── browser.test.tsx
│ │ │ ├── buttons
│ │ │ │ └── copy-to-clipboard.test.tsx
│ │ │ ├── chat-message.test.tsx
│ │ │ ├── chat
│ │ │ │ ├── action-suggestions.test.tsx
│ │ │ │ ├── chat-input.test.tsx
│ │ │ │ ├── chat-interface.test.tsx
│ │ │ │ └── expandable-message.test.tsx
│ │ │ ├── context-menu
│ │ │ │ ├── account-settings-context-menu.test.tsx
│ │ │ │ └── context-menu-list-item.test.tsx
│ │ │ ├── features
│ │ │ │ ├── analytics
│ │ │ │ │ └── analytics-consent-form-modal.test.tsx
│ │ │ │ ├── conversation-panel
│ │ │ │ │ ├── conversation-card.test.tsx
│ │ │ │ │ ├── conversation-panel.test.tsx
│ │ │ │ │ └── utils.ts
│ │ │ │ ├── git
│ │ │ │ │ └── git-repo-selector.test.tsx
│ │ │ │ ├── payment
│ │ │ │ │ └── payment-form.test.tsx
│ │ │ │ ├── sidebar
│ │ │ │ │ └── sidebar.test.tsx
│ │ │ │ └── waitlist-modal.test.tsx
│ │ │ ├── feedback-actions.test.tsx
│ │ │ ├── feedback-form.test.tsx
│ │ │ ├── file-explorer
│ │ │ │ ├── explorer-tree.test.tsx
│ │ │ │ ├── file-explorer.test.tsx
│ │ │ │ └── tree-node.test.tsx
│ │ │ ├── file-operations.test.tsx
│ │ │ ├── image-preview.test.tsx
│ │ │ ├── interactive-chat-box.test.tsx
│ │ │ ├── jupyter
│ │ │ │ └── jupyter.test.tsx
│ │ │ ├── landing-translations.test.tsx
│ │ │ ├── modals
│ │ │ │ ├── base-modal
│ │ │ │ │ └── base-modal.test.tsx
│ │ │ │ └── settings
│ │ │ │ │ └── model-selector.test.tsx
│ │ │ ├── settings
│ │ │ │ ├── settings-input.test.tsx
│ │ │ │ └── settings-switch.test.tsx
│ │ │ ├── shared
│ │ │ │ ├── brand-button.test.tsx
│ │ │ │ └── modals
│ │ │ │ │ └── settings
│ │ │ │ │ └── settings-form.test.tsx
│ │ │ ├── suggestion-item.test.tsx
│ │ │ ├── suggestions.test.tsx
│ │ │ ├── terminal
│ │ │ │ └── terminal.test.tsx
│ │ │ ├── upload-image-input.test.tsx
│ │ │ ├── user-actions.test.tsx
│ │ │ └── user-avatar.test.tsx
│ │ ├── context
│ │ │ └── ws-client-provider.test.tsx
│ │ ├── hooks
│ │ │ ├── mutation
│ │ │ │ └── use-save-settings.test.tsx
│ │ │ ├── use-click-outside-element.test.tsx
│ │ │ ├── use-rate.test.ts
│ │ │ └── use-terminal.test.tsx
│ │ ├── i18n
│ │ │ ├── duplicate-keys.test.ts
│ │ │ └── translations.test.tsx
│ │ ├── initial-query.test.tsx
│ │ ├── routes
│ │ │ ├── _oh.app.test.tsx
│ │ │ ├── _oh.test.tsx
│ │ │ ├── home.test.tsx
│ │ │ ├── settings-with-payment.test.tsx
│ │ │ └── settings.test.tsx
│ │ ├── services
│ │ │ └── actions.test.ts
│ │ └── utils
│ │ │ ├── amount-is-valid.test.ts
│ │ │ ├── check-hardcoded-strings.test.tsx
│ │ │ ├── error-handler.test.ts
│ │ │ ├── extract-model-and-provider.test.ts
│ │ │ ├── extract-next-page-from-link.test.ts
│ │ │ ├── format-ms.test.ts
│ │ │ ├── format-time-delta.test.ts
│ │ │ ├── handle-capture-consent.test.ts
│ │ │ ├── has-advanced-settings-set.test.ts
│ │ │ ├── i18n-test-utils.tsx
│ │ │ ├── is-custom-model.test.ts
│ │ │ ├── is-number.test.ts
│ │ │ ├── map-provider.test.ts
│ │ │ ├── organize-models-and-providers.test.ts
│ │ │ ├── parse-github-url.test.ts
│ │ │ ├── parse-terminal-output.test.ts
│ │ │ └── utils.test.ts
│ ├── global.d.ts
│ ├── index.html
│ ├── package-lock.json
│ ├── package.json
│ ├── playwright.config.ts
│ ├── postcss.config.js
│ ├── public
│ │ ├── android-chrome-192x192.png
│ │ ├── android-chrome-512x512.png
│ │ ├── apple-touch-icon.png
│ │ ├── beep.wav
│ │ ├── browserconfig.xml
│ │ ├── favicon-16x16.png
│ │ ├── favicon-32x32.png
│ │ ├── favicon.ico
│ │ ├── mockServiceWorker.js
│ │ ├── mstile-150x150.png
│ │ ├── robots.txt
│ │ ├── safari-pinned-tab.svg
│ │ └── site.webmanifest
│ ├── react-router.config.ts
│ ├── scripts
│ │ ├── detect-node-version.js
│ │ └── make-i18n-translations.cjs
│ ├── src
│ │ ├── api
│ │ │ ├── git.ts
│ │ │ ├── invariant-service.ts
│ │ │ ├── open-hands-axios.ts
│ │ │ ├── open-hands.ts
│ │ │ └── open-hands.types.ts
│ │ ├── assets
│ │ │ ├── arrow.tsx
│ │ │ ├── branding
│ │ │ │ ├── all-hands-logo-spark.svg
│ │ │ │ ├── all-hands-logo.svg
│ │ │ │ └── github-logo.svg
│ │ │ ├── calendar.tsx
│ │ │ ├── chevron-left.tsx
│ │ │ ├── chevron-right.tsx
│ │ │ ├── cmd-line.tsx
│ │ │ ├── cog-tooth.tsx
│ │ │ ├── confirm.tsx
│ │ │ ├── earth.tsx
│ │ │ ├── logo.png
│ │ │ ├── notification.mp3
│ │ │ ├── pause.tsx
│ │ │ ├── pencil.tsx
│ │ │ ├── play.tsx
│ │ │ ├── reject.tsx
│ │ │ ├── stop.tsx
│ │ │ └── vscode-alt.svg
│ │ ├── components
│ │ │ ├── agent-status-map.constant.ts
│ │ │ ├── extension-icon-map.constant.tsx
│ │ │ ├── features
│ │ │ │ ├── analytics
│ │ │ │ │ └── analytics-consent-form-modal.tsx
│ │ │ │ ├── browser
│ │ │ │ │ ├── browser-snapshot.tsx
│ │ │ │ │ ├── browser.tsx
│ │ │ │ │ └── empty-browser-message.tsx
│ │ │ │ ├── chat
│ │ │ │ │ ├── action-suggestions.tsx
│ │ │ │ │ ├── chat-input.tsx
│ │ │ │ │ ├── chat-interface.tsx
│ │ │ │ │ ├── chat-message.tsx
│ │ │ │ │ ├── chat-suggestions.tsx
│ │ │ │ │ ├── expandable-message.tsx
│ │ │ │ │ ├── interactive-chat-box.tsx
│ │ │ │ │ ├── messages.tsx
│ │ │ │ │ └── typing-indicator.tsx
│ │ │ │ ├── context-menu
│ │ │ │ │ ├── account-settings-context-menu.tsx
│ │ │ │ │ ├── context-menu-list-item.tsx
│ │ │ │ │ ├── context-menu-separator.tsx
│ │ │ │ │ └── context-menu.tsx
│ │ │ │ ├── controls
│ │ │ │ │ ├── agent-control-bar.tsx
│ │ │ │ │ ├── agent-status-bar.tsx
│ │ │ │ │ ├── controls.tsx
│ │ │ │ │ └── security-lock.tsx
│ │ │ │ ├── conversation-panel
│ │ │ │ │ ├── confirm-delete-modal.tsx
│ │ │ │ │ ├── conversation-card-context-menu.tsx
│ │ │ │ │ ├── conversation-card.tsx
│ │ │ │ │ ├── conversation-panel-wrapper.tsx
│ │ │ │ │ ├── conversation-panel.tsx
│ │ │ │ │ ├── conversation-repo-link.tsx
│ │ │ │ │ ├── conversation-state-indicator.tsx
│ │ │ │ │ ├── ellipsis-button.tsx
│ │ │ │ │ ├── exit-conversation-modal.tsx
│ │ │ │ │ ├── new-conversation-button.tsx
│ │ │ │ │ └── state-indicators
│ │ │ │ │ │ ├── cold.svg
│ │ │ │ │ │ ├── cooling.svg
│ │ │ │ │ │ ├── finished.svg
│ │ │ │ │ │ ├── running.svg
│ │ │ │ │ │ ├── waiting.svg
│ │ │ │ │ │ └── warm.svg
│ │ │ │ ├── feedback
│ │ │ │ │ ├── feedback-form.tsx
│ │ │ │ │ └── feedback-modal.tsx
│ │ │ │ ├── file-explorer
│ │ │ │ │ ├── explorer-tree.tsx
│ │ │ │ │ ├── file-explorer-actions.tsx
│ │ │ │ │ ├── file-explorer-header.tsx
│ │ │ │ │ ├── file-explorer.tsx
│ │ │ │ │ ├── file-icon.tsx
│ │ │ │ │ ├── filename.tsx
│ │ │ │ │ ├── folder-icon.tsx
│ │ │ │ │ └── tree-node.tsx
│ │ │ │ ├── git
│ │ │ │ │ ├── code-not-in-github-link.tsx
│ │ │ │ │ ├── git-repo-selector.tsx
│ │ │ │ │ └── git-repositories-suggestion-box.tsx
│ │ │ │ ├── images
│ │ │ │ │ ├── attach-image-label.tsx
│ │ │ │ │ ├── image-carousel.tsx
│ │ │ │ │ ├── image-preview.tsx
│ │ │ │ │ ├── thumbnail.tsx
│ │ │ │ │ └── upload-image-input.tsx
│ │ │ │ ├── jupyter
│ │ │ │ │ ├── jupyter-cell-input.tsx
│ │ │ │ │ ├── jupyter-cell-output.tsx
│ │ │ │ │ ├── jupyter-cell.tsx
│ │ │ │ │ └── jupyter.tsx
│ │ │ │ ├── markdown
│ │ │ │ │ ├── anchor.tsx
│ │ │ │ │ ├── code.tsx
│ │ │ │ │ └── list.tsx
│ │ │ │ ├── payment
│ │ │ │ │ ├── payment-form.tsx
│ │ │ │ │ └── setup-payment-modal.tsx
│ │ │ │ ├── served-host
│ │ │ │ │ └── path-form.tsx
│ │ │ │ ├── settings
│ │ │ │ │ ├── brand-button.tsx
│ │ │ │ │ ├── help-link.tsx
│ │ │ │ │ ├── key-status-icon.tsx
│ │ │ │ │ ├── optional-tag.tsx
│ │ │ │ │ ├── settings-dropdown-input.tsx
│ │ │ │ │ ├── settings-input.tsx
│ │ │ │ │ ├── settings-switch.tsx
│ │ │ │ │ └── styled-switch-component.tsx
│ │ │ │ ├── sidebar
│ │ │ │ │ ├── avatar.tsx
│ │ │ │ │ ├── sidebar.tsx
│ │ │ │ │ ├── user-actions.tsx
│ │ │ │ │ └── user-avatar.tsx
│ │ │ │ ├── suggestions
│ │ │ │ │ ├── replay-suggestion-box.tsx
│ │ │ │ │ ├── suggestion-box.tsx
│ │ │ │ │ ├── suggestion-bubble.tsx
│ │ │ │ │ ├── suggestion-item.tsx
│ │ │ │ │ └── suggestions.tsx
│ │ │ │ ├── terminal
│ │ │ │ │ ├── terminal-status-label.tsx
│ │ │ │ │ └── terminal.tsx
│ │ │ │ ├── trajectory
│ │ │ │ │ └── trajectory-actions.tsx
│ │ │ │ └── waitlist
│ │ │ │ │ ├── join-waitlist-anchor.tsx
│ │ │ │ │ ├── tos-checkbox.tsx
│ │ │ │ │ ├── waitlist-message.tsx
│ │ │ │ │ └── waitlist-modal.tsx
│ │ │ ├── layout
│ │ │ │ ├── beta-badge.tsx
│ │ │ │ ├── container.tsx
│ │ │ │ ├── count-badge.tsx
│ │ │ │ ├── nav-tab.tsx
│ │ │ │ ├── resizable-panel.tsx
│ │ │ │ └── served-app-label.tsx
│ │ │ └── shared
│ │ │ │ ├── action-tooltip.tsx
│ │ │ │ ├── buttons
│ │ │ │ ├── action-button.tsx
│ │ │ │ ├── all-hands-logo-button.tsx
│ │ │ │ ├── confirmation-buttons.tsx
│ │ │ │ ├── copy-to-clipboard-button.tsx
│ │ │ │ ├── docs-button.tsx
│ │ │ │ ├── editor-action-button.tsx
│ │ │ │ ├── exit-project-button.tsx
│ │ │ │ ├── icon-button.tsx
│ │ │ │ ├── modal-button.tsx
│ │ │ │ ├── refresh-button.tsx
│ │ │ │ ├── refresh-icon-button.tsx
│ │ │ │ ├── remove-button.tsx
│ │ │ │ ├── scroll-to-bottom-button.tsx
│ │ │ │ ├── settings-button.tsx
│ │ │ │ ├── stop-button.tsx
│ │ │ │ ├── submit-button.tsx
│ │ │ │ ├── toggle-workspace-icon-button.tsx
│ │ │ │ ├── tooltip-button.tsx
│ │ │ │ └── trajectory-action-button.tsx
│ │ │ │ ├── custom-input.tsx
│ │ │ │ ├── error-toast.tsx
│ │ │ │ ├── hero-heading.tsx
│ │ │ │ ├── inputs
│ │ │ │ ├── advanced-option-switch.tsx
│ │ │ │ ├── api-key-input.tsx
│ │ │ │ ├── base-url-input.tsx
│ │ │ │ ├── confirmation-mode-switch.tsx
│ │ │ │ └── custom-model-input.tsx
│ │ │ │ ├── loading-spinner.tsx
│ │ │ │ ├── modals
│ │ │ │ ├── base-modal
│ │ │ │ │ ├── base-modal.tsx
│ │ │ │ │ ├── footer-content.tsx
│ │ │ │ │ └── header-content.tsx
│ │ │ │ ├── confirmation-modals
│ │ │ │ │ ├── base-modal.tsx
│ │ │ │ │ └── danger-modal.tsx
│ │ │ │ ├── exit-project-confirmation-modal.tsx
│ │ │ │ ├── modal-backdrop.tsx
│ │ │ │ ├── modal-body.tsx
│ │ │ │ ├── security
│ │ │ │ │ ├── invariant
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ └── logo.tsx
│ │ │ │ │ │ └── invariant.tsx
│ │ │ │ │ └── security.tsx
│ │ │ │ └── settings
│ │ │ │ │ ├── model-selector.tsx
│ │ │ │ │ ├── settings-form.tsx
│ │ │ │ │ └── settings-modal.tsx
│ │ │ │ └── task-form.tsx
│ │ ├── context
│ │ │ ├── auth-context.tsx
│ │ │ ├── conversation-context.tsx
│ │ │ ├── files.tsx
│ │ │ └── ws-client-provider.tsx
│ │ ├── entry.client.tsx
│ │ ├── hooks
│ │ │ ├── mutation
│ │ │ │ ├── stripe
│ │ │ │ │ └── use-create-stripe-checkout-session.ts
│ │ │ │ ├── use-create-conversation.ts
│ │ │ │ ├── use-delete-conversation.ts
│ │ │ │ ├── use-get-trajectory.ts
│ │ │ │ ├── use-logout.ts
│ │ │ │ ├── use-save-settings.ts
│ │ │ │ ├── use-submit-feedback.ts
│ │ │ │ ├── use-update-conversation.ts
│ │ │ │ └── use-upload-files.ts
│ │ │ ├── query
│ │ │ │ ├── use-active-host.ts
│ │ │ │ ├── use-ai-config-options.ts
│ │ │ │ ├── use-app-installations.ts
│ │ │ │ ├── use-app-repositories.ts
│ │ │ │ ├── use-balance.ts
│ │ │ │ ├── use-config.ts
│ │ │ │ ├── use-conversation-config.ts
│ │ │ │ ├── use-get-policy.ts
│ │ │ │ ├── use-get-risk-severity.ts
│ │ │ │ ├── use-get-traces.ts
│ │ │ │ ├── use-git-user.ts
│ │ │ │ ├── use-is-authed.ts
│ │ │ │ ├── use-list-file.ts
│ │ │ │ ├── use-list-files.ts
│ │ │ │ ├── use-search-repositories.ts
│ │ │ │ ├── use-settings.ts
│ │ │ │ ├── use-user-conversation.ts
│ │ │ │ ├── use-user-conversations.ts
│ │ │ │ ├── use-user-repositories.ts
│ │ │ │ └── use-vscode-url.ts
│ │ │ ├── use-app-logout.ts
│ │ │ ├── use-auto-title.ts
│ │ │ ├── use-click-outside-element.ts
│ │ │ ├── use-debounce.ts
│ │ │ ├── use-document-title-from-state.ts
│ │ │ ├── use-effect-once.ts
│ │ │ ├── use-end-session.ts
│ │ │ ├── use-github-auth-url.ts
│ │ │ ├── use-migrate-user-consent.ts
│ │ │ ├── use-rate.ts
│ │ │ ├── use-scroll-to-bottom.ts
│ │ │ ├── use-terminal.ts
│ │ │ └── useNotification.ts
│ │ ├── i18n
│ │ │ ├── index.ts
│ │ │ └── translation.json
│ │ ├── icons
│ │ │ ├── academy.svg
│ │ │ ├── angle-down-solid.svg
│ │ │ ├── angle-up-solid.svg
│ │ │ ├── arrow-send.svg
│ │ │ ├── build-it.svg
│ │ │ ├── check-circle-solid.svg
│ │ │ ├── checkmark.svg
│ │ │ ├── chevron-double-right.svg
│ │ │ ├── clip.svg
│ │ │ ├── clipboard.svg
│ │ │ ├── close.svg
│ │ │ ├── cloud-connection.svg
│ │ │ ├── code.svg
│ │ │ ├── copy.svg
│ │ │ ├── default-user.svg
│ │ │ ├── docs.svg
│ │ │ ├── ellipsis-h.svg
│ │ │ ├── export.svg
│ │ │ ├── external-link.svg
│ │ │ ├── folder.svg
│ │ │ ├── globe.svg
│ │ │ ├── lightbulb.svg
│ │ │ ├── list-type-number.svg
│ │ │ ├── loading-outer.svg
│ │ │ ├── message.svg
│ │ │ ├── money.svg
│ │ │ ├── new-project.svg
│ │ │ ├── play.svg
│ │ │ ├── plus.svg
│ │ │ ├── profile.svg
│ │ │ ├── refresh.svg
│ │ │ ├── send.svg
│ │ │ ├── settings.svg
│ │ │ ├── success.svg
│ │ │ ├── thumbs-down.svg
│ │ │ ├── thumbs-up.svg
│ │ │ ├── warning.svg
│ │ │ └── x-circle-solid.svg
│ │ ├── ignore-task-state-map.constant.ts
│ │ ├── index.css
│ │ ├── message.d.ts
│ │ ├── mocks
│ │ │ ├── billing-handlers.ts
│ │ │ ├── browser.ts
│ │ │ ├── handlers.ts
│ │ │ ├── handlers.ws.ts
│ │ │ ├── mock-ws-helpers.ts
│ │ │ ├── node.ts
│ │ │ └── session-history.mock.ts
│ │ ├── query-client-config.ts
│ │ ├── react-app-env.d.ts
│ │ ├── root.tsx
│ │ ├── routes.ts
│ │ ├── routes
│ │ │ ├── _oh._index
│ │ │ │ └── route.tsx
│ │ │ ├── _oh.app._index
│ │ │ │ ├── constants.ts
│ │ │ │ └── route.tsx
│ │ │ ├── _oh.app.browser.tsx
│ │ │ ├── _oh.app.jupyter.tsx
│ │ │ ├── _oh.app
│ │ │ │ ├── event-handler.tsx
│ │ │ │ ├── hooks
│ │ │ │ │ ├── use-handle-runtime-active.ts
│ │ │ │ │ └── use-handle-ws-events.ts
│ │ │ │ └── route.tsx
│ │ │ ├── _oh
│ │ │ │ └── route.tsx
│ │ │ ├── account-settings.tsx
│ │ │ ├── app.tsx
│ │ │ ├── billing.tsx
│ │ │ └── settings.tsx
│ │ ├── services
│ │ │ ├── actions.ts
│ │ │ ├── agent-state-service.ts
│ │ │ ├── chat-service.ts
│ │ │ ├── observations.ts
│ │ │ ├── settings.ts
│ │ │ └── terminal-service.ts
│ │ ├── state
│ │ │ ├── agent-slice.tsx
│ │ │ ├── browser-slice.ts
│ │ │ ├── chat-slice.ts
│ │ │ ├── code-slice.ts
│ │ │ ├── command-slice.ts
│ │ │ ├── file-state-slice.ts
│ │ │ ├── initial-query-slice.ts
│ │ │ ├── jupyter-slice.ts
│ │ │ ├── metrics-slice.ts
│ │ │ ├── security-analyzer-slice.ts
│ │ │ └── status-slice.ts
│ │ ├── store.ts
│ │ ├── tailwind.css
│ │ ├── types
│ │ │ ├── action-type.tsx
│ │ │ ├── agent-state.tsx
│ │ │ ├── config-type.tsx
│ │ │ ├── core
│ │ │ │ ├── actions.ts
│ │ │ │ ├── base.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── observations.ts
│ │ │ │ └── variances.ts
│ │ │ ├── file-system.d.ts
│ │ │ ├── git.d.ts
│ │ │ ├── message.tsx
│ │ │ ├── observation-type.tsx
│ │ │ ├── react-query.d.ts
│ │ │ ├── response-type.tsx
│ │ │ ├── settings.ts
│ │ │ └── tab-option.tsx
│ │ └── utils
│ │ │ ├── amount-is-valid.ts
│ │ │ ├── base64-to-blob.ts
│ │ │ ├── beep.tsx
│ │ │ ├── browser-tab.ts
│ │ │ ├── convert-file-to-text.ts
│ │ │ ├── convert-image-to-base-64.ts
│ │ │ ├── custom-toast-handlers.tsx
│ │ │ ├── download-json.ts
│ │ │ ├── download-trajectory.ts
│ │ │ ├── error-handler.ts
│ │ │ ├── event-logger.ts
│ │ │ ├── extract-model-and-provider.ts
│ │ │ ├── extract-next-page-from-link.ts
│ │ │ ├── feature-flags.ts
│ │ │ ├── format-ms.ts
│ │ │ ├── format-time-delta.ts
│ │ │ ├── generate-github-auth-url.ts
│ │ │ ├── get-random-key.ts
│ │ │ ├── gget-formatted-datetime.ts
│ │ │ ├── handle-capture-consent.ts
│ │ │ ├── has-advanced-settings-set.ts
│ │ │ ├── is-custom-model.ts
│ │ │ ├── is-number.ts
│ │ │ ├── map-provider.ts
│ │ │ ├── organize-models-and-providers.ts
│ │ │ ├── parse-cell-content.ts
│ │ │ ├── parse-github-url.ts
│ │ │ ├── parse-terminal-output.ts
│ │ │ ├── retrieve-axios-error-message.ts
│ │ │ ├── sanitize-query.ts
│ │ │ ├── scan-unlocalized-strings-ast.ts
│ │ │ ├── settings-utils.ts
│ │ │ ├── suggestions
│ │ │ ├── index.ts
│ │ │ ├── non-repo-suggestions.ts
│ │ │ └── repo-suggestions.ts
│ │ │ ├── toast.tsx
│ │ │ ├── type-guards.ts
│ │ │ ├── utils.ts
│ │ │ └── verified-models.ts
│ ├── tailwind.config.js
│ ├── test-utils.tsx
│ ├── tests
│ │ ├── conversation-panel.test.ts
│ │ ├── fixtures
│ │ │ └── project.zip
│ │ ├── helpers
│ │ │ └── confirm-settings.ts
│ │ ├── redirect.spec.ts
│ │ └── settings.spec.ts
│ ├── tsconfig.json
│ ├── vite-env.d.ts
│ ├── vite.config.ts
│ └── vitest.setup.ts
├── microagents
│ ├── README.md
│ ├── knowledge
│ │ ├── add_agent.md
│ │ ├── docker.md
│ │ ├── flarglebargle.md
│ │ ├── github.md
│ │ ├── gitlab.md
│ │ ├── kubernetes.md
│ │ ├── npm.md
│ │ ├── pdflatex.md
│ │ ├── security.md
│ │ └── swift-linux.md
│ └── tasks
│ │ ├── add_openhands_repo_instruction.md
│ │ ├── address_pr_comments.md
│ │ ├── get_test_to_pass.md
│ │ ├── update_pr_description.md
│ │ └── update_test_for_new_implementation.md
├── openhands
│ ├── LICENSE
│ ├── README.md
│ ├── __init__.py
│ ├── agenthub
│ │ ├── README.md
│ │ ├── __init__.py
│ │ ├── browsing_agent
│ │ │ ├── README.md
│ │ │ ├── __init__.py
│ │ │ ├── browsing_agent.py
│ │ │ ├── response_parser.py
│ │ │ └── utils.py
│ │ ├── codeact_agent
│ │ │ ├── README.md
│ │ │ ├── __init__.py
│ │ │ ├── codeact_agent.py
│ │ │ ├── function_calling.py
│ │ │ ├── prompts
│ │ │ │ ├── additional_info.j2
│ │ │ │ ├── in_context_learning_example.j2
│ │ │ │ ├── in_context_learning_example_suffix.j2
│ │ │ │ ├── microagent_info.j2
│ │ │ │ ├── system_prompt.j2
│ │ │ │ └── user_prompt.j2
│ │ │ └── tools
│ │ │ │ ├── __init__.py
│ │ │ │ ├── bash.py
│ │ │ │ ├── browser.py
│ │ │ │ ├── finish.py
│ │ │ │ ├── ipython.py
│ │ │ │ ├── llm_based_edit.py
│ │ │ │ ├── str_replace_editor.py
│ │ │ │ ├── think.py
│ │ │ │ └── web_read.py
│ │ ├── dummy_agent
│ │ │ ├── __init__.py
│ │ │ └── agent.py
│ │ └── visualbrowsing_agent
│ │ │ ├── README.md
│ │ │ ├── __init__.py
│ │ │ └── visualbrowsing_agent.py
│ ├── controller
│ │ ├── __init__.py
│ │ ├── action_parser.py
│ │ ├── agent.py
│ │ ├── agent_controller.py
│ │ ├── replay.py
│ │ ├── state
│ │ │ ├── state.py
│ │ │ └── task.py
│ │ └── stuck.py
│ ├── core
│ │ ├── cli.py
│ │ ├── config
│ │ │ ├── README.md
│ │ │ ├── __init__.py
│ │ │ ├── agent_config.py
│ │ │ ├── app_config.py
│ │ │ ├── condenser_config.py
│ │ │ ├── config_utils.py
│ │ │ ├── extended_config.py
│ │ │ ├── llm_config.py
│ │ │ ├── sandbox_config.py
│ │ │ ├── security_config.py
│ │ │ └── utils.py
│ │ ├── const
│ │ │ └── guide_url.py
│ │ ├── download.py
│ │ ├── exceptions.py
│ │ ├── logger.py
│ │ ├── loop.py
│ │ ├── main.py
│ │ ├── message.py
│ │ ├── message_format.md
│ │ ├── message_utils.py
│ │ ├── schema
│ │ │ ├── __init__.py
│ │ │ ├── action.py
│ │ │ ├── agent.py
│ │ │ └── observation.py
│ │ └── setup.py
│ ├── critic
│ │ ├── __init__.py
│ │ ├── base.py
│ │ └── finish_critic.py
│ ├── events
│ │ ├── __init__.py
│ │ ├── action
│ │ │ ├── __init__.py
│ │ │ ├── action.py
│ │ │ ├── agent.py
│ │ │ ├── browse.py
│ │ │ ├── commands.py
│ │ │ ├── empty.py
│ │ │ ├── files.py
│ │ │ └── message.py
│ │ ├── async_event_store_wrapper.py
│ │ ├── event.py
│ │ ├── event_store.py
│ │ ├── observation
│ │ │ ├── __init__.py
│ │ │ ├── agent.py
│ │ │ ├── browse.py
│ │ │ ├── commands.py
│ │ │ ├── delegate.py
│ │ │ ├── empty.py
│ │ │ ├── error.py
│ │ │ ├── files.py
│ │ │ ├── observation.py
│ │ │ ├── reject.py
│ │ │ └── success.py
│ │ ├── serialization
│ │ │ ├── __init__.py
│ │ │ ├── action.py
│ │ │ ├── event.py
│ │ │ ├── observation.py
│ │ │ └── utils.py
│ │ ├── stream.py
│ │ ├── tool.py
│ │ └── utils.py
│ ├── integrations
│ │ ├── github
│ │ │ └── github_service.py
│ │ ├── gitlab
│ │ │ └── gitlab_service.py
│ │ ├── provider.py
│ │ ├── service_types.py
│ │ └── utils.py
│ ├── io
│ │ ├── __init__.py
│ │ ├── io.py
│ │ └── json.py
│ ├── linter
│ │ └── __init__.py
│ ├── llm
│ │ ├── __init__.py
│ │ ├── async_llm.py
│ │ ├── bedrock.py
│ │ ├── debug_mixin.py
│ │ ├── fn_call_converter.py
│ │ ├── llm.py
│ │ ├── metrics.py
│ │ ├── retry_mixin.py
│ │ └── streaming_llm.py
│ ├── memory
│ │ ├── README.md
│ │ ├── __init__.py
│ │ ├── condenser
│ │ │ ├── __init__.py
│ │ │ ├── condenser.py
│ │ │ └── impl
│ │ │ │ ├── __init__.py
│ │ │ │ ├── amortized_forgetting_condenser.py
│ │ │ │ ├── browser_output_condenser.py
│ │ │ │ ├── llm_attention_condenser.py
│ │ │ │ ├── llm_summarizing_condenser.py
│ │ │ │ ├── no_op_condenser.py
│ │ │ │ ├── observation_masking_condenser.py
│ │ │ │ └── recent_events_condenser.py
│ │ ├── conversation_memory.py
│ │ ├── memory.py
│ │ └── view.py
│ ├── microagent
│ │ ├── __init__.py
│ │ ├── microagent.py
│ │ └── types.py
│ ├── py.typed
│ ├── resolver
│ │ ├── README.md
│ │ ├── __init__.py
│ │ ├── examples
│ │ │ └── openhands-resolver.yml
│ │ ├── interfaces
│ │ │ ├── github.py
│ │ │ ├── gitlab.py
│ │ │ ├── issue.py
│ │ │ └── issue_definitions.py
│ │ ├── io_utils.py
│ │ ├── patching
│ │ │ ├── README.md
│ │ │ ├── __init__.py
│ │ │ ├── apply.py
│ │ │ ├── exceptions.py
│ │ │ ├── patch.py
│ │ │ └── snippets.py
│ │ ├── prompts
│ │ │ ├── guess_success
│ │ │ │ ├── issue-success-check.jinja
│ │ │ │ ├── pr-feedback-check.jinja
│ │ │ │ ├── pr-review-check.jinja
│ │ │ │ └── pr-thread-check.jinja
│ │ │ ├── repo_instructions
│ │ │ │ ├── all-hands-ai___openhands-resolver.txt
│ │ │ │ ├── all-hands-ai___openhands.txt
│ │ │ │ └── rbren___rss-parser.txt
│ │ │ └── resolve
│ │ │ │ ├── basic-followup.jinja
│ │ │ │ ├── basic-with-tests.jinja
│ │ │ │ ├── basic.jinja
│ │ │ │ └── pr-changes-summary.jinja
│ │ ├── resolve_all_issues.py
│ │ ├── resolve_issue.py
│ │ ├── resolver_output.py
│ │ ├── send_pull_request.py
│ │ ├── utils.py
│ │ └── visualize_resolver_output.py
│ ├── runtime
│ │ ├── README.md
│ │ ├── __init__.py
│ │ ├── action_execution_server.py
│ │ ├── base.py
│ │ ├── browser
│ │ │ ├── __init__.py
│ │ │ ├── browser_env.py
│ │ │ └── utils.py
│ │ ├── builder
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── docker.py
│ │ │ └── remote.py
│ │ ├── impl
│ │ │ ├── action_execution
│ │ │ │ └── action_execution_client.py
│ │ │ ├── daytona
│ │ │ │ ├── README.md
│ │ │ │ └── daytona_runtime.py
│ │ │ ├── docker
│ │ │ │ ├── containers.py
│ │ │ │ └── docker_runtime.py
│ │ │ ├── e2b
│ │ │ │ ├── README.md
│ │ │ │ ├── e2b_runtime.py
│ │ │ │ ├── filestore.py
│ │ │ │ └── sandbox.py
│ │ │ ├── local
│ │ │ │ └── local_runtime.py
│ │ │ ├── modal
│ │ │ │ └── modal_runtime.py
│ │ │ ├── remote
│ │ │ │ └── remote_runtime.py
│ │ │ └── runloop
│ │ │ │ ├── README.md
│ │ │ │ └── runloop_runtime.py
│ │ ├── plugins
│ │ │ ├── __init__.py
│ │ │ ├── agent_skills
│ │ │ │ ├── README.md
│ │ │ │ ├── __init__.py
│ │ │ │ ├── agentskills.py
│ │ │ │ ├── file_editor
│ │ │ │ │ ├── README.md
│ │ │ │ │ └── __init__.py
│ │ │ │ ├── file_ops
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── file_ops.py
│ │ │ │ ├── file_reader
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── file_readers.py
│ │ │ │ └── utils
│ │ │ │ │ ├── config.py
│ │ │ │ │ └── dependency.py
│ │ │ ├── jupyter
│ │ │ │ ├── __init__.py
│ │ │ │ └── execute_server.py
│ │ │ ├── requirement.py
│ │ │ └── vscode
│ │ │ │ ├── __init__.py
│ │ │ │ └── settings.json
│ │ └── utils
│ │ │ ├── __init__.py
│ │ │ ├── bash.py
│ │ │ ├── command.py
│ │ │ ├── edit.py
│ │ │ ├── file_viewer.py
│ │ │ ├── files.py
│ │ │ ├── log_streamer.py
│ │ │ ├── memory_monitor.py
│ │ │ ├── request.py
│ │ │ ├── runtime_build.py
│ │ │ ├── runtime_init.py
│ │ │ ├── runtime_templates
│ │ │ └── Dockerfile.j2
│ │ │ ├── singleton.py
│ │ │ ├── system.py
│ │ │ ├── system_stats.py
│ │ │ ├── tenacity_stop.py
│ │ │ └── vscode-extensions
│ │ │ ├── hello-world
│ │ │ ├── extension.js
│ │ │ └── package.json
│ │ │ └── memory-monitor
│ │ │ ├── README.md
│ │ │ ├── extension.js
│ │ │ ├── memory_monitor.js
│ │ │ ├── package.json
│ │ │ └── process_monitor.js
│ ├── security
│ │ ├── README.md
│ │ ├── __init__.py
│ │ ├── analyzer.py
│ │ ├── invariant
│ │ │ ├── __init__.py
│ │ │ ├── analyzer.py
│ │ │ ├── client.py
│ │ │ ├── nodes.py
│ │ │ ├── parser.py
│ │ │ └── policies.py
│ │ └── options.py
│ ├── server
│ │ ├── README.md
│ │ ├── __init__.py
│ │ ├── app.py
│ │ ├── auth.py
│ │ ├── config
│ │ │ └── server_config.py
│ │ ├── conversation_manager
│ │ │ ├── conversation_manager.py
│ │ │ └── standalone_conversation_manager.py
│ │ ├── data_models
│ │ │ ├── conversation_info.py
│ │ │ ├── conversation_info_result_set.py
│ │ │ └── feedback.py
│ │ ├── file_config.py
│ │ ├── listen.py
│ │ ├── listen_socket.py
│ │ ├── middleware.py
│ │ ├── mock
│ │ │ ├── README.md
│ │ │ └── listen.py
│ │ ├── monitoring.py
│ │ ├── routes
│ │ │ ├── conversation.py
│ │ │ ├── feedback.py
│ │ │ ├── files.py
│ │ │ ├── git.py
│ │ │ ├── manage_conversations.py
│ │ │ ├── public.py
│ │ │ ├── security.py
│ │ │ ├── settings.py
│ │ │ └── trajectory.py
│ │ ├── session
│ │ │ ├── README.md
│ │ │ ├── __init__.py
│ │ │ ├── agent_session.py
│ │ │ ├── conversation.py
│ │ │ ├── conversation_init_data.py
│ │ │ └── session.py
│ │ ├── settings.py
│ │ ├── shared.py
│ │ ├── static.py
│ │ └── types.py
│ ├── storage
│ │ ├── __init__.py
│ │ ├── conversation
│ │ │ ├── conversation_store.py
│ │ │ ├── conversation_validator.py
│ │ │ └── file_conversation_store.py
│ │ ├── data_models
│ │ │ ├── conversation_metadata.py
│ │ │ ├── conversation_metadata_result_set.py
│ │ │ └── conversation_status.py
│ │ ├── files.py
│ │ ├── google_cloud.py
│ │ ├── local.py
│ │ ├── locations.py
│ │ ├── memory.py
│ │ ├── s3.py
│ │ └── settings
│ │ │ ├── file_settings_store.py
│ │ │ └── settings_store.py
│ └── utils
│ │ ├── async_utils.py
│ │ ├── chunk_localizer.py
│ │ ├── conversation_summary.py
│ │ ├── ensure_httpx_close.py
│ │ ├── http_session.py
│ │ ├── import_utils.py
│ │ ├── prompt.py
│ │ ├── search_utils.py
│ │ ├── shutdown_listener.py
│ │ ├── tenacity_stop.py
│ │ └── term_color.py
├── poetry.lock
├── prompt.txt
├── pydoc-markdown.yml
├── pyproject.toml
├── pytest.ini
├── scripts
│ ├── build.sh
│ ├── build_env.sh
│ ├── reasoning.py
│ ├── refine.py
│ ├── retrieval.py
│ ├── run_infer_template.sh
│ ├── run_swe_bench_hints_agentless.sh
│ ├── run_swe_bench_hints_agentless_all_bench_hints.sh
│ ├── run_swe_bench_hints_agentless_repo.sh
│ ├── run_swe_bench_hints_agentless_repo_2nd.sh
│ ├── run_swe_bench_plain.sh
│ ├── run_swe_bench_plain_claude.sh
│ ├── run_swe_bench_plain_qwen.sh
│ ├── run_swebench_eval_agentless_all_bench_hints.sh
│ ├── run_swebench_eval_hints_agentless_all_bench_hints.sh
│ ├── run_swebench_eval_hints_agentless_repo.sh
│ ├── run_swebench_eval_plain.sh
│ ├── run_swebench_eval_plain_claude.sh
│ └── run_swebench_eval_plain_qwen.sh
└── tests
│ ├── runtime
│ ├── conftest.py
│ ├── test_aci_edit.py
│ ├── test_bash.py
│ ├── test_browsergym_envs.py
│ ├── test_browsing.py
│ ├── test_env_vars.py
│ ├── test_images.py
│ ├── test_ipython.py
│ ├── test_llm_based_edit.py
│ ├── test_microagent.py
│ ├── test_replay.py
│ ├── test_runtime_resource.py
│ ├── test_stress_remote_runtime.py
│ ├── trajs
│ │ ├── basic.json
│ │ ├── basic_gui_mode.json
│ │ ├── basic_interactions.json
│ │ └── wrong_initial_state.json
│ └── utils
│ │ └── test_system_stats.py
│ ├── test_fileops.py
│ └── unit
│ ├── README.md
│ ├── resolver
│ ├── github
│ │ ├── test_guess_success.py
│ │ ├── test_issue_handler.py
│ │ ├── test_issue_handler_error_handling.py
│ │ ├── test_pr_handler_guess_success.py
│ │ ├── test_pr_title_escaping.py
│ │ ├── test_resolve_issues.py
│ │ └── test_send_pull_request.py
│ ├── gitlab
│ │ ├── test_gitlab_guess_success.py
│ │ ├── test_gitlab_issue_handler.py
│ │ ├── test_gitlab_issue_handler_error_handling.py
│ │ ├── test_gitlab_pr_handler_guess_success.py
│ │ ├── test_gitlab_pr_title_escaping.py
│ │ ├── test_gitlab_resolve_issues.py
│ │ └── test_gitlab_send_pull_request.py
│ ├── mock_output
│ │ └── repo
│ │ │ └── src
│ │ │ ├── App.css
│ │ │ ├── App.tsx
│ │ │ ├── PullRequestViewer.test.tsx
│ │ │ └── PullRequestViewer.tsx
│ ├── test_issue_references.py
│ └── test_patch_apply.py
│ ├── test_acompletion.py
│ ├── test_action_serialization.py
│ ├── test_agent_controller.py
│ ├── test_agent_delegation.py
│ ├── test_agent_session.py
│ ├── test_agent_skill.py
│ ├── test_arg_parser.py
│ ├── test_async_utils.py
│ ├── test_bash_parsing.py
│ ├── test_bash_ps1_metadata.py
│ ├── test_bash_session.py
│ ├── test_browsing_agent_parser.py
│ ├── test_chunk_localizer.py
│ ├── test_cli.py
│ ├── test_cli_sid.py
│ ├── test_codeact_agent.py
│ ├── test_command_success.py
│ ├── test_condenser.py
│ ├── test_config.py
│ ├── test_config_extended.py
│ ├── test_conversation.py
│ ├── test_conversation_memory.py
│ ├── test_conversation_summary.py
│ ├── test_docker_runtime.py
│ ├── test_ensure_httpx_close.py
│ ├── test_event_serialization.py
│ ├── test_event_stream.py
│ ├── test_file_conversation_store.py
│ ├── test_file_edit_observation.py
│ ├── test_file_settings_store.py
│ ├── test_function_calling.py
│ ├── test_github_service.py
│ ├── test_import_utils.py
│ ├── test_is_stuck.py
│ ├── test_iteration_limit.py
│ ├── test_json.py
│ ├── test_json_encoder.py
│ ├── test_listen.py
│ ├── test_llm.py
│ ├── test_llm_config.py
│ ├── test_llm_draft_config.py
│ ├── test_llm_fncall_converter.py
│ ├── test_logger.py
│ ├── test_logger_litellm.py
│ ├── test_logging.py
│ ├── test_memory.py
│ ├── test_message_serialization.py
│ ├── test_message_utils.py
│ ├── test_microagent_utils.py
│ ├── test_observation_serialization.py
│ ├── test_patch_whitespace.py
│ ├── test_prompt_caching.py
│ ├── test_prompt_manager.py
│ ├── test_provider_immutability.py
│ ├── test_runtime_build.py
│ ├── test_runtime_git_tokens.py
│ ├── test_runtime_reboot.py
│ ├── test_search_utils.py
│ ├── test_security.py
│ ├── test_session.py
│ ├── test_settings.py
│ ├── test_settings_api.py
│ ├── test_shutdown_listener.py
│ ├── test_socket_events.py
│ ├── test_standalone_conversation_manager.py
│ ├── test_state.py
│ ├── test_storage.py
│ ├── test_suggested_tasks.py
│ └── test_traffic_control.py
├── LICENSE
├── README.md
└── assets
└── agent_kb.png
/Agent-KB-GAIA/.env_template:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/.env_template
--------------------------------------------------------------------------------
/Agent-KB-GAIA/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/.gitignore
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/agent_from_any_llm.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/agent_from_any_llm.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/benchmark.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/benchmark.ipynb
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/e2b_example.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/e2b_example.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/gradio_upload.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/gradio_upload.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/inspect_multiagent_run.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/inspect_multiagent_run.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/multiple_tools.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/multiple_tools.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/open_deep_research/agent_kb/prompts.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/open_deep_research/agent_kb/prompts.yaml
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/open_deep_research/rag/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/open_deep_research/rag/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/open_deep_research/rag/embeddings/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/open_deep_research/rag/embeddings/base.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/open_deep_research/rag/logger.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/open_deep_research/rag/logger.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/open_deep_research/rag/types/enums.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/open_deep_research/rag/types/enums.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/open_deep_research/requirements.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/open_deep_research/requirements.txt
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/open_deep_research/run_gaia.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/open_deep_research/run_gaia.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/open_deep_research/scripts/cookies.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/open_deep_research/scripts/cookies.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/open_deep_research/scripts/scorer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/open_deep_research/scripts/scorer.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/open_deep_research/scripts/searcher.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/open_deep_research/scripts/searcher.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/rag.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/rag.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/rag_using_chromadb.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/rag_using_chromadb.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/examples/text_to_sql.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/examples/text_to_sql.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/pyproject.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/pyproject.toml
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/LICENSE
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/README.md
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/_function_type_hints_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/_function_type_hints_utils.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/agent_types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/agent_types.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/agents.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/agents.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/cli.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/cli.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/default_tools.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/default_tools.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/e2b_executor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/e2b_executor.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/gradio_ui.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/gradio_ui.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/local_python_executor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/local_python_executor.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/memory.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/memory.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/models.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/monitoring.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/monitoring.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/prompts/code_agent.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/prompts/code_agent.yaml
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/prompts/toolcalling_agent.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/prompts/toolcalling_agent.yaml
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/tool_validation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/tool_validation.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/tools.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/tools.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/utils.py
--------------------------------------------------------------------------------
/Agent-KB-GAIA/src/smolagents/vision_web_browser.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-GAIA/src/smolagents/vision_web_browser.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/.dockerignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/.dockerignore
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/.gitattributes:
--------------------------------------------------------------------------------
1 | *.ipynb linguist-vendored
2 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/.gitignore
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/.nvmrc:
--------------------------------------------------------------------------------
1 | 22
2 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/.openhands/microagents/glossary.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/.openhands/microagents/glossary.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/.openhands/microagents/repo.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/.openhands/microagents/repo.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/.openhands/setup.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/.openhands/setup.sh
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/CITATION.cff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/CITATION.cff
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/MANIFEST.in:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/MANIFEST.in
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/Makefile
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/containers/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/containers/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/containers/app/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/containers/app/Dockerfile
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/containers/app/config.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/containers/app/config.sh
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/containers/app/entrypoint.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/containers/app/entrypoint.sh
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/containers/build.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/containers/build.sh
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/containers/dev/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/containers/dev/Dockerfile
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/containers/dev/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/containers/dev/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/containers/dev/compose.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/containers/dev/compose.yml
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/containers/dev/dev.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/containers/dev/dev.sh
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/containers/e2b-sandbox/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/containers/e2b-sandbox/Dockerfile
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/containers/e2b-sandbox/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/containers/e2b-sandbox/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/containers/e2b-sandbox/e2b.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/containers/e2b-sandbox/e2b.toml
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/containers/runtime/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/containers/runtime/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/containers/runtime/config.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/containers/runtime/config.sh
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/dev_config/python/.pre-commit-config.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/dev_config/python/.pre-commit-config.yaml
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/dev_config/python/mypy.ini:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/dev_config/python/mypy.ini
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/dev_config/python/ruff.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/dev_config/python/ruff.toml
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docker-compose.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docker-compose.yml
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/.gitignore
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/DOC_STYLE_GUIDE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/DOC_STYLE_GUIDE.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/babel.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/babel.config.js
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/docusaurus.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/docusaurus.config.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/i18n/fr/code.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/i18n/fr/code.json
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/i18n/ja/code.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/i18n/ja/code.json
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/i18n/pt-BR/code.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/i18n/pt-BR/code.json
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/i18n/zh-Hans/code.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/i18n/zh-Hans/code.json
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/python/python.md:
--------------------------------------------------------------------------------
1 | # Python 文档
2 |
3 | 部署后文档将显示在此处。
4 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/python/python.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/python/python.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/python/sidebar.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/python/sidebar.json
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/about.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/about.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/agents.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/agents.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/architecture/runtime.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/architecture/runtime.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/feedback.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/feedback.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/getting-started.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/getting-started.mdx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/how-to/cli-mode.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/how-to/cli-mode.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/how-to/debugging.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/how-to/debugging.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/how-to/github-action.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/how-to/github-action.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/how-to/gui-mode.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/how-to/gui-mode.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/how-to/headless-mode.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/how-to/headless-mode.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/installation.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/installation.mdx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/key-features.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/key-features.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/llms/azure-llms.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/llms/azure-llms.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/llms/google-llms.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/llms/google-llms.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/llms/groq.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/llms/groq.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/llms/litellm-proxy.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/llms/litellm-proxy.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/llms/llms.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/llms/llms.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/llms/local-llms.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/llms/local-llms.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/llms/openai-llms.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/llms/openai-llms.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/llms/openrouter.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/llms/openrouter.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/runtimes-index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/runtimes-index.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/runtimes.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/runtimes.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/runtimes/daytona.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/runtimes/daytona.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/runtimes/docker.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/runtimes/docker.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/runtimes/local.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/runtimes/local.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/runtimes/modal.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/runtimes/modal.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/modules/usage/runtimes/remote.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/modules/usage/runtimes/remote.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/package-lock.json
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/package.json
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/plugins/tailwind-config.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/plugins/tailwind-config.cjs
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/sidebars.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/sidebars.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/src/components/CustomFooter.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/src/components/CustomFooter.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/src/components/Demo/Demo.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/src/components/Demo/Demo.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/src/components/Demo/index.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/src/components/Demo/index.module.css
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/src/css/custom.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/src/css/custom.css
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/src/css/footer.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/src/css/footer.css
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/src/css/homepageHeader.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/src/css/homepageHeader.css
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/src/pages/_footer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/src/pages/_footer.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/src/pages/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/src/pages/index.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/src/theme/Layout/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/src/theme/Layout/index.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/static/.nojekyll:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/static/img/backend_architecture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/static/img/backend_architecture.png
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/static/img/backend_architecture.puml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/static/img/backend_architecture.puml
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/static/img/backend_architecture.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/static/img/backend_architecture.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/static/img/logo-square.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/static/img/logo-square.png
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/static/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/static/img/logo.png
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/static/img/results.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/static/img/results.png
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/static/img/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/static/img/screenshot.png
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/static/img/system_architecture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/static/img/system_architecture.png
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/static/img/system_architecture.puml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/static/img/system_architecture.puml
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/static/img/system_architecture.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/static/img/system_architecture.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/static/img/teaser.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/static/img/teaser.mp4
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/translation_cache.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/translation_cache.json
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/translation_updater.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/translation_updater.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/tsconfig.json
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/docs/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/docs/yarn.lock
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/EDA/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/EDA/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/EDA/game.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/EDA/game.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/EDA/run_infer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/EDA/run_infer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/agent_bench/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/biocoder/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/biocoder/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/biocoder/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/biocoder/utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/bird/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/bird/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/bird/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/bird/run_infer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/bird/run_infer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/commit0/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/commit0/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/commit0/run_infer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/commit0/run_infer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/discoverybench/eval_utils/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/gaia/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/gaia/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/gaia/get_score.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/gaia/get_score.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/gaia/run_infer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/gaia/run_infer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/gaia/scorer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/gaia/scorer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/gaia/tmp.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/gaia/tmp.ipynb
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/gorilla/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/gorilla/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/gorilla/run_infer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/gorilla/run_infer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/gorilla/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/gorilla/utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/gpqa/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/gpqa/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/gpqa/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/gpqa/run_infer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/gpqa/run_infer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/humanevalfix/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/logic_reasoning/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/miniwob/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/miniwob/Dockerfile
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/miniwob/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/miniwob/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/miniwob/run_infer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/miniwob/run_infer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/mint/.gitignore:
--------------------------------------------------------------------------------
1 | !requirements.txt
2 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/mint/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/mint/Dockerfile
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/mint/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/mint/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/mint/datatypes.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/mint/datatypes.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/mint/env.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/mint/env.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/mint/run_infer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/mint/run_infer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/mint/tasks/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/mint/tasks/base.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/mint/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/mint/utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/ml_bench/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/ml_bench/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/ml_bench/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/swe_bench.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/swe_bench.zip
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/swe_bench/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/swe_bench/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/swe_bench/SWE-Gym.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/swe_bench/SWE-Gym.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/swe_bench/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/swe_bench/examples/run_id.txt:
--------------------------------------------------------------------------------
1 | RUN_ID: 20250405_164903
2 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/testgeneval/NOTES.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/testgeneval/NOTES.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/testgeneval/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/testgeneval/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/testgeneval/utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/toolqa/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/toolqa/Dockerfile
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/toolqa/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/toolqa/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/toolqa/run_infer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/toolqa/run_infer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/toolqa/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/toolqa/utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/visualwebarena/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/webarena/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/benchmarks/webarena/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/benchmarks/webarena/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/integration_tests/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/integration_tests/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/integration_tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/integration_tests/run_infer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/integration_tests/run_infer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/integration_tests/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/integration_tests/tests/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/integration_tests/tests/base.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/regression/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | outputs
3 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/regression/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/regression/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/regression/cases/express/task.txt:
--------------------------------------------------------------------------------
1 | Write a simple hello world server in node Express
2 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/regression/cases/hello-name/start/hello_world.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 | echo "hello world"
3 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/regression/cases/node-cli-rewrite/start/commands/reverse.py:
--------------------------------------------------------------------------------
1 | def reverse_string(s):
2 | return s[::-1]
3 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/regression/cases/node-cli-rewrite/task.txt:
--------------------------------------------------------------------------------
1 | Please rewrite the entire CLI in node.js
2 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/regression/cases/python-cli-help/start/commands/reverse.py:
--------------------------------------------------------------------------------
1 | def reverse_string(s):
2 | return s[::-1]
3 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/regression/cases/react-todo/task.txt:
--------------------------------------------------------------------------------
1 | Write a simple TODO list application in React
2 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/regression/conftest.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/regression/conftest.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/regression/run_tests.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/regression/run_tests.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/static/example_task_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/static/example_task_1.png
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/utils/agentic_knowledge_base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/utils/agentic_knowledge_base.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/utils/shared.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/utils/shared.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/evaluation/utils/version_control.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/evaluation/utils/version_control.sh
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/.env.sample:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/.env.sample
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/.eslintrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/.eslintrc
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/.gitignore
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/.husky/pre-commit:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | cd frontend
3 | lint-staged
4 | vitest run
5 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/.npmrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/.npmrc
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "trailingComma": "all"
3 | }
4 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/__tests__/hooks/use-rate.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/__tests__/hooks/use-rate.test.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/__tests__/initial-query.test.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/__tests__/initial-query.test.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/__tests__/routes/_oh.app.test.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/__tests__/routes/_oh.app.test.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/__tests__/routes/_oh.test.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/__tests__/routes/_oh.test.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/__tests__/routes/home.test.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/__tests__/routes/home.test.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/__tests__/utils/format-ms.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/__tests__/utils/format-ms.test.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/__tests__/utils/is-number.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/__tests__/utils/is-number.test.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/__tests__/utils/utils.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/__tests__/utils/utils.test.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/global.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/global.d.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/index.html
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/package-lock.json
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/package.json
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/playwright.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/playwright.config.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/postcss.config.js
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/public/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/public/android-chrome-192x192.png
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/public/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/public/android-chrome-512x512.png
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/public/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/public/apple-touch-icon.png
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/public/beep.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/public/beep.wav
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/public/browserconfig.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/public/browserconfig.xml
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/public/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/public/favicon-16x16.png
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/public/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/public/favicon-32x32.png
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/public/favicon.ico
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/public/mockServiceWorker.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/public/mockServiceWorker.js
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/public/mstile-150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/public/mstile-150x150.png
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/public/robots.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/public/robots.txt
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/public/safari-pinned-tab.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/public/safari-pinned-tab.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/public/site.webmanifest:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/public/site.webmanifest
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/react-router.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/react-router.config.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/scripts/detect-node-version.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/scripts/detect-node-version.js
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/api/git.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/api/git.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/api/invariant-service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/api/invariant-service.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/api/open-hands-axios.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/api/open-hands-axios.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/api/open-hands.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/api/open-hands.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/api/open-hands.types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/api/open-hands.types.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/assets/arrow.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/assets/arrow.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/assets/calendar.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/assets/calendar.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/assets/chevron-left.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/assets/chevron-left.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/assets/chevron-right.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/assets/chevron-right.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/assets/cmd-line.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/assets/cmd-line.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/assets/cog-tooth.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/assets/cog-tooth.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/assets/confirm.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/assets/confirm.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/assets/earth.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/assets/earth.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/assets/logo.png
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/assets/notification.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/assets/notification.mp3
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/assets/pause.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/assets/pause.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/assets/pencil.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/assets/pencil.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/assets/play.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/assets/play.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/assets/reject.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/assets/reject.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/assets/stop.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/assets/stop.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/assets/vscode-alt.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/assets/vscode-alt.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/components/layout/nav-tab.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/components/layout/nav-tab.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/context/auth-context.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/context/auth-context.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/context/files.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/context/files.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/entry.client.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/entry.client.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/mutation/use-logout.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/mutation/use-logout.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/query/use-balance.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/query/use-balance.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/query/use-config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/query/use-config.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/query/use-get-policy.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/query/use-get-policy.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/query/use-get-traces.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/query/use-get-traces.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/query/use-git-user.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/query/use-git-user.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/query/use-is-authed.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/query/use-is-authed.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/query/use-list-file.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/query/use-list-file.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/query/use-list-files.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/query/use-list-files.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/query/use-settings.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/query/use-settings.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/query/use-vscode-url.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/query/use-vscode-url.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/use-app-logout.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/use-app-logout.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/use-auto-title.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/use-auto-title.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/use-debounce.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/use-debounce.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/use-effect-once.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/use-effect-once.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/use-end-session.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/use-end-session.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/use-github-auth-url.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/use-github-auth-url.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/use-rate.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/use-rate.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/use-scroll-to-bottom.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/use-scroll-to-bottom.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/use-terminal.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/use-terminal.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/hooks/useNotification.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/hooks/useNotification.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/i18n/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/i18n/index.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/i18n/translation.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/i18n/translation.json
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/academy.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/academy.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/angle-down-solid.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/angle-down-solid.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/angle-up-solid.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/angle-up-solid.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/arrow-send.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/arrow-send.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/build-it.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/build-it.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/check-circle-solid.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/check-circle-solid.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/checkmark.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/checkmark.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/clip.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/clip.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/clipboard.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/clipboard.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/close.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/close.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/cloud-connection.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/cloud-connection.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/code.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/code.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/copy.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/copy.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/default-user.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/default-user.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/docs.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/docs.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/ellipsis-h.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/ellipsis-h.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/export.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/export.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/external-link.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/external-link.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/folder.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/folder.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/globe.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/globe.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/lightbulb.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/lightbulb.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/list-type-number.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/list-type-number.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/loading-outer.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/loading-outer.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/message.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/message.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/money.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/money.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/new-project.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/new-project.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/play.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/play.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/plus.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/plus.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/profile.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/profile.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/refresh.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/refresh.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/send.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/send.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/settings.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/settings.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/success.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/success.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/thumbs-down.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/thumbs-down.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/thumbs-up.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/thumbs-up.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/warning.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/warning.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/icons/x-circle-solid.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/icons/x-circle-solid.svg
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/index.css
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/message.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/message.d.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/mocks/billing-handlers.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/mocks/billing-handlers.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/mocks/browser.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/mocks/browser.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/mocks/handlers.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/mocks/handlers.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/mocks/handlers.ws.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/mocks/handlers.ws.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/mocks/mock-ws-helpers.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/mocks/mock-ws-helpers.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/mocks/node.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/mocks/node.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/mocks/session-history.mock.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/mocks/session-history.mock.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/query-client-config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/query-client-config.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/react-app-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/root.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/root.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/routes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/routes.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/routes/_oh._index/route.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/routes/_oh._index/route.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/routes/_oh.app.browser.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/routes/_oh.app.browser.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/routes/_oh.app.jupyter.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/routes/_oh.app.jupyter.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/routes/_oh.app/route.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/routes/_oh.app/route.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/routes/_oh/route.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/routes/_oh/route.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/routes/account-settings.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/routes/account-settings.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/routes/app.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/routes/app.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/routes/billing.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/routes/billing.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/routes/settings.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/routes/settings.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/services/actions.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/services/actions.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/services/chat-service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/services/chat-service.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/services/observations.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/services/observations.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/services/settings.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/services/settings.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/services/terminal-service.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/services/terminal-service.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/state/agent-slice.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/state/agent-slice.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/state/browser-slice.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/state/browser-slice.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/state/chat-slice.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/state/chat-slice.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/state/code-slice.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/state/code-slice.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/state/command-slice.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/state/command-slice.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/state/file-state-slice.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/state/file-state-slice.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/state/initial-query-slice.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/state/initial-query-slice.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/state/jupyter-slice.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/state/jupyter-slice.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/state/metrics-slice.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/state/metrics-slice.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/state/status-slice.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/state/status-slice.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/store.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/store.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/tailwind.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/tailwind.css
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/types/action-type.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/types/action-type.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/types/agent-state.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/types/agent-state.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/types/config-type.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/types/config-type.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/types/core/actions.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/types/core/actions.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/types/core/base.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/types/core/base.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/types/core/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/types/core/index.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/types/core/observations.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/types/core/observations.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/types/core/variances.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/types/core/variances.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/types/file-system.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/types/file-system.d.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/types/git.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/types/git.d.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/types/message.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/types/message.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/types/observation-type.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/types/observation-type.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/types/react-query.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/types/react-query.d.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/types/response-type.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/types/response-type.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/types/settings.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/types/settings.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/types/tab-option.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/types/tab-option.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/amount-is-valid.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/amount-is-valid.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/base64-to-blob.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/base64-to-blob.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/beep.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/beep.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/browser-tab.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/browser-tab.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/convert-file-to-text.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/convert-file-to-text.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/download-json.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/download-json.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/download-trajectory.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/download-trajectory.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/error-handler.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/error-handler.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/event-logger.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/event-logger.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/feature-flags.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/feature-flags.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/format-ms.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/format-ms.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/format-time-delta.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/format-time-delta.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/get-random-key.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/get-random-key.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/is-custom-model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/is-custom-model.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/is-number.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/is-number.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/map-provider.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/map-provider.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/parse-cell-content.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/parse-cell-content.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/parse-github-url.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/parse-github-url.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/sanitize-query.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/sanitize-query.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/settings-utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/settings-utils.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/suggestions/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/suggestions/index.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/toast.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/toast.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/type-guards.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/type-guards.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/utils.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/src/utils/verified-models.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/src/utils/verified-models.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/tailwind.config.js
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/test-utils.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/test-utils.tsx
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/tests/conversation-panel.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/tests/conversation-panel.test.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/tests/fixtures/project.zip:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/tests/helpers/confirm-settings.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/tests/helpers/confirm-settings.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/tests/redirect.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/tests/redirect.spec.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/tests/settings.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/tests/settings.spec.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/tsconfig.json
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/vite.config.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/frontend/vitest.setup.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/frontend/vitest.setup.ts
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/microagents/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/microagents/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/microagents/knowledge/add_agent.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/microagents/knowledge/add_agent.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/microagents/knowledge/docker.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/microagents/knowledge/docker.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/microagents/knowledge/flarglebargle.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/microagents/knowledge/flarglebargle.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/microagents/knowledge/github.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/microagents/knowledge/github.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/microagents/knowledge/gitlab.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/microagents/knowledge/gitlab.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/microagents/knowledge/kubernetes.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/microagents/knowledge/kubernetes.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/microagents/knowledge/npm.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/microagents/knowledge/npm.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/microagents/knowledge/pdflatex.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/microagents/knowledge/pdflatex.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/microagents/knowledge/security.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/microagents/knowledge/security.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/microagents/knowledge/swift-linux.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/microagents/knowledge/swift-linux.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/microagents/tasks/address_pr_comments.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/microagents/tasks/address_pr_comments.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/microagents/tasks/get_test_to_pass.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/microagents/tasks/get_test_to_pass.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/microagents/tasks/update_pr_description.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/microagents/tasks/update_pr_description.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/LICENSE
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/agenthub/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/agenthub/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/agenthub/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/agenthub/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/agenthub/browsing_agent/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/agenthub/browsing_agent/utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/agenthub/codeact_agent/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/agenthub/codeact_agent/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/agenthub/codeact_agent/prompts/user_prompt.j2:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/agenthub/dummy_agent/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/agenthub/dummy_agent/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/agenthub/dummy_agent/agent.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/agenthub/dummy_agent/agent.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/controller/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/controller/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/controller/action_parser.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/controller/action_parser.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/controller/agent.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/controller/agent.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/controller/agent_controller.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/controller/agent_controller.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/controller/replay.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/controller/replay.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/controller/state/state.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/controller/state/state.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/controller/state/task.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/controller/state/task.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/controller/stuck.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/controller/stuck.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/cli.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/cli.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/config/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/config/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/config/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/config/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/config/agent_config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/config/agent_config.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/config/app_config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/config/app_config.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/config/condenser_config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/config/condenser_config.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/config/config_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/config/config_utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/config/extended_config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/config/extended_config.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/config/llm_config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/config/llm_config.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/config/sandbox_config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/config/sandbox_config.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/config/security_config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/config/security_config.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/config/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/config/utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/const/guide_url.py:
--------------------------------------------------------------------------------
1 | TROUBLESHOOTING_URL = 'https://docs.all-hands.dev/modules/usage/troubleshooting'
2 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/download.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/download.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/exceptions.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/logger.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/logger.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/loop.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/loop.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/main.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/main.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/message.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/message.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/message_format.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/message_format.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/message_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/message_utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/schema/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/schema/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/schema/action.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/schema/action.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/schema/agent.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/schema/agent.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/schema/observation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/schema/observation.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/core/setup.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/core/setup.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/critic/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/critic/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/critic/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/critic/base.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/critic/finish_critic.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/critic/finish_critic.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/action/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/action/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/action/action.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/action/action.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/action/agent.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/action/agent.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/action/browse.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/action/browse.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/action/commands.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/action/commands.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/action/empty.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/action/empty.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/action/files.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/action/files.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/action/message.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/action/message.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/event.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/event.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/event_store.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/event_store.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/observation/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/observation/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/observation/agent.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/observation/agent.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/observation/browse.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/observation/browse.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/observation/commands.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/observation/commands.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/observation/delegate.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/observation/delegate.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/observation/empty.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/observation/empty.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/observation/error.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/observation/error.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/observation/files.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/observation/files.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/observation/reject.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/observation/reject.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/observation/success.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/observation/success.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/serialization/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/serialization/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/serialization/action.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/serialization/action.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/serialization/event.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/serialization/event.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/serialization/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/serialization/utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/stream.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/stream.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/tool.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/tool.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/events/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/events/utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/integrations/provider.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/integrations/provider.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/integrations/service_types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/integrations/service_types.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/integrations/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/integrations/utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/io/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/io/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/io/io.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/io/io.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/io/json.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/io/json.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/linter/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/linter/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/llm/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/llm/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/llm/async_llm.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/llm/async_llm.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/llm/bedrock.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/llm/bedrock.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/llm/debug_mixin.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/llm/debug_mixin.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/llm/fn_call_converter.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/llm/fn_call_converter.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/llm/llm.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/llm/llm.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/llm/metrics.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/llm/metrics.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/llm/retry_mixin.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/llm/retry_mixin.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/llm/streaming_llm.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/llm/streaming_llm.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/memory/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/memory/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/memory/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/memory/condenser/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/memory/condenser/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/memory/condenser/condenser.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/memory/condenser/condenser.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/memory/conversation_memory.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/memory/conversation_memory.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/memory/memory.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/memory/memory.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/memory/view.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/memory/view.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/microagent/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/microagent/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/microagent/microagent.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/microagent/microagent.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/microagent/types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/microagent/types.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/py.typed:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/resolver/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/interfaces/github.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/resolver/interfaces/github.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/interfaces/gitlab.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/resolver/interfaces/gitlab.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/interfaces/issue.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/resolver/interfaces/issue.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/io_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/resolver/io_utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/patching/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/resolver/patching/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/patching/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/resolver/patching/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/patching/apply.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/resolver/patching/apply.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/patching/exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/resolver/patching/exceptions.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/patching/patch.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/resolver/patching/patch.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/patching/snippets.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/resolver/patching/snippets.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/resolve_all_issues.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/resolver/resolve_all_issues.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/resolve_issue.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/resolver/resolve_issue.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/resolver_output.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/resolver/resolver_output.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/send_pull_request.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/resolver/send_pull_request.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/resolver/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/resolver/utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/base.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/browser/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/browser/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/browser/browser_env.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/browser/browser_env.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/browser/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/browser/utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/builder/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/builder/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/builder/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/builder/base.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/builder/docker.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/builder/docker.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/builder/remote.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/builder/remote.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/impl/daytona/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/impl/daytona/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/impl/e2b/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/impl/e2b/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/impl/e2b/e2b_runtime.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/impl/e2b/e2b_runtime.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/impl/e2b/filestore.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/impl/e2b/filestore.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/impl/e2b/sandbox.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/impl/e2b/sandbox.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/impl/runloop/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/impl/runloop/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/plugins/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/plugins/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/plugins/requirement.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/plugins/requirement.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/utils/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/utils/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/utils/bash.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/utils/bash.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/utils/command.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/utils/command.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/utils/edit.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/utils/edit.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/utils/file_viewer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/utils/file_viewer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/utils/files.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/utils/files.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/utils/log_streamer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/utils/log_streamer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/utils/memory_monitor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/utils/memory_monitor.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/utils/request.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/utils/request.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/utils/runtime_build.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/utils/runtime_build.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/utils/runtime_init.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/utils/runtime_init.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/utils/singleton.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/utils/system.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/utils/system.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/utils/system_stats.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/utils/system_stats.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/runtime/utils/tenacity_stop.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/runtime/utils/tenacity_stop.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/security/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/security/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/security/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/security/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/security/analyzer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/security/analyzer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/security/invariant/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/security/invariant/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/security/invariant/analyzer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/security/invariant/analyzer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/security/invariant/client.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/security/invariant/client.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/security/invariant/nodes.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/security/invariant/nodes.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/security/invariant/parser.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/security/invariant/parser.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/security/invariant/policies.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/security/invariant/policies.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/security/options.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/security/options.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/app.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/app.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/auth.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/auth.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/config/server_config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/config/server_config.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/data_models/feedback.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/data_models/feedback.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/file_config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/file_config.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/listen.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/listen.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/listen_socket.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/listen_socket.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/middleware.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/middleware.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/mock/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/mock/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/mock/listen.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/mock/listen.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/monitoring.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/monitoring.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/routes/conversation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/routes/conversation.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/routes/feedback.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/routes/feedback.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/routes/files.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/routes/files.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/routes/git.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/routes/git.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/routes/public.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/routes/public.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/routes/security.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/routes/security.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/routes/settings.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/routes/settings.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/routes/trajectory.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/routes/trajectory.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/session/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/session/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/session/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/session/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/session/agent_session.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/session/agent_session.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/session/conversation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/session/conversation.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/session/session.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/session/session.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/settings.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/settings.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/shared.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/shared.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/static.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/static.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/server/types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/server/types.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/storage/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/storage/__init__.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/storage/files.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/storage/files.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/storage/google_cloud.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/storage/google_cloud.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/storage/local.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/storage/local.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/storage/locations.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/storage/locations.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/storage/memory.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/storage/memory.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/storage/s3.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/storage/s3.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/utils/async_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/utils/async_utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/utils/chunk_localizer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/utils/chunk_localizer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/utils/conversation_summary.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/utils/conversation_summary.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/utils/ensure_httpx_close.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/utils/ensure_httpx_close.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/utils/http_session.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/utils/http_session.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/utils/import_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/utils/import_utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/utils/prompt.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/utils/prompt.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/utils/search_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/utils/search_utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/utils/shutdown_listener.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/utils/shutdown_listener.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/utils/tenacity_stop.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/utils/tenacity_stop.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/openhands/utils/term_color.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/openhands/utils/term_color.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/poetry.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/poetry.lock
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/prompt.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/prompt.txt
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/pydoc-markdown.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/pydoc-markdown.yml
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/pyproject.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/pyproject.toml
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/pytest.ini:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/pytest.ini
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/scripts/build.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 | set -e
3 |
4 | poetry build -v
5 |
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/scripts/build_env.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/scripts/build_env.sh
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/scripts/reasoning.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/scripts/reasoning.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/scripts/refine.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/scripts/refine.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/scripts/retrieval.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/scripts/retrieval.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/scripts/run_infer_template.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/scripts/run_infer_template.sh
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/scripts/run_swe_bench_hints_agentless.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/scripts/run_swe_bench_hints_agentless.sh
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/scripts/run_swe_bench_plain.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/scripts/run_swe_bench_plain.sh
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/scripts/run_swe_bench_plain_claude.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/scripts/run_swe_bench_plain_claude.sh
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/scripts/run_swe_bench_plain_qwen.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/scripts/run_swe_bench_plain_qwen.sh
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/scripts/run_swebench_eval_plain.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/scripts/run_swebench_eval_plain.sh
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/scripts/run_swebench_eval_plain_claude.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/scripts/run_swebench_eval_plain_claude.sh
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/scripts/run_swebench_eval_plain_qwen.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/scripts/run_swebench_eval_plain_qwen.sh
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/runtime/conftest.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/runtime/conftest.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/runtime/test_aci_edit.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/runtime/test_aci_edit.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/runtime/test_bash.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/runtime/test_bash.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/runtime/test_browsergym_envs.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/runtime/test_browsergym_envs.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/runtime/test_browsing.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/runtime/test_browsing.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/runtime/test_env_vars.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/runtime/test_env_vars.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/runtime/test_images.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/runtime/test_images.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/runtime/test_ipython.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/runtime/test_ipython.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/runtime/test_llm_based_edit.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/runtime/test_llm_based_edit.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/runtime/test_microagent.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/runtime/test_microagent.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/runtime/test_replay.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/runtime/test_replay.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/runtime/test_runtime_resource.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/runtime/test_runtime_resource.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/runtime/trajs/basic.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/runtime/trajs/basic.json
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/runtime/trajs/basic_gui_mode.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/runtime/trajs/basic_gui_mode.json
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/runtime/utils/test_system_stats.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/runtime/utils/test_system_stats.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/test_fileops.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/test_fileops.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/README.md
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/resolver/test_patch_apply.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/resolver/test_patch_apply.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_acompletion.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_acompletion.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_action_serialization.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_action_serialization.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_agent_controller.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_agent_controller.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_agent_delegation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_agent_delegation.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_agent_session.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_agent_session.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_agent_skill.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_agent_skill.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_arg_parser.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_arg_parser.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_async_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_async_utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_bash_parsing.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_bash_parsing.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_bash_ps1_metadata.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_bash_ps1_metadata.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_bash_session.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_bash_session.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_browsing_agent_parser.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_browsing_agent_parser.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_chunk_localizer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_chunk_localizer.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_cli.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_cli.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_cli_sid.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_cli_sid.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_codeact_agent.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_codeact_agent.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_command_success.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_command_success.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_condenser.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_condenser.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_config.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_config_extended.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_config_extended.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_conversation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_conversation.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_conversation_memory.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_conversation_memory.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_conversation_summary.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_conversation_summary.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_docker_runtime.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_docker_runtime.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_ensure_httpx_close.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_ensure_httpx_close.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_event_serialization.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_event_serialization.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_event_stream.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_event_stream.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_file_conversation_store.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_file_conversation_store.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_file_edit_observation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_file_edit_observation.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_file_settings_store.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_file_settings_store.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_function_calling.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_function_calling.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_github_service.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_github_service.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_import_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_import_utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_is_stuck.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_is_stuck.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_iteration_limit.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_iteration_limit.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_json.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_json.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_json_encoder.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_json_encoder.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_listen.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_listen.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_llm.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_llm.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_llm_config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_llm_config.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_llm_draft_config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_llm_draft_config.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_llm_fncall_converter.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_llm_fncall_converter.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_logger.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_logger.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_logger_litellm.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_logger_litellm.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_logging.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_logging.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_memory.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_memory.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_message_serialization.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_message_serialization.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_message_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_message_utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_microagent_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_microagent_utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_patch_whitespace.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_patch_whitespace.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_prompt_caching.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_prompt_caching.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_prompt_manager.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_prompt_manager.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_provider_immutability.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_provider_immutability.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_runtime_build.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_runtime_build.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_runtime_git_tokens.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_runtime_git_tokens.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_runtime_reboot.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_runtime_reboot.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_search_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_search_utils.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_security.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_security.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_session.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_session.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_settings.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_settings.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_settings_api.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_settings_api.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_shutdown_listener.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_shutdown_listener.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_socket_events.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_socket_events.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_state.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_state.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_storage.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_storage.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_suggested_tasks.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_suggested_tasks.py
--------------------------------------------------------------------------------
/Agent-KB-SWE-bench/tests/unit/test_traffic_control.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/Agent-KB-SWE-bench/tests/unit/test_traffic_control.py
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/README.md
--------------------------------------------------------------------------------
/assets/agent_kb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OPPO-PersonalAI/Agent-KB/HEAD/assets/agent_kb.png
--------------------------------------------------------------------------------