Skip to content

Commit 3f7eb1d

Browse files
lalalunecursoragent
andcommitted
v2.0.0-alpha: complete rewrite squashed into single commit
Squashed 245 commits from the v2.0.0-alpha branch into a single commit. This includes the full v2.0.0 architecture rewrite, plugin restructuring, new examples, test improvements, and all related cleanups. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 3be006a commit 3f7eb1d

File tree

3,703 files changed

+602364
-298457
lines changed

Some content is hidden

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

3,703 files changed

+602364
-298457
lines changed

.biomeignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
**/dist/**
2+
**/node_modules/**
3+
**/.git/**
4+
**/build/**
5+
**/*.d.ts
6+
**/.venv/**
7+
**/coverage/**
8+
**/scripts/async-optimizer.js
9+
**/packages/python/**
10+
.turbo
11+
.turbo/**
12+
**/.turbo
13+
**/.turbo/**
14+
**/target/**
15+
target
16+
**/data/**
17+
data
18+
.eliza
19+
**/.eliza/**
20+
.cursor
21+
**/.cursor/**
22+
.next
23+
**/.next/**

.cursorignore

Lines changed: 0 additions & 12 deletions
This file was deleted.

.cursorrules

Lines changed: 0 additions & 231 deletions
This file was deleted.

.dockerignore

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4-
title: ''
5-
labels: 'bug'
6-
assignees: ''
4+
title: ""
5+
labels: "bug"
6+
assignees: ""
77
---
88

99
**Describe the bug**

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this project
4-
title: ''
5-
labels: 'enhancement'
6-
assignees: ''
4+
title: ""
5+
labels: "enhancement"
6+
assignees: ""
77
---
88

99
**Is your feature request related to a problem? Please describe.**

.github/dependabot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: '' # See documentation for possible values
9-
directory: '/' # Location of package manifests
8+
- package-ecosystem: "" # See documentation for possible values
9+
directory: "/" # Location of package manifests
1010
schedule:
11-
interval: 'weekly'
11+
interval: "weekly"

.github/renovate-preset.json

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"description": "Shared Renovate configuration preset for ElizaOS plugins",
3+
"description": "Shared Renovate configuration preset for elizaOS plugins",
44
"extends": ["config:recommended"],
55
"packageRules": [
66
{
77
"description": "Pin @elizaos/* packages and check daily for new releases",
8-
"groupName": "ElizaOS Core Dependencies",
8+
"groupName": "elizaOS Core Dependencies",
99
"matchPackagePatterns": ["^@elizaos/"],
1010
"rangeStrategy": "pin",
1111
"schedule": ["every day"],
@@ -15,18 +15,23 @@
1515
{
1616
"description": "Group TypeScript ecosystem updates",
1717
"groupName": "TypeScript",
18-
"matchPackagePatterns": ["^@typescript-eslint/", "^typescript$"]
18+
"matchPackagePatterns": ["^typescript$"]
1919
},
2020
{
21-
"description": "Group ESLint and Prettier updates",
21+
"description": "Group Biome linting updates",
2222
"groupName": "Linting",
23-
"matchPackagePatterns": ["^eslint", "^prettier", "^@eslint/"]
23+
"matchPackagePatterns": ["^@biomejs/"]
2424
},
2525
{
2626
"description": "Group build tools",
2727
"groupName": "Build Tools",
28-
"matchPackageNames": ["tsup", "vite", "rollup"],
29-
"matchPackagePatterns": ["^@vitejs/", "^@rollup/", "^vite-plugin-", "^rollup-plugin-"]
28+
"matchPackageNames": ["vite", "rollup"],
29+
"matchPackagePatterns": [
30+
"^@vitejs/",
31+
"^@rollup/",
32+
"^vite-plugin-",
33+
"^rollup-plugin-"
34+
]
3035
}
3136
],
3237
"timezone": "UTC",

0 commit comments

Comments
 (0)