From 0aa0c7b423c01c3e6d593a6c97c41d115b05ac8a Mon Sep 17 00:00:00 2001 From: Haakam Date: Mon, 17 Aug 2026 01:54:31 -0700 Subject: [PATCH 1/2] Add MIT LICENSE This repository is publicly distributed but carried no license file, which leaves the default of all rights reserved and gives users no grant to the code they install. Adds the MIT text already used in agentextract. Co-Authored-By: Claude Opus 5 --- .fernignore | 2 ++ LICENSE | 21 +++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 LICENSE diff --git a/.fernignore b/.fernignore index 950b552..ff1bba6 100644 --- a/.fernignore +++ b/.fernignore @@ -2,3 +2,5 @@ src/agentmail/core/query_encoder.py tests/utils/test_query_encoding.py + +LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7003b4c --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 AgentMail + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. From f3c542b91254c9026cbe9e3f88eead993869975d Mon Sep 17 00:00:00 2001 From: Haakam Date: Mon, 17 Aug 2026 01:58:31 -0700 Subject: [PATCH 2/2] Let Fern manage LICENSE rather than ignoring it The license is being configured in agentmail-docs/fern/generators.yml via the github.license field, so Fern generates and maintains this file. Keeping it in .fernignore would prevent that. Co-Authored-By: Claude Opus 5 --- .fernignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/.fernignore b/.fernignore index ff1bba6..950b552 100644 --- a/.fernignore +++ b/.fernignore @@ -2,5 +2,3 @@ src/agentmail/core/query_encoder.py tests/utils/test_query_encoding.py - -LICENSE