Skip to content
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
42248b4
Co-authored-by: Cursor <[email protected]>
odilitime Feb 10, 2026
3939296
chore: improve .gitignore and add new utility files
odilitime Feb 10, 2026
bbbcea7
chore: remove .pr-resolver-state.json from tracking
odilitime Feb 10, 2026
f766055
docs(plugin-babylon): Update README with new features and providers
odilitime Feb 10, 2026
804eedf
Merge branch 'odi-dev' of https://github.com/elizaos-plugins/plugin-b…
odilitime Feb 10, 2026
a307354
refactor(plugin-babylon): Remove read-only actions (use providers ins…
odilitime Feb 10, 2026
2c6e117
Merge remote-tracking branch 'origin/1.x' into odi-dev
odilitime Feb 11, 2026
a25f283
Merge branch '1.x' into odi-dev
odilitime Feb 17, 2026
ba11c98
README.md: refactor for clarity
odilitime Feb 17, 2026
a18c2a2
providers: refactor for clarity
odilitime Feb 17, 2026
e4f3af8
README.md: fix the lint
odilitime Feb 17, 2026
b2ab4e5
REFACTORING_SUMMARY.md: refactor for clarity
odilitime Feb 17, 2026
be828f8
banner.ts: update banner
odilitime Feb 17, 2026
d7e63f2
providers: refactor for clarity
odilitime Feb 17, 2026
684807e
README.md: remove duplicate code
odilitime Feb 17, 2026
849fd41
README.md: fix references in
odilitime Feb 17, 2026
cfbb441
banner.ts: fix invisible characters
odilitime Feb 17, 2026
fe0595b
README.md: remove duplicate code
odilitime Feb 17, 2026
fcca23f
services: update evm
odilitime Feb 17, 2026
05908af
README.md: remove duplicate code
odilitime Feb 17, 2026
2e53286
providers: remove duplicate code
odilitime Feb 17, 2026
cfe366c
providers: update plugin-info
odilitime Feb 17, 2026
7c5c8d6
providers: fix references in
odilitime Feb 17, 2026
53806c7
providers: remove duplicate code
odilitime Feb 17, 2026
84cd02a
providers: remove duplicate code
odilitime Feb 17, 2026
f53e2e9
docs: add review dismissal comments
odilitime Feb 17, 2026
b4639c4
docs: identity/reputation (Agent0 vs Babylon), related plugins, eliza…
odilitime Feb 18, 2026
e937662
Merge branch 'odi-dev' of https://github.com/elizaos-plugins/plugin-b…
odilitime Feb 18, 2026
6d79173
ci: add PRR workflow for PR review resolver
odilitime Mar 12, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 97 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,108 @@

# Build artifacts
.turbo/
# Build outputs
dist/
*.log
build/
out/
*.tsbuildinfo
.turbo/

# Dependencies
node_modules
.turbo/
.turbo//
node_modules/
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# Environment
# Environment variables
.env
.env.local
.env.*
!.env.example
!.env.template

# IDE
.vscode/
# Logs
*.log
logs/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

# Testing
coverage/
.nyc_output/
*.lcov
.cache/
test-results/
playwright-report/

# IDE & Editor
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.idea/
*.swp
*.swo
*~
.project
.classpath
.settings/
.loadpath
*.sublime-workspace
.history/

# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
Desktop.ini

# Temporary files
tmp/
temp/
*.tmp
*.bak
*.backup

# Debug
.vscode-test
debug/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# Git merge files
*.orig
*.rej

# Local development
.local/
local/

# Package manager lock files (optional - uncomment if not tracking)
# package-lock.json
# yarn.lock
# pnpm-lock.yaml

# Miscellaneous
.pr-resolver-state.json
Loading
Loading