Skip to content
This repository has been archived by the owner on Jan 18, 2025. It is now read-only.

Deprecate message-kit #173

Merged
merged 25 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": ["baselinks", "docs", "@xmtp/tsconfig"]
"ignore": ["base-links", "docs", "@xmtp/tsconfig"]
}
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

Welcome to the MessageKit community!

- See contibuting in [Docs](https://message-kit.org/framework/contribute)
- See contibuting in [Docs](https://message-kit.org/contribute)
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@

A set of tools for AI developers to build on top of [XMTP](https://xmtp.org)

- [`message-kit`](/packages/message-kit): A kit for quickly building messaging apps
- [`create-message-kit`](/packages/create-message-kit): A CLI for creating new apps easily
> Try XMTP using [xmtp.chat](https://xmtp.chat)

- [`docs`](/packages/docs): Documentation for MessageKit
- [`agent-sdk`](/packages/agent-sdk/): An xmtp node js wrapper for AI agents.
- [`baselinks`](/packages/baselinks): A suite of coinbase wallet usdc links
- [`agent-starter`](/packages/agent-starter/): An node js wrapper for AI agents around the [node-sdk](https://github.com/xmtp/xmtp-js/tree/main/sdks/node-sdk)
- [`gated-group`](/packages/gated-group): A gated group quickstart built on agent-starter

- [`base-links ⚠️`](/packages/base-links): A suite of coinbase wallet usdc links
- [`framework ⚠️`](/packages/framework): A kit for quickly building messaging apps
- [`cli ⚠️`](/packages/cli): A CLI for creating new apps easily

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion community/plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"author": "ephemeraHQ"
},
{
"href": "/plugins/baselinks",
"href": "/plugins/base-links",
"title": "Baselinks",
"description": "Use Baselinks to send frames.",
"icon": "🖼️",
Expand Down
17 changes: 10 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,38 @@
{
"name": "xmtp-ai",
"name": "message-kit",
"version": "1.2.35",
"private": true,
"type": "module",
"workspaces": [
"templates/*",
"packages/*",
"recipes/*",
"shared/*"
],
"scripts": {
"build": "yarn build:message-kit && yarn build:packages && yarn build:templates",
"build": "yarn build:message-kit && yarn build:packages && yarn build:templates && yarn build:recipes",
"build:agent-starter": "turbo run build --filter=./packages/agent-starter --force",
"build:message-kit": "turbo run build --filter=./packages/message-kit --force",
"build:packages": "turbo run build --filter='./packages/*' --filter='!./packages/message-kit'",
"build:recipes": "turbo run build --filter='./recipes/*'",
"build:templates": "turbo run build --filter='./templates/*'",
"build:xmtp": "turbo run build --filter=./packages/agent-sdk --force",
"bump": "node scripts/update-version.js -t patch",
"changeset": "yarn copy && changeset add --type patch",
"clean": "turbo run clean && rm -rf node_modules && rm -rf .turbo && rm -rf packages/message-kit/dist && rm -rf packages/message-kit/.turbo && rm -rf packages/docs/dist && yarn cache clean",
"cli": "node packages/create-message-kit/index.js",
"copy": "node scripts/copyTemplates.js",
"dev": "yarn build:xmtp && cd packages/message-kit && yarn build:watch",
"dev": "yarn build:agent-starter && cd packages/message-kit && yarn build:watch",
"docs": "cd packages/docs && yarn dev",
"domain": "ngrok http --hostname=frames.ngrok.app 3000",
"format": "turbo run format",
"links": " cd packages/baselinks && yarn dev",
"gated": "yarn build:agent-starter && cd recipes/gated-group && yarn dev",
"links": " cd packages/base-links && yarn dev",
"play": "cd templates/playground && yarn dev",
"publish": "yarn install && yarn build && yarn copy && node scripts/publish.js",
"templates": "node scripts/devTemplates.js",
"test": "FORCE_COLOR=1 turbo run test --force --concurrency=1",
"test:client": "cd packages/agent-sdk/tests && yarn test:client",
"test:e2e": "cd packages/agent-sdk/tests && yarn test:e2e",
"test:client": "cd packages/agent-starter/tests && yarn test:client",
"test:e2e": "cd packages/agent-starter/tests && yarn test:e2e",
"test:flow": "cd packages/message-kit/tests && yarn test:flow",
"test:intent": "cd packages/message-kit/tests && yarn test:intent",
"test:links": "cd packages/message-kit/tests && yarn test:links",
Expand Down
73 changes: 0 additions & 73 deletions packages/agent-sdk/README.md

This file was deleted.

92 changes: 0 additions & 92 deletions packages/agent-sdk/src/lib/parse.ts

This file was deleted.

Loading
Loading