commune-ai 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +19 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,6 +16,25 @@ Build agents that receive emails, reply in threads, access conversation history,
16
16
 
17
17
  ---
18
18
 
19
+ ## Table of Contents
20
+
21
+ - [Install](#install)
22
+ - [How to Setup (Dashboard Steps)](#how-to-setup-dashboard-steps)
23
+ - [1. Create and Verify Domain](#1-create-and-verify-domain)
24
+ - [2. Create Inbox](#2-create-inbox)
25
+ - [3. Create API Key](#3-create-api-key)
26
+ - [4. Configure Webhook](#4-configure-webhook)
27
+ - [5. Environment Variables](#5-environment-variables)
28
+ - [Receive emails instantly](#receive-emails-instantly)
29
+ - [Reply in email threads](#reply-in-email-threads)
30
+ - [Access conversation history](#access-conversation-history)
31
+ - [Manage Inboxes Programmatically](#manage-inboxes-programmatically)
32
+ - [Listen for Specific Inbox Events](#listen-for-specific-inbox-events)
33
+ - [Semantic Search (Coming Soon)](#semantic-search-coming-soon)
34
+ - [Complete agent example](#complete-agent-example)
35
+
36
+ ---
37
+
19
38
  ## Install
20
39
  ```bash
21
40
  npm install commune-ai
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "commune-ai",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Email infrastructure for AI agents - webhooks, threads, history, and semantic search",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",