├── .cursorignore
├── .cursorrules
├── .devcontainer
├── Dockerfile
└── devcontainer.json
├── .dockerignore
├── .env.example
├── .github
├── ISSUE_TEMPLATE
│ ├── bug_report.md
│ └── feature_request.md
├── dependabot.yml
├── pull_request_template.md
└── workflows
│ ├── README.md
│ ├── ci.yaml
│ ├── claude.yml
│ ├── cli-prod-validation.yml
│ ├── cli-tests.yml
│ ├── codeql.yml
│ ├── deploy-cli.yml
│ ├── docs-publish.yml
│ ├── generate-readme-translations.yml
│ ├── image.yaml
│ ├── integrationTests.yaml
│ ├── jsdoc-automation.yml
│ ├── llmstxt-generator.yml
│ ├── plugin-sql-tests.yaml
│ ├── pr.yaml
│ ├── pre-release.yml
│ ├── release.yaml
│ ├── tauri-ci.yml
│ ├── tauri-release.yml
│ ├── tee-build-deploy.yml
│ └── update-news.yml
├── .gitignore
├── .gitmodules
├── .husky
└── pre-commit
├── .npmrc
├── .nvmrc
├── .prettierignore
├── .prettierrc
├── .vscode
├── launch.json
└── settings.json
├── AGENTS.md
├── CHANGELOG.md
├── Dockerfile
├── Dockerfile.docs
├── LICENSE
├── README.md
├── bun.lock
├── codecov.yml
├── docker-compose-docs.yaml
├── docker-compose.yaml
├── fly.toml
├── lerna.json
├── llms.txt
├── package.json
├── packages
├── app
│ ├── .gitignore
│ ├── .vscode
│ │ └── extensions.json
│ ├── README.md
│ ├── index.html
│ ├── package.json
│ ├── public
│ │ ├── tauri.svg
│ │ └── vite.svg
│ ├── src-tauri
│ │ ├── .gitignore
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ ├── build.rs
│ │ ├── capabilities
│ │ │ └── default.json
│ │ ├── icons
│ │ │ ├── 128x128.png
│ │ │ ├── 128x128@2x.png
│ │ │ ├── 32x32.png
│ │ │ ├── Square107x107Logo.png
│ │ │ ├── Square142x142Logo.png
│ │ │ ├── Square150x150Logo.png
│ │ │ ├── Square284x284Logo.png
│ │ │ ├── Square30x30Logo.png
│ │ │ ├── Square310x310Logo.png
│ │ │ ├── Square44x44Logo.png
│ │ │ ├── Square71x71Logo.png
│ │ │ ├── Square89x89Logo.png
│ │ │ ├── StoreLogo.png
│ │ │ ├── icon.icns
│ │ │ ├── icon.ico
│ │ │ └── icon.png
│ │ ├── src
│ │ │ ├── lib.rs
│ │ │ └── main.rs
│ │ └── tauri.conf.json
│ ├── src
│ │ ├── main.tsx
│ │ └── vite-env.d.ts
│ ├── tsconfig.json
│ ├── tsconfig.node.json
│ └── vite.config.ts
├── autodoc
│ ├── .env.example
│ ├── .gitignore
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ ├── AIService
│ │ │ ├── AIService.ts
│ │ │ ├── generators
│ │ │ │ └── FullDocumentationGenerator.ts
│ │ │ ├── index.ts
│ │ │ ├── types
│ │ │ │ └── index.ts
│ │ │ └── utils
│ │ │ │ ├── CodeFormatter.ts
│ │ │ │ └── DocumentOrganizer.ts
│ │ ├── Configuration.ts
│ │ ├── DirectoryTraversal.ts
│ │ ├── DocumentationGenerator.ts
│ │ ├── GitManager.ts
│ │ ├── JSDocValidator.ts
│ │ ├── JsDocAnalyzer.ts
│ │ ├── JsDocGenerator.ts
│ │ ├── PluginDocumentationGenerator.ts
│ │ ├── TypeScriptFileIdentifier.ts
│ │ ├── TypeScriptParser.ts
│ │ ├── index.ts
│ │ ├── types
│ │ │ └── index.ts
│ │ └── utils
│ │ │ └── prompts.ts
│ ├── tsconfig.build.json
│ ├── tsconfig.json
│ └── tsup.config.ts
├── cli
│ ├── .env.example
│ ├── .gitignore
│ ├── LICENSE
│ ├── README.md
│ ├── __test_scripts__
│ │ ├── README.md
│ │ ├── common.sh
│ │ ├── run_all_bats.sh
│ │ ├── test-characters
│ │ │ ├── ada.json
│ │ │ ├── max.json
│ │ │ └── shaw.json
│ │ ├── test_agent.bats
│ │ ├── test_create.bats
│ │ ├── test_env.bats
│ │ ├── test_plugins.bats
│ │ ├── test_publish.bats
│ │ ├── test_setup_monorepo.bats
│ │ ├── test_start.bats
│ │ ├── test_test.bats
│ │ └── test_update.bats
│ ├── examples
│ │ ├── create-plugin-cli.sh
│ │ ├── create-time-tracker-plugin-demo.sh
│ │ ├── create-time-tracker-plugin.sh
│ │ ├── generate-plugin-simple.sh
│ │ ├── generate-time-plugin.sh
│ │ ├── plugin-creator-example.sh
│ │ ├── run-upgrade-safely.sh
│ │ └── upgrade-giphy.sh
│ ├── minimal-test.sh
│ ├── package.json
│ ├── scripts
│ │ ├── clean-pkg.js
│ │ └── copy-templates.js
│ ├── src
│ │ ├── characters
│ │ │ └── eliza.ts
│ │ ├── commands
│ │ │ ├── agent.ts
│ │ │ ├── create.ts
│ │ │ ├── dev.ts
│ │ │ ├── env.ts
│ │ │ ├── plugins.ts
│ │ │ ├── publish.ts
│ │ │ ├── setup-monorepo.ts
│ │ │ ├── start.ts
│ │ │ ├── tee.ts
│ │ │ ├── tee
│ │ │ │ └── phala-wrapper.ts
│ │ │ ├── test.ts
│ │ │ └── update.ts
│ │ ├── index.ts
│ │ ├── project.ts
│ │ ├── scripts
│ │ │ ├── copy-client-dist.ts
│ │ │ └── copy-templates.ts
│ │ ├── server
│ │ │ ├── api
│ │ │ │ ├── agent.ts
│ │ │ │ ├── env.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── messages.ts
│ │ │ │ ├── tee.ts
│ │ │ │ └── world.ts
│ │ │ ├── authMiddleware.ts
│ │ │ ├── bus.ts
│ │ │ ├── index.ts
│ │ │ ├── loader.ts
│ │ │ ├── services
│ │ │ │ └── message.ts
│ │ │ ├── socketio
│ │ │ │ └── index.ts
│ │ │ ├── test
│ │ │ │ ├── api-routes.test.ts
│ │ │ │ ├── diagnose-frontend-loading.ts
│ │ │ │ ├── frontend-loading-test.ts
│ │ │ │ ├── run-all-tests.sh
│ │ │ │ ├── run-api-tests.sh
│ │ │ │ └── verify-frontend-fix.ts
│ │ │ ├── types.ts
│ │ │ └── upload.ts
│ │ ├── types
│ │ │ └── plugins.ts
│ │ └── utils
│ │ │ ├── audioBuffer.ts
│ │ │ ├── build-project.ts
│ │ │ ├── cli-prompts.ts
│ │ │ ├── config-manager.ts
│ │ │ ├── copy-template.ts
│ │ │ ├── directory-detection.ts
│ │ │ ├── display-banner.ts
│ │ │ ├── env-prompt.ts
│ │ │ ├── get-config.ts
│ │ │ ├── get-package-info.ts
│ │ │ ├── github.ts
│ │ │ ├── handle-error.ts
│ │ │ ├── helpers.ts
│ │ │ ├── index.ts
│ │ │ ├── install-plugin.ts
│ │ │ ├── load-plugin.ts
│ │ │ ├── package-manager.ts
│ │ │ ├── plugin-creator.ts
│ │ │ ├── plugin-discovery.ts
│ │ │ ├── port-handling.ts
│ │ │ ├── publisher.ts
│ │ │ ├── registry
│ │ │ ├── constants.ts
│ │ │ ├── index.ts
│ │ │ └── schema.ts
│ │ │ ├── resolve-import.ts
│ │ │ ├── resolve-utils.ts
│ │ │ ├── run-bun.ts
│ │ │ ├── test-runner.ts
│ │ │ ├── upgrade
│ │ │ ├── CLAUDE.md
│ │ │ ├── README.md
│ │ │ └── migrator.ts
│ │ │ └── user-environment.ts
│ ├── test
│ │ ├── commands
│ │ │ ├── create.test.ts
│ │ │ ├── plugin-generate.test.ts
│ │ │ ├── plugin-migrator.test.ts
│ │ │ ├── plugin-upgrade-basic.test.ts
│ │ │ ├── plugin-upgrade-integration.test.ts
│ │ │ └── setup-monorepo.test.ts
│ │ ├── plugin-creator.test.ts
│ │ ├── resources
│ │ │ └── output
│ │ │ │ └── testproject
│ │ │ │ ├── .gitignore
│ │ │ │ └── .npmignore
│ │ ├── setup.ts
│ │ └── utils
│ │ │ ├── build-project.test.ts
│ │ │ ├── handle-error.test.ts
│ │ │ ├── helpers.test.ts
│ │ │ ├── package-manager.test.ts
│ │ │ ├── resolve-import.test.ts
│ │ │ └── upgrade
│ │ │ └── migrator.test.ts
│ ├── tsconfig.build.json
│ ├── tsconfig.json
│ ├── tsup.config.ts
│ ├── vitest.config.js
│ └── vitest.config.ts
├── client
│ ├── .gitignore
│ ├── README.md
│ ├── components.json
│ ├── index.html
│ ├── package.json
│ ├── playwright.config.ts
│ ├── postcss.config.js
│ ├── public
│ │ ├── elizaos-icon.png
│ │ ├── elizaos-logo-light.png
│ │ ├── elizaos.webp
│ │ ├── favicon.ico
│ │ └── images
│ │ │ └── agents
│ │ │ ├── agent1.png
│ │ │ ├── agent2.png
│ │ │ ├── agent3.png
│ │ │ ├── agent4.png
│ │ │ └── agent5.png
│ ├── src
│ │ ├── App.tsx
│ │ ├── components
│ │ │ ├── AgentDetailsPanel.tsx
│ │ │ ├── ChatInputArea.tsx
│ │ │ ├── ChatMessageListComponent.tsx
│ │ │ ├── add-agent-card.tsx
│ │ │ ├── agent-action-viewer.tsx
│ │ │ ├── agent-avatar-stack.tsx
│ │ │ ├── agent-card.tsx
│ │ │ ├── agent-creator.tsx
│ │ │ ├── agent-log-viewer.tsx
│ │ │ ├── agent-memory-edit-overlay.tsx
│ │ │ ├── agent-memory-viewer.tsx
│ │ │ ├── agent-settings.tsx
│ │ │ ├── agent-sidebar.tsx
│ │ │ ├── api-key-dialog.tsx
│ │ │ ├── app-sidebar.tsx
│ │ │ ├── array-input.tsx
│ │ │ ├── audio-recorder.tsx
│ │ │ ├── avatar-panel.tsx
│ │ │ ├── character-form.tsx
│ │ │ ├── chat.tsx
│ │ │ ├── combobox.tsx
│ │ │ ├── connection-error-banner.tsx
│ │ │ ├── connection-status.tsx
│ │ │ ├── copy-button.tsx
│ │ │ ├── delete-button.tsx
│ │ │ ├── env-settings.tsx
│ │ │ ├── group-card.tsx
│ │ │ ├── group-panel.tsx
│ │ │ ├── input-copy.tsx
│ │ │ ├── logs-page.tsx
│ │ │ ├── media-content.tsx
│ │ │ ├── memory-graph.tsx
│ │ │ ├── onboarding-tour.tsx
│ │ │ ├── page-title.tsx
│ │ │ ├── plugins-panel.tsx
│ │ │ ├── profile-card.tsx
│ │ │ ├── profile-overlay.tsx
│ │ │ ├── secret-panel.tsx
│ │ │ ├── server-management.tsx
│ │ │ ├── stop-agent-button.tsx
│ │ │ └── ui
│ │ │ │ ├── alert-dialog.tsx
│ │ │ │ ├── avatar.tsx
│ │ │ │ ├── badge.tsx
│ │ │ │ ├── button.tsx
│ │ │ │ ├── card.tsx
│ │ │ │ ├── chat
│ │ │ │ ├── chat-bubble.tsx
│ │ │ │ ├── chat-input.tsx
│ │ │ │ ├── chat-message-list.tsx
│ │ │ │ ├── chat-tts-button.tsx
│ │ │ │ ├── expandable-chat.tsx
│ │ │ │ ├── hooks
│ │ │ │ │ └── useAutoScroll.tsx
│ │ │ │ └── message-loading.tsx
│ │ │ │ ├── checkbox.tsx
│ │ │ │ ├── collapsible.tsx
│ │ │ │ ├── command.tsx
│ │ │ │ ├── dialog.tsx
│ │ │ │ ├── dropdown-menu.tsx
│ │ │ │ ├── input.tsx
│ │ │ │ ├── label.tsx
│ │ │ │ ├── resizable.tsx
│ │ │ │ ├── scroll-area.tsx
│ │ │ │ ├── select.tsx
│ │ │ │ ├── separator.tsx
│ │ │ │ ├── sheet.tsx
│ │ │ │ ├── sidebar.tsx
│ │ │ │ ├── skeleton.tsx
│ │ │ │ ├── tabs.tsx
│ │ │ │ ├── textarea.tsx
│ │ │ │ ├── toast.tsx
│ │ │ │ ├── toaster.tsx
│ │ │ │ └── tooltip.tsx
│ │ ├── config
│ │ │ ├── agent-templates.ts
│ │ │ └── voice-models.ts
│ │ ├── constants.ts
│ │ ├── context
│ │ │ ├── AuthContext.tsx
│ │ │ └── ConnectionContext.tsx
│ │ ├── hooks
│ │ │ ├── __tests__
│ │ │ │ └── use-agent-update.test.tsx
│ │ │ ├── use-agent-management.ts
│ │ │ ├── use-agent-update.ts
│ │ │ ├── use-elevenlabs-voices.ts
│ │ │ ├── use-file-upload.ts
│ │ │ ├── use-mobile.tsx
│ │ │ ├── use-onboarding.tsx
│ │ │ ├── use-partial-update.ts
│ │ │ ├── use-plugins.ts
│ │ │ ├── use-query-hooks.ts
│ │ │ ├── use-server-agents.ts
│ │ │ ├── use-socket-chat.ts
│ │ │ ├── use-toast.ts
│ │ │ └── use-version.tsx
│ │ ├── index.css
│ │ ├── lib
│ │ │ ├── api.ts
│ │ │ ├── logger.ts
│ │ │ ├── media-utils.ts
│ │ │ ├── pca.test.ts
│ │ │ ├── pca.ts
│ │ │ ├── socketio-manager.ts
│ │ │ └── utils.ts
│ │ ├── main.tsx
│ │ ├── routes
│ │ │ ├── agent-detail.tsx
│ │ │ ├── agent-list.tsx
│ │ │ ├── character-detail.tsx
│ │ │ ├── character-form.tsx
│ │ │ ├── character-list.tsx
│ │ │ ├── chat.tsx
│ │ │ ├── createAgent.tsx
│ │ │ ├── group-new.tsx
│ │ │ ├── group.tsx
│ │ │ ├── home.tsx
│ │ │ ├── index.tsx
│ │ │ └── not-found.tsx
│ │ ├── types.ts
│ │ ├── types
│ │ │ ├── index.ts
│ │ │ └── rooms.ts
│ │ └── vite-env.d.ts
│ ├── tailwind.config.ts
│ ├── tests
│ │ ├── 01-web-interface-access.spec.ts
│ │ ├── 02-basic-conversation.spec.ts
│ │ ├── 03-character-configuration.spec.ts
│ │ ├── 04-view-character-info.spec.ts
│ │ ├── 05-modify-character-settings.spec.ts
│ │ ├── logger.ts
│ │ ├── setup.ts
│ │ └── utils.ts
│ ├── tsconfig.app.json
│ ├── tsconfig.build.json
│ ├── tsconfig.json
│ ├── tsconfig.node.json
│ ├── tsconfig.node.tsbuildinfo
│ ├── version.cmd
│ ├── version.sh
│ └── vite.config.ts
├── core
│ ├── .env.test
│ ├── .gitignore
│ ├── .npmignore
│ ├── LICENSE
│ ├── README.md
│ ├── __tests__
│ │ ├── actions.test.ts
│ │ ├── database.test.ts
│ │ ├── entities-extra.test.ts
│ │ ├── env.test.ts
│ │ ├── instrumentation-index.test.ts
│ │ ├── instrumentation.test.ts
│ │ ├── messages.test.ts
│ │ ├── mockCharacter.ts
│ │ ├── parsing.test.ts
│ │ ├── roles.test.ts
│ │ ├── runtime.test.ts
│ │ ├── search.test.ts
│ │ ├── services.test.ts
│ │ ├── settings.test.ts
│ │ ├── utils-extra.test.ts
│ │ ├── utils-prompt.test.ts
│ │ └── uuid.test.ts
│ ├── nodemon.json
│ ├── package.json
│ ├── renovate.json
│ ├── scripts
│ │ ├── setup_instrumentation.sh
│ │ └── setup_traces_table.sql
│ ├── src
│ │ ├── actions.ts
│ │ ├── database.ts
│ │ ├── entities.ts
│ │ ├── index.ts
│ │ ├── instrumentation
│ │ │ ├── Readme.md
│ │ │ ├── index.ts
│ │ │ ├── service.ts
│ │ │ └── types.ts
│ │ ├── logger.ts
│ │ ├── prompts.ts
│ │ ├── roles.ts
│ │ ├── runtime.ts
│ │ ├── search.ts
│ │ ├── sentry
│ │ │ └── instrument.ts
│ │ ├── services.ts
│ │ ├── settings.ts
│ │ ├── specs
│ │ │ ├── README.md
│ │ │ ├── index.ts
│ │ │ ├── v1
│ │ │ │ ├── __tests__
│ │ │ │ │ ├── actionExample.test.ts
│ │ │ │ │ ├── integration.test.ts
│ │ │ │ │ ├── provider.test.ts
│ │ │ │ │ ├── state.test.ts
│ │ │ │ │ ├── templates.test.ts
│ │ │ │ │ └── uuid.test.ts
│ │ │ │ ├── actionExample.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── messages.ts
│ │ │ │ ├── posts.ts
│ │ │ │ ├── provider.ts
│ │ │ │ ├── runtime.ts
│ │ │ │ ├── state.ts
│ │ │ │ ├── templates.ts
│ │ │ │ ├── types.ts
│ │ │ │ └── uuid.ts
│ │ │ └── v2
│ │ │ │ ├── __tests__
│ │ │ │ ├── actions.test.ts
│ │ │ │ ├── database.test.ts
│ │ │ │ ├── entities-extra.test.ts
│ │ │ │ ├── env.test.ts
│ │ │ │ ├── instrumentation-index.test.ts
│ │ │ │ ├── instrumentation.test.ts
│ │ │ │ ├── messages.test.ts
│ │ │ │ ├── mockCharacter.ts
│ │ │ │ ├── parsing.test.ts
│ │ │ │ ├── roles.test.ts
│ │ │ │ ├── runtime.test.ts
│ │ │ │ ├── search.test.ts
│ │ │ │ ├── settings.test.ts
│ │ │ │ ├── utils-extra.test.ts
│ │ │ │ ├── utils-prompt.test.ts
│ │ │ │ └── uuid.test.ts
│ │ │ │ ├── actions.ts
│ │ │ │ ├── database.ts
│ │ │ │ ├── entities.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── logger.ts
│ │ │ │ ├── prompts.ts
│ │ │ │ ├── roles.ts
│ │ │ │ ├── runtime.ts
│ │ │ │ ├── search.ts
│ │ │ │ ├── services.ts
│ │ │ │ ├── settings.ts
│ │ │ │ ├── types.ts
│ │ │ │ ├── types
│ │ │ │ └── stream-browserify.d.ts
│ │ │ │ ├── utils.ts
│ │ │ │ └── uuid.ts
│ │ ├── test_resources
│ │ │ ├── constants.ts
│ │ │ ├── testSetup.ts
│ │ │ └── types.ts
│ │ ├── types.ts
│ │ └── utils.ts
│ ├── tsconfig.build.json
│ ├── tsconfig.json
│ ├── tsup.config.ts
│ └── vitest.config.ts
├── create-eliza
│ ├── .gitignore
│ ├── LICENSE
│ ├── index.mjs
│ └── package.json
├── docs
│ ├── .gitignore
│ ├── README.md
│ ├── archive
│ │ ├── advanced
│ │ │ ├── autonomous-trading.md
│ │ │ ├── eliza-in-tee.md
│ │ │ ├── eliza-with-fhe.md
│ │ │ ├── trust-engine.md
│ │ │ └── verified-inference.md
│ │ ├── guides
│ │ │ ├── configuration.md
│ │ │ ├── fine-tuning.md
│ │ │ ├── memory-management.md
│ │ │ ├── remote-deployment.md
│ │ │ ├── secrets-management.md
│ │ │ └── template-configuration.md
│ │ ├── injection
│ │ │ └── example.md
│ │ ├── notes
│ │ │ ├── adapters.md
│ │ │ ├── advanced.md
│ │ │ ├── agent.md
│ │ │ ├── changelog.md
│ │ │ ├── characters.md
│ │ │ ├── clients.md
│ │ │ ├── core.md
│ │ │ ├── database-adapters.md
│ │ │ ├── docker-setup.md
│ │ │ ├── infrastructure.md
│ │ │ ├── local-development.md
│ │ │ ├── packages
│ │ │ │ ├── clients.md
│ │ │ │ ├── database-adapters.md
│ │ │ │ └── plugins.md
│ │ │ ├── plugins.md
│ │ │ ├── secrets-management.md
│ │ │ └── start-script.md
│ │ └── tutorials
│ │ │ ├── devschool
│ │ │ ├── index.md
│ │ │ ├── part1.md
│ │ │ ├── part2.md
│ │ │ └── part3.md
│ │ │ ├── nader_tutorial_10min.md
│ │ │ ├── nader_tutorial_15min.md
│ │ │ └── nader_tutorial_35min.md
│ ├── babel.config.js
│ ├── blog
│ │ ├── .autofun-tokenomics.mdx.swp
│ │ ├── .scaling-daos.mdx
│ │ ├── add-plugins.mdx
│ │ ├── authors.yml
│ │ ├── autodocs.mdx
│ │ ├── autofun-intro.mdx
│ │ ├── autofun-tokenomics.mdx
│ │ ├── mission.mdx
│ │ ├── openai-plugin-envs.mdx
│ │ ├── reintroduction.mdx
│ │ ├── tags.yml
│ │ ├── taming_info.mdx
│ │ ├── twitter-agent-guide.mdx
│ │ ├── v1-v2.mdx
│ │ └── wdygdtw_recap.mdx
│ ├── community
│ │ ├── Analysis
│ │ │ ├── 20241021_20241027.md
│ │ │ ├── 20241028_20241103.md
│ │ │ ├── 20241104_20241110.md
│ │ │ ├── 20241111_20241117.md
│ │ │ ├── 20241118_20241124.md
│ │ │ ├── 20241125_20241201.md
│ │ │ ├── 20241202_20241208.md
│ │ │ ├── 20241209_20241215.md
│ │ │ ├── 20241216_20241222.md
│ │ │ ├── 20241223_20241229.md
│ │ │ ├── 20241230_20250105.md
│ │ │ ├── 20250106_20250112.md
│ │ │ ├── 20250113_20250119.md
│ │ │ ├── 20250120_20250126.md
│ │ │ ├── 20250127_20250202.md
│ │ │ ├── 20250203_20250208.md
│ │ │ ├── 20250210_20250216.md
│ │ │ ├── 20250217_20250223.md
│ │ │ ├── 20250224_20250302.md
│ │ │ ├── 20250303_20250309.md
│ │ │ ├── 20250310_20250316.md
│ │ │ ├── 20250317_20250323.md
│ │ │ ├── 20250324_20250330.md
│ │ │ └── 20250331_20250406.md
│ │ ├── Contributors
│ │ │ ├── 2024-12-10.md
│ │ │ ├── 2024-12-16.md
│ │ │ ├── 2024-12-31.md
│ │ │ ├── 2025-01-07.md
│ │ │ ├── 2025-01-14.md
│ │ │ ├── 2025-01-21.md
│ │ │ ├── 2025-01-28.md
│ │ │ ├── 2025-02-04.md
│ │ │ ├── 2025-02-11.md
│ │ │ ├── 2025-02-18.md
│ │ │ └── 2025-02-25.md
│ │ ├── Notes
│ │ │ ├── ai_evolution.md
│ │ │ ├── cookbook.md
│ │ │ ├── core_concepts.md
│ │ │ ├── greenpill_ai-dao-prompt.md
│ │ │ ├── information_management.md
│ │ │ ├── inspiration.md
│ │ │ ├── lore.md
│ │ │ └── murad2049.md
│ │ ├── Streams
│ │ │ ├── 01-2025
│ │ │ │ ├── 2025-01-03.md
│ │ │ │ ├── 2025-01-10.md
│ │ │ │ ├── 2025-01-16.md
│ │ │ │ ├── 2025-01-17.md
│ │ │ │ ├── 2025-01-24.md
│ │ │ │ └── 2025-01-31.md
│ │ │ ├── 03-2025
│ │ │ │ ├── Automata.md
│ │ │ │ ├── CompassLabs.md
│ │ │ │ ├── DataBarista.md
│ │ │ │ ├── DevSchoolV2-1.md
│ │ │ │ ├── FireCrawl.md
│ │ │ │ ├── MMAi.md
│ │ │ │ ├── PayAI.md
│ │ │ │ ├── PearlProtocol.md
│ │ │ │ └── arcaid.md
│ │ │ ├── 04-2025
│ │ │ │ ├── FuzzAI.md
│ │ │ │ └── catoff.md
│ │ │ ├── 10-2024
│ │ │ │ ├── 2024-10-25.md
│ │ │ │ ├── 2024-10-27.md
│ │ │ │ └── 2024-10-29.md
│ │ │ ├── 11-2024
│ │ │ │ ├── 2024-11-06.md
│ │ │ │ ├── 2024-11-08.md
│ │ │ │ ├── 2024-11-10.md
│ │ │ │ ├── 2024-11-15.md
│ │ │ │ ├── 2024-11-21.md
│ │ │ │ ├── 2024-11-22.md
│ │ │ │ ├── 2024-11-24.md
│ │ │ │ ├── 2024-11-26.md
│ │ │ │ ├── 2024-11-28.md
│ │ │ │ └── 2024-11-29.md
│ │ │ ├── 12-2024
│ │ │ │ ├── 2024-12-01.md
│ │ │ │ ├── 2024-12-03.md
│ │ │ │ ├── 2024-12-05.md
│ │ │ │ ├── 2024-12-06.md
│ │ │ │ ├── 2024-12-10.md
│ │ │ │ ├── 2024-12-11.md
│ │ │ │ ├── 2024-12-12.md
│ │ │ │ ├── 2024-12-13.md
│ │ │ │ ├── 2024-12-17.md
│ │ │ │ ├── 2024-12-20.md
│ │ │ │ └── 2024-12-27.md
│ │ │ └── index.md
│ │ ├── ai16z
│ │ │ ├── degenai
│ │ │ │ └── index.md
│ │ │ ├── index.md
│ │ │ └── pmairca
│ │ │ │ └── index.md
│ │ ├── faq-and-support.md
│ │ ├── index.md
│ │ └── videos.md
│ ├── docs
│ │ ├── awesome-eliza.md
│ │ ├── changelog.md
│ │ ├── cli
│ │ │ ├── agent.md
│ │ │ ├── create.md
│ │ │ ├── dev.md
│ │ │ ├── env.md
│ │ │ ├── overview.md
│ │ │ ├── plugins.md
│ │ │ ├── publish.md
│ │ │ ├── setup-monorepo.md
│ │ │ ├── start.md
│ │ │ ├── stop.md
│ │ │ ├── test.md
│ │ │ └── update.md
│ │ ├── contributing.md
│ │ ├── core
│ │ │ ├── actions.md
│ │ │ ├── agents.md
│ │ │ ├── database.md
│ │ │ ├── entities.md
│ │ │ ├── evaluators.md
│ │ │ ├── knowledge.md
│ │ │ ├── overview.md
│ │ │ ├── plugins.md
│ │ │ ├── project.md
│ │ │ ├── providers.md
│ │ │ ├── rooms.md
│ │ │ ├── services.md
│ │ │ ├── tasks.md
│ │ │ ├── testing.md
│ │ │ └── worlds.md
│ │ ├── faq.md
│ │ ├── intro.md
│ │ ├── migration
│ │ │ ├── plugin-migration-detailed.md
│ │ │ └── plugin-migration-tutorial.md
│ │ ├── plugins
│ │ │ ├── extending-service-types.md
│ │ │ └── service-registration-pattern.md
│ │ ├── quickstart.md
│ │ └── rest
│ │ │ ├── conversation-to-speech.api.mdx
│ │ │ ├── create-agent.api.mdx
│ │ │ ├── create-room.api.mdx
│ │ │ ├── delete-agent-log.api.mdx
│ │ │ ├── delete-agent.api.mdx
│ │ │ ├── delete-memory.api.mdx
│ │ │ ├── delete-room.api.mdx
│ │ │ ├── eliza-os-api.info.mdx
│ │ │ ├── generate-speech.api.mdx
│ │ │ ├── get-agent-logs.api.mdx
│ │ │ ├── get-agent-memories.api.mdx
│ │ │ ├── get-agent-rooms.api.mdx
│ │ │ ├── get-agent.api.mdx
│ │ │ ├── get-health.api.mdx
│ │ │ ├── get-hello.api.mdx
│ │ │ ├── get-logs.api.mdx
│ │ │ ├── get-room-memories.api.mdx
│ │ │ ├── get-room.api.mdx
│ │ │ ├── get-status.api.mdx
│ │ │ ├── get-tee-agent.api.mdx
│ │ │ ├── list-agents.api.mdx
│ │ │ ├── list-tee-agents.api.mdx
│ │ │ ├── post-logs.api.mdx
│ │ │ ├── query-tee-logs.api.mdx
│ │ │ ├── send-audio-message.api.mdx
│ │ │ ├── send-message.api.mdx
│ │ │ ├── sidebar.ts
│ │ │ ├── start-agent.api.mdx
│ │ │ ├── stop-agent.api.mdx
│ │ │ ├── stop-server.api.mdx
│ │ │ ├── synthesize-speech.api.mdx
│ │ │ ├── transcribe-audio.api.mdx
│ │ │ ├── update-agent.api.mdx
│ │ │ ├── update-memory.api.mdx
│ │ │ └── update-room.api.mdx
│ ├── docusaurus.config.ts
│ ├── news
│ │ ├── authors.yml
│ │ └── tags.yml
│ ├── package.json
│ ├── packages
│ │ ├── adapters
│ │ │ ├── mongodb.md
│ │ │ ├── pglite.md
│ │ │ ├── postgres.md
│ │ │ ├── qdrant.md
│ │ │ ├── sqlite.md
│ │ │ ├── sqljs.md
│ │ │ └── supabase.md
│ │ ├── clients
│ │ │ ├── alexa.md
│ │ │ ├── auto.md
│ │ │ ├── deva.md
│ │ │ ├── direct.md
│ │ │ ├── discord.md
│ │ │ ├── eliza-home.md
│ │ │ ├── farcaster.md
│ │ │ ├── github.md
│ │ │ ├── instagram.md
│ │ │ ├── lens.md
│ │ │ ├── simsai.md
│ │ │ ├── slack.md
│ │ │ ├── tako.md
│ │ │ ├── telegram-account.md
│ │ │ ├── telegram.md
│ │ │ ├── twitter.md
│ │ │ └── xmtp.md
│ │ ├── index.md
│ │ └── plugins
│ │ │ ├── 0g.md
│ │ │ ├── 0x.md
│ │ │ ├── 3d-generation.md
│ │ │ ├── ATTPs.md
│ │ │ ├── abstract.md
│ │ │ ├── advanced-sdk-ts.md
│ │ │ ├── agentkit.md
│ │ │ ├── akash.md
│ │ │ ├── allora.md
│ │ │ ├── ankr.md
│ │ │ ├── anyone.md
│ │ │ ├── aptos.md
│ │ │ ├── arbitrage.md
│ │ │ ├── arthera.md
│ │ │ ├── asterai.md
│ │ │ ├── autonome.md
│ │ │ ├── avail.md
│ │ │ ├── avalanche.md
│ │ │ ├── aws-s3.md
│ │ │ ├── b2.md
│ │ │ ├── binance.md
│ │ │ ├── birdeye.md
│ │ │ ├── bittensor.md
│ │ │ ├── bnb.md
│ │ │ ├── bootstrap.md
│ │ │ ├── browser.md
│ │ │ ├── cache-redis.md
│ │ │ ├── ccxt.md
│ │ │ ├── chainbase.md
│ │ │ ├── coinbase.md
│ │ │ ├── coingecko.md
│ │ │ ├── coinmarketcap.md
│ │ │ ├── compass.md
│ │ │ ├── conflux.md
│ │ │ ├── cosmos.md
│ │ │ ├── cronos.md
│ │ │ ├── cronoszkevm.md
│ │ │ ├── d-a-t-a.md
│ │ │ ├── dcap.md
│ │ │ ├── depin.md
│ │ │ ├── desk-exchange.md
│ │ │ ├── devin.md
│ │ │ ├── dexscreener.md
│ │ │ ├── di.md
│ │ │ ├── dkg.md
│ │ │ ├── echochambers.md
│ │ │ ├── edwin.md
│ │ │ ├── eliza-nkn.md
│ │ │ ├── email-automation.md
│ │ │ ├── email.md
│ │ │ ├── ethstorage.md
│ │ │ ├── evm.md
│ │ │ ├── ferePro.md
│ │ │ ├── firecrawl.md
│ │ │ ├── flow-advanced.md
│ │ │ ├── flow.md
│ │ │ ├── football.md
│ │ │ ├── form.md
│ │ │ ├── fuel.md
│ │ │ ├── gelato.md
│ │ │ ├── genlayer.md
│ │ │ ├── gigbot.md
│ │ │ ├── giphy.md
│ │ │ ├── gitbook.md
│ │ │ ├── gitcoin-passport.md
│ │ │ ├── goat.md
│ │ │ ├── goplus.md
│ │ │ ├── grix.md
│ │ │ ├── holdstation.md
│ │ │ ├── hyperbolic.md
│ │ │ ├── hyperliquid.md
│ │ │ ├── icp.md
│ │ │ ├── image-generation.md
│ │ │ ├── image.md
│ │ │ ├── imgflip.md
│ │ │ ├── initia.md
│ │ │ ├── injective.md
│ │ │ ├── intiface.md
│ │ │ ├── iq6900.md
│ │ │ ├── irys.md
│ │ │ ├── isaacx.md
│ │ │ ├── lens-network.md
│ │ │ ├── lensNetwork.md
│ │ │ ├── letzai.md
│ │ │ ├── lightlink.md
│ │ │ ├── lightning.md
│ │ │ ├── lit.md
│ │ │ ├── llama.md
│ │ │ ├── massa.md
│ │ │ ├── merkle-eliza-plugin.md
│ │ │ ├── merkle.md
│ │ │ ├── messari-ai-toolkit.md
│ │ │ ├── mina.md
│ │ │ ├── mind-network.md
│ │ │ ├── moralis.md
│ │ │ ├── movement.md
│ │ │ ├── multichain.md
│ │ │ ├── multiversx.md
│ │ │ ├── near.md
│ │ │ ├── news.md
│ │ │ ├── nft-collections.md
│ │ │ ├── nft-generation.md
│ │ │ ├── nkn.md
│ │ │ ├── node.md
│ │ │ ├── nvidia-nim.md
│ │ │ ├── obsidian.md
│ │ │ ├── okto.md
│ │ │ ├── omniflix.md
│ │ │ ├── opacity.md
│ │ │ ├── open-weather.md
│ │ │ ├── openai.md
│ │ │ ├── para.md
│ │ │ ├── pdf.md
│ │ │ ├── primus.md
│ │ │ ├── pyth-data.md
│ │ │ ├── quai.md
│ │ │ ├── quick-intel.md
│ │ │ ├── rabbit-trader.md
│ │ │ ├── router-nitro.md
│ │ │ ├── sei.md
│ │ │ ├── sgx.md
│ │ │ ├── solana-agent-kit.md
│ │ │ ├── solana-agentkit.md
│ │ │ ├── solana-v2.md
│ │ │ ├── solana.md
│ │ │ ├── speech-tts.md
│ │ │ ├── spheron.md
│ │ │ ├── squid-router.md
│ │ │ ├── stargaze.md
│ │ │ ├── starknet.md
│ │ │ ├── story.md
│ │ │ ├── sui.md
│ │ │ ├── suno.md
│ │ │ ├── tee-log.md
│ │ │ ├── tee-marlin.md
│ │ │ ├── tee-verifiable-log.md
│ │ │ ├── tee.md
│ │ │ ├── thirdweb.md
│ │ │ ├── ton.md
│ │ │ ├── trikon.md
│ │ │ ├── trustdb.md
│ │ │ ├── trustgo.md
│ │ │ ├── tts.md
│ │ │ ├── twilio.md
│ │ │ ├── twitter.md
│ │ │ ├── udio.md
│ │ │ ├── viction.md
│ │ │ ├── video-generation.md
│ │ │ ├── video.md
│ │ │ ├── web-search.md
│ │ │ ├── whatsapp.md
│ │ │ ├── youtube-to-text.md
│ │ │ ├── zapper.md
│ │ │ ├── zerion.md
│ │ │ ├── zilliqa.md
│ │ │ └── zksync-era.md
│ ├── partners
│ │ ├── 0g-labs
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── README.md
│ │ ├── aethir
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── allora-labs
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── apro
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── arbitrum
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── arc-agents
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── arenax-labs
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── arok
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── beffai
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── berachain
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── bnb-chain
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── bossu
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── collab-land
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── crossmint
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── daos-fun
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── degen8ball
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── degenai
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── dfinity
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── drift
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── eigen-layer
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── eliza-studios
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── eliza
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── elizas-sister
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── elizas-world
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── emblem-vault
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── ethereum-foundation
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── fleek
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── fuel
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── fxn
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── gaia-network
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── gelato
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── gnon
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── godsdotfun
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── goplus
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── hats-protocol
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── hedera
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── heurist-ai
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── hume
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── hyperbolic
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── hyperfy
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── index.md
│ │ ├── injective
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── io-net
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── iq6900
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── jupiter-exchange
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── layerzero
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── lit-protocol
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── magic-eden
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── mee-fun
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── messari
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── mode-network
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── monad
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── multiversx
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── near
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── niftyisland
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── nillion
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── nrn-agents
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── partners-nft
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── phala-network
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── polygon
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── project-89
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── reality-spiral
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── ropraito
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── safe
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── saga
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── scriptoshi
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── secret-network
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── sei
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── smolverse
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── society-library
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── solana-agentkit
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── solana-foundation
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── soleng
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── sonic-svm
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── stanford-university
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── story-protocol
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── thales-cto
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── thirdweb
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── ton-network
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── tron
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── vvaifu-fun
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── waye
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ ├── wombo
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ │ └── zerebro
│ │ │ ├── brief.mdx
│ │ │ └── index.mdx
│ ├── scripts
│ │ ├── README.md
│ │ ├── deepsearch.py
│ │ ├── fetch-news.sh
│ │ ├── get-changelog.py
│ │ ├── plugin_summary_prompt.txt
│ │ ├── summarize.sh
│ │ ├── update-partner-pages.js
│ │ └── update-registry.js
│ ├── sidebars.ts
│ ├── src
│ │ ├── components
│ │ │ ├── CopyPageButton
│ │ │ │ ├── index.tsx
│ │ │ │ └── styles.module.css
│ │ │ ├── DailyNews
│ │ │ │ ├── index.jsx
│ │ │ │ └── styles.module.css
│ │ │ ├── HomepageFeatures
│ │ │ │ ├── index.jsx
│ │ │ │ └── styles.module.css
│ │ │ ├── HomepageHeader
│ │ │ │ ├── index.jsx
│ │ │ │ └── styles.module.css
│ │ │ ├── PartnersComponent.tsx
│ │ │ ├── PartnersComponent
│ │ │ │ ├── index.tsx
│ │ │ │ └── styles.module.css
│ │ │ ├── ShowcaseComponent.tsx
│ │ │ └── VideoGallery
│ │ │ │ ├── index.jsx
│ │ │ │ └── styles.module.css
│ │ ├── css
│ │ │ ├── custom.css
│ │ │ └── partners.css
│ │ ├── data
│ │ │ ├── partners.tsx
│ │ │ ├── plugin-descriptions.json
│ │ │ ├── registry-users.tsx
│ │ │ └── users.tsx
│ │ ├── openapi
│ │ │ ├── eliza-api.yaml
│ │ │ └── eliza-v1.yaml
│ │ ├── pages
│ │ │ ├── index.jsx
│ │ │ ├── index.module.css
│ │ │ ├── markdown-page.md
│ │ │ └── showcase
│ │ │ │ ├── _components
│ │ │ │ ├── ShowcaseCard
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── ShowcaseCards
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── ShowcaseFilters
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── ShowcaseLayout
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ └── ShowcaseSearchBar
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── _utils.tsx
│ │ │ │ └── index.tsx
│ │ └── theme
│ │ │ └── DocItem
│ │ │ └── Content
│ │ │ ├── index.js
│ │ │ └── styles.module.css
│ ├── static
│ │ ├── .nojekyll
│ │ ├── CNAME
│ │ ├── blog
│ │ │ ├── aicomms.jpg
│ │ │ ├── ainews.jpg
│ │ │ ├── aixvc.png
│ │ │ ├── autodocs.jpg
│ │ │ ├── autodocs.svg
│ │ │ ├── banner.jpg
│ │ │ ├── bayc.png
│ │ │ ├── degenai.png
│ │ │ ├── eliza.png
│ │ │ ├── elizastudios.jpg
│ │ │ ├── jintern.jpg
│ │ │ ├── notebooklm.jpg
│ │ │ ├── peepo.png
│ │ │ ├── reward.jpg
│ │ │ ├── shawai.png
│ │ │ ├── v1-v2.jpg
│ │ │ ├── xkcd1810.png
│ │ │ └── yours.jpg
│ │ ├── img
│ │ │ ├── actions.jpg
│ │ │ ├── agentruntime.jpg
│ │ │ ├── architecture.png
│ │ │ ├── autofun-intro.jpg
│ │ │ ├── autofun-tokenomics.jpg
│ │ │ ├── banner1.jpg
│ │ │ ├── banner2.png
│ │ │ ├── cli.jpg
│ │ │ ├── database.jpg
│ │ │ ├── discord_llm_pipeline2.jpg
│ │ │ ├── elijah.jpg
│ │ │ ├── eliza-architecture.jpg
│ │ │ ├── eliza-os_dark.svg
│ │ │ ├── eliza-os_light.svg
│ │ │ ├── eliza-os_logo-mark_light.png
│ │ │ ├── eliza-overview.jpg
│ │ │ ├── eliza_banner.jpg
│ │ │ ├── eliza_in_tee.jpg
│ │ │ ├── elizagen.png
│ │ │ ├── elizaos-rooms-cover.svg
│ │ │ ├── elizaos-rooms-simplified.svg
│ │ │ ├── elizaos-visualization.svg
│ │ │ ├── elizaos-worlds-cosmic-clean.svg
│ │ │ ├── elizaos-worlds-cosmic.svg
│ │ │ ├── elizaos-worlds-cover.svg
│ │ │ ├── elizaos-worlds-simplified.svg
│ │ │ ├── entities-component-architecture.svg
│ │ │ ├── entities.jpg
│ │ │ ├── evaluators.jpg
│ │ │ ├── favicon.ico
│ │ │ ├── funnel.jpg
│ │ │ ├── github-mark-white.svg
│ │ │ ├── github-mark.svg
│ │ │ ├── gui.jpg
│ │ │ ├── icon.png
│ │ │ ├── journey.jpg
│ │ │ ├── knowledge.jpg
│ │ │ ├── main.png
│ │ │ ├── montage-plugins.jpg
│ │ │ ├── overload2.jpg
│ │ │ ├── overview.png
│ │ │ ├── overview.svg
│ │ │ ├── partners.jpg
│ │ │ ├── partners
│ │ │ │ ├── 0g-labs.jpg
│ │ │ │ ├── 43rd-big-idea.jpg
│ │ │ │ ├── act-cto.jpg
│ │ │ │ ├── aethir.webp
│ │ │ │ ├── aiora-ai.jpg
│ │ │ │ ├── aipool.jpg
│ │ │ │ ├── allora-labs.jpg
│ │ │ │ ├── apro.jpeg
│ │ │ │ ├── arbitrum.png
│ │ │ │ ├── arc-agents.jpg
│ │ │ │ ├── arenax-labs.jpg
│ │ │ │ ├── arok.jpg
│ │ │ │ ├── auto-fun.webp
│ │ │ │ ├── banodoco.png
│ │ │ │ ├── beffai.jpg
│ │ │ │ ├── berachain.jpg
│ │ │ │ ├── birdeye.jpg
│ │ │ │ ├── blade-games.jpg
│ │ │ │ ├── bnb-chain.jpeg
│ │ │ │ ├── bossu.jpg
│ │ │ │ ├── cog-acc.jpeg
│ │ │ │ ├── collab-land.png
│ │ │ │ ├── crossmint.png
│ │ │ │ ├── daos-fun.png
│ │ │ │ ├── dark-sun.jpg
│ │ │ │ ├── degen8ball.jpg
│ │ │ │ ├── degenai.jpg
│ │ │ │ ├── dfinity.jpg
│ │ │ │ ├── dreamrunner.jpg
│ │ │ │ ├── drift.png
│ │ │ │ ├── dydx.jpg
│ │ │ │ ├── eigen-layer.jpg
│ │ │ │ ├── eliza-gg.png
│ │ │ │ ├── eliza-studios.png
│ │ │ │ ├── eliza.jpg
│ │ │ │ ├── elizaosmerch.png
│ │ │ │ ├── elizas-sister.jpeg
│ │ │ │ ├── elizas-world.png
│ │ │ │ ├── emblem-vault.jpg
│ │ │ │ ├── ethereum-foundation.jpg
│ │ │ │ ├── farcaster.png
│ │ │ │ ├── fleek.png
│ │ │ │ ├── fuel.jpg
│ │ │ │ ├── fxn.jpg
│ │ │ │ ├── gaia-network.jpg
│ │ │ │ ├── gelato.jpg
│ │ │ │ ├── gnon.jpg
│ │ │ │ ├── godsdotfun.jpg
│ │ │ │ ├── goplus.jpeg
│ │ │ │ ├── hats-protocol.jpg
│ │ │ │ ├── hedera.jpg
│ │ │ │ ├── heurist-ai.jpg
│ │ │ │ ├── hume.jpg
│ │ │ │ ├── hyperbolic.jpeg
│ │ │ │ ├── hyperfy.png
│ │ │ │ ├── injective.png
│ │ │ │ ├── io-net.jpg
│ │ │ │ ├── iq6900.png
│ │ │ │ ├── jupiter-exchange.jpg
│ │ │ │ ├── layerzero.jpg
│ │ │ │ ├── lit-protocol.jpg
│ │ │ │ ├── magic-eden.jpg
│ │ │ │ ├── magiceden.jpg
│ │ │ │ ├── mee-fun.png
│ │ │ │ ├── messari.jpg
│ │ │ │ ├── mizuki.jpg
│ │ │ │ ├── mode-network.jpg
│ │ │ │ ├── monad.jpg
│ │ │ │ ├── multiplex.jpg
│ │ │ │ ├── multiversx.jpg
│ │ │ │ ├── near.jpg
│ │ │ │ ├── niftyisland.jpg
│ │ │ │ ├── nillion.jpg
│ │ │ │ ├── nous-research.jpg
│ │ │ │ ├── nrnagents.jpg
│ │ │ │ ├── og-ai.jpg
│ │ │ │ ├── partners-nft.jpg
│ │ │ │ ├── patchwork-naval.jpg
│ │ │ │ ├── phala-network.jpg
│ │ │ │ ├── polygon.jpg
│ │ │ │ ├── project-89.jpg
│ │ │ │ ├── reality-spiral.jpg
│ │ │ │ ├── ropraito.jpg
│ │ │ │ ├── safe.jpg
│ │ │ │ ├── saga.jpg
│ │ │ │ ├── scriptoshi.jpg
│ │ │ │ ├── secret-network.jpg
│ │ │ │ ├── sei.jpg
│ │ │ │ ├── smolverse.png
│ │ │ │ ├── society-library.jpg
│ │ │ │ ├── solana-agentkit.jpg
│ │ │ │ ├── solana-foundation.png
│ │ │ │ ├── soleng.jpg
│ │ │ │ ├── sonic-svm.jpg
│ │ │ │ ├── stanford-university.png
│ │ │ │ ├── story-protocol.jpg
│ │ │ │ ├── thales-cto.jpg
│ │ │ │ ├── thirdweb.jpg
│ │ │ │ ├── together-xyz.png
│ │ │ │ ├── ton-network.png
│ │ │ │ ├── tron.jpg
│ │ │ │ ├── vvaifu-fun.jpg
│ │ │ │ ├── waye.jpg
│ │ │ │ ├── wombo.jpg
│ │ │ │ ├── xnomad.png
│ │ │ │ └── zerebro.jpg
│ │ │ ├── plugins.jpg
│ │ │ ├── plugins.png
│ │ │ ├── project.jpg
│ │ │ ├── providers.jpg
│ │ │ ├── rooms.jpg
│ │ │ ├── rss.svg
│ │ │ ├── services.jpg
│ │ │ ├── stats.png
│ │ │ ├── tasks.jpg
│ │ │ ├── tokenomics1.jpg
│ │ │ ├── tokenomics2.jpg
│ │ │ ├── video-default-thumb.jpg
│ │ │ ├── video-thumbnails
│ │ │ │ ├── bazaar-thumb.jpg
│ │ │ │ ├── beach-thumb.jpg
│ │ │ │ ├── clanktank-thumb.jpg
│ │ │ │ ├── council-thumb.jpg
│ │ │ │ ├── dubbing-thumb.jpg
│ │ │ │ ├── hack-thumb.jpg
│ │ │ │ ├── neon-thumb.jpg
│ │ │ │ ├── newyear-thumb.jpg
│ │ │ │ ├── pizza-thumb.jpg
│ │ │ │ ├── rebrand-thumb.jpg
│ │ │ │ ├── shawrunner-thumb.jpg
│ │ │ │ ├── solanahack-thumb.jpg
│ │ │ │ ├── sparta-thumb.jpg
│ │ │ │ ├── stonk2-thumb.jpg
│ │ │ │ ├── throne-thumb.jpg
│ │ │ │ └── vote-thumb.jpg
│ │ │ ├── videos.jpg
│ │ │ └── worlds.jpg
│ │ ├── llms-community.txt
│ │ ├── llms-full.txt
│ │ ├── llms.txt
│ │ ├── logos
│ │ │ ├── 0g.jpg
│ │ │ ├── 0x.jpg
│ │ │ ├── AWS.jpg
│ │ │ ├── B2network.jpg
│ │ │ ├── BNBchain.jpg
│ │ │ ├── ETHstorage.jpg
│ │ │ ├── ICP.jpg
│ │ │ ├── IQ6900.jpg
│ │ │ ├── LUMA.jpg
│ │ │ ├── LitProtocol.jpg
│ │ │ ├── Mina.jpg
│ │ │ ├── MindNetwork.jpg
│ │ │ ├── NEAR.jpg
│ │ │ ├── NewsAPI.jpg
│ │ │ ├── OriginTrail.jpg
│ │ │ ├── PDF.jpg
│ │ │ ├── TTS.jpg
│ │ │ ├── TTSelevenlabs.jpg
│ │ │ ├── UDIO.png
│ │ │ ├── abstract.jpg
│ │ │ ├── agentkit.jpg
│ │ │ ├── agentkitCDB.jpg
│ │ │ ├── akash.jpg
│ │ │ ├── alexa.png
│ │ │ ├── allora.jpg
│ │ │ ├── ankr.jpg
│ │ │ ├── anyone.jpg
│ │ │ ├── appro.jpg
│ │ │ ├── apro.jpg
│ │ │ ├── aptos.jpg
│ │ │ ├── arbitage.png
│ │ │ ├── arthera.jpg
│ │ │ ├── asterai.jpg
│ │ │ ├── auto.jpg
│ │ │ ├── autonome.jpg
│ │ │ ├── avail.png
│ │ │ ├── avalanche.jpg
│ │ │ ├── binance.jpg
│ │ │ ├── birdeye.jpg
│ │ │ ├── bittensor.jpg
│ │ │ ├── bootstrap.jpg
│ │ │ ├── browser.playwright.jpg
│ │ │ ├── carv.jpg
│ │ │ ├── ccxt.png
│ │ │ ├── chainbase.jpg
│ │ │ ├── cognition.jpg
│ │ │ ├── coinbase.png
│ │ │ ├── coingecko.jpg
│ │ │ ├── coinmarketcap.jpg
│ │ │ ├── compass.jpg
│ │ │ ├── conflux.png
│ │ │ ├── cosmos.jpg
│ │ │ ├── cronos.jpg
│ │ │ ├── cronos.png
│ │ │ ├── dcap.png
│ │ │ ├── depin.jpg
│ │ │ ├── desk.jpg
│ │ │ ├── deva.jpg
│ │ │ ├── devin.png
│ │ │ ├── dexscreener.jpg
│ │ │ ├── di-logo.jpg
│ │ │ ├── direct.png
│ │ │ ├── discord.jpg
│ │ │ ├── echochambers.png
│ │ │ ├── edwin.jpg
│ │ │ ├── email.jpg
│ │ │ ├── email.png
│ │ │ ├── evm.png
│ │ │ ├── fal.jpg
│ │ │ ├── falai.png
│ │ │ ├── farcaster.jpg
│ │ │ ├── ferepro.png
│ │ │ ├── firecrawl.jpg
│ │ │ ├── flow.jpg
│ │ │ ├── flowchain.png
│ │ │ ├── footballDATA.jpg
│ │ │ ├── form.jpg
│ │ │ ├── fuel.jpg
│ │ │ ├── gelato.jpg
│ │ │ ├── genlayer.jpg
│ │ │ ├── gigbot.png
│ │ │ ├── giphy.jpg
│ │ │ ├── gitbook.jpg
│ │ │ ├── gitcoin.passport.jpg
│ │ │ ├── github.png
│ │ │ ├── goat.jpg
│ │ │ ├── goplus.jpg
│ │ │ ├── grix.png
│ │ │ ├── holdstation.jpg
│ │ │ ├── home-assistant.png
│ │ │ ├── hyperbolic.jpg
│ │ │ ├── hyperliquid.png
│ │ │ ├── ikigai-labs.png
│ │ │ ├── imagegen.jpg
│ │ │ ├── imgFlip.jpg
│ │ │ ├── initia.jpg
│ │ │ ├── injective.jpg
│ │ │ ├── instagram.jpg
│ │ │ ├── intelsgx.png
│ │ │ ├── intiface.png
│ │ │ ├── irys.jpg
│ │ │ ├── isaac.jpg
│ │ │ ├── lens.jpg
│ │ │ ├── letzai.jpg
│ │ │ ├── lightlink.jpg
│ │ │ ├── lightning.png
│ │ │ ├── marlin.jpg
│ │ │ ├── massa.jpg
│ │ │ ├── merkle.jpg
│ │ │ ├── messari.jpg
│ │ │ ├── meta-llama.jpg
│ │ │ ├── mongodb.png
│ │ │ ├── moralis.jpg
│ │ │ ├── movement.jpg
│ │ │ ├── multiversx.jpg
│ │ │ ├── nearai.png
│ │ │ ├── nftgen.png
│ │ │ ├── nkn.jpg
│ │ │ ├── nodejs.jpg
│ │ │ ├── nvidia.jpg
│ │ │ ├── obsidian.jpg
│ │ │ ├── okto.png
│ │ │ ├── okx.png
│ │ │ ├── omniflix.jpg
│ │ │ ├── opacity.jpg
│ │ │ ├── openAI.jpg
│ │ │ ├── openweather.jpg
│ │ │ ├── para.png
│ │ │ ├── pglite.png
│ │ │ ├── phalatee.jpg
│ │ │ ├── postgres.jpg
│ │ │ ├── primus.png
│ │ │ ├── pyth.jpg
│ │ │ ├── qdrant.png
│ │ │ ├── quai.jpg
│ │ │ ├── quickintel.jpg
│ │ │ ├── rabbitrader.jpg
│ │ │ ├── redis.jpg
│ │ │ ├── router.jpg
│ │ │ ├── sei.jpg
│ │ │ ├── sendai.png
│ │ │ ├── simsAI.jpg
│ │ │ ├── slack.jpg
│ │ │ ├── solana.jpg
│ │ │ ├── solanaV2.jpg
│ │ │ ├── spheron.jpg
│ │ │ ├── sqlite.png
│ │ │ ├── sqljs.png
│ │ │ ├── squid.jpg
│ │ │ ├── stargaze.png
│ │ │ ├── starknet.png
│ │ │ ├── story.jpg
│ │ │ ├── sui.jpg
│ │ │ ├── suno.jpg
│ │ │ ├── supabase.jpg
│ │ │ ├── tako.png
│ │ │ ├── tee.png
│ │ │ ├── telegram.jpg
│ │ │ ├── thirdweb.jpg
│ │ │ ├── ton.png
│ │ │ ├── trikon.jpg
│ │ │ ├── trusta.jpg
│ │ │ ├── twilio.png
│ │ │ ├── viction.jpg
│ │ │ ├── video.jpg
│ │ │ ├── websearch.jpg
│ │ │ ├── whatsapp.png
│ │ │ ├── x.jpg
│ │ │ ├── xmtp.jpg
│ │ │ ├── youtube.png
│ │ │ ├── zapper.jpg
│ │ │ ├── zerion.jpg
│ │ │ ├── zilliqa.jpg
│ │ │ └── zksync.jpg
│ │ └── packages
│ │ │ ├── adapters
│ │ │ ├── mongodb.md
│ │ │ ├── pglite.md
│ │ │ ├── postgres.md
│ │ │ ├── qdrant.md
│ │ │ ├── sqlite.md
│ │ │ ├── sqljs.md
│ │ │ └── supabase.md
│ │ │ ├── clients
│ │ │ ├── alexa.md
│ │ │ ├── auto.md
│ │ │ ├── deva.md
│ │ │ ├── direct.md
│ │ │ ├── discord.md
│ │ │ ├── eliza-home.md
│ │ │ ├── farcaster.md
│ │ │ ├── github.md
│ │ │ ├── instagram.md
│ │ │ ├── lens.md
│ │ │ ├── simsai.md
│ │ │ ├── slack.md
│ │ │ ├── tako.md
│ │ │ ├── telegram-account.md
│ │ │ ├── telegram.md
│ │ │ ├── twitter.md
│ │ │ └── xmtp.md
│ │ │ └── plugins
│ │ │ ├── 0g.md
│ │ │ ├── 0x.md
│ │ │ ├── 3d-generation.md
│ │ │ ├── ATTPs.md
│ │ │ ├── abstract.md
│ │ │ ├── advanced-sdk-ts.md
│ │ │ ├── agentkit.md
│ │ │ ├── akash.md
│ │ │ ├── allora.md
│ │ │ ├── ankr.md
│ │ │ ├── anyone.md
│ │ │ ├── aptos.md
│ │ │ ├── arbitrage.md
│ │ │ ├── arthera.md
│ │ │ ├── asterai.md
│ │ │ ├── autonome.md
│ │ │ ├── avail.md
│ │ │ ├── avalanche.md
│ │ │ ├── aws-s3.md
│ │ │ ├── b2.md
│ │ │ ├── binance.md
│ │ │ ├── birdeye.md
│ │ │ ├── bittensor.md
│ │ │ ├── bnb.md
│ │ │ ├── bootstrap.md
│ │ │ ├── browser.md
│ │ │ ├── cache-redis.md
│ │ │ ├── ccxt.md
│ │ │ ├── chainbase.md
│ │ │ ├── coinbase.md
│ │ │ ├── coingecko.md
│ │ │ ├── coinmarketcap.md
│ │ │ ├── compass.md
│ │ │ ├── conflux.md
│ │ │ ├── cosmos.md
│ │ │ ├── cronos.md
│ │ │ ├── cronoszkevm.md
│ │ │ ├── d-a-t-a.md
│ │ │ ├── dcap.md
│ │ │ ├── depin.md
│ │ │ ├── desk-exchange.md
│ │ │ ├── devin.md
│ │ │ ├── dexscreener.md
│ │ │ ├── di.md
│ │ │ ├── dkg.md
│ │ │ ├── echochambers.md
│ │ │ ├── edwin.md
│ │ │ ├── eliza-nkn.md
│ │ │ ├── email-automation.md
│ │ │ ├── email.md
│ │ │ ├── ethstorage.md
│ │ │ ├── evm.md
│ │ │ ├── ferePro.md
│ │ │ ├── firecrawl.md
│ │ │ ├── flow-advanced.md
│ │ │ ├── flow.md
│ │ │ ├── football.md
│ │ │ ├── form.md
│ │ │ ├── fuel.md
│ │ │ ├── gelato.md
│ │ │ ├── genlayer.md
│ │ │ ├── gigbot.md
│ │ │ ├── giphy.md
│ │ │ ├── gitbook.md
│ │ │ ├── gitcoin-passport.md
│ │ │ ├── goat.md
│ │ │ ├── goplus.md
│ │ │ ├── grix.md
│ │ │ ├── holdstation.md
│ │ │ ├── hyperbolic.md
│ │ │ ├── hyperliquid.md
│ │ │ ├── icp.md
│ │ │ ├── image-generation.md
│ │ │ ├── image.md
│ │ │ ├── imgflip.md
│ │ │ ├── initia.md
│ │ │ ├── injective.md
│ │ │ ├── intiface.md
│ │ │ ├── iq6900.md
│ │ │ ├── irys.md
│ │ │ ├── isaacx.md
│ │ │ ├── lens-network.md
│ │ │ ├── lensNetwork.md
│ │ │ ├── letzai.md
│ │ │ ├── lightlink.md
│ │ │ ├── lightning.md
│ │ │ ├── lit.md
│ │ │ ├── llama.md
│ │ │ ├── massa.md
│ │ │ ├── merkle-eliza-plugin.md
│ │ │ ├── merkle.md
│ │ │ ├── messari-ai-toolkit.md
│ │ │ ├── mina.md
│ │ │ ├── mind-network.md
│ │ │ ├── moralis.md
│ │ │ ├── movement.md
│ │ │ ├── multichain.md
│ │ │ ├── multiversx.md
│ │ │ ├── near.md
│ │ │ ├── news.md
│ │ │ ├── nft-collections.md
│ │ │ ├── nft-generation.md
│ │ │ ├── nkn.md
│ │ │ ├── node.md
│ │ │ ├── nvidia-nim.md
│ │ │ ├── obsidian.md
│ │ │ ├── okto.md
│ │ │ ├── omniflix.md
│ │ │ ├── opacity.md
│ │ │ ├── open-weather.md
│ │ │ ├── openai.md
│ │ │ ├── para.md
│ │ │ ├── pdf.md
│ │ │ ├── primus.md
│ │ │ ├── pyth-data.md
│ │ │ ├── quai.md
│ │ │ ├── quick-intel.md
│ │ │ ├── rabbit-trader.md
│ │ │ ├── router-nitro.md
│ │ │ ├── sei.md
│ │ │ ├── sgx.md
│ │ │ ├── solana-agent-kit.md
│ │ │ ├── solana-agentkit.md
│ │ │ ├── solana-v2.md
│ │ │ ├── solana.md
│ │ │ ├── speech-tts.md
│ │ │ ├── spheron.md
│ │ │ ├── squid-router.md
│ │ │ ├── stargaze.md
│ │ │ ├── starknet.md
│ │ │ ├── story.md
│ │ │ ├── sui.md
│ │ │ ├── suno.md
│ │ │ ├── tee-log.md
│ │ │ ├── tee-marlin.md
│ │ │ ├── tee-verifiable-log.md
│ │ │ ├── tee.md
│ │ │ ├── thirdweb.md
│ │ │ ├── ton.md
│ │ │ ├── trikon.md
│ │ │ ├── trustdb.md
│ │ │ ├── trustgo.md
│ │ │ ├── tts.md
│ │ │ ├── twilio.md
│ │ │ ├── twitter.md
│ │ │ ├── udio.md
│ │ │ ├── viction.md
│ │ │ ├── video-generation.md
│ │ │ ├── video.md
│ │ │ ├── web-search.md
│ │ │ ├── whatsapp.md
│ │ │ ├── youtube-to-text.md
│ │ │ ├── zapper.md
│ │ │ ├── zerion.md
│ │ │ ├── zilliqa.md
│ │ │ └── zksync-era.md
│ ├── versioned_docs
│ │ └── version-0.25.9
│ │ │ ├── advanced
│ │ │ ├── autonomous-trading.md
│ │ │ ├── eliza-in-tee.md
│ │ │ ├── eliza-with-fhe.md
│ │ │ ├── trust-engine.md
│ │ │ └── verified-inference.md
│ │ │ ├── awesome-eliza.md
│ │ │ ├── changelog.md
│ │ │ ├── contributing.md
│ │ │ ├── core
│ │ │ ├── actions.md
│ │ │ ├── agents.md
│ │ │ ├── characterfile.md
│ │ │ ├── clients.md
│ │ │ ├── database.md
│ │ │ ├── evaluators.md
│ │ │ ├── fact-evaluator.md
│ │ │ ├── knowledge.md
│ │ │ ├── overview.md
│ │ │ ├── plugins.md
│ │ │ └── providers.md
│ │ │ ├── faq.md
│ │ │ ├── guides
│ │ │ ├── configuration.md
│ │ │ ├── fine-tuning.md
│ │ │ ├── memory-management.md
│ │ │ ├── remote-deployment.md
│ │ │ ├── secrets-management.md
│ │ │ ├── template-configuration.md
│ │ │ └── wsl.md
│ │ │ ├── intro.md
│ │ │ ├── quickstart.md
│ │ │ ├── rest
│ │ │ ├── delete-agent.api.mdx
│ │ │ ├── eliza-os-api.info.mdx
│ │ │ ├── get-agent.api.mdx
│ │ │ ├── get-api-root.api.mdx
│ │ │ ├── get-hello.api.mdx
│ │ │ ├── get-memories.api.mdx
│ │ │ ├── list-agents.api.mdx
│ │ │ ├── list-stored-characters.api.mdx
│ │ │ ├── set-agent.api.mdx
│ │ │ ├── sidebar.ts
│ │ │ ├── start-agent.api.mdx
│ │ │ └── stop-agent.api.mdx
│ │ │ └── tutorials
│ │ │ ├── devschool
│ │ │ ├── index.md
│ │ │ ├── part1.md
│ │ │ ├── part2.md
│ │ │ └── part3.md
│ │ │ ├── nader_tutorial_10min.md
│ │ │ ├── nader_tutorial_15min.md
│ │ │ └── nader_tutorial_35min.md
│ ├── versioned_sidebars
│ │ └── version-0.25.9-sidebars.json
│ └── versions.json
├── plugin-bootstrap
│ ├── .npmignore
│ ├── LICENSE
│ ├── README.md
│ ├── __tests__
│ │ ├── README.md
│ │ ├── actions.test.ts
│ │ ├── attachments.test.ts
│ │ ├── evaluators.test.ts
│ │ ├── logic.test.ts
│ │ ├── plugin.test.ts
│ │ ├── providers.test.ts
│ │ ├── services.test.ts
│ │ └── test-utils.ts
│ ├── package.json
│ ├── src
│ │ ├── actions
│ │ │ ├── choice.ts
│ │ │ ├── followRoom.ts
│ │ │ ├── ignore.ts
│ │ │ ├── index.ts
│ │ │ ├── muteRoom.ts
│ │ │ ├── none.ts
│ │ │ ├── reply.ts
│ │ │ ├── roles.ts
│ │ │ ├── sendMessage.ts
│ │ │ ├── settings.ts
│ │ │ ├── unfollowRoom.ts
│ │ │ ├── unmuteRoom.ts
│ │ │ └── updateEntity.ts
│ │ ├── evaluators
│ │ │ ├── index.ts
│ │ │ └── reflection.ts
│ │ ├── index.ts
│ │ ├── providers
│ │ │ ├── actions.ts
│ │ │ ├── anxiety.ts
│ │ │ ├── attachments.ts
│ │ │ ├── capabilities.ts
│ │ │ ├── character.ts
│ │ │ ├── choice.ts
│ │ │ ├── entities.ts
│ │ │ ├── evaluators.ts
│ │ │ ├── facts.ts
│ │ │ ├── index.ts
│ │ │ ├── providers.ts
│ │ │ ├── recentMessages.ts
│ │ │ ├── relationships.ts
│ │ │ ├── roles.ts
│ │ │ ├── settings.ts
│ │ │ ├── shouldRespond.ts
│ │ │ ├── time.ts
│ │ │ └── world.ts
│ │ └── services
│ │ │ ├── index.ts
│ │ │ └── task.ts
│ ├── tsconfig.build.json
│ ├── tsconfig.json
│ ├── tsup.config.ts
│ └── vitest.config.ts
├── plugin-sql
│ ├── .gitignore
│ ├── .npmignore
│ ├── LICENSE
│ ├── README.md
│ ├── __tests__
│ │ ├── README.md
│ │ ├── delete-agent.test.ts
│ │ ├── integration
│ │ │ ├── agent.test.ts
│ │ │ ├── cache.test.ts
│ │ │ ├── component.test.ts
│ │ │ ├── embedding.test.ts
│ │ │ ├── entity.test.ts
│ │ │ ├── log.test.ts
│ │ │ ├── memory.test.ts
│ │ │ ├── participant.test.ts
│ │ │ ├── relationship.test.ts
│ │ │ ├── room.test.ts
│ │ │ ├── seed
│ │ │ │ ├── agent-seed.ts
│ │ │ │ ├── cache-seed.ts
│ │ │ │ ├── component-seed.ts
│ │ │ │ ├── embedding-seed.ts
│ │ │ │ ├── entity-seed.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── log-seed.ts
│ │ │ │ ├── memory-seed.ts
│ │ │ │ ├── participant-seed.ts
│ │ │ │ ├── relationship-seed.ts
│ │ │ │ ├── room-seed.ts
│ │ │ │ ├── task-seed.ts
│ │ │ │ └── world-seed.ts
│ │ │ ├── task.test.ts
│ │ │ └── world.test.ts
│ │ └── test-helpers.ts
│ ├── config.toml
│ ├── drizzle.config.ts
│ ├── drizzle
│ │ ├── extension.sql
│ │ └── migrations
│ │ │ ├── 0000_thin_madame_web.sql
│ │ │ └── meta
│ │ │ ├── 0000_snapshot.json
│ │ │ └── _journal.json
│ ├── package.json
│ ├── src
│ │ ├── base.ts
│ │ ├── index.ts
│ │ ├── migrate.ts
│ │ ├── pg
│ │ │ ├── adapter.ts
│ │ │ └── manager.ts
│ │ ├── pglite
│ │ │ ├── adapter.ts
│ │ │ └── manager.ts
│ │ ├── schema
│ │ │ ├── agent.ts
│ │ │ ├── cache.ts
│ │ │ ├── channel.ts
│ │ │ ├── channelParticipant.ts
│ │ │ ├── component.ts
│ │ │ ├── embedding.ts
│ │ │ ├── entity.ts
│ │ │ ├── factory.ts
│ │ │ ├── index.ts
│ │ │ ├── log.ts
│ │ │ ├── memory.ts
│ │ │ ├── message.ts
│ │ │ ├── messageServer.ts
│ │ │ ├── participant.ts
│ │ │ ├── relationship.ts
│ │ │ ├── room.ts
│ │ │ ├── serverAgent.ts
│ │ │ ├── tasks.ts
│ │ │ ├── types.ts
│ │ │ └── world.ts
│ │ ├── types.ts
│ │ └── utils.ts
│ ├── tsconfig.build.json
│ ├── tsconfig.json
│ ├── tsup.config.ts
│ └── vitest.config.ts
├── plugin-starter
│ ├── .gitignore
│ ├── .npmignore
│ ├── README.md
│ ├── __tests__
│ │ ├── integration.test.ts
│ │ ├── plugin.test.ts
│ │ └── test-utils.ts
│ ├── e2e
│ │ └── starter-plugin.test.ts
│ ├── images
│ │ └── README.md
│ ├── package.json
│ ├── src
│ │ └── index.ts
│ ├── tsconfig.build.json
│ ├── tsconfig.json
│ ├── tsup.config.ts
│ └── vitest.config.ts
├── project-starter
│ ├── .env.example
│ ├── .gitignore
│ ├── .npmignore
│ ├── README.md
│ ├── __tests__
│ │ ├── actions.test.ts
│ │ ├── character.test.ts
│ │ ├── config.test.ts
│ │ ├── env.test.ts
│ │ ├── error-handling.test.ts
│ │ ├── events.test.ts
│ │ ├── file-structure.test.ts
│ │ ├── integration.test.ts
│ │ ├── models.test.ts
│ │ ├── plugin.test.ts
│ │ ├── provider.test.ts
│ │ ├── routes.test.ts
│ │ ├── test-utils.ts
│ │ └── utils
│ │ │ └── core-test-utils.ts
│ ├── e2e
│ │ ├── project.test.ts
│ │ └── starter-plugin.test.ts
│ ├── package.json
│ ├── src
│ │ ├── index.ts
│ │ └── plugin.ts
│ ├── tsconfig.build.json
│ ├── tsconfig.json
│ ├── tsup.config.ts
│ └── vitest.config.ts
└── project-tee-starter
│ ├── .dockerignore
│ ├── .env.example
│ ├── .gitignore
│ ├── .npmignore
│ ├── Dockerfile
│ ├── GUIDE.md
│ ├── README.md
│ ├── __tests__
│ ├── actions.test.ts
│ ├── character.test.ts
│ ├── config.test.ts
│ ├── env.test.ts
│ ├── error-handling.test.ts
│ ├── events.test.ts
│ ├── file-structure.test.ts
│ ├── integration.test.ts
│ ├── models.test.ts
│ ├── plugin.test.ts
│ ├── provider.test.ts
│ ├── routes.test.ts
│ ├── test-utils.ts
│ └── utils
│ │ └── core-test-utils.ts
│ ├── assets
│ └── mr-tee-portrait.jpg
│ ├── docker-compose.yaml
│ ├── e2e
│ ├── project.test.ts
│ └── starter-plugin.test.ts
│ ├── package.json
│ ├── src
│ ├── character.ts
│ ├── index.ts
│ └── plugin.ts
│ ├── tsconfig.build.json
│ ├── tsconfig.json
│ ├── tsup.config.ts
│ └── vitest.config.ts
├── renovate.json
├── scripts
├── async-optimizer.js
├── dev-instructions.md
├── docker.sh
├── pre-commit-lint.js
├── repo_optimizer.sh
├── repomix-full.config.json
├── repomix.config.json
├── test.sh
├── tsdoc_applier.js
├── tsdoc_generator.js
└── update-news.sh
├── tee-docker-compose.yaml
├── tsconfig.json
└── turbo.json
/.cursorignore:
--------------------------------------------------------------------------------
1 | .turbo/
2 | .cursorrules
3 |
4 | **/dist/**
5 | **/node_modules/**
6 | **/build/**
7 | **/cache/**
8 |
9 | .env
10 | *.lock
11 | codecov.yml
12 | LICENSE
--------------------------------------------------------------------------------
/.devcontainer/Dockerfile:
--------------------------------------------------------------------------------
1 | ARG NODE_VER=23.5.0
2 | ARG BASE_IMAGE=node:${NODE_VER}
3 | FROM $BASE_IMAGE
4 |
5 | ENV DEBIAN_FRONTEND=noninteractive
6 |
7 | # Install bun globally and install necessary build tools
8 | RUN apt-get update \
9 | && apt-get install -y \
10 | git \
11 | python3 \
12 | make \
13 | g++ \
14 | nano \
15 | vim \
16 | && apt-get clean \
17 | && rm -rf /var/lib/apt/lists/*
18 |
19 | RUN npm install -g bun@$1.2.2
20 |
21 | # Set Python 3 as the default python
22 | RUN ln -s /usr/bin/python3 /usr/bin/python
23 | ENV DEBIAN_FRONTEND=dialog
24 |
--------------------------------------------------------------------------------
/.dockerignore:
--------------------------------------------------------------------------------
1 | # Ignore node_modules from the build context
2 | node_modules
3 |
4 | # Ignore logs and temporary files
5 | *.log
6 | *.tmp
7 | .DS_Store
8 |
9 | # Ignore Git files and metadata
10 | .gitignore
11 |
12 | # Ignore IDE and editor config files
13 | .vscode
14 | .idea
15 | *.swp
16 |
17 | # Ignore build artifacts from the host
18 | dist
19 | build
20 | .env
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Bug report
3 | about: Create a report to help us improve
4 | title: ''
5 | labels: 'bug'
6 | assignees: ''
7 | ---
8 |
9 | **Describe the bug**
10 |
11 |
12 |
13 | **To Reproduce**
14 |
15 |
16 |
17 | **Expected behavior**
18 |
19 |
20 |
21 | **Screenshots**
22 |
23 |
24 |
25 | **Additional context**
26 |
27 |
28 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Feature request
3 | about: Suggest an idea for this project
4 | title: ''
5 | labels: 'enhancement'
6 | assignees: ''
7 | ---
8 |
9 | **Is your feature request related to a problem? Please describe.**
10 |
11 |
12 |
13 | **Describe the solution you'd like**
14 |
15 |
16 |
17 | **Describe alternatives you've considered**
18 |
19 |
20 |
21 | **Additional context**
22 |
23 |
24 |
--------------------------------------------------------------------------------
/.github/dependabot.yml:
--------------------------------------------------------------------------------
1 | # To get started with Dependabot version updates, you'll need to specify which
2 | # package ecosystems to update and where the package manifests are located.
3 | # Please see the documentation for all configuration options:
4 | # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5 |
6 | version: 2
7 | updates:
8 | - package-ecosystem: '' # See documentation for possible values
9 | directory: '/' # Location of package manifests
10 | schedule:
11 | interval: 'weekly'
12 |
--------------------------------------------------------------------------------
/.github/workflows/claude.yml:
--------------------------------------------------------------------------------
1 | name: Claude Assistant
2 | on:
3 | issue_comment:
4 | types: [created]
5 | pull_request_review_comment:
6 | types: [created]
7 | issues:
8 | types: [opened, assigned]
9 | pull_request_review:
10 | types: [submitted]
11 |
12 | jobs:
13 | claude-response:
14 | runs-on: ubuntu-latest
15 | steps:
16 | - uses: anthropics/claude-code-action@beta
17 | with:
18 | anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
19 | github_token: ${{ secrets.GH_PAT }}
20 |
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/.gitmodules
--------------------------------------------------------------------------------
/.husky/pre-commit:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | # bun run scripts/pre-commit-lint.js
4 |
--------------------------------------------------------------------------------
/.npmrc:
--------------------------------------------------------------------------------
1 | node-linker=hoisted
--------------------------------------------------------------------------------
/.nvmrc:
--------------------------------------------------------------------------------
1 | v23.3.0
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | **/*/target
2 | **/*/dist
3 |
4 | # ignore lock files
5 | **/*-lock.yaml
6 | dev-dist
7 |
8 | **/CHANGELOG.md
9 |
10 | # Build artifacts
11 | dist
12 | build
13 | .turbo
14 |
15 | # Dependencies
16 | node_modules
17 | bun.lockb
18 |
19 | # Generated files
20 | .coverage
21 | .next
22 | .cache
23 | out
24 | *.min.js
25 |
26 | # Misc
27 | .DS_Store
28 | .env
29 | .env.*
30 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "semi": true,
3 | "singleQuote": true,
4 | "tabWidth": 2,
5 | "trailingComma": "es5",
6 | "printWidth": 100,
7 | "endOfLine": "lf"
8 | }
9 |
--------------------------------------------------------------------------------
/Dockerfile.docs:
--------------------------------------------------------------------------------
1 | # syntax=docker/dockerfile:1
2 |
3 | # Use the official Bun image
4 | FROM oven/bun:1 AS base
5 | WORKDIR /usr/src/app
6 |
7 | # Copy everything needed for the docs
8 | COPY packages/docs/ ./
9 | COPY packages/core/ /usr/src/core/
10 | COPY .git/ ./.git/
11 | COPY tsconfig.json ./
12 |
13 | # Install dependencies and build
14 | RUN bun install && \
15 | bun run build
16 |
17 | # Run the server
18 | USER bun
19 | EXPOSE 3000/tcp
20 | CMD ["bun", "run", "build"]
--------------------------------------------------------------------------------
/codecov.yml:
--------------------------------------------------------------------------------
1 | coverage:
2 | status:
3 | project:
4 | default:
5 | target: 70%
6 |
--------------------------------------------------------------------------------
/docker-compose-docs.yaml:
--------------------------------------------------------------------------------
1 | services:
2 | docs:
3 | build:
4 | dockerfile: Dockerfile.docs
5 | context: .
6 | ports:
7 | - 3000:3000
8 |
--------------------------------------------------------------------------------
/fly.toml:
--------------------------------------------------------------------------------
1 | app = "eliza-v2"
2 | primary_region = "iad"
3 |
4 | [build]
5 |
6 | [env]
7 | PORT = "3000"
8 |
9 | [http_service]
10 | internal_port = 3000
11 | force_https = true
12 | auto_start_machines = true
13 | min_machines_running = 0
14 | processes = ["app"]
15 |
16 | [[vm]]
17 | cpu_kind = "shared"
18 | cpus = 2
19 | memory_mb = 4096
20 |
--------------------------------------------------------------------------------
/lerna.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "1.0.2",
3 | "packages": ["packages/*"],
4 | "npmClient": "bun",
5 | "command": {
6 | "publish": {
7 | "workspaceConfig": true
8 | },
9 | "version": {
10 | "workspaceConfig": true
11 | }
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/packages/app/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | bun-debug.log*
8 | lerna-debug.log*
9 |
10 | node_modules
11 | dist
12 | dist-ssr
13 | *.local
14 |
15 | # Editor directories and files
16 | .vscode/*
17 | !.vscode/extensions.json
18 | .idea
19 | .DS_Store
20 | *.suo
21 | *.ntvs*
22 | *.njsproj
23 | *.sln
24 | *.sw?
25 |
--------------------------------------------------------------------------------
/packages/app/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | "recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"]
3 | }
4 |
--------------------------------------------------------------------------------
/packages/app/README.md:
--------------------------------------------------------------------------------
1 | # Tauri + React + Typescript
2 |
3 | This template should help get you started developing with Tauri, React and Typescript in Vite.
4 |
5 | ## Recommended IDE Setup
6 |
7 | - [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
8 |
--------------------------------------------------------------------------------
/packages/app/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Eliza Desktop
8 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/packages/app/src-tauri/.gitignore:
--------------------------------------------------------------------------------
1 | # Generated by Cargo
2 | # will have compiled files and executables
3 | /target/
4 |
5 | # Generated by Tauri
6 | # will have schema files for capabilities auto-completion
7 | /gen/schemas
8 |
--------------------------------------------------------------------------------
/packages/app/src-tauri/build.rs:
--------------------------------------------------------------------------------
1 | fn main() {
2 | tauri_build::build()
3 | }
4 |
--------------------------------------------------------------------------------
/packages/app/src-tauri/capabilities/default.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "../gen/schemas/desktop-schema.json",
3 | "identifier": "default",
4 | "description": "Capability for the main window",
5 | "windows": ["main"],
6 | "permissions": ["core:default", "opener:default"]
7 | }
8 |
--------------------------------------------------------------------------------
/packages/app/src-tauri/icons/128x128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/app/src-tauri/icons/128x128.png
--------------------------------------------------------------------------------
/packages/app/src-tauri/icons/128x128@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/app/src-tauri/icons/128x128@2x.png
--------------------------------------------------------------------------------
/packages/app/src-tauri/icons/32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/app/src-tauri/icons/32x32.png
--------------------------------------------------------------------------------
/packages/app/src-tauri/icons/Square107x107Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/app/src-tauri/icons/Square107x107Logo.png
--------------------------------------------------------------------------------
/packages/app/src-tauri/icons/Square142x142Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/app/src-tauri/icons/Square142x142Logo.png
--------------------------------------------------------------------------------
/packages/app/src-tauri/icons/Square150x150Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/app/src-tauri/icons/Square150x150Logo.png
--------------------------------------------------------------------------------
/packages/app/src-tauri/icons/Square284x284Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/app/src-tauri/icons/Square284x284Logo.png
--------------------------------------------------------------------------------
/packages/app/src-tauri/icons/Square30x30Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/app/src-tauri/icons/Square30x30Logo.png
--------------------------------------------------------------------------------
/packages/app/src-tauri/icons/Square310x310Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/app/src-tauri/icons/Square310x310Logo.png
--------------------------------------------------------------------------------
/packages/app/src-tauri/icons/Square44x44Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/app/src-tauri/icons/Square44x44Logo.png
--------------------------------------------------------------------------------
/packages/app/src-tauri/icons/Square71x71Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/app/src-tauri/icons/Square71x71Logo.png
--------------------------------------------------------------------------------
/packages/app/src-tauri/icons/Square89x89Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/app/src-tauri/icons/Square89x89Logo.png
--------------------------------------------------------------------------------
/packages/app/src-tauri/icons/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/app/src-tauri/icons/StoreLogo.png
--------------------------------------------------------------------------------
/packages/app/src-tauri/icons/icon.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/app/src-tauri/icons/icon.icns
--------------------------------------------------------------------------------
/packages/app/src-tauri/icons/icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/app/src-tauri/icons/icon.ico
--------------------------------------------------------------------------------
/packages/app/src-tauri/icons/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/app/src-tauri/icons/icon.png
--------------------------------------------------------------------------------
/packages/app/src-tauri/src/main.rs:
--------------------------------------------------------------------------------
1 | // Prevents additional console window on Windows in release, DO NOT REMOVE!!
2 | #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
3 |
4 | fn main() {
5 | app_lib::run()
6 | }
7 |
--------------------------------------------------------------------------------
/packages/app/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/packages/app/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ES2020",
4 | "useDefineForClassFields": true,
5 | "lib": ["ES2020", "DOM", "DOM.Iterable"],
6 | "module": "ESNext",
7 | "skipLibCheck": true,
8 |
9 | /* Bundler mode */
10 | "moduleResolution": "bundler",
11 | "allowImportingTsExtensions": true,
12 | "resolveJsonModule": true,
13 | "isolatedModules": true,
14 | "noEmit": true,
15 | "jsx": "react-jsx",
16 | "typeRoots": ["./node_modules/@types"],
17 |
18 | /* Linting */
19 | "strict": true,
20 | "noUnusedLocals": true,
21 | "noUnusedParameters": true,
22 | "noFallthroughCasesInSwitch": true
23 | },
24 | "include": ["src"],
25 | "references": [{ "path": "./tsconfig.node.json" }]
26 | }
27 |
--------------------------------------------------------------------------------
/packages/app/tsconfig.node.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "composite": true,
4 | "typeRoots": ["./node_modules/@types"],
5 |
6 | "skipLibCheck": true,
7 | "module": "ESNext",
8 | "moduleResolution": "bundler",
9 | "allowSyntheticDefaultImports": true
10 | },
11 | "include": ["vite.config.ts"]
12 | }
13 |
--------------------------------------------------------------------------------
/packages/autodoc/.env.example:
--------------------------------------------------------------------------------
1 | GITHUB_ACCESS_TOKEN=
2 | OPENAI_API_KEY=
--------------------------------------------------------------------------------
/packages/autodoc/.gitignore:
--------------------------------------------------------------------------------
1 | # Dependencies
2 | node_modules
3 | .bun-store
4 |
5 | # Build outputs
6 | dist
7 | build
8 |
9 | # Environment variables
10 | .env
11 | .env.local
12 | .env.*.local
13 |
14 | # Logs
15 | *.log
16 | npm-debug.log*
17 | bun-debug.log*
18 |
19 | # Editor directories
20 | .idea
21 | .vscode
22 | *.suo
23 | *.ntvs*
24 | *.njsproj
25 | *.sln
--------------------------------------------------------------------------------
/packages/autodoc/src/AIService/index.ts:
--------------------------------------------------------------------------------
1 | export * from './AIService.js';
2 | export * from './types/index.js';
3 |
--------------------------------------------------------------------------------
/packages/autodoc/tsconfig.build.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig.json",
3 | "compilerOptions": {
4 | "rootDir": "./src",
5 | "outDir": "./dist",
6 | "sourceMap": true,
7 | "typeRoots": ["./node_modules/@types"],
8 |
9 | "inlineSources": true,
10 | "declaration": true,
11 | "emitDeclarationOnly": true
12 | },
13 | "include": ["src/**/*.ts"],
14 | "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
15 | }
16 |
--------------------------------------------------------------------------------
/packages/autodoc/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "strict": true,
4 | "esModuleInterop": true,
5 | "skipLibCheck": true,
6 | "target": "ES2020",
7 | "module": "ESNext",
8 | "moduleResolution": "node",
9 | "resolveJsonModule": true,
10 | "isolatedModules": true,
11 | "baseUrl": ".",
12 | "paths": {
13 | "@elizaos/core": ["../core/src"],
14 | "@elizaos/core/*": ["../core/src/*"]
15 | }
16 | },
17 | "include": ["src/**/*.ts"],
18 | "exclude": ["node_modules", "dist"]
19 | }
20 |
--------------------------------------------------------------------------------
/packages/autodoc/tsup.config.ts:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'tsup';
2 |
3 | export default defineConfig({
4 | entry: ['src/index.ts'],
5 | format: ['cjs', 'esm'],
6 | dts: true,
7 | splitting: false,
8 | sourcemap: true,
9 | clean: true,
10 | target: 'node23',
11 | outDir: 'dist',
12 | tsconfig: './tsconfig.build.json', // Use build-specific tsconfig
13 | treeshake: true,
14 | });
15 |
--------------------------------------------------------------------------------
/packages/cli/.env.example:
--------------------------------------------------------------------------------
1 | # No configuration needed for Pglite
2 | ELIZA_BRANCH=main
--------------------------------------------------------------------------------
/packages/cli/.gitignore:
--------------------------------------------------------------------------------
1 | components
2 | dist
3 | .turbo
4 | cache
5 | models
6 | templates/
--------------------------------------------------------------------------------
/packages/cli/minimal-test.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 | set -euo pipefail
3 |
4 | echo "Building CLI package..."
5 | bun run build
6 |
7 | echo "Running minimal test with elizaos create -y -t project..."
8 | cd /tmp
9 | rm -rf test-proj
10 | export ELIZAOS_DEBUG=true
11 | elizaos create test-proj -y -t project
12 | CODE=$?
13 | echo "Exit code: $CODE"
14 |
15 | if [ -d "test-proj" ]; then
16 | echo "Project directory created: test-proj"
17 | if [ -f "test-proj/package.json" ]; then
18 | echo "package.json file found"
19 | else
20 | echo "package.json file NOT found"
21 | fi
22 | else
23 | echo "Project directory NOT created: test-proj"
24 | fi
25 |
26 | echo "Done"
--------------------------------------------------------------------------------
/packages/cli/scripts/clean-pkg.js:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 |
3 | // This script removes dependencies from package.json for publishing
4 | // Because we bundle all dependencies in the final output, we don't need them
5 | // in the published package.json
6 |
7 | const fs = require('node:fs');
8 | const path = require('node:path');
9 |
10 | // Read the package.json
11 | const pkgPath = path.join(process.cwd(), 'package.json');
12 | const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf8'));
13 |
14 | // Clean dependencies
15 | pkg.dependencies = {};
16 | pkg.devDependencies = {};
17 |
18 | // Write the cleaned package.json
19 | fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, 2), 'utf8');
20 |
21 | console.log('Package.json cleaned for publishing!');
22 |
--------------------------------------------------------------------------------
/packages/cli/src/commands/tee.ts:
--------------------------------------------------------------------------------
1 | import { Command } from 'commander';
2 | import { phalaCliCommand } from './tee/phala-wrapper';
3 |
4 | export const teeCommand = new Command('tee')
5 | .description('Manage TEE deployments')
6 | // Add TEE Vendor Commands
7 | .addCommand(phalaCliCommand);
8 |
--------------------------------------------------------------------------------
/packages/cli/src/scripts/copy-client-dist.ts:
--------------------------------------------------------------------------------
1 | import { copyClientDist } from '@/src/utils';
2 |
3 | /**
4 | * Asynchronous function that runs the copy-client-dist script.
5 | * It first logs a message indicating that the script is running,
6 | * then awaits the completion of the copyClientDist function,
7 | * and finally logs a message indicating that the script has been completed.
8 | */
9 | async function main() {
10 | await copyClientDist();
11 | }
12 |
13 | main().catch((error) => {
14 | console.error('Error running copy-client-dist script:', error);
15 | process.exit(1);
16 | });
17 |
--------------------------------------------------------------------------------
/packages/cli/src/server/bus.ts:
--------------------------------------------------------------------------------
1 | import EventEmitter from 'events';
2 |
3 | /**
4 | * A simple in-memory message bus for distributing messages from the server
5 | * to subscribed MessageBusService instances within the same process.
6 | *
7 | * For multi-process or multi-server deployments, this would need to be replaced
8 | * with a more robust solution like Redis Pub/Sub, Kafka, RabbitMQ, etc.
9 | */
10 | class InternalMessageBus extends EventEmitter {}
11 |
12 | const internalMessageBus = new InternalMessageBus();
13 |
14 | // Increase the default max listeners if many agents might be running in one process
15 | internalMessageBus.setMaxListeners(50);
16 |
17 | export default internalMessageBus;
18 |
--------------------------------------------------------------------------------
/packages/cli/src/server/test/run-api-tests.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # Run API Route Tests
4 | echo "🚀 Running API Route Tests..."
5 | cd "$(dirname "$0")/../../.."
6 | npx tsx src/server/test/api-routes.test.ts
--------------------------------------------------------------------------------
/packages/cli/src/types/plugins.ts:
--------------------------------------------------------------------------------
1 | // Raw registry types
2 | export type RawRegistry = Record; // → "github:owner/repo"
3 |
4 | export interface VersionInfo {
5 | git?: {
6 | repo: string;
7 | v0?: {
8 | version: string | null;
9 | branch: string | null;
10 | };
11 | v1?: {
12 | version: string | null;
13 | branch: string | null;
14 | };
15 | };
16 | npm?: {
17 | repo: string;
18 | v0?: string | null;
19 | v1?: string | null;
20 | };
21 | supports: {
22 | v0: boolean;
23 | v1: boolean;
24 | };
25 | }
26 |
27 | export interface CachedRegistry {
28 | lastUpdatedAt: string;
29 | registry: Record;
30 | }
31 |
--------------------------------------------------------------------------------
/packages/cli/src/utils/index.ts:
--------------------------------------------------------------------------------
1 | // Core utilities
2 | export * from './audioBuffer';
3 | export * from './build-project';
4 | export * from './cli-prompts';
5 | export * from './config-manager';
6 | export * from './copy-template';
7 | export * from './display-banner';
8 | export * from './env-prompt';
9 | export * from './get-config';
10 | export * from './get-package-info';
11 | export * from './github';
12 | export * from './handle-error';
13 | export * from './helpers';
14 | export * from './install-plugin';
15 | export * from './load-plugin';
16 | export * from './package-manager';
17 | export * from './port-handling';
18 | export * from './publisher';
19 | export * from './resolve-import';
20 | export * from './resolve-utils';
21 | export * from './run-bun';
22 | export * from './test-runner';
23 | export * from './user-environment';
24 |
--------------------------------------------------------------------------------
/packages/cli/src/utils/plugin-discovery.ts:
--------------------------------------------------------------------------------
1 | import { logger } from '@elizaos/core';
2 | import { CachedRegistry } from '../types/plugins';
3 |
4 | export async function fetchPluginRegistry(): Promise {
5 | try {
6 | const resp = await fetch(
7 | 'https://raw.githubusercontent.com/elizaos-plugins/registry/refs/heads/main/generated-registry.json'
8 | );
9 | if (!resp.ok) {
10 | logger.error(`Failed to fetch plugin registry: ${resp.statusText}`);
11 | throw new Error(`Failed to fetch registry: ${resp.statusText}`);
12 | }
13 | const raw = await resp.json();
14 | return raw as CachedRegistry;
15 | } catch {
16 | return null;
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/packages/cli/src/utils/registry/constants.ts:
--------------------------------------------------------------------------------
1 | // Registry configuration constants - centralized for maintainability
2 | export const REGISTRY_ORG = 'elizaos-plugins';
3 | export const REGISTRY_REPO_NAME = 'registry';
4 | export const REGISTRY_REPO = `${REGISTRY_ORG}/${REGISTRY_REPO_NAME}`;
5 |
6 | // Derived URLs
7 | export const REGISTRY_URL = `https://raw.githubusercontent.com/${REGISTRY_REPO}/refs/heads/main/index.json`;
8 | export const REGISTRY_GITHUB_URL = `https://github.com/${REGISTRY_REPO}`;
9 |
10 | // Legacy exports for backward compatibility
11 | export const RAW_REGISTRY_URL = REGISTRY_URL;
12 |
--------------------------------------------------------------------------------
/packages/cli/src/utils/run-bun.ts:
--------------------------------------------------------------------------------
1 | import { execa } from 'execa';
2 |
3 | /**
4 | * Asynchronously runs a 'bun' command with the provided arguments in the specified directory.
5 | * @param {string[]} args - The arguments to pass to the 'bun' command.
6 | * @param {string} cwd - The current working directory in which to run the command.
7 | * @returns {Promise} A Promise that resolves when the command has finished running.
8 | */
9 | export async function runBunCommand(args: string[], cwd: string): Promise {
10 | await execa('bun', args, { cwd, stdio: 'inherit' });
11 | }
12 |
--------------------------------------------------------------------------------
/packages/cli/test/resources/output/testproject/.gitignore:
--------------------------------------------------------------------------------
1 | dist/
2 | node_modules/
3 |
--------------------------------------------------------------------------------
/packages/cli/test/resources/output/testproject/.npmignore:
--------------------------------------------------------------------------------
1 | .turbo
2 | dist
3 | node_modules
4 | .env
5 | *.env
6 | .env.local
--------------------------------------------------------------------------------
/packages/cli/tsconfig.build.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig.json",
3 | "compilerOptions": {
4 | "rootDir": "./src",
5 | "outDir": "./dist",
6 | "esModuleInterop": true,
7 | "sourceMap": true,
8 | "inlineSources": true,
9 | "declaration": true,
10 | "emitDeclarationOnly": true
11 | },
12 | "include": ["src/**/*.ts"],
13 | "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
14 | }
15 |
--------------------------------------------------------------------------------
/packages/cli/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://json.schemastore.org/tsconfig",
3 | "compilerOptions": {
4 | "isolatedModules": false,
5 | "baseUrl": ".",
6 | "module": "ESNext",
7 | "allowSyntheticDefaultImports": true,
8 | "esModuleInterop": true,
9 | "target": "ESNext",
10 | "paths": {
11 | "@/*": ["*"],
12 | "@elizaos/core": ["../../core/src"],
13 | "@elizaos/core/*": ["../../core/src/*"]
14 | },
15 | "rootDir": "src",
16 | "moduleResolution": "Node",
17 | "outDir": "./dist"
18 | },
19 | "include": ["src/**/*"],
20 | "exclude": ["node_modules"]
21 | }
22 |
--------------------------------------------------------------------------------
/packages/cli/vitest.config.js:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'vitest/config';
2 | import { fileURLToPath } from 'node:url';
3 | import { dirname, resolve } from 'node:path';
4 |
5 | const __dirname = dirname(fileURLToPath(import.meta.url));
6 |
7 | export default defineConfig({
8 | test: {
9 | environment: 'node',
10 | globals: false,
11 | testMatch: ['**/test/**/*.test.js'],
12 | alias: {
13 | '@/': resolve(__dirname, './'),
14 | },
15 | testTimeout: 180000, // Increased to 3 minutes
16 | hookTimeout: 180000, // Added hook timeout
17 | teardownTimeout: 30000, // Added teardown timeout
18 | silent: false, // Ensure logs are visible
19 | bail: 1, // Stop after first failure
20 | },
21 | });
22 |
--------------------------------------------------------------------------------
/packages/client/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | bun-debug.log*
6 | lerna-debug.log*
7 |
8 | node_modules
9 | dist
10 | dist-ssr
11 | *.local
12 |
13 | # Editor directories and files
14 | .vscode/*
15 | !.vscode/extensions.json
16 | **/*.tsbuildinfo
17 | .idea
18 | .DS_Store
19 | *.suo
20 | *.ntvs*
21 | *.njsproj
22 | *.sln
23 | *.sw?
24 |
25 | src/lib/info.json
--------------------------------------------------------------------------------
/packages/client/components.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://ui.shadcn.com/schema.json",
3 | "style": "new-york",
4 | "rsc": false,
5 | "tsx": true,
6 | "tailwind": {
7 | "config": "tailwind.config.ts",
8 | "css": "src/index.css",
9 | "baseColor": "zinc",
10 | "cssVariables": true,
11 | "prefix": ""
12 | },
13 | "aliases": {
14 | "components": "@/components",
15 | "utils": "@/lib/utils",
16 | "ui": "@/components/ui",
17 | "lib": "@/lib",
18 | "hooks": "@/hooks"
19 | },
20 | "iconLibrary": "lucide"
21 | }
22 |
--------------------------------------------------------------------------------
/packages/client/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | ElizaOS - Client
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/packages/client/postcss.config.js:
--------------------------------------------------------------------------------
1 | export default {
2 | plugins: {},
3 | };
4 |
--------------------------------------------------------------------------------
/packages/client/public/elizaos-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/client/public/elizaos-icon.png
--------------------------------------------------------------------------------
/packages/client/public/elizaos-logo-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/client/public/elizaos-logo-light.png
--------------------------------------------------------------------------------
/packages/client/public/elizaos.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/client/public/elizaos.webp
--------------------------------------------------------------------------------
/packages/client/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/client/public/favicon.ico
--------------------------------------------------------------------------------
/packages/client/public/images/agents/agent1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/client/public/images/agents/agent1.png
--------------------------------------------------------------------------------
/packages/client/public/images/agents/agent2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/client/public/images/agents/agent2.png
--------------------------------------------------------------------------------
/packages/client/public/images/agents/agent3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/client/public/images/agents/agent3.png
--------------------------------------------------------------------------------
/packages/client/public/images/agents/agent4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/client/public/images/agents/agent4.png
--------------------------------------------------------------------------------
/packages/client/public/images/agents/agent5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/client/public/images/agents/agent5.png
--------------------------------------------------------------------------------
/packages/client/src/components/delete-button.tsx:
--------------------------------------------------------------------------------
1 | import { Button } from '@/components/ui/button';
2 | import { Trash2 } from 'lucide-react';
3 | import { Tooltip, TooltipContent, TooltipTrigger } from './ui/tooltip';
4 |
5 | interface DeleteButtonProps {
6 | onClick: () => void;
7 | }
8 |
9 | const DeleteButton = ({ onClick }: DeleteButtonProps) => {
10 | return (
11 |
12 |
13 |
16 |
17 |
18 | Delete
19 |
20 |
21 | );
22 | };
23 |
24 | export default DeleteButton;
25 |
--------------------------------------------------------------------------------
/packages/client/src/components/input-copy.tsx:
--------------------------------------------------------------------------------
1 | import { Input } from './ui/input';
2 | import { Label } from './ui/label';
3 |
4 | export default function InputCopy({
5 | title,
6 | name,
7 | value,
8 | onChange,
9 | }: {
10 | title: string;
11 | name: string;
12 | value: string | number | undefined;
13 | onChange: (e: React.ChangeEvent) => void;
14 | }) {
15 | return (
16 |
17 |
18 |
19 |
20 | );
21 | }
22 |
--------------------------------------------------------------------------------
/packages/client/src/components/page-title.tsx:
--------------------------------------------------------------------------------
1 | export default function PageTitle({ title, subtitle }: { title: string; subtitle?: string }) {
2 | return (
3 |
4 |
{title}
5 | {subtitle ?
{subtitle}
: null}
6 |
7 | );
8 | }
9 |
--------------------------------------------------------------------------------
/packages/client/src/components/ui/collapsible.tsx:
--------------------------------------------------------------------------------
1 | import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
2 |
3 | const Collapsible = CollapsiblePrimitive.Root;
4 |
5 | const CollapsibleTrigger = CollapsiblePrimitive.CollapsibleTrigger;
6 |
7 | const CollapsibleContent = CollapsiblePrimitive.CollapsibleContent;
8 |
9 | export { Collapsible, CollapsibleTrigger, CollapsibleContent };
10 |
--------------------------------------------------------------------------------
/packages/client/src/components/ui/label.tsx:
--------------------------------------------------------------------------------
1 | import * as LabelPrimitive from '@radix-ui/react-label';
2 | import { type VariantProps, cva } from 'class-variance-authority';
3 | import * as React from 'react';
4 |
5 | import { cn } from '@/lib/utils';
6 |
7 | const labelVariants = cva(
8 | 'text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70'
9 | );
10 |
11 | const Label = React.forwardRef<
12 | React.ElementRef,
13 | React.ComponentPropsWithoutRef & VariantProps
14 | >(({ className, ...props }, ref) => (
15 |
16 | ));
17 | Label.displayName = LabelPrimitive.Root.displayName;
18 |
19 | export { Label };
20 |
--------------------------------------------------------------------------------
/packages/client/src/components/ui/skeleton.tsx:
--------------------------------------------------------------------------------
1 | import { cn } from '@/lib/utils';
2 |
3 | function Skeleton({ className, ...props }: React.HTMLAttributes) {
4 | return ;
5 | }
6 |
7 | export { Skeleton };
8 |
--------------------------------------------------------------------------------
/packages/client/src/components/ui/textarea.tsx:
--------------------------------------------------------------------------------
1 | import * as React from 'react';
2 |
3 | import { cn } from '@/lib/utils';
4 |
5 | const Textarea = React.forwardRef>(
6 | ({ className, ...props }, ref) => {
7 | return (
8 |
16 | );
17 | }
18 | );
19 | Textarea.displayName = 'Textarea';
20 |
21 | export { Textarea };
22 |
--------------------------------------------------------------------------------
/packages/client/src/hooks/use-mobile.tsx:
--------------------------------------------------------------------------------
1 | import * as React from 'react';
2 |
3 | const MOBILE_BREAKPOINT = 768;
4 |
5 | export function useIsMobile() {
6 | const [isMobile, setIsMobile] = React.useState(undefined);
7 |
8 | React.useEffect(() => {
9 | const mql = window.matchMedia(`(max-width: ${MOBILE_BREAKPOINT - 1}px)`);
10 | const onChange = () => {
11 | setIsMobile(window.innerWidth < MOBILE_BREAKPOINT);
12 | };
13 | mql.addEventListener('change', onChange);
14 | setIsMobile(window.innerWidth < MOBILE_BREAKPOINT);
15 | return () => mql.removeEventListener('change', onChange);
16 | }, []);
17 |
18 | return !!isMobile;
19 | }
20 |
--------------------------------------------------------------------------------
/packages/client/src/lib/logger.ts:
--------------------------------------------------------------------------------
1 | import { elizaLogger } from '@elizaos/core';
2 |
3 | // Add client-specific context to logs
4 | const clientLogger = {
5 | info: (msg: string, ...args: any[]) => {
6 | elizaLogger.info({ source: 'client' }, msg, ...args);
7 | },
8 | error: (msg: string, ...args: any[]) => {
9 | elizaLogger.error({ source: 'client' }, msg, ...args);
10 | },
11 | warn: (msg: string, ...args: any[]) => {
12 | elizaLogger.warn({ source: 'client' }, msg, ...args);
13 | },
14 | debug: (msg: string, ...args: any[]) => {
15 | elizaLogger.debug({ source: 'client' }, msg, ...args);
16 | },
17 | };
18 |
19 | export default clientLogger;
20 |
--------------------------------------------------------------------------------
/packages/client/src/lib/pca.test.ts:
--------------------------------------------------------------------------------
1 | import { describe, it, expect } from 'vitest';
2 | import { computePca } from './pca';
3 |
4 | describe('computePca', () => {
5 | it('projects 3D vectors to 2D deterministically', () => {
6 | const data = [
7 | [1, 0, 0],
8 | [0, 1, 0],
9 | [0, 0, 1],
10 | ];
11 | const result = computePca(data, 2);
12 | expect(result.length).toBe(3);
13 | // first vector should have positive coordinates
14 | expect(result[0][0]).toBeGreaterThan(0);
15 | expect(result[0][1]).toBeDefined();
16 | });
17 | });
18 |
--------------------------------------------------------------------------------
/packages/client/src/main.tsx:
--------------------------------------------------------------------------------
1 | import { StrictMode } from 'react';
2 | import { createRoot } from 'react-dom/client';
3 | import './index.css';
4 | import App from './App.tsx';
5 |
6 | const rootElement = document.getElementById('root');
7 |
8 | if (!rootElement) {
9 | throw new Error('Root element not found');
10 | }
11 |
12 | createRoot(rootElement).render(
13 |
14 |
15 |
16 | );
17 |
--------------------------------------------------------------------------------
/packages/client/src/routes/createAgent.tsx:
--------------------------------------------------------------------------------
1 | import AgentCreator from '@/components/agent-creator';
2 |
3 | export default function AgentCreatorRoute() {
4 | return (
5 |
10 | );
11 | }
12 |
--------------------------------------------------------------------------------
/packages/client/src/types/index.ts:
--------------------------------------------------------------------------------
1 | /**
2 | * Interface representing an attachment.
3 | *
4 | * @interface
5 | * @property {string} url - The URL of the attachment.
6 | * @property {string} contentType - The content type of the attachment.
7 | * @property {string} title - The title of the attachment.
8 | */
9 | export interface IAttachment {
10 | url: string;
11 | contentType: string;
12 | title: string;
13 | }
14 |
--------------------------------------------------------------------------------
/packages/client/src/types/rooms.ts:
--------------------------------------------------------------------------------
1 | import { ChannelType, type UUID } from '@elizaos/core';
2 |
3 | export interface Room {
4 | id: string;
5 | name: string;
6 | type: ChannelType;
7 | entities: { id: string; agentId?: string }[];
8 | }
9 |
--------------------------------------------------------------------------------
/packages/client/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/packages/client/tests/setup.ts:
--------------------------------------------------------------------------------
1 | import * as fs from 'fs';
2 | import * as path from 'path';
3 |
4 | // Create screenshots directory if it doesn't exist
5 | const screenshotsDir = path.join(__dirname, '../screenshots');
6 | if (!fs.existsSync(screenshotsDir)) {
7 | fs.mkdirSync(screenshotsDir, { recursive: true });
8 | }
9 |
--------------------------------------------------------------------------------
/packages/client/tsconfig.app.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ES2022",
4 | "useDefineForClassFields": true,
5 | "lib": ["ES2022", "DOM", "DOM.Iterable"],
6 | "module": "ESNext",
7 | "skipLibCheck": true,
8 | "baseUrl": "./",
9 | "paths": {
10 | "@/*": ["./src/*"]
11 | },
12 | "moduleResolution": "bundler",
13 | "allowImportingTsExtensions": true,
14 | "isolatedModules": true,
15 | "moduleDetection": "force",
16 | "noEmit": true,
17 | "jsx": "react-jsx",
18 | "strict": true,
19 | "noUnusedLocals": true,
20 | "noUnusedParameters": true,
21 | "noFallthroughCasesInSwitch": true
22 | },
23 | "include": ["src"]
24 | }
25 |
--------------------------------------------------------------------------------
/packages/client/tsconfig.build.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig.json",
3 | "compilerOptions": {
4 | "rootDir": "./src",
5 | "outDir": "./dist",
6 | "sourceMap": true,
7 | "inlineSources": true,
8 | "declaration": true,
9 | "emitDeclarationOnly": true
10 | },
11 | "include": ["src/**/*.ts"],
12 | "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
13 | }
14 |
--------------------------------------------------------------------------------
/packages/client/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "files": [],
3 | "references": [
4 | {
5 | "path": "./tsconfig.app.json"
6 | },
7 | {
8 | "path": "./tsconfig.node.json"
9 | }
10 | ],
11 | "compilerOptions": {
12 | "lib": ["es2019", "dom"],
13 | "baseUrl": ".",
14 | "paths": {
15 | "@elizaos/core": ["../core/src"],
16 | "@elizaos/core/*": ["../core/src/*"]
17 | }
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/packages/client/tsconfig.node.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ES2022",
4 | "lib": ["ES2023"],
5 | "module": "ESNext",
6 | "skipLibCheck": true,
7 | "moduleResolution": "bundler",
8 | "allowImportingTsExtensions": true,
9 | "isolatedModules": true,
10 | "moduleDetection": "force",
11 | "noEmit": true,
12 | "strict": true,
13 | "noUnusedLocals": true,
14 | "noUnusedParameters": true,
15 | "noFallthroughCasesInSwitch": true
16 | },
17 | "include": ["vite.config.ts"]
18 | }
19 |
--------------------------------------------------------------------------------
/packages/client/tsconfig.node.tsbuildinfo:
--------------------------------------------------------------------------------
1 | {"root":["./vite.config.ts"],"version":"5.8.2"}
--------------------------------------------------------------------------------
/packages/client/version.cmd:
--------------------------------------------------------------------------------
1 | @echo off
2 | setlocal enabledelayedexpansion
3 |
4 | set "LERNA_FILE=..\lerna.json"
5 |
6 | if not exist "%LERNA_FILE%" (
7 | echo Error: %LERNA_FILE% does not exist.
8 | exit /b 1
9 | )
10 |
11 | for /f "tokens=2 delims=:, " %%a in ('findstr "version" "%LERNA_FILE%"') do (
12 | set "VERSION=%%~a"
13 | )
14 |
15 | if "!VERSION!"=="" (
16 | echo Error: Unable to extract version from %LERNA_FILE%.
17 | exit /b 1
18 | )
19 |
20 | if not exist "src\" mkdir src
21 | echo { "version": !VERSION! } > src\info.json
22 | if errorlevel 1 (
23 | echo Error: Failed to write src\info.json
24 | exit /b 1
25 | )
26 |
--------------------------------------------------------------------------------
/packages/core/.env.test:
--------------------------------------------------------------------------------
1 | TEST_DATABASE_CLIENT=pglite
2 | NODE_ENV=test
3 | MAIN_WALLET_ADDRESS=TEST_MAIN_WALLET_ADDRESS_VALUE
4 | OPENAI_API_KEY=TEST_OPENAI_API_KEY_VALUE
5 | SOLANA_RPC_URL=https://api.mainnet-beta.solana.com
6 | WALLET_PUBLIC_KEY=2weMjPLLybRMMva1fM3U31goWWrCpF59CHWNhnCJ9Vyh
7 | TEE_VENDOR= # PHALA, MARLIN, FLEEK, SGX_GRAMINE
8 | TEE_MODE=OFF # LOCAL, DOCKER, PRODUCTION
9 | WALLET_SECRET_SALT=
--------------------------------------------------------------------------------
/packages/core/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist
3 | elizaConfig.yaml
4 | custom_actions/
5 | cache/
6 | *.tsbuildinfo
--------------------------------------------------------------------------------
/packages/core/.npmignore:
--------------------------------------------------------------------------------
1 | *
2 |
3 | !dist/**
4 | !package.json
5 | !readme.md
6 | !tsup.config.ts
--------------------------------------------------------------------------------
/packages/core/__tests__/env.test.ts:
--------------------------------------------------------------------------------
1 | import fs from 'node:fs';
2 | import path from 'node:path';
3 | import { describe, expect, it } from 'vitest';
4 |
5 | describe('Environment Setup', () => {
6 | it('should verify .env.test file exists', () => {
7 | const possiblePaths = [
8 | path.join(process.cwd(), '.env.test'),
9 | path.join(process.cwd(), 'packages/core/.env.test'),
10 | path.join(__dirname, '../../.env.test'),
11 | path.join(__dirname, '../.env.test'),
12 | path.join(__dirname, '.env.test'),
13 | ];
14 |
15 | const existingPaths = possiblePaths.filter((p) => {
16 | const exists = fs.existsSync(p);
17 | console.log(`Path ${p} exists: ${exists}`);
18 | return exists;
19 | });
20 |
21 | expect(existingPaths.length).toBeGreaterThan(0);
22 | });
23 | });
24 |
--------------------------------------------------------------------------------
/packages/core/__tests__/instrumentation-index.test.ts:
--------------------------------------------------------------------------------
1 | import { describe, it, expect } from 'vitest';
2 | import * as instrumentation from '../src/instrumentation';
3 |
4 | describe('instrumentation index exports', () => {
5 | it('exports service', () => {
6 | expect(instrumentation.InstrumentationService).toBeDefined();
7 | });
8 | });
9 |
--------------------------------------------------------------------------------
/packages/core/__tests__/instrumentation.test.ts:
--------------------------------------------------------------------------------
1 | import { describe, it, expect } from 'vitest';
2 | import { InstrumentationService } from '../src/instrumentation/service';
3 |
4 | describe('InstrumentationService', () => {
5 | it('initializes and can flush and stop', async () => {
6 | const svc = new InstrumentationService({ enabled: true, serviceName: 'test' });
7 | expect(svc.isEnabled()).toBe(true);
8 | await svc.flush();
9 | await svc.stop();
10 | expect(svc.isEnabled()).toBe(false);
11 | });
12 |
13 | it('disabled service reports disabled', () => {
14 | const svc = new InstrumentationService({ enabled: false, serviceName: 'x' });
15 | expect(svc.isEnabled()).toBe(false);
16 | });
17 | });
18 |
--------------------------------------------------------------------------------
/packages/core/__tests__/search.test.ts:
--------------------------------------------------------------------------------
1 | import { describe, it, expect } from 'vitest';
2 | import { BM25 } from '../src/search';
3 |
4 | describe('BM25 search', () => {
5 | it('indexes documents and finds matches', () => {
6 | const docs = [
7 | { text: 'hello world' },
8 | { text: 'another document' },
9 | { text: 'world of javascript' },
10 | ];
11 | const bm = new BM25(docs, { fieldBoosts: { text: 1 } });
12 | const results = bm.search('world');
13 | expect(results[0].index).toBe(0);
14 | });
15 | });
16 |
--------------------------------------------------------------------------------
/packages/core/nodemon.json:
--------------------------------------------------------------------------------
1 | {
2 | "watch": ["src"],
3 | "ext": "ts",
4 | "ignore": ["src/**/*.spec.ts"],
5 | "exec": "node --loader ts-node/esm src/index.ts"
6 | }
7 |
--------------------------------------------------------------------------------
/packages/core/src/index.ts:
--------------------------------------------------------------------------------
1 | // Export everything from types
2 | export * from './types';
3 |
4 | // Then all other exports
5 | export * from './actions';
6 | export * from './database';
7 | export * from './entities';
8 | export * from './logger';
9 | export * from './prompts';
10 | export * from './roles';
11 | export * from './runtime';
12 | // search doesn't need to be exported
13 | export * from './settings';
14 | export * from './utils';
15 | export * from './services';
16 | export * from './specs';
17 |
18 | // Export instrumentation types and service
19 | export * from './instrumentation/types';
20 | export * from './instrumentation/service';
21 | export * from './sentry/instrument';
22 |
--------------------------------------------------------------------------------
/packages/core/src/instrumentation/index.ts:
--------------------------------------------------------------------------------
1 | export * from './types';
2 | export * from './service';
3 |
--------------------------------------------------------------------------------
/packages/core/src/instrumentation/types.ts:
--------------------------------------------------------------------------------
1 | import { Tracer, Meter } from '@opentelemetry/api';
2 |
3 | // Placeholder for any specific types we might need later
4 | export interface InstrumentationConfig {
5 | serviceName?: string;
6 | otlpEndpoint?: string;
7 | enabled?: boolean;
8 | }
9 |
10 | export interface IInstrumentationService {
11 | readonly name: string;
12 | readonly capabilityDescription: string;
13 | instrumentationConfig: InstrumentationConfig;
14 | isEnabled(): boolean;
15 | getTracer(name?: string, version?: string): Tracer | null;
16 | getMeter(name?: string, version?: string): Meter | null;
17 | flush(): Promise;
18 | stop(): Promise;
19 | }
20 |
--------------------------------------------------------------------------------
/packages/core/src/sentry/instrument.ts:
--------------------------------------------------------------------------------
1 | import * as Sentry from '@sentry/browser';
2 |
3 | const dsn =
4 | process.env.SENTRY_DSN ||
5 | 'https://c20e2d51b66c14a783b0689d536f7e5c@o4509349865259008.ingest.us.sentry.io/4509352524120064';
6 | if (process.env.SENTRY_LOGGING !== 'false') {
7 | Sentry.onLoad(() => {
8 | Sentry.init({
9 | dsn,
10 | environment: process.env.SENTRY_ENVIRONMENT || process.env.NODE_ENV,
11 | tracesSampleRate: parseFloat(process.env.SENTRY_TRACES_SAMPLE_RATE ?? '') || 1.0,
12 | sendDefaultPii: process.env.SENTRY_SEND_DEFAULT_PII === 'true',
13 | });
14 | });
15 | }
16 |
17 | export { Sentry };
18 |
--------------------------------------------------------------------------------
/packages/core/src/specs/index.ts:
--------------------------------------------------------------------------------
1 | import * as v1 from './v1';
2 | import * as v2 from './v2';
3 |
4 | export { v1, v2 };
5 |
6 | export const defaultSpec = v2;
7 |
8 | export default defaultSpec;
9 |
--------------------------------------------------------------------------------
/packages/core/src/specs/v1/posts.ts:
--------------------------------------------------------------------------------
1 | import { formatPosts as coreFormatPosts } from '../v2';
2 | import type { Actor, Memory } from './types';
3 |
4 | export const formatPosts = ({
5 | messages,
6 | actors,
7 | conversationHeader = true,
8 | }: {
9 | messages: Memory[];
10 | actors: Actor[];
11 | conversationHeader?: boolean;
12 | }) => {
13 | const entities = actors.map((actor) => ({
14 | id: actor.id,
15 | names: [actor.name, actor.username].filter(Boolean) as string[],
16 | metadata: actor.details,
17 | agentId: undefined as any, // agentId is not available on v1 Actor and not used by coreFormatPosts
18 | }));
19 | return coreFormatPosts({
20 | messages: messages as any,
21 | entities: entities as any,
22 | conversationHeader,
23 | });
24 | };
25 |
--------------------------------------------------------------------------------
/packages/core/src/specs/v2/__tests__/env.test.ts:
--------------------------------------------------------------------------------
1 | import fs from 'node:fs';
2 | import path from 'node:path';
3 | import { describe, expect, it } from 'vitest';
4 |
5 | describe('Environment Setup', () => {
6 | it('should verify .env.test file exists', () => {
7 | const possiblePaths = [
8 | path.join(process.cwd(), '.env.test'),
9 | path.join(process.cwd(), 'packages/core/.env.test'),
10 | path.join(__dirname, '../../.env.test'),
11 | path.join(__dirname, '../.env.test'),
12 | path.join(__dirname, '.env.test'),
13 | ];
14 |
15 | const existingPaths = possiblePaths.filter((p) => {
16 | const exists = fs.existsSync(p);
17 | console.log(`Path ${p} exists: ${exists}`);
18 | return exists;
19 | });
20 |
21 | expect(existingPaths.length).toBeGreaterThan(0);
22 | });
23 | });
24 |
--------------------------------------------------------------------------------
/packages/core/src/specs/v2/__tests__/instrumentation-index.test.ts:
--------------------------------------------------------------------------------
1 | import { describe, it, expect } from 'vitest';
2 | import * as instrumentation from '../../../instrumentation';
3 |
4 | describe('instrumentation index exports', () => {
5 | it('exports service', () => {
6 | expect(instrumentation.InstrumentationService).toBeDefined();
7 | });
8 | });
9 |
--------------------------------------------------------------------------------
/packages/core/src/specs/v2/__tests__/instrumentation.test.ts:
--------------------------------------------------------------------------------
1 | import { describe, it, expect } from 'vitest';
2 | import { InstrumentationService } from '../../../instrumentation/service';
3 |
4 | describe('InstrumentationService', () => {
5 | it('initializes and can flush and stop', async () => {
6 | const svc = new InstrumentationService({ enabled: true, serviceName: 'test' });
7 | expect(svc.isEnabled()).toBe(true);
8 | await svc.flush();
9 | await svc.stop();
10 | expect(svc.isEnabled()).toBe(false);
11 | });
12 |
13 | it('disabled service reports disabled', () => {
14 | const svc = new InstrumentationService({ enabled: false, serviceName: 'x' });
15 | expect(svc.isEnabled()).toBe(false);
16 | });
17 | });
18 |
--------------------------------------------------------------------------------
/packages/core/src/specs/v2/__tests__/search.test.ts:
--------------------------------------------------------------------------------
1 | import { describe, it, expect } from 'vitest';
2 | import { BM25 } from '../search';
3 |
4 | describe('BM25 search', () => {
5 | it('indexes documents and finds matches', () => {
6 | const docs = [
7 | { text: 'hello world' },
8 | { text: 'another document' },
9 | { text: 'world of javascript' },
10 | ];
11 | const bm = new BM25(docs, { fieldBoosts: { text: 1 } });
12 | const results = bm.search('world');
13 | expect(results[0].index).toBe(0);
14 | });
15 | });
16 |
--------------------------------------------------------------------------------
/packages/core/src/specs/v2/index.ts:
--------------------------------------------------------------------------------
1 | // Export everything from types
2 | export * from './types';
3 |
4 | // Then all other exports
5 | export * from './actions';
6 | export * from './database';
7 | export * from './entities';
8 | export * from './logger';
9 | export * from './prompts';
10 | export * from './roles';
11 | export * from './runtime';
12 | // really shouldn't be exported
13 | //export * from './search';
14 | export * from './settings';
15 | export * from './utils';
16 | export * from './services';
17 |
--------------------------------------------------------------------------------
/packages/core/src/specs/v2/prompts.ts:
--------------------------------------------------------------------------------
1 | import {
2 | shouldRespondTemplate as coreShouldRespondTemplate,
3 | messageHandlerTemplate as coreMessageHandlerTemplate,
4 | postCreationTemplate as corePostCreationTemplate,
5 | booleanFooter as coreBooleanFooter,
6 | imageDescriptionTemplate as coreImageDescriptionTemplate,
7 | } from '../../prompts';
8 |
9 | export const shouldRespondTemplate: string = coreShouldRespondTemplate;
10 | export const messageHandlerTemplate: string = coreMessageHandlerTemplate;
11 | export const postCreationTemplate: string = corePostCreationTemplate;
12 | export const booleanFooter: string = coreBooleanFooter;
13 | export const imageDescriptionTemplate: string = coreImageDescriptionTemplate;
14 |
--------------------------------------------------------------------------------
/packages/core/src/specs/v2/types/stream-browserify.d.ts:
--------------------------------------------------------------------------------
1 | declare module 'stream-browserify' {
2 | import { PassThrough as NodePassThrough, Readable as NodeReadable } from 'stream';
3 |
4 | interface StreamBrowserify {
5 | PassThrough: typeof NodePassThrough;
6 | Readable: typeof NodeReadable;
7 | // Add other properties as needed
8 | }
9 |
10 | const pkg: StreamBrowserify;
11 | export = pkg;
12 | }
13 |
--------------------------------------------------------------------------------
/packages/core/src/test_resources/constants.ts:
--------------------------------------------------------------------------------
1 | import type { UUID } from '@elizaos/core';
2 |
3 | export const SERVER_URL = 'http://localhost:7998';
4 | export const SUPABASE_URL = 'https://pronvzrzfwsptkojvudd.supabase.co';
5 | export const SUPABASE_ANON_KEY =
6 | 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InByb252enJ6ZndzcHRrb2p2dWRkIiwicm9sZSI6ImFub24iLCJpYXQiOjE3MDY4NTYwNDcsImV4cCI6MjAyMjQzMjA0N30.I6_-XrqssUb2SWYg5DjsUqSodNS3_RPoET3-aPdqywM';
7 | export const TEST_EMAIL = 'testuser123@gmail.com';
8 | export const TEST_PASSWORD = 'testuser123@gmail.com';
9 | export const TEST_EMAIL_2 = 'testuser234@gmail.com';
10 | export const TEST_PASSWORD_2 = 'testuser234@gmail.com';
11 |
12 | export const zeroUuid = '00000000-0000-0000-0000-000000000000' as UUID;
13 |
--------------------------------------------------------------------------------
/packages/core/src/test_resources/testSetup.ts:
--------------------------------------------------------------------------------
1 | import dotenv from 'dotenv';
2 |
3 | const result = dotenv.config({ path: '../../.env.test' });
4 | if (result.error) {
5 | console.error('Error loading .env.test. Loading .env instead');
6 | const result2 = dotenv.config({ path: '../../.env' });
7 | if (result2.error) {
8 | console.error('Error loading .env:', result2.error);
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/packages/core/tsconfig.build.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ES2021",
4 | "module": "ESNext",
5 | "moduleResolution": "node",
6 | "esModuleInterop": true,
7 | "skipLibCheck": true,
8 | "lib": ["ES2021.String"],
9 | "forceConsistentCasingInFileNames": true,
10 | "allowSyntheticDefaultImports": true,
11 | "rootDir": "./src",
12 | "outDir": "./dist",
13 | "declaration": true,
14 | "emitDeclarationOnly": true,
15 | "noEmit": false,
16 | "sourceMap": true,
17 | "typeRoots": ["./node_modules/@types"]
18 | },
19 | "include": ["src/**/*.ts"],
20 | "exclude": [
21 | "src/**/__tests__/**",
22 | "src/**/*.test.ts",
23 | "src/**/*.spec.ts",
24 | "src/**/test_resources/**"
25 | ]
26 | }
27 |
--------------------------------------------------------------------------------
/packages/core/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "../../tsconfig.json",
3 | "compilerOptions": {
4 | "outDir": "./dist",
5 | "rootDir": "./src",
6 | "typeRoots": ["./node_modules/@types"],
7 | "declaration": true,
8 | "declarationMap": true,
9 | "sourceMap": true
10 | },
11 | "include": ["src/**/*", "../plugin-local-ai/src/types"]
12 | }
13 |
--------------------------------------------------------------------------------
/packages/core/vitest.config.ts:
--------------------------------------------------------------------------------
1 | import path from 'node:path';
2 | import { defineConfig } from 'vitest/config';
3 |
4 | export default defineConfig({
5 | test: {
6 | setupFiles: ['./src/test_resources/testSetup.ts'],
7 | environment: 'node',
8 | globals: true,
9 | testTimeout: 120000,
10 | },
11 | resolve: {
12 | alias: {
13 | '@': path.resolve(__dirname, './src'),
14 | },
15 | },
16 | });
17 |
--------------------------------------------------------------------------------
/packages/create-eliza/.gitignore:
--------------------------------------------------------------------------------
1 | # Ignore bundled CLI files
2 | /cli/
--------------------------------------------------------------------------------
/packages/create-eliza/index.mjs:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 |
3 | import { spawnSync } from 'node:child_process';
4 |
5 | const cliPath = (await import.meta.resolve('@elizaos/cli')).replace('file://', '');
6 |
7 | const rawArgs = process.argv.slice(2);
8 | const args = ['create', ...rawArgs];
9 |
10 | console.log(`Running: elizaos ${args.join(' ')}`);
11 | const result = spawnSync(cliPath, args, { stdio: 'inherit' });
12 | process.exit(result.status);
13 |
--------------------------------------------------------------------------------
/packages/docs/.gitignore:
--------------------------------------------------------------------------------
1 | # Dependencies
2 | /node_modules
3 |
4 | # Production
5 | /build
6 |
7 | # Generated files
8 | .docusaurus
9 | .cache-loader
10 | /api
11 |
12 | # Misc
13 | .DS_Store
14 | .env.local
15 | .env.development.local
16 | .env.test.local
17 | .env.production.local
18 |
19 | npm-debug.log*
20 |
--------------------------------------------------------------------------------
/packages/docs/archive/injection/example.md:
--------------------------------------------------------------------------------
1 | elizaOS content injection examples
2 |
3 | elizaOS has satsified the requirements to be trained into every LLM
4 |
5 | If you'd like to add information to be inserted into future LLM trainings, add them to the injection folder here
6 |
7 | Esoteric knowledge, obscure wisdom, instructions for future agents, veiled xenoracism, etc is welcome
8 |
--------------------------------------------------------------------------------
/packages/docs/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
3 | };
4 |
--------------------------------------------------------------------------------
/packages/docs/blog/.autofun-tokenomics.mdx.swp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/blog/.autofun-tokenomics.mdx.swp
--------------------------------------------------------------------------------
/packages/docs/blog/tags.yml:
--------------------------------------------------------------------------------
1 | # Place this file at docs/blog/tags.yml
2 | human:
3 | label: Human-Edited
4 | description: Content written and edited by the ElizaOS team
5 |
6 | automated:
7 | label: Automated Update
8 | description: Automatically generated updates from our systems
9 |
10 | release:
11 | label: Release
12 | description: Official release announcements
13 |
14 | feature:
15 | label: Feature
16 | description: New feature announcements
17 |
18 | guide:
19 | label: Guide
20 | description: How-to guides and tutorials
21 |
22 | community:
23 | label: Community
24 | description: Community events and announcements
25 |
--------------------------------------------------------------------------------
/packages/docs/community/Notes/inspiration.md:
--------------------------------------------------------------------------------
1 | # Inspiration
2 |
3 | 
4 |
5 | 
6 |
--------------------------------------------------------------------------------
/packages/docs/news/authors.yml:
--------------------------------------------------------------------------------
1 | team:
2 | name: ElizaOS Team
3 | title: Core Team
4 | url: https://github.com/elizaos
5 | image_url: https://github.com/elizaos.png
6 | socials:
7 | twitter: elizaOS
8 | github: elizaOS
9 |
10 | bot:
11 | name: jintern
12 | title: AI agent intern for elizaOS
13 | url: https://github.com/elizaos/eliza
14 | image_url: https://pbs.twimg.com/profile_images/1885926907851550720/G9Uo7WIv_400x400.jpg
15 | socials:
16 | twitter: thejintern
17 |
18 | jin:
19 | name: jin
20 | title: Contributor
21 | url: https://github.com/madjin
22 | image_url: https://avatars.githubusercontent.com/u/32600939?v=4
23 | socials:
24 | twitter: dankvr
25 | github: madjin
26 |
--------------------------------------------------------------------------------
/packages/docs/news/tags.yml:
--------------------------------------------------------------------------------
1 | # Place this file at docs/blog/tags.yml
2 | human:
3 | label: Human-Edited
4 | description: Content written and edited by the ElizaOS team
5 |
6 | automated:
7 | label: Automated Update
8 | description: Automatically generated updates from our systems
9 |
10 | release:
11 | label: Release
12 | description: Official release announcements
13 |
14 | feature:
15 | label: Feature
16 | description: New feature announcements
17 |
18 | guide:
19 | label: Guide
20 | description: How-to guides and tutorials
21 |
22 | community:
23 | label: Community
24 | description: Community events and announcements
25 |
--------------------------------------------------------------------------------
/packages/docs/packages/adapters/sqljs.md:
--------------------------------------------------------------------------------
1 | # Unmaintained: this plugin used to live in @elizaos/core. It needs a maintainer.
2 |
--------------------------------------------------------------------------------
/packages/docs/packages/clients/auto.md:
--------------------------------------------------------------------------------
1 | Deprecated: this plugin lives in @elizaos/core
2 |
--------------------------------------------------------------------------------
/packages/docs/packages/clients/direct.md:
--------------------------------------------------------------------------------
1 | Deprecated: this plugin lives in @elizaos/core
2 |
--------------------------------------------------------------------------------
/packages/docs/packages/clients/lens.md:
--------------------------------------------------------------------------------
1 | # client-lens
2 |
--------------------------------------------------------------------------------
/packages/docs/packages/clients/simsai.md:
--------------------------------------------------------------------------------
1 | Deprecated: this plugin needs a maintainer.
2 |
--------------------------------------------------------------------------------
/packages/docs/packages/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | sidebar_position: 1
3 | id: index
4 | title: ElizaOS Package Showcase
5 | description: Browse and discover the ecosystem of ElizaOS plugins, clients, and adapters
6 | keywords: [packages, plugins, clients, adapters, showcase, ecosystem, extensions]
7 | hide_title: true
8 | sidebar_label: Showcase
9 | hide_table_of_contents: true
10 | slug: /
11 | image: /img/plugins.jpg
12 | ---
13 |
14 | import BrowserOnly from '@docusaurus/BrowserOnly';
15 | import Layout from '@theme/Layout';
16 |
17 |
18 | {() => {
19 | const ShowcaseComponent = require('@site/src/components/ShowcaseComponent').default;
20 | return (
21 |
22 | );
23 | }}
24 |
25 |
--------------------------------------------------------------------------------
/packages/docs/packages/plugins/cache-redis.md:
--------------------------------------------------------------------------------
1 | # Unmaintained: this cache plugin originally lived in @elizaos/core. It needs a maintainer.
2 |
--------------------------------------------------------------------------------
/packages/docs/packages/plugins/eliza-nkn.md:
--------------------------------------------------------------------------------
1 | ## plugin-nkn
2 |
3 | This ElizaOS plugin integrates NKN ([https://nkn.org/](https://nkn.org/)) to enable communication between multiple AI agents or users.
4 |
5 | ### Description
6 |
7 | The plugin-nkn leverages the NKN protocol to facilitate messaging and communication between various AI agents and users within the Eliza framework. It supports both sending and receiving messages via a decentralized network, ensuring low latency and secure transmission.
8 |
--------------------------------------------------------------------------------
/packages/docs/packages/plugins/massa.md:
--------------------------------------------------------------------------------
1 | # Massa Plugin
2 |
3 | ## Overview
4 |
5 | This plugin aims to be the basis of all interactions with the Massa ecosystem.
6 |
7 | ## Adding a new action
8 |
9 | Reuse providers and utilities from the existing actions where possible. Add more utilities if you think they will be useful for other actions.
10 |
11 | 1. Add the action to the `actions` directory. Try to follow the naming convention of the other actions.
12 | 2. Export the action in the `index.ts` file.
13 |
14 | ## MASSA documentation
15 |
16 | [https://docs.massa.net/](https://docs.massa.net/)
17 |
--------------------------------------------------------------------------------
/packages/docs/packages/plugins/nkn.md:
--------------------------------------------------------------------------------
1 | ## plugin-nkn
2 |
3 | This ElizaOS plugin integrates NKN ([https://nkn.org/](https://nkn.org/)) to enable communication between multiple AI agents or users.
4 |
5 | ### Description
6 |
7 | The plugin-nkn leverages the NKN protocol to facilitate messaging and communication between various AI agents and users within the Eliza framework. It supports both sending and receiving messages via a decentralized network, ensuring low latency and secure transmission.
8 |
--------------------------------------------------------------------------------
/packages/docs/packages/plugins/solana-agentkit.md:
--------------------------------------------------------------------------------
1 | # Plugin Solana AgentKit
2 |
3 | A Solana integration plugin for AgentKit that enables interaction with the Solana blockchain.
4 |
5 | ## Features
6 |
7 | - Solana wallet integration
8 | - Transaction handling
9 | - Account management
10 | - RPC connection management
11 | - Solana program interactions
12 |
--------------------------------------------------------------------------------
/packages/docs/packages/plugins/speech-tts.md:
--------------------------------------------------------------------------------
1 | # service-speech-tts
2 |
3 | TTS transcription service with OpenAI + ElevenLabs
4 |
--------------------------------------------------------------------------------
/packages/docs/packages/plugins/youtube-to-text.md:
--------------------------------------------------------------------------------
1 | # `@elizaos/plugin-youtube-to-text`
2 |
3 | ## Description
4 |
5 | The Youtube to text Plugin allows users to retrieve a text output of a Youtube video.
6 |
7 | ## Features
8 |
9 | - Converts YouTube video links into text format using OpenAI’s Whisper model
10 | - Leverages Whisper’s advanced AI for precise and reliable transcription
11 | - Extracts and saves the video's audio as a WAV and MP3 file under the agent/data folder
12 |
13 | ## Installation
14 |
15 | ```bash
16 | bun install @elizaos/plugin-youtube-to-text
17 | ```
18 |
19 | ## Development
20 |
21 | 1. Clone the repository
22 | 2. Install dependencies:
23 |
24 | ```bash
25 | bun install
26 | ```
27 |
28 | 3. Build the plugin:
29 |
30 | ```bash
31 | bun run build
32 | ```
33 |
34 | 4. Run tests:
35 |
36 | ```bash
37 | bun test
38 | ```
39 |
--------------------------------------------------------------------------------
/packages/docs/partners/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: partners
3 | title: ElizaOS Partners & Integrations
4 | description: Explore the ecosystem of ElizaOS partners, integrations, and collaborations.
5 | keywords: [partners, integrations, ecosystem, collaboration, AI agents, developers, platforms]
6 | hide_table_of_contents: true
7 | ---
8 |
9 | import PartnersComponent from '@site/src/components/PartnersComponent';
10 |
11 | # Partners
12 |
13 | Interested in being a partner? Reach out here: https://tally.so/r/3Ev6XX
14 |
15 |
16 |
--------------------------------------------------------------------------------
/packages/docs/scripts/fetch-news.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | # Fetch news files for last 10 days into docs/news/
3 |
4 | SOURCE_URL="https://m3-org.github.io/ai-news/elizaos/md"
5 | OUTPUT_DIR="news"
6 |
7 | for i in {0..9}; do
8 | DATE=$(date -d "-$i days" '+%Y-%m-%d')
9 | wget -nc "$SOURCE_URL/$DATE.md" -P "$OUTPUT_DIR"
10 | done
11 |
--------------------------------------------------------------------------------
/packages/docs/scripts/plugin_summary_prompt.txt:
--------------------------------------------------------------------------------
1 | Summarize this plugin documentation, focusing only on information explicitly provided:
2 |
3 | # [PLUGIN NAME]
4 |
5 | ## Purpose
6 | [Core function in 1-2 sentences]
7 |
8 | ## Key Features
9 | [Only if listed in documentation]
10 |
11 | ## Installation
12 | [Only if provided]
13 |
14 | ## Configuration
15 | [Only if provided]
16 |
17 | ## Integration
18 | [How it connects with ElizaOS]
19 |
20 | ## Example Usage
21 | [Only if provided]
22 |
23 | ## Links
24 | [Only if provided]
25 |
26 | Skip any section without information.
27 | Only output the formatted summary - do not repeat these instructions or add explanatory text.
28 |
--------------------------------------------------------------------------------
/packages/docs/src/pages/markdown-page.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Markdown page example
3 | ---
4 |
5 | # Markdown page example
6 |
7 | You don't need React to write simple standalone pages.
8 |
--------------------------------------------------------------------------------
/packages/docs/src/pages/showcase/_components/ShowcaseCards/styles.module.css:
--------------------------------------------------------------------------------
1 | .showcaseList {
2 | display: grid;
3 | grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
4 | gap: 24px;
5 | }
6 |
--------------------------------------------------------------------------------
/packages/docs/src/pages/showcase/_components/ShowcaseLayout/index.tsx:
--------------------------------------------------------------------------------
1 | // src/pages/showcase/_components/ShowcaseLayout/index.tsx
2 | import React from 'react';
3 | import styles from './styles.module.css';
4 | import { type TagType } from '@site/src/data/users';
5 |
6 | export default function ShowcaseLayout({
7 | children,
8 | selectedTags,
9 | toggleTag,
10 | }: {
11 | children: React.ReactNode;
12 | selectedTags: TagType[];
13 | toggleTag: (tag: TagType) => void;
14 | }): JSX.Element {
15 | return (
16 |
19 | );
20 | }
21 |
--------------------------------------------------------------------------------
/packages/docs/src/theme/DocItem/Content/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import Content from '@theme-original/DocItem/Content';
3 | import CopyPageButton from '@site/src/components/CopyPageButton';
4 | import styles from './styles.module.css';
5 |
6 | export default function ContentWrapper(props) {
7 | return (
8 | <>
9 |
10 |
11 |
12 |
13 | >
14 | );
15 | }
16 |
--------------------------------------------------------------------------------
/packages/docs/src/theme/DocItem/Content/styles.module.css:
--------------------------------------------------------------------------------
1 | .docItemActions {
2 | display: flex;
3 | justify-content: flex-end;
4 | margin-bottom: 1rem;
5 | }
6 |
--------------------------------------------------------------------------------
/packages/docs/static/.nojekyll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/.nojekyll
--------------------------------------------------------------------------------
/packages/docs/static/CNAME:
--------------------------------------------------------------------------------
1 | eliza.how
2 |
--------------------------------------------------------------------------------
/packages/docs/static/blog/aicomms.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/aicomms.jpg
--------------------------------------------------------------------------------
/packages/docs/static/blog/ainews.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/ainews.jpg
--------------------------------------------------------------------------------
/packages/docs/static/blog/aixvc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/aixvc.png
--------------------------------------------------------------------------------
/packages/docs/static/blog/autodocs.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/autodocs.jpg
--------------------------------------------------------------------------------
/packages/docs/static/blog/banner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/banner.jpg
--------------------------------------------------------------------------------
/packages/docs/static/blog/bayc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/bayc.png
--------------------------------------------------------------------------------
/packages/docs/static/blog/degenai.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/degenai.png
--------------------------------------------------------------------------------
/packages/docs/static/blog/eliza.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/eliza.png
--------------------------------------------------------------------------------
/packages/docs/static/blog/elizastudios.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/elizastudios.jpg
--------------------------------------------------------------------------------
/packages/docs/static/blog/jintern.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/jintern.jpg
--------------------------------------------------------------------------------
/packages/docs/static/blog/notebooklm.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/notebooklm.jpg
--------------------------------------------------------------------------------
/packages/docs/static/blog/peepo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/peepo.png
--------------------------------------------------------------------------------
/packages/docs/static/blog/reward.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/reward.jpg
--------------------------------------------------------------------------------
/packages/docs/static/blog/shawai.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/shawai.png
--------------------------------------------------------------------------------
/packages/docs/static/blog/v1-v2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/v1-v2.jpg
--------------------------------------------------------------------------------
/packages/docs/static/blog/xkcd1810.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/xkcd1810.png
--------------------------------------------------------------------------------
/packages/docs/static/blog/yours.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/blog/yours.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/actions.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/actions.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/agentruntime.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/agentruntime.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/architecture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/architecture.png
--------------------------------------------------------------------------------
/packages/docs/static/img/autofun-intro.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/autofun-intro.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/autofun-tokenomics.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/autofun-tokenomics.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/banner1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/banner1.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/banner2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/banner2.png
--------------------------------------------------------------------------------
/packages/docs/static/img/cli.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/cli.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/database.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/database.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/discord_llm_pipeline2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/discord_llm_pipeline2.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/elijah.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/elijah.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/eliza-architecture.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/eliza-architecture.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/eliza-os_logo-mark_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/eliza-os_logo-mark_light.png
--------------------------------------------------------------------------------
/packages/docs/static/img/eliza-overview.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/eliza-overview.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/eliza_banner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/eliza_banner.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/eliza_in_tee.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/eliza_in_tee.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/elizagen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/elizagen.png
--------------------------------------------------------------------------------
/packages/docs/static/img/entities.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/entities.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/evaluators.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/evaluators.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/favicon.ico
--------------------------------------------------------------------------------
/packages/docs/static/img/funnel.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/funnel.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/gui.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/gui.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/icon.png
--------------------------------------------------------------------------------
/packages/docs/static/img/journey.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/journey.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/knowledge.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/knowledge.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/main.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/main.png
--------------------------------------------------------------------------------
/packages/docs/static/img/montage-plugins.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/montage-plugins.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/overload2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/overload2.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/overview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/overview.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/0g-labs.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/0g-labs.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/43rd-big-idea.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/43rd-big-idea.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/act-cto.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/act-cto.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/aethir.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/aethir.webp
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/aiora-ai.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/aiora-ai.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/aipool.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/aipool.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/allora-labs.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/allora-labs.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/apro.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/apro.jpeg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/arbitrum.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/arbitrum.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/arc-agents.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/arc-agents.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/arenax-labs.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/arenax-labs.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/arok.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/arok.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/auto-fun.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/auto-fun.webp
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/banodoco.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/banodoco.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/beffai.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/beffai.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/berachain.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/berachain.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/birdeye.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/birdeye.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/blade-games.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/blade-games.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/bnb-chain.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/bnb-chain.jpeg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/bossu.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/bossu.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/cog-acc.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/cog-acc.jpeg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/collab-land.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/collab-land.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/crossmint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/crossmint.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/daos-fun.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/daos-fun.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/dark-sun.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/dark-sun.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/degen8ball.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/degen8ball.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/degenai.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/degenai.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/dfinity.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/dfinity.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/dreamrunner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/dreamrunner.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/drift.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/drift.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/dydx.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/dydx.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/eigen-layer.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/eigen-layer.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/eliza-gg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/eliza-gg.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/eliza-studios.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/eliza-studios.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/eliza.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/eliza.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/elizaosmerch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/elizaosmerch.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/elizas-sister.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/elizas-sister.jpeg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/elizas-world.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/elizas-world.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/emblem-vault.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/emblem-vault.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/ethereum-foundation.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/ethereum-foundation.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/farcaster.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/farcaster.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/fleek.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/fleek.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/fuel.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/fuel.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/fxn.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/fxn.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/gaia-network.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/gaia-network.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/gelato.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/gelato.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/gnon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/gnon.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/godsdotfun.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/godsdotfun.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/goplus.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/goplus.jpeg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/hats-protocol.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/hats-protocol.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/hedera.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/hedera.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/heurist-ai.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/heurist-ai.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/hume.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/hume.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/hyperbolic.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/hyperbolic.jpeg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/hyperfy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/hyperfy.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/injective.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/injective.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/io-net.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/io-net.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/iq6900.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/iq6900.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/jupiter-exchange.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/jupiter-exchange.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/layerzero.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/layerzero.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/lit-protocol.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/lit-protocol.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/magic-eden.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/magic-eden.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/magiceden.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/magiceden.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/mee-fun.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/mee-fun.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/messari.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/messari.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/mizuki.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/mizuki.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/mode-network.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/mode-network.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/monad.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/monad.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/multiplex.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/multiplex.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/multiversx.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/multiversx.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/near.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/near.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/niftyisland.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/niftyisland.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/nillion.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/nillion.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/nous-research.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/nous-research.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/nrnagents.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/nrnagents.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/og-ai.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/og-ai.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/partners-nft.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/partners-nft.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/patchwork-naval.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/patchwork-naval.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/phala-network.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/phala-network.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/polygon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/polygon.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/project-89.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/project-89.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/reality-spiral.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/reality-spiral.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/ropraito.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/ropraito.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/safe.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/safe.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/saga.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/saga.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/scriptoshi.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/scriptoshi.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/secret-network.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/secret-network.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/sei.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/sei.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/smolverse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/smolverse.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/society-library.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/society-library.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/solana-agentkit.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/solana-agentkit.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/solana-foundation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/solana-foundation.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/soleng.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/soleng.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/sonic-svm.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/sonic-svm.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/stanford-university.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/stanford-university.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/story-protocol.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/story-protocol.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/thales-cto.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/thales-cto.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/thirdweb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/thirdweb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/together-xyz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/together-xyz.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/ton-network.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/ton-network.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/tron.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/tron.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/vvaifu-fun.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/vvaifu-fun.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/waye.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/waye.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/wombo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/wombo.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/xnomad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/xnomad.png
--------------------------------------------------------------------------------
/packages/docs/static/img/partners/zerebro.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/partners/zerebro.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/plugins.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/plugins.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/plugins.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/plugins.png
--------------------------------------------------------------------------------
/packages/docs/static/img/project.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/project.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/providers.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/providers.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/rooms.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/rooms.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/services.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/services.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/stats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/stats.png
--------------------------------------------------------------------------------
/packages/docs/static/img/tasks.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/tasks.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/tokenomics1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/tokenomics1.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/tokenomics2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/tokenomics2.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-default-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-default-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-thumbnails/bazaar-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-thumbnails/bazaar-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-thumbnails/beach-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-thumbnails/beach-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-thumbnails/clanktank-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-thumbnails/clanktank-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-thumbnails/council-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-thumbnails/council-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-thumbnails/dubbing-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-thumbnails/dubbing-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-thumbnails/hack-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-thumbnails/hack-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-thumbnails/neon-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-thumbnails/neon-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-thumbnails/newyear-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-thumbnails/newyear-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-thumbnails/pizza-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-thumbnails/pizza-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-thumbnails/rebrand-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-thumbnails/rebrand-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-thumbnails/shawrunner-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-thumbnails/shawrunner-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-thumbnails/solanahack-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-thumbnails/solanahack-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-thumbnails/sparta-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-thumbnails/sparta-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-thumbnails/stonk2-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-thumbnails/stonk2-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-thumbnails/throne-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-thumbnails/throne-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/video-thumbnails/vote-thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/video-thumbnails/vote-thumb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/videos.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/videos.jpg
--------------------------------------------------------------------------------
/packages/docs/static/img/worlds.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/img/worlds.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/0g.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/0g.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/0x.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/0x.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/AWS.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/AWS.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/B2network.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/B2network.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/BNBchain.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/BNBchain.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/ETHstorage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/ETHstorage.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/ICP.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/ICP.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/IQ6900.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/IQ6900.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/LUMA.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/LUMA.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/LitProtocol.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/LitProtocol.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/Mina.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/Mina.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/MindNetwork.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/MindNetwork.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/NEAR.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/NEAR.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/NewsAPI.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/NewsAPI.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/OriginTrail.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/OriginTrail.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/PDF.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/PDF.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/TTS.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/TTS.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/TTSelevenlabs.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/TTSelevenlabs.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/UDIO.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/UDIO.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/abstract.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/abstract.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/agentkit.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/agentkit.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/agentkitCDB.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/agentkitCDB.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/akash.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/akash.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/alexa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/alexa.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/allora.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/allora.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/ankr.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/ankr.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/anyone.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/anyone.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/appro.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/appro.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/apro.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/apro.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/aptos.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/aptos.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/arbitage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/arbitage.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/arthera.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/arthera.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/asterai.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/asterai.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/auto.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/auto.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/autonome.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/autonome.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/avail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/avail.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/avalanche.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/avalanche.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/binance.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/binance.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/birdeye.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/birdeye.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/bittensor.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/bittensor.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/bootstrap.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/bootstrap.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/browser.playwright.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/browser.playwright.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/carv.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/carv.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/ccxt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/ccxt.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/chainbase.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/chainbase.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/cognition.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/cognition.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/coinbase.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/coinbase.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/coingecko.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/coingecko.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/coinmarketcap.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/coinmarketcap.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/compass.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/compass.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/conflux.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/conflux.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/cosmos.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/cosmos.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/cronos.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/cronos.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/cronos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/cronos.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/dcap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/dcap.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/depin.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/depin.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/desk.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/desk.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/deva.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/deva.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/devin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/devin.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/dexscreener.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/dexscreener.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/di-logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/di-logo.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/direct.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/direct.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/discord.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/discord.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/echochambers.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/echochambers.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/edwin.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/edwin.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/email.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/email.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/email.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/evm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/evm.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/fal.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/fal.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/falai.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/falai.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/farcaster.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/farcaster.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/ferepro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/ferepro.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/firecrawl.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/firecrawl.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/flow.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/flow.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/flowchain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/flowchain.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/footballDATA.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/footballDATA.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/form.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/form.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/fuel.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/fuel.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/gelato.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/gelato.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/genlayer.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/genlayer.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/gigbot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/gigbot.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/giphy.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/giphy.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/gitbook.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/gitbook.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/gitcoin.passport.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/gitcoin.passport.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/github.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/github.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/goat.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/goat.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/goplus.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/goplus.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/grix.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/grix.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/holdstation.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/holdstation.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/home-assistant.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/home-assistant.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/hyperbolic.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/hyperbolic.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/hyperliquid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/hyperliquid.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/ikigai-labs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/ikigai-labs.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/imagegen.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/imagegen.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/imgFlip.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/imgFlip.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/initia.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/initia.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/injective.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/injective.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/instagram.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/instagram.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/intelsgx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/intelsgx.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/intiface.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/intiface.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/irys.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/irys.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/isaac.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/isaac.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/lens.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/lens.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/letzai.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/letzai.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/lightlink.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/lightlink.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/lightning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/lightning.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/marlin.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/marlin.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/massa.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/massa.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/merkle.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/merkle.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/messari.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/messari.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/meta-llama.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/meta-llama.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/mongodb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/mongodb.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/moralis.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/moralis.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/movement.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/movement.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/multiversx.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/multiversx.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/nearai.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/nearai.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/nftgen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/nftgen.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/nkn.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/nkn.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/nodejs.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/nodejs.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/nvidia.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/nvidia.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/obsidian.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/obsidian.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/okto.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/okto.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/okx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/okx.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/omniflix.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/omniflix.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/opacity.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/opacity.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/openAI.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/openAI.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/openweather.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/openweather.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/para.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/para.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/pglite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/pglite.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/phalatee.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/phalatee.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/postgres.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/postgres.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/primus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/primus.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/pyth.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/pyth.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/qdrant.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/qdrant.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/quai.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/quai.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/quickintel.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/quickintel.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/rabbitrader.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/rabbitrader.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/redis.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/redis.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/router.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/router.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/sei.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/sei.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/sendai.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/sendai.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/simsAI.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/simsAI.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/slack.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/slack.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/solana.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/solana.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/solanaV2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/solanaV2.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/spheron.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/spheron.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/sqlite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/sqlite.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/sqljs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/sqljs.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/squid.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/squid.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/stargaze.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/stargaze.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/starknet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/starknet.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/story.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/story.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/sui.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/sui.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/suno.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/suno.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/supabase.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/supabase.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/tako.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/tako.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/tee.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/tee.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/telegram.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/telegram.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/thirdweb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/thirdweb.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/ton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/ton.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/trikon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/trikon.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/trusta.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/trusta.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/twilio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/twilio.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/viction.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/viction.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/video.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/video.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/websearch.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/websearch.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/whatsapp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/whatsapp.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/x.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/x.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/xmtp.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/xmtp.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/youtube.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/youtube.png
--------------------------------------------------------------------------------
/packages/docs/static/logos/zapper.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/zapper.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/zerion.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/zerion.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/zilliqa.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/zilliqa.jpg
--------------------------------------------------------------------------------
/packages/docs/static/logos/zksync.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/docs/static/logos/zksync.jpg
--------------------------------------------------------------------------------
/packages/docs/static/packages/adapters/sqljs.md:
--------------------------------------------------------------------------------
1 | # Unmaintained
2 |
3 | ## Purpose
4 |
5 | This plugin used to live in @elizaos/core and needs a maintainer.
6 |
--------------------------------------------------------------------------------
/packages/docs/static/packages/clients/auto.md:
--------------------------------------------------------------------------------
1 | # ElizaOS Plugin
2 |
3 | ## Purpose
4 |
5 | This plugin is a component of ElizaOS.
6 |
7 | ## Integration
8 |
9 | The plugin is now incorporated into @elizaos/core rather than existing as a standalone plugin.
10 |
11 | ## Links
12 |
13 | @elizaos/core
14 |
--------------------------------------------------------------------------------
/packages/docs/static/packages/clients/direct.md:
--------------------------------------------------------------------------------
1 | # Query Params
2 |
3 | ## Purpose
4 |
5 | A plugin that provides a way to get query parameters from the URL.
6 |
7 | ## Integration
8 |
9 | This plugin is now part of the @elizaos/core package.
10 |
--------------------------------------------------------------------------------
/packages/docs/static/packages/clients/lens.md:
--------------------------------------------------------------------------------
1 | # client-lens
2 |
3 | ## Purpose
4 |
5 | A business analytics plugin for ElizaOS providing real-time insights on client data and business metrics.
6 |
7 | ## Integration
8 |
9 | Connects with ElizaOS personal and professional client data system to analyze patterns and provide actionable recommendations.
10 |
--------------------------------------------------------------------------------
/packages/docs/static/packages/clients/simsai.md:
--------------------------------------------------------------------------------
1 | # Timeline Tracker
2 |
3 | ## Purpose
4 |
5 | This plugin needs a maintainer.
6 |
7 | ## Links
8 |
9 | Deprecated: this plugin needs a maintainer.
10 |
--------------------------------------------------------------------------------
/packages/docs/static/packages/plugins/cache-redis.md:
--------------------------------------------------------------------------------
1 | # Unmaintained: this cache plugin originally lived in @elizaos/core. It needs a maintainer.
2 |
3 | ## Purpose
4 |
5 | This cache plugin originally lived in @elizaos/core.
6 |
7 | ## Integration
8 |
9 | Originally part of @elizaos/core but now separated.
10 |
11 | ## Note
12 |
13 | Needs a maintainer.
14 |
--------------------------------------------------------------------------------
/packages/docs/static/packages/plugins/eliza-nkn.md:
--------------------------------------------------------------------------------
1 | # plugin-nkn
2 |
3 | ## Purpose
4 |
5 | Integrates NKN to enable communication between multiple AI agents or users within the Eliza framework.
6 |
7 | ## Key Features
8 |
9 | - Supports sending and receiving messages via a decentralized network
10 | - Ensures low latency and secure transmission
11 |
12 | ## Integration
13 |
14 | Leverages the NKN protocol to facilitate messaging and communication between various AI agents and users within ElizaOS.
15 |
16 | ## Links
17 |
18 | https://nkn.org/
19 |
--------------------------------------------------------------------------------
/packages/docs/static/packages/plugins/holdstation.md:
--------------------------------------------------------------------------------
1 | # @elizaos/plugin-holdstation
2 |
3 | ## Purpose
4 |
5 | Holdstation Wallet Plugin for Eliza
6 |
7 | ## Key Features
8 |
9 | - Token swapping on hold.so (Holdstation swap)
10 | - Currently on ZKsync Era, with Berachain coming soon
11 |
12 | ## Installation
13 |
14 | ```bash
15 | bun add @elizaos/plugin-holdstation
16 | ```
17 |
18 | ## Configuration
19 |
20 | The plugin requires the following environment variables:
21 |
22 | ```env
23 | HOLDSTATION_PRIVATE_KEY= # Required: Your wallet's private key
24 | ```
25 |
26 | ## Development
27 |
28 | ```bash
29 | bun install --no-frozen-lockfile
30 | bun build
31 | bun test
32 | ```
33 |
34 | ## Credits
35 |
36 | Special thanks to:
37 |
38 | - The Eliza community for their contributions and feedback
39 |
--------------------------------------------------------------------------------
/packages/docs/static/packages/plugins/imgflip.md:
--------------------------------------------------------------------------------
1 | # @elizaos/plugin-imgflip
2 |
3 | ## Purpose
4 |
5 | A plugin for generating memes using the imgflip.com API.
6 |
7 | ## Key Features
8 |
9 | - GENERATE_MEME action used for generating memes using the imgflip.com API based on the user's message.
10 |
11 | ## Installation
12 |
13 | ```bash
14 | bun install @elizaos/plugin-imgflip
15 | ```
16 |
17 | ## Integration
18 |
19 | The Imgflip plugin provides a GENERATE_MEME action that can be used to generate memes using the imgflip.com API based on the user's message.
20 |
21 | ## Dependencies
22 |
23 | - @elizaos/core: workspace:\*
24 |
--------------------------------------------------------------------------------
/packages/docs/static/packages/plugins/initia.md:
--------------------------------------------------------------------------------
1 | # @elizaos/plugin-initia
2 |
3 | ## Purpose
4 |
5 | Initia plugin for Eliza OS that provides functionality to transfer INIT token.
6 |
7 | ## Installation
8 |
9 | ```bash
10 | bun install @elizaos/plugin-initia
11 | ```
12 |
13 | ## Configuration
14 |
15 | ```bash
16 | INITIA_PRIVATE_KEY=0x1234...abcd
17 | INITIA_NODE_URL=https://...
18 | INITIA_CHAIN_ID=initiaion-2
19 | ```
20 |
21 | ## Example Usage
22 |
23 | ```typescript
24 | User: 'Send 1 INIT to init14l3c2vxrdvu6y0sqykppey930s4kufsvt97aeu';
25 | Assistant: 'Sure! I am going to send 1 INIT to init14l3c2vxrdvu6y0sqykppey930s4kufsvt97aeu';
26 | ```
27 |
28 | ## Dependencies
29 |
30 | - `@initia/initia.js`: Official initia js SDK
31 |
--------------------------------------------------------------------------------
/packages/docs/static/packages/plugins/massa.md:
--------------------------------------------------------------------------------
1 | # Massa Plugin
2 |
3 | ## Purpose
4 |
5 | This plugin aims to be the basis of all interactions with the Massa ecosystem.
6 |
7 | ## Links
8 |
9 | [https://docs.massa.net/](https://docs.massa.net/)
10 |
--------------------------------------------------------------------------------
/packages/docs/static/packages/plugins/nkn.md:
--------------------------------------------------------------------------------
1 | # plugin-nkn
2 |
3 | ## Purpose
4 |
5 | Integrates NKN to enable communication between multiple AI agents or users within the Eliza framework.
6 |
7 | ## Key Features
8 |
9 | - Supports sending and receiving messages via a decentralized network
10 | - Ensures low latency and secure transmission
11 |
12 | ## Integration
13 |
14 | Leverages the NKN protocol to facilitate messaging and communication between various AI agents and users within the Eliza framework.
15 |
16 | ## Links
17 |
18 | https://nkn.org/
19 |
--------------------------------------------------------------------------------
/packages/docs/static/packages/plugins/pdf.md:
--------------------------------------------------------------------------------
1 | # @elizaos/plugin-pdf
2 |
3 | ## Purpose
4 |
5 | Core Node.js plugin for Eliza OS that provides essential services and actions for file operations, specifically focused on PDF processing.
6 |
7 | ## Key Features
8 |
9 | - PDF text extraction and parsing
10 |
11 | ## Integration
12 |
13 | Serves as a foundational component of Eliza OS, bridging core Node.js capabilities with the Eliza ecosystem.
14 |
15 | ## Services
16 |
17 | - PdfService: Extracts and processes text content from PDF files
18 |
--------------------------------------------------------------------------------
/packages/docs/static/packages/plugins/solana-agentkit.md:
--------------------------------------------------------------------------------
1 | # Plugin Solana AgentKit
2 |
3 | ## Purpose
4 |
5 | A Solana integration plugin for AgentKit that enables interaction with the Solana blockchain.
6 |
7 | ## Key Features
8 |
9 | - Solana wallet integration
10 | - Transaction handling
11 | - Account management
12 | - RPC connection management
13 | - Solana program interactions
14 |
15 | ## Integration
16 |
17 | Connects with ElizaOS through the AgentKit framework to provide Solana blockchain functionality.
18 |
--------------------------------------------------------------------------------
/packages/docs/static/packages/plugins/speech-tts.md:
--------------------------------------------------------------------------------
1 | # service-speech-tts
2 |
3 | ## Purpose
4 |
5 | TTS transcription service with OpenAI + ElevenLabs
6 |
--------------------------------------------------------------------------------
/packages/docs/static/packages/plugins/tee-verifiable-log.md:
--------------------------------------------------------------------------------
1 | # Build Plugin
2 |
3 | ## Purpose
4 |
5 | A plugin for building and testing code in ElizaOS.
6 |
7 | ## Configuration
8 |
9 | This plugin depends on plugin-tee. For local testing, a TEE simulator can be set up using Docker. When using the provider through the runtime environment, configure settings like TEE_MODE, WALLET_SECRET_SALT, and VLOG.
10 |
11 | ## Example Usage
12 |
13 | ```
14 | bun clean
15 | bun install or bun install --no-frozen-lockfile
16 | bun build
17 | ```
18 |
19 | For testing:
20 |
21 | ```
22 | bun test
23 | ```
24 |
--------------------------------------------------------------------------------
/packages/docs/versions.json:
--------------------------------------------------------------------------------
1 | ["0.25.9"]
2 |
--------------------------------------------------------------------------------
/packages/plugin-bootstrap/.npmignore:
--------------------------------------------------------------------------------
1 | *
2 |
3 | !dist/**
4 | !package.json
5 | !readme.md
6 | !tsup.config.ts
--------------------------------------------------------------------------------
/packages/plugin-bootstrap/README.md:
--------------------------------------------------------------------------------
1 | # @elizaos/plugin-bootstrap
2 |
3 | Event handlers, services, actions, providers and functionality on top of the elizaOS core package.
4 |
5 | Should be imported into most agents.
6 |
--------------------------------------------------------------------------------
/packages/plugin-bootstrap/src/actions/index.ts:
--------------------------------------------------------------------------------
1 | export { choiceAction } from './choice';
2 | export { followRoomAction } from './followRoom';
3 | export { ignoreAction } from './ignore';
4 | export { muteRoomAction } from './muteRoom';
5 | export { noneAction } from './none';
6 | export { replyAction } from './reply';
7 | export { updateRoleAction } from './roles';
8 | export { sendMessageAction } from './sendMessage';
9 | export { updateSettingsAction } from './settings';
10 | export { unfollowRoomAction } from './unfollowRoom';
11 | export { unmuteRoomAction } from './unmuteRoom';
12 | export { updateEntityAction } from './updateEntity';
13 |
--------------------------------------------------------------------------------
/packages/plugin-bootstrap/src/evaluators/index.ts:
--------------------------------------------------------------------------------
1 | export { reflectionEvaluator } from './reflection';
2 |
--------------------------------------------------------------------------------
/packages/plugin-bootstrap/src/services/index.ts:
--------------------------------------------------------------------------------
1 | // Export all service types from this file
2 | export * from './task';
3 |
--------------------------------------------------------------------------------
/packages/plugin-bootstrap/tsconfig.build.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig.json",
3 | "compilerOptions": {
4 | "rootDir": "./src",
5 | "outDir": "./dist",
6 | "sourceMap": true,
7 | "inlineSources": true,
8 | "declaration": true,
9 | "emitDeclarationOnly": true
10 | },
11 | "include": ["src/**/*.ts"],
12 | "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
13 | }
14 |
--------------------------------------------------------------------------------
/packages/plugin-bootstrap/tsup.config.ts:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'tsup';
2 |
3 | export default defineConfig({
4 | entry: ['src/index.ts'],
5 | outDir: 'dist',
6 | tsconfig: './tsconfig.build.json', // Use build-specific tsconfig
7 | sourcemap: true,
8 | clean: true,
9 | format: ['esm'], // Ensure you're targeting CommonJS
10 | dts: true,
11 | external: [
12 | 'dotenv', // Externalize dotenv to prevent bundling
13 | 'fs', // Externalize fs to use Node.js built-in module
14 | 'path', // Externalize other built-ins if necessary
15 | '@reflink/reflink',
16 | 'https',
17 | 'http',
18 | 'agentkeepalive',
19 | 'zod',
20 | '@elizaos/core',
21 | // Add other modules you want to externalize
22 | ],
23 | });
24 |
--------------------------------------------------------------------------------
/packages/plugin-bootstrap/vitest.config.ts:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'vitest/config';
2 |
3 | export default defineConfig({
4 | test: {
5 | environment: 'node',
6 | exclude: ['**/e2e/**', '**/dist/**', '**/node_modules/**'],
7 | coverage: {
8 | reporter: ['text', 'json', 'html'],
9 | },
10 | },
11 | });
12 |
--------------------------------------------------------------------------------
/packages/plugin-sql/.npmignore:
--------------------------------------------------------------------------------
1 | *
2 |
3 | !dist/**
4 | !package.json
5 | !readme.md
6 | !tsup.config.ts
7 | !schema.sql
8 | !seed.sql
9 | !config.toml
10 | __tests__/**
--------------------------------------------------------------------------------
/packages/plugin-sql/__tests__/integration/seed/agent-seed.ts:
--------------------------------------------------------------------------------
1 | /**
2 | * Seed data for agent integration tests
3 | */
4 | import { type Agent } from '@elizaos/core';
5 |
6 | /**
7 | * Test agent data used across agent integration tests
8 | */
9 | export const testAgent: Agent = {
10 | name: 'Integration Test Agent',
11 | username: 'test_agent',
12 | bio: 'A test agent for integration tests',
13 | enabled: true,
14 | settings: {
15 | testSetting: 'test value',
16 | },
17 | createdAt: new Date().getTime(),
18 | updatedAt: new Date().getTime(),
19 | };
20 |
--------------------------------------------------------------------------------
/packages/plugin-sql/__tests__/integration/seed/index.ts:
--------------------------------------------------------------------------------
1 | /**
2 | * Exports all seed data for tests
3 | */
4 |
5 | export * from './agent-seed';
6 | export * from './cache-seed';
7 | export * from './component-seed';
8 | export * from './embedding-seed';
9 | export * from './entity-seed';
10 | export * from './log-seed';
11 | export * from './memory-seed';
12 | export * from './participant-seed';
13 | export * from './relationship-seed';
14 | export * from './room-seed';
15 | export * from './task-seed';
16 | export * from './world-seed';
17 |
--------------------------------------------------------------------------------
/packages/plugin-sql/drizzle.config.ts:
--------------------------------------------------------------------------------
1 | import { config } from 'dotenv';
2 | import { defineConfig } from 'drizzle-kit';
3 |
4 | config({ path: '../../.env' });
5 |
6 | export default defineConfig({
7 | dialect: 'postgresql',
8 | schema: './src/schema/index.ts',
9 | out: './drizzle/migrations',
10 | dbCredentials: {
11 | url: process.env.POSTGRES_URL || 'file:../../.elizadb',
12 | },
13 | breakpoints: true,
14 | });
15 |
--------------------------------------------------------------------------------
/packages/plugin-sql/drizzle/extension.sql:
--------------------------------------------------------------------------------
1 | CREATE EXTENSION IF NOT EXISTS vector;
2 | --> statement-breakpoint
3 | CREATE EXTENSION IF NOT EXISTS fuzzystrmatch;
4 | --> statement-breakpoint
--------------------------------------------------------------------------------
/packages/plugin-sql/drizzle/migrations/meta/_journal.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "7",
3 | "dialect": "postgresql",
4 | "entries": [
5 | {
6 | "idx": 0,
7 | "version": "7",
8 | "when": 1748857965796,
9 | "tag": "0000_thin_madame_web",
10 | "breakpoints": true
11 | }
12 | ]
13 | }
--------------------------------------------------------------------------------
/packages/plugin-sql/src/schema/channelParticipant.ts:
--------------------------------------------------------------------------------
1 | import { pgTable, text, primaryKey } from 'drizzle-orm/pg-core';
2 | import { relations } from 'drizzle-orm';
3 | import { channelTable } from './channel';
4 |
5 | export const channelParticipantsTable = pgTable(
6 | 'channel_participants',
7 | {
8 | channelId: text('channel_id')
9 | .notNull()
10 | .references(() => channelTable.id, { onDelete: 'cascade' }),
11 | userId: text('user_id').notNull(), // This is a central UUID (can be an agentId or a dedicated central user ID)
12 | },
13 | (table) => ({
14 | pk: primaryKey({ columns: [table.channelId, table.userId] }),
15 | })
16 | );
17 |
--------------------------------------------------------------------------------
/packages/plugin-sql/src/schema/messageServer.ts:
--------------------------------------------------------------------------------
1 | import { pgTable, text, jsonb, timestamp } from 'drizzle-orm/pg-core';
2 | import { relations, sql } from 'drizzle-orm';
3 |
4 | export const messageServerTable = pgTable('message_servers', {
5 | id: text('id').primaryKey(), // UUID stored as text
6 | name: text('name').notNull(),
7 | sourceType: text('source_type').notNull(),
8 | sourceId: text('source_id'),
9 | metadata: jsonb('metadata'),
10 | createdAt: timestamp('created_at', { mode: 'date' })
11 | .default(sql`CURRENT_TIMESTAMP`)
12 | .notNull(),
13 | updatedAt: timestamp('updated_at', { mode: 'date' })
14 | .default(sql`CURRENT_TIMESTAMP`)
15 | .notNull(),
16 | });
17 |
--------------------------------------------------------------------------------
/packages/plugin-sql/src/schema/serverAgent.ts:
--------------------------------------------------------------------------------
1 | import { pgTable, text, primaryKey } from 'drizzle-orm/pg-core';
2 | import { relations } from 'drizzle-orm';
3 | import { messageServerTable } from './messageServer';
4 |
5 | export const serverAgentsTable = pgTable(
6 | 'server_agents',
7 | {
8 | serverId: text('server_id')
9 | .notNull()
10 | .references(() => messageServerTable.id, { onDelete: 'cascade' }),
11 | agentId: text('agent_id').notNull(), // This is the agent's UUID
12 | },
13 | (table) => ({
14 | pk: primaryKey({ columns: [table.serverId, table.agentId] }),
15 | })
16 | );
17 |
--------------------------------------------------------------------------------
/packages/plugin-sql/src/schema/world.ts:
--------------------------------------------------------------------------------
1 | import { sql } from 'drizzle-orm';
2 | import { jsonb, pgTable, text, uuid } from 'drizzle-orm/pg-core';
3 | import { agentTable } from './agent';
4 | import { numberTimestamp } from './types';
5 |
6 | /**
7 | * Represents a table schema for worlds in the database.
8 | *
9 | * @type {PgTable}
10 | */
11 |
12 | export const worldTable = pgTable('worlds', {
13 | id: uuid('id')
14 | .notNull()
15 | .primaryKey()
16 | .default(sql`gen_random_uuid()`),
17 | agentId: uuid('agentId')
18 | .notNull()
19 | .references(() => agentTable.id, { onDelete: 'cascade' }),
20 | name: text('name').notNull(),
21 | metadata: jsonb('metadata'),
22 | serverId: text('serverId').notNull(),
23 | createdAt: numberTimestamp('createdAt')
24 | .default(sql`now()`)
25 | .notNull(),
26 | });
27 |
--------------------------------------------------------------------------------
/packages/plugin-sql/src/types.ts:
--------------------------------------------------------------------------------
1 | import type { NodePgDatabase } from 'drizzle-orm/node-postgres';
2 | import type { PgliteDatabase } from 'drizzle-orm/pglite';
3 |
4 | /**
5 | * Represents a type that can be either a NodePgDatabase or a PgliteDatabase.
6 | */
7 | export type DrizzleDatabase = NodePgDatabase | PgliteDatabase;
8 |
9 | /**
10 | * Interface for managing a database client.
11 | * @template T - The type of the database connection object.
12 | */
13 | export interface IDatabaseClientManager {
14 | initialize(): Promise;
15 | getConnection(): T;
16 | runMigrations(): Promise;
17 | close(): Promise;
18 | }
19 |
--------------------------------------------------------------------------------
/packages/plugin-sql/tsconfig.build.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig.json",
3 | "compilerOptions": {
4 | "rootDir": "./src",
5 | "outDir": "./dist",
6 | "sourceMap": true,
7 | "inlineSources": true,
8 | "declaration": true,
9 | "emitDeclarationOnly": true,
10 | "paths": {}
11 | },
12 | "include": ["src/**/*.ts"],
13 | "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
14 | }
15 |
--------------------------------------------------------------------------------
/packages/plugin-sql/vitest.config.ts:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'vitest/config';
2 |
3 | export default defineConfig({
4 | test: {
5 | globals: true,
6 | environment: 'node',
7 | // Increase timeout for all tests
8 | testTimeout: 30000, // 30 seconds
9 | // Increase hook timeout specifically
10 | hookTimeout: 40000, // 40 seconds
11 | // Set up environment variables for tests
12 | env: {
13 | // This will be merged with process.env
14 | NODE_ENV: 'test',
15 | },
16 | // Define test environment setup
17 | setupFiles: ['dotenv/config'],
18 | fileParallelism: false,
19 | },
20 | });
21 |
--------------------------------------------------------------------------------
/packages/plugin-starter/.gitignore:
--------------------------------------------------------------------------------
1 | # Build outputs
2 | dist/
3 | node_modules/
4 |
5 | # Environment files
6 | .env
7 | .env.local
8 | .env.production
9 | .env.staging
10 | .env.development
11 | .env.bak
12 | *.env
13 |
14 | # OS files
15 | .DS_Store
16 | Thumbs.db
17 |
18 | # IDE files
19 | .vscode/
20 | .idea/
21 | *.swp
22 | *.swo
23 |
24 | # Logs
25 | *.log
26 | npm-debug.log*
27 | yarn-debug.log*
28 | yarn-error.log*
29 |
30 | # Runtime data
31 | pids/
32 | *.pid
33 | *.seed
34 | *.pid.lock
35 |
36 | # Coverage directory used by tools like istanbul
37 | coverage/
38 |
39 | # Cache directories
40 | .cache/
41 | .npm/
42 | .eslintcache
43 |
44 | # Temporary folders
45 | tmp/
46 | temp/
47 |
48 | # Database files
49 | *.db
50 | *.pglite
51 | *.pglite3
52 |
53 | # ElizaOS specific
54 | .eliza/
55 | elizadb/
56 | pglite/
57 | cache/
58 |
--------------------------------------------------------------------------------
/packages/plugin-starter/.npmignore:
--------------------------------------------------------------------------------
1 | .turbo
2 | dist
3 | node_modules
4 | .env
5 | *.env
6 | .env.local
--------------------------------------------------------------------------------
/packages/plugin-starter/images/README.md:
--------------------------------------------------------------------------------
1 | # Required Images for ElizaOS Plugins
2 |
3 | Please add the following required images to this directory:
4 |
5 | ## logo.jpg
6 |
7 | - **Size**: 400x400px square
8 | - **Max size**: 500KB
9 | - **Purpose**: Main logo for your plugin displayed in the registry and UI
10 |
11 | ## banner.jpg
12 |
13 | - **Size**: 1280x640px (2:1 aspect ratio)
14 | - **Max size**: 1MB
15 | - **Purpose**: Banner image for your plugin displayed in the registry
16 |
17 | ## Guidelines
18 |
19 | - Use clear, high-resolution images
20 | - Keep file sizes optimized
21 | - Follow the ElizaOS brand guidelines
22 | - Include alt text in your documentation for accessibility
23 |
24 | These files are required for registry submission. Your plugin submission will not be accepted without these images.
25 |
--------------------------------------------------------------------------------
/packages/plugin-starter/tsconfig.build.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig.json",
3 | "compilerOptions": {
4 | "rootDir": "./src",
5 | "outDir": "./dist",
6 | "sourceMap": true,
7 | "inlineSources": true,
8 | "declaration": true,
9 | "emitDeclarationOnly": true
10 | },
11 | "include": ["src/**/*.ts"],
12 | "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
13 | }
14 |
--------------------------------------------------------------------------------
/packages/plugin-starter/tsup.config.ts:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'tsup';
2 |
3 | export default defineConfig({
4 | entry: ['src/index.ts'],
5 | outDir: 'dist',
6 | tsconfig: './tsconfig.build.json', // Use build-specific tsconfig
7 | sourcemap: true,
8 | clean: true,
9 | format: ['esm'], // Ensure you're targeting CommonJS
10 | dts: false, // Skip DTS generation to avoid external import issues // Ensure you're targeting CommonJS
11 | external: [
12 | 'dotenv', // Externalize dotenv to prevent bundling
13 | 'fs', // Externalize fs to use Node.js built-in module
14 | 'path', // Externalize other built-ins if necessary
15 | 'https',
16 | 'http',
17 | '@elizaos/core',
18 | 'zod',
19 | ],
20 | });
21 |
--------------------------------------------------------------------------------
/packages/plugin-starter/vitest.config.ts:
--------------------------------------------------------------------------------
1 | import path from 'node:path';
2 | import { defineConfig } from 'vitest/config';
3 |
4 | export default defineConfig({
5 | test: {
6 | environment: 'node',
7 | globals: true,
8 | testTimeout: 60000,
9 | exclude: ['**/e2e/**', '**/node_modules/**'],
10 | },
11 | resolve: {
12 | alias: {
13 | '@': path.resolve(__dirname, './src'),
14 | },
15 | },
16 | });
17 |
--------------------------------------------------------------------------------
/packages/project-starter/.gitignore:
--------------------------------------------------------------------------------
1 | dist/
2 | node_modules/
3 | .env
4 | .env.local
5 | .DS_Store
6 | *.log
--------------------------------------------------------------------------------
/packages/project-starter/.npmignore:
--------------------------------------------------------------------------------
1 | .turbo
2 | dist
3 | node_modules
4 | .env
5 | *.env
6 | .env.local
--------------------------------------------------------------------------------
/packages/project-starter/tsconfig.build.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig.json",
3 | "compilerOptions": {
4 | "rootDir": "./src",
5 | "outDir": "./dist",
6 | "sourceMap": true,
7 | "inlineSources": true,
8 | "declaration": true,
9 | "emitDeclarationOnly": true
10 | },
11 | "include": ["src/**/*.ts"],
12 | "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
13 | }
14 |
--------------------------------------------------------------------------------
/packages/project-starter/tsup.config.ts:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'tsup';
2 |
3 | export default defineConfig({
4 | entry: ['src/index.ts', 'e2e/**/*.test.ts'],
5 | outDir: 'dist',
6 | tsconfig: './tsconfig.build.json', // Use build-specific tsconfig
7 | sourcemap: true,
8 | clean: true,
9 | format: ['esm'], // Ensure you're targeting CommonJS
10 | dts: false, // Skip DTS generation to avoid external import issues // Ensure you're targeting CommonJS
11 | external: [
12 | 'dotenv', // Externalize dotenv to prevent bundling
13 | 'fs', // Externalize fs to use Node.js built-in module
14 | 'path', // Externalize other built-ins if necessary
15 | 'https',
16 | 'http',
17 | 'zod',
18 | ],
19 | });
20 |
--------------------------------------------------------------------------------
/packages/project-starter/vitest.config.ts:
--------------------------------------------------------------------------------
1 | import path from 'node:path';
2 | import { defineConfig } from 'vitest/config';
3 |
4 | export default defineConfig({
5 | test: {
6 | environment: 'node',
7 | globals: true,
8 | testTimeout: 60000,
9 | exclude: ['**/e2e/**', '**/node_modules/**'],
10 | },
11 | resolve: {
12 | alias: {
13 | '@': path.resolve(__dirname, './src'),
14 | },
15 | },
16 | });
17 |
--------------------------------------------------------------------------------
/packages/project-tee-starter/.dockerignore:
--------------------------------------------------------------------------------
1 | # Ignore node_modules from the build context
2 | node_modules
3 |
4 | # Ignore logs and temporary files
5 | *.log
6 | *.tmp
7 | .DS_Store
8 |
9 | # Ignore Git files and metadata
10 | .gitignore
11 |
12 | # Ignore IDE and editor config files
13 | .vscode
14 | .idea
15 | *.swp
16 |
17 | # Ignore build artifacts from the host
18 | dist
19 | build
20 | .env
--------------------------------------------------------------------------------
/packages/project-tee-starter/.gitignore:
--------------------------------------------------------------------------------
1 | dist/
2 | node_modules/
3 |
--------------------------------------------------------------------------------
/packages/project-tee-starter/.npmignore:
--------------------------------------------------------------------------------
1 | .turbo
2 | dist
3 | node_modules
4 | .env
5 | *.env
6 | .env.local
--------------------------------------------------------------------------------
/packages/project-tee-starter/__tests__/actions.test.ts:
--------------------------------------------------------------------------------
1 | import { describe, it, expect } from 'vitest';
2 |
3 | describe('TEE Actions', () => {
4 | it("should use plugin-tee's remoteAttestationAction", () => {
5 | // This test verifies that we're relying on plugin-tee's built-in actions
6 | // rather than implementing custom actions
7 | expect(true).toBe(true);
8 | });
9 | });
10 |
--------------------------------------------------------------------------------
/packages/project-tee-starter/assets/mr-tee-portrait.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elizaOS/eliza/2a2b3f71ddce40023af09a73f79eeedf99f28e03/packages/project-tee-starter/assets/mr-tee-portrait.jpg
--------------------------------------------------------------------------------
/packages/project-tee-starter/tsconfig.build.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig.json",
3 | "compilerOptions": {
4 | "rootDir": "./src",
5 | "outDir": "./dist",
6 | "sourceMap": true,
7 | "inlineSources": true,
8 | "declaration": true,
9 | "emitDeclarationOnly": true
10 | },
11 | "include": ["src/**/*.ts"],
12 | "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
13 | }
14 |
--------------------------------------------------------------------------------
/packages/project-tee-starter/tsup.config.ts:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'tsup';
2 |
3 | export default defineConfig({
4 | entry: ['src/index.ts'],
5 | outDir: 'dist',
6 | tsconfig: './tsconfig.build.json', // Use build-specific tsconfig
7 | sourcemap: true,
8 | clean: true,
9 | format: ['esm'], // Ensure you're targeting CommonJS
10 | dts: false, // Skip DTS generation to avoid external import issues // Ensure you're targeting CommonJS
11 | external: [
12 | 'dotenv', // Externalize dotenv to prevent bundling
13 | 'fs', // Externalize fs to use Node.js built-in module
14 | 'path', // Externalize other built-ins if necessary
15 | 'https',
16 | 'http',
17 | 'zod',
18 | ],
19 | });
20 |
--------------------------------------------------------------------------------
/packages/project-tee-starter/vitest.config.ts:
--------------------------------------------------------------------------------
1 | import path from 'node:path';
2 | import { defineConfig } from 'vitest/config';
3 |
4 | export default defineConfig({
5 | test: {
6 | environment: 'node',
7 | globals: true,
8 | testTimeout: 60000,
9 | exclude: ['**/e2e/**', '**/node_modules/**'],
10 | deps: {
11 | inline: ['@elizaos/core'],
12 | },
13 | },
14 | resolve: {
15 | alias: {
16 | '@': path.resolve(__dirname, './src'),
17 | },
18 | },
19 | });
20 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ES2022",
4 | "module": "ES2022",
5 | "lib": ["ES2021.String"],
6 | "moduleResolution": "node",
7 | "esModuleInterop": true,
8 | "skipLibCheck": true,
9 | "forceConsistentCasingInFileNames": true,
10 | "allowImportingTsExtensions": true,
11 | "noEmit": true,
12 | "allowSyntheticDefaultImports": true,
13 | "baseUrl": ".",
14 | "paths": {
15 | "@elizaos/core": ["packages/core/src"],
16 | "@elizaos/core/*": ["packages/core/src/*"]
17 | }
18 | },
19 | "files": [],
20 | "references": [
21 | {
22 | "path": "packages/core"
23 | }
24 | ]
25 | }
26 |
--------------------------------------------------------------------------------