Skip to content

Commit e6c5c46

Browse files
authored
Merge pull request #3 from ephemeraHQ/rygine/updates
Cleanup
2 parents 55c2af9 + 8769b51 commit e6c5c46

File tree

19 files changed

+712
-945
lines changed

19 files changed

+712
-945
lines changed

.changeset/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
"access": "public",
1313
"baseBranch": "main",
1414
"updateInternalDependencies": "patch",
15-
"ignore": ["@xmtp/tsconfig"]
15+
"ignore": ["@xmtp/tsconfig", "@example/*"]
1616
}

.github/ISSUE_TEMPLATE/plugin_request.yml

Whitespace-only changes.

.github/ISSUE_TEMPLATE/skill_request.yml

-33
This file was deleted.

.github/workflows/build.yml

+3-28
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ jobs:
1717
run: corepack enable
1818
- name: Install dependencies
1919
run: yarn
20-
- name: Install docs dependencies
21-
run: |
22-
cd packages/docs
23-
yarn
2420
- name: Build
2521
run: yarn build
2622
- name: Check code format
@@ -43,27 +39,6 @@ jobs:
4339
- name: Install dependencies
4440
run: yarn
4541
- name: Build
46-
run: yarn build:xmtp-agents
47-
- name: Test client
48-
run: yarn test:client
49-
continue-on-error: true
50-
env:
51-
ENCRYPTION_KEY: ${{ secrets.ENCRYPTION_KEY }}
52-
FIXED_KEY: ${{ secrets.FIXED_KEY }}
53-
- name: Test parsing
54-
run: yarn test:parsing
55-
continue-on-error: true
56-
env:
57-
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
58-
- name: Test Frames
59-
run: yarn test:frames
60-
- name: Test Prompting
61-
continue-on-error: true
62-
env:
63-
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
64-
run: yarn test:prompt
65-
- name: Test Intent
66-
continue-on-error: true
67-
env:
68-
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
69-
run: yarn test:intent
42+
run: yarn build
43+
- name: Run tests
44+
run: yarn test

.node-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.14.0
1+
22.13.0

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.14.0
1+
22.13.0

.yarn/releases/yarn-4.5.1.cjs .yarn/releases/yarn-4.6.0.cjs

+278-278
Large diffs are not rendered by default.

.yarnrc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ enableTelemetry: false
66

77
nodeLinker: node-modules
88

9-
yarnPath: .yarn/releases/yarn-4.5.1.cjs
9+
yarnPath: .yarn/releases/yarn-4.6.0.cjs

CHANGELOG.md

-5
This file was deleted.

examples/express/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
{
2-
"name": "multi-agent-express",
2+
"name": "@example/multi-agent-express",
33
"private": true,
44
"type": "module",
55
"scripts": {
66
"build": "tsc",
7+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
78
"dev": "tsc -w & sleep 1 && NODE_NO_WARNINGS=1 node --watch dist/index.js",
89
"start": "node dist/index.js"
910
},
1011
"dependencies": {
1112
"@xmtp/agent-starter": "workspace:*",
1213
"axios": "^1.7.9",
13-
"express": "^4.19.2"
14+
"express": "^4.21.2"
1415
},
1516
"devDependencies": {
16-
"@types/express": "^4.17.20",
17-
"@types/node": "^20.14.2",
18-
"typescript": "^5.4.5"
17+
"@types/express": "^4.17.21",
18+
"@types/node": "^22.10.9",
19+
"typescript": "^5.7.3"
1920
},
20-
"packageManager": "yarn@4.5.1",
2121
"engines": {
22-
"node": ">=20"
22+
"node": ">=22"
2323
}
2424
}

examples/gated-group/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
{
2-
"name": "gated-group",
2+
"name": "@example/gated-group",
33
"private": true,
44
"type": "module",
55
"scripts": {
66
"build": "tsc",
7+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
78
"dev": "tsc -w & sleep 1 && NODE_NO_WARNINGS=1 node --watch dist/index.js",
89
"start": "node dist/index.js"
910
},
1011
"dependencies": {
1112
"@xmtp/agent-starter": "workspace:*",
1213
"alchemy-sdk": "^3.5.1",
13-
"express": "^4.19.2"
14+
"express": "^4.21.2"
1415
},
1516
"devDependencies": {
16-
"@types/express": "^4.17.20",
17-
"@types/node": "^20.14.2",
18-
"typescript": "^5.4.5"
17+
"@types/express": "^4.17.21",
18+
"@types/node": "^22.10.9",
19+
"typescript": "^5.7.3"
1920
},
20-
"packageManager": "yarn@4.5.1",
2121
"engines": {
22-
"node": ">=20"
22+
"node": ">=22"
2323
}
2424
}

examples/gm/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
2-
"name": "gm",
2+
"name": "@example/gm",
33
"private": true,
44
"type": "module",
55
"scripts": {
66
"build": "tsc",
7+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
78
"dev": "tsc -w & sleep 1 && NODE_NO_WARNINGS=1 node --watch dist/index.js",
89
"start": "node dist/index.js"
910
},
1011
"dependencies": {
1112
"@xmtp/agent-starter": "workspace:*"
1213
},
1314
"devDependencies": {
14-
"@types/express": "^4.17.20",
15-
"@types/node": "^20.14.2",
16-
"typescript": "^5.4.5"
15+
"@types/express": "^4.17.21",
16+
"@types/node": "^22.10.9",
17+
"typescript": "^5.7.3"
1718
},
18-
"packageManager": "yarn@4.5.1",
1919
"engines": {
20-
"node": ">=20"
20+
"node": ">=22"
2121
}
2222
}

examples/gpt/package.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
{
2-
"name": "gpt",
2+
"name": "@example/gpt",
33
"private": true,
44
"type": "module",
55
"scripts": {
66
"build": "tsc",
7+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
78
"dev": "tsc -w & sleep 1 && NODE_NO_WARNINGS=1 node --watch dist/index.js",
89
"start": "node dist/index.js"
910
},
1011
"dependencies": {
12+
"@xmtp/agent-starter": "workspace:*",
1113
"openai": "latest"
1214
},
1315
"devDependencies": {
14-
"@types/node": "^20.14.2",
15-
"typescript": "^5.4.5"
16+
"@types/node": "^22.10.9",
17+
"typescript": "^5.7.3"
1618
},
17-
"packageManager": "yarn@4.5.1",
1819
"engines": {
19-
"node": ">=20"
20+
"node": ">=22"
2021
}
2122
}

package.json

+10-16
Original file line numberDiff line numberDiff line change
@@ -3,42 +3,36 @@
33
"private": true,
44
"type": "module",
55
"workspaces": [
6-
"templates/*",
76
"packages/*",
87
"examples/*",
98
"shared/*"
109
],
1110
"scripts": {
12-
"build": "yarn build:agent-starter && yarn build:examples",
13-
"build:agent-starter": "turbo run build --filter=./packages/agent-starter --force",
14-
"build:examples": "turbo run build --filter='./examples/*'",
11+
"build": "turbo run build",
1512
"changeset": " changeset add --type patch",
1613
"clean": "turbo run clean && yarn cache clean && find examples -name '.data' -type d -exec rm -rf {} +",
1714
"dev": "cd packages/agent-starter && yarn build:watch",
1815
"examples": "node scripts/examples.js",
1916
"format": "turbo run format",
20-
"publish": "changeset publish",
21-
"test": "FORCE_COLOR=1 turbo run test --force --concurrency=1",
17+
"publish": "yarn build && changeset publish",
18+
"test": "FORCE_COLOR=1 turbo run test",
2219
"typecheck": "FORCE_COLOR=1 turbo run typecheck"
2320
},
24-
"resolutions": {
25-
"viem": "^2.16.3"
26-
},
2721
"dependencies": {
2822
"@changesets/changelog-git": "^0.2.0",
29-
"@changesets/cli": "^2.27.5",
23+
"@changesets/cli": "^2.27.11",
3024
"@clack/prompts": "^0.9.1",
3125
"punycode": "^2.3.1",
3226
"readline-sync": "^1.4.10"
3327
},
3428
"devDependencies": {
35-
"prettier": "^3.3.1",
36-
"prettier-plugin-packagejson": "^2.5.0",
37-
"turbo": "^1.13.4",
38-
"typescript": "^5.4.5"
29+
"prettier": "^3.4.2",
30+
"prettier-plugin-packagejson": "^2.5.8",
31+
"turbo": "^2.3.4",
32+
"typescript": "^5.7.3"
3933
},
40-
"packageManager": "yarn@4.5.1",
34+
"packageManager": "yarn@4.6.0",
4135
"engines": {
42-
"node": ">=20"
36+
"node": ">=22"
4337
}
4438
}

packages/agent-starter/package.json

+14-17
Original file line numberDiff line numberDiff line change
@@ -20,38 +20,35 @@
2020
"build": "rollup -c",
2121
"build:watch": "yarn build -w",
2222
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
23-
"publish": "npm publish",
24-
"test": "vitest"
23+
"test": "vitest run"
2524
},
2625
"dependencies": {
27-
"@changesets/changelog-git": "^0.2.0",
28-
"@changesets/cli": "^2.27.5",
2926
"@xmtp/content-type-primitives": "^2.0.0",
3027
"@xmtp/content-type-reaction": "^2.0.0",
3128
"@xmtp/content-type-read-receipt": "^2.0.0",
3229
"@xmtp/content-type-remote-attachment": "^2.0.0",
3330
"@xmtp/content-type-reply": "^2.0.0",
3431
"@xmtp/content-type-text": "^2.0.0",
35-
"@xmtp/node-sdk": "^0.0.38",
36-
"dotenv": "^16.4.5",
37-
"typescript": "^5.4.5",
38-
"viem": "^2.16.3"
32+
"@xmtp/node-sdk": "^0.0.40",
33+
"viem": "^2.22.12"
3934
},
4035
"devDependencies": {
41-
"@rollup/plugin-typescript": "^11.1.6",
42-
"@types/node": "^20.14.2",
43-
"@vitest/coverage-v8": "^2.1.4",
36+
"@changesets/changelog-git": "^0.2.0",
37+
"@changesets/cli": "^2.27.11",
38+
"@rollup/plugin-typescript": "^12.1.2",
39+
"@types/node": "^22.10.9",
40+
"@vitest/coverage-v8": "^2.1.8",
41+
"dotenv": "^16.4.7",
4442
"node-fetch": "^3.3.2",
45-
"prettier": "^3.3.1",
46-
"rollup": "^4.18.0",
43+
"prettier": "^3.4.2",
44+
"rollup": "^4.31.0",
4745
"rollup-plugin-dts": "^6.1.1",
4846
"ts-node": "^10.9.2",
49-
"turbo": "^2.2.3",
50-
"vitest": "^2.1.4"
47+
"typescript": "^5.7.3",
48+
"vitest": "^2.1.8"
5149
},
52-
"packageManager": "yarn@4.5.1",
5350
"engines": {
54-
"node": ">=20"
51+
"node": ">=22"
5552
},
5653
"publishConfig": {
5754
"access": "public",

packages/lookup/package.json

+12-15
Original file line numberDiff line numberDiff line change
@@ -20,30 +20,27 @@
2020
"build": "rollup -c",
2121
"build:watch": "yarn build -w",
2222
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
23-
"publish": "npm publish",
24-
"test": "vitest"
23+
"test": "vitest run"
2524
},
2625
"dependencies": {
27-
"viem": "^2.16.3"
26+
"viem": "^2.22.12"
2827
},
2928
"devDependencies": {
3029
"@changesets/changelog-git": "^0.2.0",
31-
"@changesets/cli": "^2.27.5",
32-
"@rollup/plugin-typescript": "^11.1.6",
33-
"@types/node": "^20.14.2",
34-
"@vitest/coverage-v8": "^2.1.4",
35-
"dotenv": "^16.4.5",
36-
"prettier": "^3.3.1",
37-
"rollup": "^4.18.0",
30+
"@changesets/cli": "^2.27.11",
31+
"@rollup/plugin-typescript": "^12.1.2",
32+
"@types/node": "^22.10.9",
33+
"@vitest/coverage-v8": "^2.1.8",
34+
"dotenv": "^16.4.7",
35+
"prettier": "^3.4.2",
36+
"rollup": "^4.31.0",
3837
"rollup-plugin-dts": "^6.1.1",
3938
"ts-node": "^10.9.2",
40-
"turbo": "^2.2.3",
41-
"typescript": "^5.4.5",
42-
"vitest": "^2.1.4"
39+
"typescript": "^5.7.3",
40+
"vitest": "^2.1.8"
4341
},
44-
"packageManager": "yarn@4.5.1",
4542
"engines": {
46-
"node": ">=20"
43+
"node": ">=22"
4744
},
4845
"publishConfig": {
4946
"access": "public",

shared/tsconfig/package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,9 @@
1111
"format:check": "yarn format:base -c ."
1212
},
1313
"devDependencies": {
14-
"prettier": "^3.3.1"
14+
"prettier": "^3.4.2"
1515
},
16-
"packageManager": "yarn@4.5.1",
1716
"engines": {
18-
"node": ">=20"
17+
"node": ">=22"
1918
}
2019
}

0 commit comments

Comments
 (0)