From 6810e0699b60bfc37acc4d866e92db34ac7ff6c3 Mon Sep 17 00:00:00 2001 From: Cesar Garcia <128240629+Chesars@users.noreply.github.com> Date: Sat, 22 Nov 2025 15:45:29 -0300 Subject: [PATCH] docs: Add mini-swe-agent to Projects built on LiteLLM (#16971) * docs: Add mini-swe-agent to projects page Add mini-swe-agent to the documentation projects page. mini-swe-agent is a minimal AI coding agent that resolves >70% of GitHub issues in SWE-bench, built on LiteLLM for model flexibility. - Added projects/mini-swe-agent.md documentation - Updated sidebars.js to include mini-swe-agent in projects list * docs: Update Singularity to Apptainer in mini-swe-agent.md --- docs/my-website/docs/projects/mini-swe-agent.md | 17 +++++++++++++++++ docs/my-website/sidebars.js | 1 + 2 files changed, 18 insertions(+) create mode 100644 docs/my-website/docs/projects/mini-swe-agent.md diff --git a/docs/my-website/docs/projects/mini-swe-agent.md b/docs/my-website/docs/projects/mini-swe-agent.md new file mode 100644 index 0000000000..525f541899 --- /dev/null +++ b/docs/my-website/docs/projects/mini-swe-agent.md @@ -0,0 +1,17 @@ +# mini-swe-agent + +**mini-swe-agent** The 100 line AI agent that solves GitHub issues & more. + +Key features: +- Just 100 lines of Python - radically simple and hackable +- Uses bash only (no custom tools) for maximum flexibility +- Built on LiteLLM for model flexibility +- Comes with CLI and Python bindings +- Deployable anywhere: local, docker, podman, apptainer + +Perfect for researchers, developers who want readable tools, and engineers who need easy deployment. + +- [Website](https://mini-swe-agent.com/latest/) +- [GitHub](https://github.com/SWE-agent/mini-swe-agent) +- [Quick Start](https://mini-swe-agent.com/latest/quickstart/) +- [Documentation](https://mini-swe-agent.com/latest/) diff --git a/docs/my-website/sidebars.js b/docs/my-website/sidebars.js index 08857ce07b..4a8b6bb228 100644 --- a/docs/my-website/sidebars.js +++ b/docs/my-website/sidebars.js @@ -789,6 +789,7 @@ const sidebars = { }, items: [ "projects/smolagents", + "projects/mini-swe-agent", "projects/Docq.AI", "projects/PDL", "projects/OpenInterpreter",