Skip to content

Commit 75528d9

Browse files
authored
Merge branch 'v2-develop' into hash/fix-plugins-install
2 parents 4116739 + 1e34f5e commit 75528d9

File tree

204 files changed

+16611
-5954
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

204 files changed

+16611
-5954
lines changed

.env.example

+17-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ ANTHROPIC_API_KEY=
88
DISCORD_APPLICATION_ID=
99
DISCORD_API_TOKEN=
1010

11+
# Fill these out if you want to use Postgres
12+
POSTGRES_URL=
13+
1114
# Fill these out if you want to use Telegram
1215
TELEGRAM_BOT_TOKEN=
1316

@@ -24,4 +27,17 @@ EVM_PROVIDER_URL=
2427
# Fill these out if you want to use Solana
2528
SOLANA_PUBLIC_KEY=
2629
SOLANA_PRIVATE_KEY=
27-
BIRDEYE_API_KEY=
30+
BIRDEYE_API_KEY=
31+
32+
# Swarm settings
33+
COMPLIANCE_OFFICER_DISCORD_APPLICATION_ID=
34+
COMPLIANCE_OFFICER_DISCORD_API_TOKEN=
35+
36+
COMMUNITY_MANAGER_DISCORD_APPLICATION_ID=
37+
COMMUNITY_MANAGER_DISCORD_API_TOKEN=
38+
39+
SOCIAL_MEDIA_MANAGER_DISCORD_APPLICATION_ID=
40+
SOCIAL_MEDIA_MANAGER_DISCORD_API_TOKEN=
41+
42+
COUNSELOR_DISCORD_APPLICATION_ID=
43+
COUNSELOR_DISCORD_API_TOKEN=

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,6 @@ packages/*/dist/*
9191
**/.docusaurus/**
9292
**/docs/build/**
9393

94-
**lock**
94+
**lock**
95+
96+
packages/agent/local_**

bun.lockb

20.7 KB
Binary file not shown.

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"lint": "turbo run lint:fix --filter=./packages/*",
77
"check": "biome check --apply .",
88
"preinstall": "npx only-allow bun",
9+
"swarm": "turbo run build --filter=./packages/core && concurrently \"turbo run start --filter=@elizaos/agent -- --swarm \" \"turbo run start --filter=!@elizaos/agent --filter=!@elizaos/docs --filter=!@elizaos/core\"",
910
"build": "turbo run build --filter=./packages/core && turbo run build --filter=./packages/*",
1011
"build:core": "turbo run build --filter=./packages/core",
1112
"build:cli": "turbo run build --filter=./packages/cli && cd packages/cli && bun link",
@@ -63,7 +64,8 @@
6364
},
6465
"packageManager": "bun@1.2.2",
6566
"workspaces": [
66-
"packages/*"
67+
"packages/*",
68+
"projects/*"
6769
],
6870
"module": "index.ts",
6971
"type": "module"

packages/agent/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"type": "module",
66
"scripts": {
77
"start": "node --loader ts-node/esm src/index.ts",
8+
"swarm": "LOG_LEVEL=debug node --loader ts-node/esm src/index.ts --swarm",
89
"dev": "node --loader ts-node/esm src/index.ts",
910
"check-types": "tsc --noEmit",
1011
"test": "vitest"

0 commit comments

Comments
 (0)