Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.3.0 #166

Merged
merged 19 commits into from
Dec 23, 2024
23 changes: 23 additions & 0 deletions packages/docs/pages/changelog.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## 1.2.35

- **New Features**

- Enhanced documentation for the `paymentagent` with multimedia elements and clearer content structure.
- Added a new XMTP plugin for secure messaging with installation instructions and usage examples.
- Introduced `createAgent` function for streamlined agent creation across multiple templates.
- Added a new `xmtp-client` package for secure messaging with installation instructions and usage examples.
- Added a new `xmtp` package for secure messaging with installation instructions and usage examples.

- **Bug Fixes**

- Corrected video file extensions in documentation.

- **Documentation**

- Updated various documentation files for clarity and improved organization, including the changelog and agent concepts.
- Improved the "Compatible apps" section in the quickstart guide for better clarity.
- Enhanced the XMTP plugin documentation to include detailed usage examples and installation steps.

- **Chores**
- Updated versioning scheme across multiple packages to a generic "patch".

## 1.2.32

- **New Features**
Expand Down
8 changes: 6 additions & 2 deletions packages/docs/pages/plugins/xmtp.mdx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# XMTP AI

AI is transforming consumer tech, with messaging becoming the main channel for interacting with agent services. This shift will scale message traffic astronomically, akin to the web’s rise in the 2000s. Just as Cloudflare secured web traffic, messaging will need robust encryption, threat protection, and scalable infrastructure to handle the surge and protect sensitive AI-driven interactions.
AI is transforming consumer tech, with messaging becoming the main channel for interacting with agent services. This shift will scale message traffic astronomically, analogous to the web’s rise in the 2000s. Just as Cloud-flare secured web traffic, messaging will need robust scalable end-to-end encrypted messages to protect sensitive communications.

## Risks

⚠️ **Risks of not using end-to-end encryption**: Exposes users to Man in the Middle Attacks.
Risks of not using end-to-end encryption:

> **Man in the Middle Attacks (MITM)**: Intercept requests in between to alter or manipulate data sent or received by the AI service or user.

Expand All @@ -18,6 +18,8 @@ Using ephemeral addresses can enhance security by allowing users to message agen

## Backend

You can use the `xmtp` package to create wrapper around the messages sent and received by the AI agent.

### Installation

Install the `xmtp` package
Expand Down Expand Up @@ -87,6 +89,8 @@ const onMessage = async (message, user) => {

## Frontend

Same as the backend, you can use the `xmtp-client` package to create a client that decrypts and encrypts messages locally.

### Installation

Install the `xmtp-client` package compatible with your frontend framework.
Expand Down
Loading