Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,12 @@ agentmail <command> --arg @data://file.txt
## Documentation

[docs.agentmail.to](https://docs.agentmail.to)

## Quick Start

```bash
npm install -g @agentmail/cli
Copy link
Copy Markdown

@cubic-dev-ai cubic-dev-ai Bot May 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1: Conflicting npm package name in Quick Start section: @agentmail/cli should be agentmail-cli to match the canonical package name and existing Installation section

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At README.md, line 108:

<comment>Conflicting npm package name in Quick Start section: `@agentmail/cli` should be `agentmail-cli` to match the canonical package name and existing Installation section</comment>

<file context>
@@ -101,3 +101,12 @@ agentmail <command> --arg @data://file.txt
+## Quick Start
+
+```bash
+npm install -g @agentmail/cli
+agentmail init
+agentmail send --to user@example.com --subject "Hello"
</file context>
Suggested change
npm install -g @agentmail/cli
npm install -g agentmail-cli
Fix with Cubic

agentmail init
agentmail send --to user@example.com --subject "Hello"
```