From 4fedcb18df274db99fa0fecbd951a592e3cd8afc Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Sat, 23 May 2026 10:32:04 +0000 Subject: [PATCH 1/2] docs: add Quick Start guide --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 0240bc0..84d1a6e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,21 @@ # Agentmail Python Library + +## Quick Start + +Install with: +```bash +pip install agentmail-python +``` + +Or clone and run: +```bash +git clone https://github.com/agentmail-to/agentmail-python.git +cd agentmail-python +python setup.py install +``` + + [![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fagentmail-to%2Fagentmail-python) [![pypi](https://img.shields.io/pypi/v/agentmail)](https://pypi.python.org/pypi/agentmail) From a14aef4ff1ade20f99c9ad941f0193525edde74c Mon Sep 17 00:00:00 2001 From: Typo Fix Bot Date: Sat, 30 May 2026 16:51:00 +0000 Subject: [PATCH 2/2] fix: correct package name and install method per PR feedback - Change 'pip install agentmail-python' to 'pip install agentmail' (correct package name) - Replace 'python setup.py install' with 'pip install -e .' (proper method) Based on cubic-dev-ai bot review feedback. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 84d1a6e..ba90668 100644 --- a/README.md +++ b/README.md @@ -5,14 +5,15 @@ Install with: ```bash -pip install agentmail-python +pip install agentmail ``` Or clone and run: ```bash git clone https://github.com/agentmail-to/agentmail-python.git cd agentmail-python -python setup.py install +pip install -e . +# or: pip install agentmail ```