Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
cbc3a99
working state
kollegian Jul 6, 2025
73e80ea
working second
kollegian Jul 7, 2025
3aa86ac
working state
kollegian Jul 8, 2025
0ffdbfc
pre-cursor state
kollegian Jul 10, 2025
0b2f061
final state
kollegian Jul 10, 2025
54bc79c
clean and refactor
kollegian Jul 11, 2025
c62d4d3
add readme for hadrien
kollegian Jul 11, 2025
a116fbe
remove unused functions
kollegian Jul 11, 2025
b25808c
cleaned couple more
kollegian Jul 11, 2025
5264b83
clean more
kollegian Jul 11, 2025
1a65e79
more clean
kollegian Jul 11, 2025
30222ae
add updates and changes
kollegian Jul 13, 2025
a54ddc3
delete unused md
kollegian Jul 13, 2025
ce4addb
Cleaned up repo and docs
codebycarson Jul 22, 2025
a584f8b
Improved README and .env examples
codebycarson Jul 23, 2025
e5cddaa
Removed Eliza specific docs
codebycarson Jul 23, 2025
8ac63ba
Cleaned up github workflows
codebycarson Jul 23, 2025
d080ca1
Remove unnecessary files
codebycarson Jul 23, 2025
88f8178
Formatting fixes
codebycarson Jul 23, 2025
809973a
Simplify build command
codebycarson Jul 23, 2025
cc331d9
Removed more docs stuff
codebycarson Jul 23, 2025
f362102
Added docker container instructions to README
codebycarson Jul 23, 2025
fa52e56
Fixed dev container for mac and added note to readme
codebycarson Jul 23, 2025
77b60de
update schedule info
kollegian Jul 29, 2025
eeff37c
update cron info
kollegian Jul 29, 2025
f84af00
Merge pull request #2 from sei-protocol/feature/suggestions
codebycarson Jul 29, 2025
f764ba7
Updated README for clarity
codebycarson Jul 29, 2025
cb747cd
Merge pull request #1 from sei-protocol/feature/eliza-state-carson
codebycarson Jul 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"-p=5173:5173", // Add port for client
//"--volume=/usr/lib/wsl:/usr/lib/wsl", // uncomment for WSL
//"--volume=/mnt/wslg:/mnt/wslg", // uncomment for WSL
"--gpus=all", // ! uncomment for vGPU
// "--gpus=all", // ! uncomment for vGPU
//"--device=/dev/dxg", // uncomment this for vGPU under WSL
"--device=/dev/dri"
// "--device=/dev/dri"
],
"containerEnv": {
//"MESA_D3D12_DEFAULT_ADAPTER_NAME": "NVIDIA", // uncomment for WSL
Expand Down
984 changes: 21 additions & 963 deletions .env.example

Large diffs are not rendered by default.

973 changes: 973 additions & 0 deletions .env.example.full

Large diffs are not rendered by default.

96 changes: 21 additions & 75 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,85 +1,31 @@
<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->
## Description

# Relates to
<!-- Brief description of what this PR does -->

<!-- LINK TO ISSUE OR TICKET -->
## Related Issue

<!-- This risks section must be filled out before the final review and merge. -->
<!-- Link to issue or ticket (if applicable) -->
Fixes #

# Risks
## Type of Change

<!--
Low, medium, large. List what kind of risks and what could be affected.
-->
- [ ] Bug fix
- [ ] New feature
- [ ] Breaking change
- [ ] Documentation update
- [ ] Other (please describe):

# Background
## Testing

## What does this PR do?
<!-- How did you test your changes? -->

## What kind of change is this?
- [ ] Unit tests pass
- [ ] Manual testing completed
- [ ] No testing required

<!--
Bug fixes (non-breaking change which fixes an issue)
Improvements (misc. changes to existing features)
Features (non-breaking change which adds functionality)
Updates (new versions of included code)
-->
## Checklist

<!-- This "Why" section is most relevant if there are no linked issues explaining why. If there is a related issue, it might make sense to skip this why section. -->
<!--
## Why are we doing this? Any context or related work?
-->

# Documentation changes needed?

<!--
My changes do not require a change to the project documentation.
My changes require a change to the project documentation.
If documentation change is needed: I have updated the documentation accordingly.
-->

<!-- 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. -->

# Testing

## Where should a reviewer start?

## Detailed testing steps

<!--
None: Automated tests are acceptable.
-->

<!--
- As [anon/admin], go to [link]
  - [do action]
  - verify [result]
-->

<!-- 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. -->
<!--
## Screenshots
### Before
### After
-->

<!-- If there is anything about the deployment, please make a note. -->
<!--
# Deploy Notes
-->

<!--  Copy and paste command line output. -->
<!--
## Database changes
-->

<!--  Please specify deploy instructions if there is something more than the automated steps. -->
<!--
## Deployment instructions
-->

<!-- If you are on Discord, please join https://discord.gg/ai16z and state your Discord username here for the contributor role and join us in #development-feed -->
<!--
## Discord username

-->
- [ ] Code follows project style guidelines
- [ ] Self-review completed
- [ ] Documentation updated (if needed)
- [ ] Tests added/updated (if needed)
42 changes: 42 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: CI

on:
pull_request:
branches: [main, develop]
push:
branches: [main, develop]

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '23.3.0'

- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: '9.15.0'

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Check code formatting and linting
run: pnpm check

- name: Build project
run: pnpm build

- name: Run tests
run: pnpm test

- name: Test agent startup with default character
run: |
timeout 30s pnpm start --character=characters/sensei1202.character.json || true
echo "Agent startup test completed"
30 changes: 0 additions & 30 deletions .github/workflows/generate-changelog.yml

This file was deleted.

98 changes: 0 additions & 98 deletions .github/workflows/generate-readme-translations.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .github/workflows/greetings.yml

This file was deleted.

70 changes: 0 additions & 70 deletions .github/workflows/image.yaml

This file was deleted.

Loading
Loading