EveryDev.ai
Subscribe
Home
Tools

3,121+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Open SWE
    Open SWE icon

    Open SWE

    Agent Frameworks
    Featured

    An open-source framework for building internal coding agents that integrate with Slack, Linear, and GitHub, built on LangGraph and Deep Agents.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully open-source under MIT license, free to use, modify, and deploy.

    Engagement

    Available On

    Linux
    Web
    API
    SDK
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent FrameworksAI Coding AssistantsAgent Harness

    Alternatives

    Agent OrchestratorBackground AgentsGambit
    Developer
    LangChain, Inc.San Francisco, CAEst. 2023$160M raised

    Listed Jul 2026

    About Open SWE

    Open SWE is an MIT-licensed, open-source framework released by LangChain in March 2026 for building internal coding agents that operate alongside engineering teams. It is built on LangGraph and Deep Agents, and provides the core architectural components observed across production coding agent deployments at companies like Stripe, Ramp, and Coinbase. The framework is available on GitHub and is designed to be customized for any organization's codebase and workflows.

    What It Is

    Open SWE is a customizable agent harness that gives engineering organizations a starting point for deploying AI coding agents internally. Rather than requiring teams to build from scratch, it packages the architectural patterns that have converged across multiple production deployments: isolated cloud sandboxes, curated toolsets, subagent orchestration, and integration with developer workflows like Slack, Linear, and GitHub. The framework composes on top of Deep Agents and LangGraph, meaning organizations can pull in upstream improvements without rebuilding their customizations.

    Architecture and Core Components

    Open SWE is structured around seven architectural decisions:

    • Agent harness: Composed on Deep Agents, similar to how Ramp built Inspect on OpenCode. Provides an upgrade path and customization without forking.
    • Sandbox: Each task runs in an isolated cloud Linux environment. Supported providers include Modal, Daytona, Runloop, E2B, and LangSmith. Sandboxes persist per thread and auto-recreate if unreachable.
    • Curated toolset: Approximately 15 tools including execute (shell), fetch_url, http_request, linear_comment, slack_thread_reply, and built-in Deep Agents tools (read_file, write_file, edit_file, ls, glob, grep, write_todos, task).
    • Context engineering: Reads an AGENTS.md file from the repository root and injects it into the system prompt alongside full Linear issue or Slack thread history.
    • Orchestration: Combines subagent spawning via the task tool with deterministic middleware hooks (check_message_queue_before_model, notify_step_limit_reached, ToolErrorMiddleware).
    • Invocation surfaces: Slack (mention the bot in any thread), Linear (comment @openswe on an issue), and GitHub (tag @openswe in PR comments).
    • Validation: Prompt-driven, with the agent instructed to run linters, formatters, and tests before committing and opening a draft PR.

    Why Deep Agents as the Foundation

    The blog post from LangChain explains that Deep Agents provides several infrastructure capabilities that make Open SWE composable: file-based context management to prevent context overflow on large codebases, a built-in write_todos planning primitive, native subagent isolation so subtasks don't pollute each other's conversation history, and middleware hooks for injecting deterministic logic at specific points in the agent loop. Because Deep Agents is maintained as a standalone library, improvements to context compression, prompt caching, and subagent orchestration flow to Open SWE without requiring rebuilds.

    Customization for Organizations

    Every major component is pluggable. Organizations can swap the sandbox provider, configure any LLM (the README shows both Claude Opus 4 and GPT-5.6-sol as examples), add tools for internal APIs or deployment systems, modify Slack/Linear/GitHub trigger logic, customize the system prompt and AGENTS.md incorporation logic, and add middleware hooks for validation, approval gates, or safety checks. Optional server-side integrations include Datadog and LangSmith observability tools (loaded only for authorized users) and Corridor guardrails via a hosted MCP server. A companion web dashboard (ui/) handles GitHub login, per-user model and profile settings, team defaults, enabled-repo management, user mappings, and an Agents chat UI.

    Update: Released March 2026

    Open SWE was announced on March 17, 2026 via the LangChain blog. The GitHub repository was created on May 21, 2025 and had accumulated over 10,000 stars and 1,167 forks as of July 2026, with active development continuing (last push July 10, 2026). The project is MIT-licensed and positioned as a reference implementation of production coding agent patterns, with a Customization Guide and Installation Guide included in the repository docs.

    Open SWE - 1

    Community Discussions

    Be the first to start a conversation about Open SWE

    Share your experience with Open SWE, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully open-source under MIT license, free to use, modify, and deploy.

    • MIT licensed
    • Full source code on GitHub
    • Slack, Linear, and GitHub invocation
    • Pluggable sandbox providers
    • Subagent orchestration

    Capabilities

    Key Features

    • Trigger from Slack, Linear, or GitHub via @openswe mention
    • Isolated cloud sandbox per task (Modal, Daytona, Runloop, E2B, LangSmith)
    • Subagent spawning for parallel subtasks via task tool
    • AGENTS.md context injection from repository root
    • Automatic PR creation and GitHub draft PR opening
    • Mid-run message injection via middleware
    • Curated toolset: execute, fetch_url, http_request, linear_comment, slack_thread_reply
    • Persistent sandbox per conversation thread with auto-recreation
    • Optional Datadog and LangSmith observability tools (admin-authorized)
    • Optional Corridor guardrails via hosted MCP server
    • Web dashboard for GitHub login, model settings, team defaults, and Agents chat UI
    • Pluggable sandbox provider, model, tools, triggers, system prompt, and middleware
    • Deterministic thread ID routing for follow-up messages
    • Parallel task execution across isolated sandboxes

    Integrations

    Slack
    Linear
    GitHub
    Modal
    Daytona
    Runloop
    E2B
    LangSmith
    Datadog
    Corridor
    Anthropic Claude
    OpenAI GPT
    LangGraph
    Deep Agents
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Open SWE and help others make informed decisions.

    Developer

    LangChain, Inc.

    LangChain is a company focused on building a comprehensive framework for developing applications with large language models (LLMs) through composable building blocks for orchestrating agentic workflows.

    Founded 2023
    San Francisco, CA
    $160M raised
    200 employees

    Used by

    Lyft
    Toyota
    Box
    monday.com
    +2 more
    Read more about LangChain, Inc.
    WebsiteGitHubX / Twitter
    8 tools in directory

    Similar Tools

    Agent Orchestrator icon

    Agent Orchestrator

    An open-source agent orchestration framework by ComposioHQ for building, coordinating, and managing multi-agent AI systems.

    Background Agents icon

    Background Agents

    An open-source framework for background coding agents that autonomously handle tasks from code to tests to merged PRs, enabling non-engineers to ship code.

    Gambit icon

    Gambit

    Gambit is an open-source agent harness framework by Bolt Foundry for building, running, and verifying LLM workflows using typed decks.

    Browse all tools

    Related Topics

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    490 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    621 tools

    Agent Harness

    Infrastructure, orchestrators, and task runners that wrap around LLM coding agents — covering session management, context delivery, worktree isolation, architecture enforcement, and issue-to-PR pipelines.

    111 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions