Skip to content

Commit b860c17

Browse files
committed
Merge branch 'main' of https://github.com/MarcoMandar/Eliza
2 parents f5f8ee7 + f24d5e9 commit b860c17

File tree

263 files changed

+34677
-31553
lines changed

Some content is hidden

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

263 files changed

+34677
-31553
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+4-4
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**
@@ -24,4 +24,4 @@ assignees: ''
2424

2525
**Additional context**
2626

27-
<!-- Add any other context about the problem here. -->
27+
<!-- Add any other context about the problem here. -->

.github/ISSUE_TEMPLATE/feature_request.md

+4-4
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.**
@@ -20,4 +20,4 @@ assignees: ''
2020

2121
**Additional context**
2222

23-
<!-- Add any other context or screenshots about the feature request here. -->
23+
<!-- Add any other context or screenshots about the feature request here. -->

.github/pull_request_template.md

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
<!-- Use this template by filling in information and copy and pasting relevant items out of the html comments. -->
2+
3+
# Relates to:
4+
5+
<!-- LINK TO ISSUE OR TICKET -->
6+
7+
<!-- This risks section is to be filled out before final review and merge. -->
8+
9+
# Risks
10+
11+
<!--
12+
Low, medium, large. List what kind of risks, and what could be effected.
13+
-->
14+
15+
# Background
16+
17+
## What does this PR do?
18+
19+
## What kind of change is this?
20+
21+
<!--
22+
Bug fixes (non-breaking change which fixes an issue)
23+
Improvements (misc. changes to existing features)
24+
Features (non-breaking change which adds functionality)
25+
Updates (new versions of included code)
26+
-->
27+
28+
<!-- This "Why" section is most relevant if there is no linked issue explaining why. If there is a related issue it might make sense to skip this why section. -->
29+
<!--
30+
## Why are we doing this? Any context or related work?
31+
-->
32+
33+
# Documentation changes needed?
34+
35+
<!--
36+
My changes do not require a change to the project documentation.
37+
My changes require a change to the project documentation.
38+
If a docs change is needed: I have updated the documentation accordingly.
39+
-->
40+
41+
<!-- Please show how you tested the PR. This will really help if the PR needs to be retested, and probably help the PR get merged quicker. -->
42+
43+
# Testing
44+
45+
## Where should a reviewer start?
46+
47+
## Detailed testing steps
48+
49+
<!--
50+
None, automtated tests are fine.
51+
-->
52+
53+
<!--
54+
- As [anon/admin], go to [link]
55+
  - [do action]
56+
  - verify [result]
57+
-->
58+
59+
<!-- If there is a UI change, please include before and after screenshots or videos. This will speed up PRs being merged. It is extra nice to annotate screenshots with arrows or boxes pointing out the differences. -->
60+
<!--
61+
## Screenshots
62+
### Before
63+
### After
64+
-->
65+
66+
<!-- If there is anything about the deploy, please make a note. -->
67+
<!--
68+
# Deploy Notes
69+
-->
70+
71+
<!--  Copy and paste commandline output. -->
72+
<!--
73+
## Database changes
74+
-->
75+
76+
<!--  If there is something more than the automated steps, please specifiy deploy instructions. -->
77+
<!--
78+
## Deployment instructions
79+
-->

.github/workflows/ci.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
name: ci
2-
32
on:
43
push:
54
branches: [main]
65
pull_request:
76
branches: [main]
8-
97
jobs:
108
check:
119
runs-on: ubuntu-latest
1210
steps:
1311
- uses: actions/checkout@v4
12+
1413
- uses: pnpm/action-setup@v3
1514
with:
1615
version: 9.4.0
1716

17+
- uses: actions/setup-node@v4
18+
with:
19+
node-version: "23"
20+
cache: "pnpm"
21+
1822
- name: Install dependencies
1923
run: pnpm i
2024

.vscode/launch.json

+16-21
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
1-
{
2-
// Use IntelliSense to learn about possible attributes.
3-
// Hover to view descriptions of existing attributes.
4-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5-
"version": "0.2.0",
6-
"configurations": [
7-
{
8-
"type": "node",
9-
"request": "launch",
10-
"name": "Launch via npm",
11-
"runtimeExecutable": "npm",
12-
"runtimeArgs": [
13-
"run",
14-
"dev"
15-
],
16-
"skipFiles": [
17-
"<node_internals>/**"
18-
]
19-
}
20-
]
21-
}
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Launch via npm",
11+
"runtimeExecutable": "npm",
12+
"runtimeArgs": ["run", "dev"],
13+
"skipFiles": ["<node_internals>/**"]
14+
}
15+
]
16+
}

.vscode/tasks.json

+14-16
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1-
{
2-
// See https://go.microsoft.com/fwlink/?LinkId=733558
3-
// for the documentation about the tasks.json format
4-
"version": "2.0.0",
5-
"tasks": [
6-
{
7-
"type": "typescript",
8-
"tsconfig": "tsconfig.json",
9-
"problemMatcher": [
10-
"$tsc"
11-
],
12-
"label": "tsbuild",
13-
"group": "build"
14-
}
15-
]
16-
}
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "typescript",
8+
"tsconfig": "tsconfig.json",
9+
"problemMatcher": ["$tsc"],
10+
"label": "tsbuild",
11+
"group": "build"
12+
}
13+
]
14+
}

CONTRIBUTING.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ By participating in this project, you are expected to uphold our Code of Conduct
1313
1. Ensure the bug was not already reported by searching on GitHub under [Issues](https://github.com/ai16z/eliza/issues).
1414
2. If you're unable to find an open issue addressing the problem, [open a new one](https://github.com/ai16z/eliza/issues/new). Be sure to include
1515

16-
- a title and clear description,
17-
- as much relevant information as possible, and
18-
- a code sample or an executable test case demonstrating the expected behavior that is not occurring.
16+
- a title and clear description,
17+
- as much relevant information as possible, and
18+
- a code sample or an executable test case demonstrating the expected behavior that is not occurring.
1919

2020
### Suggesting Enhancements
2121

@@ -36,33 +36,33 @@ By participating in this project, you are expected to uphold our Code of Conduct
3636

3737
### Git Commit Messages
3838

39-
- Use the present tense ("Add feature" not "Added feature")
40-
- Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
41-
- Limit the first line to 72 characters or less
42-
- Reference issues and pull requests liberally after the first line
39+
- Use the present tense ("Add feature" not "Added feature")
40+
- Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
41+
- Limit the first line to 72 characters or less
42+
- Reference issues and pull requests liberally after the first line
4343

4444
### JavaScript Styleguide
4545

46-
- All JavaScript must adhere to [JavaScript Standard Style](https://standardjs.com/).
46+
- All JavaScript must adhere to [JavaScript Standard Style](https://standardjs.com/).
4747

4848
### TypeScript Styleguide
4949

50-
- All TypeScript must adhere to [TypeScript Standard Style](https://github.com/standard/ts-standard).
50+
- All TypeScript must adhere to [TypeScript Standard Style](https://github.com/standard/ts-standard).
5151

5252
### Documentation Styleguide
5353

54-
- Use [Markdown](https://daringfireball.net/projects/markdown/) for documentation.
54+
- Use [Markdown](https://daringfireball.net/projects/markdown/) for documentation.
5555

5656
## Additional Notes
5757

5858
### Issue and Pull Request Labels
5959

6060
This section lists the labels we use to help us track and manage issues and pull requests.
6161

62-
- `bug` - Issues that are bugs.
63-
- `enhancement` - Issues that are feature requests.
64-
- `documentation` - Issues or pull requests related to documentation.
65-
- `good first issue` - Good for newcomers.
62+
- `bug` - Issues that are bugs.
63+
- `enhancement` - Issues that are feature requests.
64+
- `documentation` - Issues or pull requests related to documentation.
65+
- `good first issue` - Good for newcomers.
6666

6767
## Recognition
6868

@@ -72,4 +72,4 @@ We value every contribution. Contributors will be recognized in our README.md fi
7272

7373
If you have any questions, please feel free to contact the project maintainers with an issue or in discord.
7474

75-
Thank you for your interest in contributing to Eliza!
75+
Thank you for your interest in contributing to Eliza!

0 commit comments

Comments
 (0)