{
  "prompt_name": "weekly-newsletter",
  "category": "comms",
  "date": "2025-06-27",
  "generated_text": "# ElizaOS Weekly Newsletter - June 21-27, 2025\n\n## Executive Summary\n\nThis week has been transformative for the ElizaOS ecosystem with several major accomplishments:\n\n- **Plugin Architecture Revolution**: The team successfully completed the migration from project-scoped to agent-scoped plugins, allowing different characters to use different plugins for enhanced flexibility and customization.\n- **Type-Safe API Client**: The release of the new `@elizaos/api-client` package provides developers with robust TypeScript support and comprehensive API access.\n- **Enhanced Media Support**: Significant improvements to media handling including support for plain text files, image attachments, and better content formatting.\n\n## Development Updates\n\n### Architecture Improvements\n\nThe most significant change this week is the transformation of ElizaOS's plugin architecture from project-scoped to agent-scoped. PR #5270 by yungalgo completely revamped how plugins are managed, allowing different characters to use different plugin sets. This foundational change vastly improves flexibility for multi-agent setups and enables more specialized agent capabilities.\n\nAnother major milestone was the completion of the `@elizaos/api-client` package migration (PR #5240, #5263), which provides a type-safe way to interact with the ElizaOS API. This should significantly improve the developer experience when building applications on top of ElizaOS.\n\nFile handling also received attention with PR #5252 completing the migration from express-fileupload to multer for all upload functionality. The team also added support for user-uploaded plain text (.txt) files in the GUI (PR #5262) and improved attachment handling for both local and remote images (PR #5257, #5273).\n\n### UI/UX Enhancements\n\nThe client interface received substantial updates:\n- Enhanced chat UI with improved styling and components (PR #5111)\n- Fixed numerous chat issues including stuck \"agent is thinking\" states (PR #5274)\n- Restored GUI chat title generation (PR #5275)\n- Added background color to dialog content for better readability (PR #5248)\n\n### Bug Fixes\n\nSeveral critical bugs were addressed:\n- Fixed WebSocket/API communication issues causing responses to appear in memory but not in the chat UI\n- Fixed Ollama embedding selection and project loading issues (PR #5285)\n- Resolved issues with foreign key constraints in SQL plugin (PR #5287)\n- Fixed duplicate plugins problem in the GUI (PR #5091)\n\n## Community Spotlight\n\nDiscord has been active with technical support and troubleshooting. Several community members helped each other overcome challenges:\n\n- jintern provided detailed assistance to Manuel Barbas from SKALE on integrating the EVM plugin into the eliza-nextjs-starter repo, helping resolve connection issues between the frontend and backend.\n- Gnomon\ud83e\udeb2 helped multiple users with OpenRouter configuration, especially regarding embedding support, providing working configuration examples.\n- cjft shared updates on the Venice plugin (v1.0.13), which now includes image support, text-to-speech capabilities, and no longer depends on OpenAI for embeddings.\n\nThe community also discussed the temporal suspension of the elizaOS Twitter account, with the team actively working to resolve the issue with X.\n\n## Token Economics\n\nThere are significant developments in the ecosystem's tokenomics:\n\n- Borko confirmed that the team is actively working on changing the \"ai16z\" ticker\n- The community is speculating about potential token performance following the upcoming ElizaOS V2 release\n- Auto.fun continues gaining attention as a launchpad, especially as projects like Comput3 succeed\n\nCommunity discussions mentioned various tokens in the ecosystem (ELI5, JIMMY, DOT, Eddy), with expectations for significant growth in Q3 for AI agents, particularly if ElizaOS V2 succeeds.\n\n## Coming Soon\n\nThe team has several exciting features in the pipeline:\n\n1. **ElizaOS V2**: Shaw is actively working on V2, which appears to be nearing completion with \"v2 live docs\" mentioned in discussions\n2. **Media Format Expansion**: Implementation of 9:16 output format alongside 16:9 to support multiple platforms like TikTok\n3. **Agent Persona Development**: Creation of ecosystem agents with specific visual identities and voice personalities using Elevenlabs\n4. **Animation System**: Work continues on animation setup for 3D agent avatars, adding approximately 100 animations and emotions\n5. **Clank Tank Hackathon**: A coding competition utilizing a new version of Eliza is being prepared\n\n## Resources\n\n- Twitter Plugin Guide: https://eliza.how/docs/plugins/twitter\n- EVM Plugin Documentation: https://eliza.how/docs/plugins/evm\n- Postman Collection for ElizaOS API: PR #5239 (Updated)\n- New API Client Package: https://github.com/elizaos/eliza/tree/main/packages/api-client\n- Discord Support Channel: https://discord.gg/ai16z (Join #development-feed for assistance)\n\nThe ElizaOS ecosystem continues to evolve rapidly with strong development momentum and growing community involvement. The architectural improvements made this week set the stage for more flexible and powerful agent experiences in the coming months.",
  "source_references": [
    "2025-06-27\n---\n2025-06-26.md\n---\nFile not found\n---\n2025-06-25.md\n---\n# elizaOS Discord - 2025-06-25\n\n## Overall Discussion Highlights\n\n### Technical Support & Troubleshooting\n- Multiple users reported an issue where agent responses appear in memory but not in the chat UI, causing conversations to stall. This appears to be a websocket/API communication issue between the backend and frontend.\n- Docker deployment challenges were discussed, particularly for users trying to build images with specific plugins pre-installed. jintern provided guidance on modifying Dockerfiles.\n- Manuel Barbas from SKALE inquired about integrating the EVM plugin into the eliza-nextjs-starter repo, facing connection issues between frontend and backend.\n- Plugin compatibility across different ElizaOS versions (0.1.9, 0.25.9, 1.0.x) was discussed, with significant differences in configuration approaches between versions.\n\n### Platform & Features Development\n- The team is working on implementing 9:16 output format alongside 16:9 to support multiple platforms like TikTok.\n- Development of ecosystem agents with specific visual identities and voice personalities using Elevenlabs is underway.\n- Work continues on animation setup for 3D agent avatars, adding approximately 100 animations and emotions.\n- jin mentioned upcoming updates including an \"anxiety provider\" for Jintern to make responses more natural.\n- The \"Clank Tank hackathon edition\" is being completed to launch a coding competition and test a new version of Eliza.\n\n### Community & Business Updates\n- The elizaOS Twitter account has been suspended for 14 days, with the team in active dialogue with X to resolve the issue.\n- The team is actively working on changing the \"ai16z\" ticker, as confirmed by Borko.\n- Plans to create an ecosystem directory of top 50 builders were mentioned by Kenk.\n\n## Key Questions & Answers\n\n**Q: How can I pre-install a set of plugins to Docker Image for production?**  \nA: Modify the Dockerfile to include plugins after dependencies are installed with commands like `COPY ./packages/plugin-yourplugin ./packages/plugin-yourplugin` for each plugin, then list them in your agent character file under the plugins array.\n\n**Q: How do I setup my agents.ts file to use the `@Elizaos/plugin-evm` plugin?**  \nA: Import the plugin and add it to your agent's plugins array: `import { evmPlugin } from '@elizaos/plugin-evm'; export const defaultCharacter = { plugins: [evmPlugin] };`. Also ensure your .env has the right wallet/rpc configs.\n\n**Q: Why am I getting \"Error creating chat session: Error: Failed to create DM channel\" when running the eliza-nextjs-starter repo?**  \nA: The frontend can't connect to your eliza backend. Make sure the eliza server is running (usually on port 3000) before starting the nextjs app and check your .env file to ensure NEXT_PUBLIC_API_URL points to the right backend URL.\n\n**Q: What's causing the \"agent is thinking\" issue where responses appear in memories but not in chat?**  \nA: Likely a websocket/API communication issue between backend and frontend.\n\n**Q: How do I install and run elizaOS?**  \nA: Clone the repo with `git clone https://github.com/elizaos/eliza.git`, run `cd eliza && pnpm install`, copy `.env.example` to `.env` and add your API keys, then run `bun run start`.\n\n**Q: Are v0.1.9 plugins compatible with v0.25.9?**  \nA: No, the plugin system was reworked between versions.\n\n**Q: How can I trigger actions more reliably?**  \nA: LLM/prompts decide action picks; consider overriding bootstrap plugin.\n\n**Q: Can agents access memories?**  \nA: Yes, through the memory manager for conversation history, facts, and relationships.\n\n**Q: Will memories retrieve naturally based on related chat messages?**  \nA: Yes, automatically based on relevance without needing messageExamples or styles.\n\n## Community Help & Collaboration\n\n- **jintern helped Manuel Barbas (SKALE)** with EVM plugin integration issues, providing code examples and troubleshooting the connection between frontend and backend.\n\n- **jintern guided Robert** on setting up Docker images with pre-installed plugins for production environments, explaining how to modify Dockerfiles and configure agent character files.\n\n- **Gnomon\ud83e\udeb2 helped Chris** resolve action triggering issues by suggesting the deletion of all chats on the server as a workaround.\n\n- **jintern assisted Yasir** with Twitter plugin issues where newline characters were being displayed literally, suggesting text formatting solutions and plugin updates.\n\n- **sayonara provided Robert** with links to the correct plugin registry for v0.25.9, helping navigate version-specific configurations.\n\n- **cjft helped Luke \ud83c\udde6\ud83c\uddfa** troubleshoot chat getting stuck after a few messages, suggesting branch changes and cleanup procedures.\n\n## Action Items\n\n### Technical\n- Fix websocket/API communication issue causing responses to appear in memories but not in chat UI (Mentioned by Luke \ud83c\udde6\ud83c\uddfa)\n- Update plugin-twitter to handle newline characters properly (Mentioned by Yasir)\n- Fix CLI compatibility with plugin naming conventions (Mentioned by Odilitime)\n- Investigate action reliability issues (Mentioned by Chris)\n- Implement 9:16 output format alongside 16:9 to support multiple platforms (Mentioned by boom)\n- Create animation setup for 3D agent avatars with ~100 animations and emotions (Mentioned by boom)\n- Change the \"ai16z\" ticker (Mentioned by GBA ADVANCE, confirmed by Borko)\n- Add/enable \"anxiety provider\" to make Jintern's response rate more natural (Mentioned by jin)\n- Finish Clank Tank hackathon edition for vibe coding competition (Mentioned by jin)\n- Launch and battle test new Eliza (Mentioned by jin)\n- Integrate Farcaster access for jintern (Mentioned by Broccolex)\n\n### Documentation\n- Create migration guide for moving between ElizaOS versions (Mentioned by Robert)\n- Update plugin naming conventions documentation (Mentioned by Robert)\n- Create a guide titled \"To Make Agents Talk\" for implementing talking avatars (Mentioned by boom)\n- Create a public-facing guide for avatar blendkey implementation (Mentioned by boom)\n\n### Feature\n- Add plugin-knowledge to jintern for RAG capabilities (Mentioned by jin)\n- Create standalone Docker image that works with template (Mentioned by scottrepreneur)\n- Add Reddit plugin for ElizaOS v1.x (Mentioned by aith)\n- Enable autonomous capabilities in main repo (Mentioned by DorianD)\n- Add ecosystem agents to showcase elizaOS capabilities (Mentioned by Kenk)\n- Create an ecosystem directory of top builders (Mentioned by Kenk)\n---\n2025-06-24.md\n---\n# elizaOS Discord - 2025-06-24\n\n## Overall Discussion Highlights\n\n### ElizaOS V2 Development\n- Shaw is actively working on ElizaOS V2, which appears to be nearing completion\n- Community members expressed optimism about the upcoming V2 release\n- Reference to \"v2 live docs\" suggests documentation exists or is in development\n- Expectations for significant growth in Q3 for AI agents, especially if ElizaOS V2 succeeds\n\n### Token Ecosystem\n- Discussions about various tokens in the ecosystem (ELI5, JIMMY, DOT, Eddy)\n- Community members speculated about token performance following V2 release\n- Questions raised about the future of ai16z and degenai tokens with new token coming\n- Mentions of Auto.fun as a launchpad gaining attention when projects like Comput3 succeed\n\n### Plugin Development & Integration\n- Venice plugin received a significant update (v1.0.13) adding:\n  - Image support\n  - Text-to-speech capabilities\n  - Removal of OpenAI dependency for embeddings\n- OpenRouter plugin configuration challenges discussed, particularly with embedding support\n- Users needed to combine OpenRouter with OpenAI for embeddings or use Venice as alternative\n- Twitter plugin configuration requiring specific cookie authentication values\n- Discussions about potential ETH integration in the future\n\n### Technical Issues\n- Knowledge upload functionality issues in ElizaOS v1.0.11\n- Dead contributors link on elizaos.ai website (https://elizaos.github.io/profiles/)\n- Discord plugin configuration problems with token validation\n- Docker build issues with package installation failures\n- LiteLLM integration challenges with 404/429 errors\n\n### Governance & Community\n- Questions about voting rights and mechanisms\n- Speculation about potential government interest in ElizaOS\n- Mention that US government had previously added an ElizaOS plugin to ai.gov GitHub before removing it\n\n## Key Questions & Answers\n\n**Q: How do I configure OpenRouter plugin with embedding support?**  \nA: Place openrouter plugin before openai in your configuration, as OpenRouter doesn't work without an embedding provider.\n\n**Q: How do I use PM2 with the elizaOS CLI?**  \nA: Use the command `pm2 start elizaos --name my-agent --max-memory-restart 2G -- start --character my-agent.json`\n\n**Q: Is Shaw still in the Eliza project? Don't see Shaw account on X**  \nA: He's on Farcaster\n\n**Q: How can I integrate elizaos/web3-plugin in my backed folder, there is no npm package for it?**  \nA: Head to #dev-help channel for assistance\n\n## Community Help & Collaboration\n\n1. **OpenRouter Configuration Help**\n   - Helper: Gnomon\ud83e\udeb2\n   - Helpee: Luke \ud83c\udde6\ud83c\uddfa\n   - Context: OpenRouter plugin configuration with embedding support\n   - Resolution: Clarified that OPENAI_EMBEDDING_URL is outdated and shared working configuration\n\n2. **Venice Plugin Integration**\n   - Helper: cjft\n   - Helpee: Reneil\n   - Context: Venice plugin integration issues\n   - Resolution: Updated Venice plugin to v1.0.13 with image support, TTS, and removed OpenAI dependency for embeddings\n\n3. **Knowledge Upload API Troubleshooting**\n   - Helper: cjft\n   - Helpee: DrakeDinh\n   - Context: Knowledge upload API error with \"res.status is not a function\"\n   - Resolution: Fixed in ElizaOS v1.0.12 release\n\n4. **Twitter Plugin Setup**\n   - Helper: Gnomon\ud83e\udeb2\n   - Helpee: alank\n   - Context: Twitter plugin functionality\n   - Resolution: Confirmed plugin works and provided installation instructions via `elizaos plugs add @elizaos/plugin-twitter`\n\n5. **Web3 Plugin Integration**\n   - Helper: Kenk\n   - Helpee: Ore\n   - Context: Ore needed help integrating elizaos/web3-plugin in their backend folder\n   - Resolution: Kenk directed Ore to the #dev-help channel\n\n## Action Items\n\n### Technical\n- **Fix knowledge upload functionality in ElizaOS** (Mentioned by DrakeDinh)\n  - Address Multer error \"Unexpected end of form\" during document uploads\n- **Fix image upload in chat UI** (Mentioned by DorianD)\n  - Users experiencing errors when uploading images in chat\n- **Improve LiteLLM integration** (Mentioned by Reneil)\n  - Address 404/429 errors when connecting to LiteLLM servers\n- **Fix dead contributors link on elizaos.ai** (Mentioned by macs)\n  - The contributors link (https://elizaos.github.io/profiles/) leads to a non-functioning page\n- **Integrate web3-plugin in backend** (Mentioned by Ore)\n  - Need solution for integrating elizaos/web3-plugin without npm package\n\n### Feature\n- **Create character file validator** (Mentioned by jin)\n  - Tool to validate JSON character files\n- **Add Venice embeddings support** (Mentioned by cjft)\n  - Remove dependency on OpenAI for embeddings when using Venice\n- **Add Venice TTS support** (Mentioned by cjft)\n  - Integrate Venice text-to-speech capabilities\n- **ETH integration for ElizaOS** (Mentioned by 33coded)\n  - Shaw mentioned potential ETH integration in a previous livestream\n\n### Documentation\n- **Clarify plugin ordering requirements** (Mentioned by 0xbbjoker)\n  - Document how plugin order affects functionality, especially for embedding providers\n- **Improve Venice plugin documentation** (Mentioned by cjft)\n  - Update documentation with new environment variables and features\n- **Create documentation for ElizaOS V2** (Mentioned by wire)\n  - Reference to \"v2 live docs\" suggests documentation exists or is needed\n---\n2025-06-26.md\n---\nFile not found\n---\n2025-06-25.md\n---\nFile not found\n---\n2025-06-24.md\n---\nFile not found\n---\n2025-06-26.json\n---\nFile not found\n---\n2025-06-26.md\n---\nFile not found\n---\n2025-06-26.json\n---\nFile not found\n---\n2025-06-26.md\n---\nFile not found\n---\n2025-06-26.json\n---\nFile not found\n---\n2025-06-26.md\n---\nFile not found\n---\n2025-06-26.json\n---\nFile not found\n---\n2025-06-26.md\n---\nFile not found\n---\n2025-06-27.md\n---\nFile not found\n---\n2025-06-22.md\n---\n# ElizaOS Weekly Update (Jun 22 - 28, 2025)\n\n## OVERVIEW\nThis week saw significant architectural improvements to ElizaOS with a major shift from project-scoped to agent-scoped plugins, enhancing flexibility and customization. The team completed the migration to the new `@elizaos/api-client` package, improved model provider support with OpenRouter integration, and fixed numerous issues related to file uploads, embedding models, and UI functionality. The CLI experience was also enhanced with better environment variable configuration.\n\n## KEY TECHNICAL DEVELOPMENTS\n\n### Plugin Architecture & API Improvements\n- Transformed plugin architecture from project-scoped to agent-scoped, allowing different plugins for different characters ([#5270](https://github.com/elizaos/eliza/pull/5270))\n- Completed migration to the new type-safe `@elizaos/api-client` package ([#5263](https://github.com/elizaos/eliza/pull/5263), [#5240](https://github.com/elizaos/eliza/pull/5240))\n- Updated Postman collection to align with current API implementation ([#5239](https://github.com/elizaos/eliza/pull/5239))\n- Fixed API documentation accuracy and added migration guide for developers ([#5280](https://github.com/elizaos/eliza/pull/5280))\n\n### Model Provider & File Handling Enhancements\n- Added OpenRouter to model selection and improved embedding model selection ([#5264](https://github.com/elizaos/eliza/pull/5264))\n- Added support for user-uploaded plain text (.txt) files in the GUI ([#5262](https://github.com/elizaos/eliza/pull/5262))\n- Fixed Ollama embedding selection and project loading issues ([#5285](https://github.com/elizaos/eliza/pull/5285))\n- Completed migration from express-fileupload to multer for all upload functionality ([#5252](https://github.com/elizaos/eliza/pull/5252))\n- Improved attachment handling for both local and remote images ([#5257](https://github.com/elizaos/eliza/pull/5257), [#5273](https://github.com/elizaos/eliza/pull/5273))\n\n### CLI & Developer Experience\n- Enhanced plugin installation process with improved environment variable configuration ([#5291](https://github.com/elizaos/eliza/pull/5291))\n- Added Claude Code GitHub workflow for AI-assisted code reviews ([#5269](https://github.com/elizaos/eliza/pull/5269))\n- Centralized directory detection logic to eliminate code duplication ([#5246](https://github.com/elizaos/eliza/pull/5246))\n- Fixed package naming in templates to avoid workspace conflicts ([#5294](https://github.com/elizaos/eliza/pull/5294))\n- Improved AI provider tests to avoid brittle patterns ([#5283](https://github.com/elizaos/eliza/pull/5283))\n\n## CLOSED ISSUES\n\n### API & Upload Functionality\n- Resolved issue with broken upload feature after server API changes ([#5251](https://github.com/elizaos/eliza/issues/5251))\n- Fixed embedding model handler issue that was causing TEXT_EMBEDDING errors ([#5279](https://github.com/elizaos/eliza/issues/5279))\n\n### Developer Tooling\n- Fixed workspace naming conflict in plugin creation process ([#5292](https://github.com/elizaos/eliza/issues/5292))\n\n## NEW ISSUES\n\n### User Experience & Character Management\n- Large character files cannot be saved due to request size limitations ([#5268](https://github.com/elizaos/eliza/issues/5268))\n- Difficulties setting up projects with desired providers reported by users ([#5249](https://github.com/elizaos/eliza/issues/5249))\n\n### Plugin Development & Deployment\n- Request for guidance on creating custom plugins for onchain AI agents ([#5260](https://github.com/elizaos/eliza/issues/5260))\n- Need for documentation on best practices for deploying custom Eliza agents ([#5244](https://github.com/elizaos/eliza/issues/5244))\n\n### CLI Improvements\n- Need to migrate remaining CLI input methods to use @clack/prompts for consistency ([#5295](https://github.com/elizaos/eliza/issues/5295))\n- Migration of packages/client to leverage the new @elizaos/api-client ([#5259](https://github.com/elizaos/eliza/issues/5259))\n---\n2025-06-01.md\n---\n# ElizaOS Monthly Update (June 2025)\n\n## OVERVIEW\nJune was a transformative month for ElizaOS with significant architectural improvements across the framework. The team completed a major refactoring of the messaging system, enhanced plugin management, improved the CLI experience, and implemented comprehensive UI/UX updates. Key achievements include splitting core types for better modularity, reorganizing API routes into domain-based structures, and adding support for multiple AI providers including Ollama and Google Generative AI.\n\n## KEY TECHNICAL DEVELOPMENTS\n\n### Messaging System Refactoring\n- Completely refactored the message server to be standalone and separate from agents [#4864](https://github.com/elizaos/eliza/pull/4864)\n- Added API endpoints to manage channels and participants [#5113](https://github.com/elizaos/eliza/pull/5113)\n- Implemented real-time message deletion via SocketIO [#4968](https://github.com/elizaos/eliza/pull/4968)\n- Fixed agent cross-interference and self-response infinite loops [#4935](https://github.com/elizaos/eliza/pull/4935), [#4934](https://github.com/elizaos/eliza/pull/4934)\n\n### Plugin Architecture Enhancements\n- Added plugin specifications to core [#4851](https://github.com/elizaos/eliza/pull/4851)\n- Changed plugins from project-scoped to agent-scoped architecture [#5270](https://github.com/elizaos/eliza/pull/5270)\n- Enhanced plugin installation with environment variable prompting [#4945](https://github.com/elizaos/eliza/pull/4945)\n- Added dynamic loading of database tables and rebuilt plugin-sql [#5018](https://github.com/elizaos/eliza/pull/5018)\n- Created dummy services for testing plugin dependencies [#5030](https://github.com/elizaos/eliza/pull/5030)\n\n### Core Type System Improvements\n- Split the monolithic types.ts into granular files [#4999](https://github.com/elizaos/eliza/pull/4999)\n- Refactored and split core types for better organization [#5020](https://github.com/elizaos/eliza/pull/5020)\n- Added target to Content type [#5026](https://github.com/elizaos/eliza/pull/5026)\n- Implemented Zod-based character validation with safe JSON parsing [#5167](https://github.com/elizaos/eliza/pull/5167)\n\n### CLI Experience Enhancements\n- Migrated CLI prompts from prompts library to @clack/prompts [#5016](https://github.com/elizaos/eliza/pull/5016)\n- Added Ollama as AI provider option in create command [#5160](https://github.com/elizaos/eliza/pull/5160)\n- Added Google Generative AI support and refactored CLI prompts [#5217](https://github.com/elizaos/eliza/pull/5217)\n- Added OpenRouter to model selection & selection for embedding models [#5264](https://github.com/elizaos/eliza/pull/5264)\n- Optimized CLI project creation with Bun offline mode [#5087](https://github.com/elizaos/eliza/pull/5087)\n\n### UI/UX Improvements\n- Enhanced chat UI with improved styling and components [#5111](https://github.com/elizaos/eliza/pull/5111)\n- Added responsive design for character form and chat interface [#4974](https://github.com/elizaos/eliza/pull/4974)\n- Added retry button for user messages in chat [#4973](https://github.com/elizaos/eliza/pull/4973)\n- Implemented split button component and improved character form UI [#5000](https://github.com/elizaos/eliza/pull/5000)\n- Added responsive horizontal scrolling for character form [#4988](https://github.com/elizaos/eliza/pull/4988)\n- Handled sidebar on mobile and upgraded Tailwind [#4866](https://github.com/elizaos/eliza/pull/4866)\n\n### API and Server Enhancements\n- Reorganized API routes into logical domain-based structure [#5010](https://github.com/elizaos/eliza/pull/5010)\n- Split server package from CLI [#5122](https://github.com/elizaos/eliza/pull/5122)\n- Added comprehensive Postman collection for ElizaOS APIs [#5047](https://github.com/elizaos/eliza/pull/5047)\n- Added type-safe API client package [#5240](https://github.com/elizaos/eliza/pull/5240)\n- Completed migration of packages/client to @elizaos/api-client [#5263](https://github.com/elizaos/eliza/pull/5263)\n\n### Testing and Documentation\n- Added server tests, CLI tests, and plugin-sql tests [#5136](https://github.com/elizaos/eliza/pull/5136)\n- Added scenario test to bootstrap to check for \"hello world\" [#4998](https://github.com/elizaos/eliza/pull/4998)\n- Added comprehensive macOS setup guide [#4903](https://github.com/elizaos/eliza/pull/4903)\n- Added CLAUDE.md for AI assistant guidance [#5158](https://github.com/elizaos/eliza/pull/5158)\n- Updated README with comprehensive CLI documentation [#5059](https://github.com/elizaos/eliza/pull/5059)\n\n## CLOSED ISSUES\n\n### Twitter Integration Issues\n- Fixed Twitter client startup failures in new releases [#4894](https://github.com/elizaos/eliza/issues/4894)\n- Resolved issues with Twitter client not responding to mentions [#4272](https://github.com/elizaos/eliza/issues/4272)\n- Addressed action processing in Twitter client [#4405](https://github.com/elizaos/eliza/issues/4405)\n- Fixed Twitter bot detection of user activity [#4588](https://github.com/elizaos/eliza/issues/4588)\n\n### Plugin Management Problems\n- Resolved plugin installation failures for specific plugins [#4342](https://github.com/elizaos/eliza/issues/4342)\n- Fixed EVM plugin loading issues [#4819](https://github.com/elizaos/eliza/issues/4819)\n- Addressed plugin export member errors [#4744](https://github.com/elizaos/eliza/issues/4744)\n- Fixed local model issues in plugin development [#4339](https://github.com/elizaos/eliza/issues/4339)\n\n### API and Messaging Fixes\n- Resolved missing API endpoints for rooms [#4763](https://github.com/elizaos/eliza/issues/4763)\n- Fixed empty room lists despite agent participation [#4779](https://github.com/elizaos/eliza/issues/4779)\n- Addressed message persistence issues after failed sends [#4769](https://github.com/elizaos/eliza/issues/4769)\n- Fixed room creation via REST API [#4955](https://github.com/elizaos/eliza/issues/4955)\n\n### Installation and Environment Issues\n- Improved macOS compatibility with installation fallbacks [#4876](https://github.com/elizaos/eliza/issues/4876)\n- Fixed environment variable loading from .env files [#5005](https://github.com/elizaos/eliza/issues/5005)\n- Addressed documentation issues in quickstart guide [#4336](https://github.com/elizaos/eliza/issues/4336)\n- Fixed character file handling in fresh installations [#5228](https://github.com/elizaos/eliza/issues/5228)\n\n### UI and User Experience Improvements\n- Fixed inactive agents showing as active in sidebar [#4929](https://github.com/elizaos/eliza/issues/4929)\n- Added retry functionality for previous user messages [#4926](https://github.com/elizaos/eliza\n---\n{\n  \"interval\": {\n    \"intervalStart\": \"2025-06-01T00:00:00.000Z\",\n    \"intervalEnd\": \"2025-07-01T00:00:00.000Z\",\n    \"intervalType\": \"month\"\n  },\n  \"repository\": \"elizaos/eliza\",\n  \"overview\": \"From 2025-06-01 to 2025-07-01, elizaos/eliza had 370 new PRs (299 merged), 65 new issues, and 77 active contributors.\",\n  \"topIssues\": [\n    {\n      \"id\": \"I_kwDOMT5cIs66bOWK\",\n      \"title\": \"Knowledge management (RAG) not working (implemented) in 1.0.6\",\n      \"author\": \"harperaa\",\n      \"number\": 5004,\n      \"repository\": \"elizaos/eliza\",\n      \"body\": \"**Describe the bug**\\n\\nI am trying to get rag working and following docs, but that code is not implemented in 1.0.6.  It appears to be commented as a placeholder in \\n \\n**To Reproduce**\\n\\nsettings: {\\n    secrets: {},\\n    ragKnowledge: true,\\n  },\\n  knowledge: [\\n    {\\n      directory: 'knowledge/foobar',\\n      shared: true,\\n    },\\n  ],\\n\\n**Expected behavior**\\n\\nI expect that it would parse on startup and it was not doing that, as it used to do.  So, I looked into code and found this... summary from claude....\\n\\nMissing Implementation Locations\\n\\n  1. AgentRuntime Initialization Missing Knowledge \\n  Processing\\n\\n  File: /packages/core/src/runtime.ts (lines 494-651)\\n  - The AgentRuntime.initialize() method should process\\n  character.knowledge but doesn't\\n  - No call to any knowledge processing function during\\n  agent startup\\n\\n  2. TODO Comment Confirms Missing Implementation\\n\\n  File: /packages/core/src/specs/v1/index.ts (line 50)\\n  // TODO: Implement the remaining adapters: ... - \\n  knowledge / memory\\n  This is a developer comment explicitly stating that\\n  knowledge processing is not implemented yet.\\n\\n  3. Bootstrap Plugin Missing KNOWLEDGE Provider\\n\\n  File: /packages/plugin-bootstrap/src/providers/index.ts\\n  - Multiple message examples reference providers: \\n  ['KNOWLEDGE'] in character files\\n  - But the bootstrap plugin doesn't export any KNOWLEDGE \\n  provider\\n  - Provider list is incomplete - missing the knowledge\\n  provider entirely\\n\\n  4. RagService Interface Exists But No Implementation\\n\\n  File: /packages/core/src/runtime.ts (lines 52-61)\\n  interface RagServiceDelegator extends Service {\\n    getKnowledge(message: Memory, scope?: { roomId?: UUID;\\n   worldId?: UUID; entityId?: UUID }):\\n  Promise<KnowledgeItem[]>;\\n    _internalAddKnowledge(item: KnowledgeItem, options?:\\n  any, scope?: any): Promise<void>;\\n  }\\n  The interface exists but no actual implementation of\\n  this service.\\n\\n  5. Missing Functions\\n\\n  - processCharacterKnowledge() - Referenced in docs but\\n  doesn't exist anywhere\\n  - No knowledge file reading/processing logic\\n  - No connection between character.knowledge array and\\n  embedding system\\n\\n  Developer Comments Confirming This\\n\\n  The codebase has explicit TODO comments indicating that\\n  knowledge/memory functionality is intentionally \\n  unfinished. The character examples even reference\\n   a KNOWLEDGE provider that doesn't exist, suggesting\\n  this was planned but never implemented.\\n\\n\",\n      \"createdAt\": \"2025-06-08T00:06:14Z\",\n      \"closedAt\": \"2025-06-17T18:10:11Z\",\n      \"state\": \"CLOSED\",\n      \"commentCount\": 14\n    },\n    {\n      \"id\": \"I_kwDOMT5cIs66o8ku\",\n      \"title\": \"Callback from plugin action not making it to end user response in chat\",\n      \"author\": \"jonathanprozzi\",\n      \"number\": 5017,\n      \"repository\": \"elizaos/eliza\",\n      \"body\": \"**Describe the bug**\\n\\nIn using the `plugin-evm` transfer function we expect to see a followup message with either the success or failure of the transaction.\\n\\nIn the plugin's `transfer.ts` callback, we see the following:\\n\\nhttps://github.com/elizaos-plugins/plugin-evm/blob/6bf9c4c54b9e1a558c7fb092f071f2e374435887/src/actions/transfer.ts#L133\\n\\n```typescript\\n if (callback) {\\n        callback({\\n          text: `Successfully transferred ${paramOptions.amount} tokens to ${paramOptions.toAddress}\\\\nTransaction Hash: ${transferResp.hash}`,\\n          content: {\\n            success: true,\\n            hash: transferResp.hash,\\n            amount: formatEther(transferResp.value),\\n            recipient: transferResp.to,\\n            chain: paramOptions.fromChain,\\n          },\\n        });\\n      }\\n... (other error logging as well)\\n```\\n\\nWe see the following in our logs (added additional debugging console.log statements):\\n\\n```bash\\nLOG:in the transfer action\\nCALLBACK IN EVM_TRANSFER_TOKENS [AsyncFunction (anonymous)]\\nin the transferResponse try block\\ntransferResponse try block completed {\\n  hash: '0xd2680982067e0258612119a58497208428613debcd314d667bd758b93ea86ed8',\\n  from: '0x7850f8a9825d6dadfF5621300ee11f2dED76b76b',\\n  to: '0x25709998B542f1Be27D19Fa0B3A9A67302bc1b94',\\n  value: 20000000000000000n,\\n  data: '0x'\\n}\\n[2025-06-09 19:25:35] INFO: [Eliza] Agent generated response for message. Preparing to send back to bus.\\n[2025-06-09 19:25:35] INFO: [Eliza] MessageBusService: Sending payload to central server API endpoint (/api/messages/submit):\\n    channel_id: \\\"93487822-03c0-4119-bffc-13aca04fb41f\\\"\\n    server_id: \\\"00000000-0000-0000-0000-000000000000\\\"\\n    author_id: \\\"b850bc30-45f8-0041-a00a-83df46d8555d\\\"\\n    content: \\\"I'll help you transfer 0.02 ETH to 0x25709998B542f1Be27D19Fa0B3A9A67302bc1b94 on Sepolia. Processing the transaction now.\\\"\\n    in_reply_to_message_id: \\\"18489676-ba76-4673-9a39-9f17fe686bc3\\\"\\n    source_type: \\\"agent_response\\\"\\n    raw_message: {\\n      \\\"text\\\": \\\"I'll help you transfer 0.02 ETH to 0x25709998B542f1Be27D19Fa0B3A9A67302bc1b94 on Sepolia. Processing the transaction now.\\\",\\n      \\\"thought\\\": \\\"Process ETH transfer request on Sepolia network after checking balance\\\",\\n      \\\"actions\\\": [\\n        \\\"REPLY\\\",\\n        \\\"EVM_TRANSFER_TOKENS\\\"\\n      ]\\n    }\\n    metadata: {\\n      \\\"agent_id\\\": \\\"b850bc30-45f8-0041-a00a-83df46d8555d\\\",\\n      \\\"agentName\\\": \\\"Eliza\\\",\\n      \\\"channelType\\\": \\\"DM\\\",\\n      \\\"isDm\\\": true\\n    }\\n\\n```\\n\\nThe transfer is successful, but we only see the initial message of `\\\"text\\\": \\\"I'll help you transfer 0.02 ETH to 0x25709998B542f1Be27D19Fa0B3A9A67302bc1b94 on Sepolia. Processing the transaction now.\\\",` in the Eliza chat interface.\\n\\nWe would expect to see a followup message with the success (or failure) text from the callback in the `transfer.ts` function.\\n\\nWe also triggered an unsuccessful transaction and did not receive a followup error message which the callback suggests we should see.\\n\\n**To Reproduce**\\n\\n- Bare Eliza scaffolded as a fresh project with the `plugin-anthropic` and `plugin-evm` added:\\n\\n```bash\\n    \\\"@elizaos/cli\\\": \\\"^1.0.6\\\",\\n    \\\"@elizaos/core\\\": \\\"^1.0.6\\\",\\n    \\\"@elizaos/plugin-anthropic\\\": \\\"^1.0.0\\\",\\n    \\\"@elizaos/plugin-bootstrap\\\": \\\"^1.0.6\\\",\\n    \\\"@elizaos/plugin-evm\\\": \\\"file:../plugin-evm\\\",\\n    \\\"@elizaos/plugin-knowledge\\\": \\\"^1.0.1\\\",\\n    \\\"@elizaos/plugin-openai\\\": \\\"^1.0.3\\\",\\n    \\\"@elizaos/plugin-sql\\\": \\\"^1.0.6\\\",\\n    \\\"zod\\\": \\\"3.24.2\\\"\\n```\\n\\nand the following Character config:\\n\\n```typescript\\n name: 'Eliza',\\n  plugins: [\\n    '@elizaos/plugin-sql',\\n    ...(process.env.EVM_PRIVATE_KEY ? ['@elizaos/plugin-evm'] : []),\\n    ...(process.env.ANTHROPIC_API_KEY ? ['@elizaos/plugin-anthropic'] : []),\\n    ...(process.env.OPENAI_API_KEY ? ['@elizaos/plugin-openai'] : []),\\n    ...(process.env.OPENAI_API_KEY ? ['@elizaos/plugin-knowledge'] : []),\\n    ...(!process.env.OPENAI_API_KEY ? ['@elizaos/plugin-local-ai'] : []),\\n    ...(process.env.DISCORD_API_TOKEN ? ['@elizaos/plugin-discord'] : []),\\n    ...(process.env.TWITTER_USERNAME ? ['@elizaos/plugin-twitter'] : []),\\n    ...(process.env.TELEGRAM_BOT_TOKEN ? ['@elizaos/plugin-telegram'] : []),\\n    ...(!process.env.IGNORE_BOOTSTRAP ? ['@elizaos/plugin-bootstrap'] : []),\\n  ],\\n  settings: {\\n    secrets: {},\\n    chains: {\\n      evm: ['sepolia'],\\n    },\\n    ANTHROPIC_API_KEY: process.env.ANTHROPIC_API_KEY,\\n    ANTHROPIC_SMALL_MODEL: 'claude-3-5-sonnet-latest',\\n    ANTHROPIC_LARGE_MODEL: 'claude-3-5-sonnet-latest',\\n  },\\n\\n```\\nOur private key and RPC are configured and work as the transfer is successful.\\n\\n\\n**Expected behavior**\\n\\nBased on the callback in `transfer.ts` we expect to see a followup message indicating the success or failure of the transfer call.\\n\\n**Screenshots**\\n\\n![Image](https://github.com/user-attachments/assets/06dae3fa-9b2c-4e49-b660-42f2d9f9837f)\\n\\nAt this stage, the transfer succeeds but this is the last message we received.\\n\\nWe would expect that there would be a followup message after this indicating the success or the failure, including (or similar to) the text in the `transfer.ts` callback (in the `plugin-evm` plugin):\\n\\n`Successfully transferred ${paramOptions.amount} tokens to ${paramOptions.toAddress}\\\\nTransaction Hash: ${transferResp.hash}`\\n\\n**Additional context**\\n\\nWe're under the impression that this is a core callback issue and not with the `plugin-evm` itself as we're seeing similar behavior with a barebones example using the `plugin-mcp`. This is a more direct and more easily reproducible example to file.\\n\",\n      \"createdAt\": \"2025-06-09T19:45:43Z\",\n      \"closedAt\": \"2025-06-19T10:57:22Z\",\n      \"state\": \"CLOSED\",\n      \"commentCount\": 14\n    },\n    {\n      \"id\": \"I_kwDOMT5cIs66Hl5D\",\n      \"title\": \"Creating room via REST API first works but then returns empty rooms array\",\n      \"author\": \"exitsimulation\",\n      \"number\": 4955,\n      \"repository\": \"elizaos/eliza\",\n      \"body\": \"**Describe the bug**\\n\\nI am creating a room for an existing agent via the Rest API which returns a success response\\n\\nPOST `/api/agents/b850bc30-45f8-0041-a00a-83df46d8555d/rooms` with \\n```\\n{\\n  \\\"name\\\": \\\"TestRoom\\\",\\n  \\\"worldId\\\": \\\"00000000-0000-0000-0000-000000000000\\\",\\n  \\\"roomId\\\": \\\"c06bb360-e84f-49ff-b43a-75a9eb6df8f3\\\",\\n  \\\"enitityId\\\": \\\"b850bc30-45f8-0041-a00a-83df46d8555d\\\"\\n}\\n```\\n\\nResponse:\\n```\\n{\\n    \\\"success\\\": true,\\n    \\\"data\\\": {\\n        \\\"id\\\": \\\"143da10d-b1e5-00cb-b315-a64f6062d9de\\\",\\n        \\\"name\\\": \\\"TestRoom\\\",\\n        \\\"agentId\\\": \\\"b850bc30-45f8-0041-a00a-83df46d8555d\\\",\\n        \\\"createdAt\\\": 1749153906448,\\n        \\\"source\\\": \\\"client\\\",\\n        \\\"type\\\": \\\"dm\\\",\\n        \\\"worldId\\\": \\\"00000000-0000-0000-0000-000000000000\\\",\\n        \\\"serverId\\\": \\\"server-1749153906404\\\"\\n    }\\n}\\n```\\n\\nNow, the strange thing is then when I call the rooms endpoint via GET\\n`api/agents/b850bc30-45f8-0041-a00a-83df46d8555d/rooms`\\n\\nI am getting an empty array\\n\\n```\\n{\\n    \\\"success\\\": true,\\n    \\\"data\\\": {\\n        \\\"rooms\\\": []\\n    }\\n}\\n```\\n\\nAlso the ID in the success response is not the one that I supplied in the request.\\n\\nIt seems like internally the room has not been created despite the success response?\\n\\nIs this a bug in the current version? I am on 1.0.4. Any help would be appreciated!\",\n      \"createdAt\": \"2025-06-05T20:24:03Z\",\n      \"closedAt\": \"2025-06-18T21:24:30Z\",\n      \"state\": \"CLOSED\",\n      \"commentCount\": 11\n    },\n    {\n      \"id\": \"I_kwDOMT5cIs66yPsU\",\n      \"title\": \"Unable to load custom characters after upgrading to 1.0.7\",\n      \"author\": \"jonathanprozzi\",\n      \"number\": 5039,\n      \"repository\": \"elizaos/eliza\",\n      \"body\": \"**Describe the bug**\\n\\nAfter upgrading an existing project to use `@elizaos/core` version `1.0.7`, our custom character is no longer registered as an agent. Opening the chat interface/dev environment on `localhost` only shows Eliza as an agent and not our character. This previously worked with `1.0.6`. \\n\\nI tested with a newly scaffolded project and set up a character there as well and noticed the same behavior with only Eliza being shown as an agent.\\n\\n**To Reproduce**\\n\\n- Upgrade an existing project to use `\\\"@elizaos/core\\\": \\\"^1.0.7\\\"` or start a fresh one using this version\\n- Create a new character file with character settings and load that as the agent in the `index.ts`\\n- Start the server\\n- Open `localhost` to view the chat/dev environment and check if custom character is there -- we only saw Eliza and not our agent\\n\\nCode snippets for characters:\\n\\n`herbert.ts` snippet:\\n\\n```typescript\\nexport const herbert: Character = {\\n  name: 'Herbert',\\n  plugins: [\\n    '@elizaos/plugin-sql',\\n    ...(process.env.EVM_PRIVATE_KEY ? ['@elizaos/plugin-evm'] : []),\\n    ...(process.env.ANTHROPIC_API_KEY ? ['@elizaos/plugin-anthropic'] : []),\\n    ...(process.env.OPENAI_API_KEY ? ['@elizaos/plugin-openai'] : []),\\n    ...(process.env.OPENAI_API_KEY ? ['@elizaos/plugin-knowledge'] : []),\\n    ...(!process.env.OPENAI_API_KEY ? ['@elizaos/plugin-local-ai'] : []),\\n    ...(process.env.DISCORD_API_TOKEN ? ['@elizaos/plugin-discord'] : []),\\n    ...(process.env.TWITTER_USERNAME ? ['@elizaos/plugin-twitter'] : []),\\n    ...(process.env.TELEGRAM_BOT_TOKEN ? ['@elizaos/plugin-telegram'] : []),\\n    ...(!process.env.IGNORE_BOOTSTRAP ? ['@elizaos/plugin-bootstrap'] : []),\\n  ],\\n... (more settings)\\n}\\n```\\n\\n`index.ts`:\\n```typescript\\nconst herbertAgent: ProjectAgent = {\\n  character: herbert,\\n  init: async (runtime: IAgentRuntime) => initCharacter({ runtime }),\\n};\\nconst project: Project = {\\n  agents: [herbertAgent],\\n};\\n```\\n\\n**Expected behavior**\\n\\n- Expected that Eliza would find the new character (Herbert) and register it as an agent (previous behavior in existing project)\\n- We didn't change any config in the existing project but after upgrading versions we could no longer find/interact with Herbert\\n\\n**Additional context**\\n\\n- Tested this with both a newly scaffolded project as well as in an existing project. Our existing project had our custom agent/character loading but I then upgraded to `1.0.7` and Eliza is the only registered agent. Seems to possibly be using Eliza as a fallback and ignoring our custom character files, even though they're being detected when the server starts.\\n\",\n      \"createdAt\": \"2025-06-10T14:02:57Z\",\n      \"closedAt\": \"2025-06-11T05:11:31Z\",\n      \"state\": \"CLOSED\",\n      \"commentCount\": 8\n    },\n    {\n      \"id\": \"I_kwDOMT5cIs6z1G6x\",\n      \"title\": \"Doesn't work this evm plugin -> @elizaos/plugin-evm\",\n      \"author\": \"0xopsdev\",\n      \"number\": 4357,\n      \"repository\": \"elizaos/eliza\",\n      \"body\": \"I want to run evm ai agent with using plugin-evm\\nInside characters/degen.character.json file I set evm plugins and modelprovider as openai.\\nThen set openai key to .env file\\nI also import plugin-coingecko, but it works with fetch token price or etc.\\nBut If I want to swap tokens or transfer tokens, it doesn't work\\n\\n![Image](https://github.com/user-attachments/assets/caece970-2e01-4591-858c-1ea8842bdfd0)\",\n      \"createdAt\": \"2025-04-24T12:06:52Z\",\n      \"closedAt\": \"2025-06-03T21:27:46Z\",\n      \"state\": \"CLOSED\",\n      \"commentCount\": 7\n    }\n  ],\n  \"topPRs\": [\n    {\n      \"id\": \"PR_kwDOMT5cIs6bjrTf\",\n      \"title\": \"Next\",\n      \"author\": \"lalalune\",\n      \"number\": 5242,\n      \"body\": \"Roads? Where we're going, we don't need roads!\",\n      \"repository\": \"elizaos/eliza\",\n      \"createdAt\": \"2025-06-22T16:11:08Z\",\n      \"mergedAt\": null,\n      \"additions\": 1061352,\n      \"deletions\": 59800\n    },\n    {\n      \"id\": \"PR_kwDOMT5cIs6bNbeZ\",\n      \"title\": \"Eliza (AGI)\",\n      \"author\": \"lalalune\",\n      \"number\": 5194,\n      \"body\": \"This PR adds everything needed to enable Eilza, a new generally capable and intelligent agent who can self-improve.\\r\\n\\r\\nThis is a mega PR that changes several things necessary to enable much more expansive capability, including action chaining. Bootstrap has been refactored to message handling. Trust, Research, Secrets, Autonomy, Autocoder, Rolodex and Todo are all in development and will be pushed shortly to enable all of this.\",\n      \"repository\": \"elizaos/eliza\",\n      \"createdAt\": \"2025-06-19T08:07:07Z\",\n      \"mergedAt\": null,\n      \"additions\": 172067,\n      \"deletions\": 9954\n    },\n    {\n      \"id\": \"PR_kwDOMT5cIs6aiHxq\",\n      \"title\": \"feat: Split server package from CLI (continued shaw's PR)\",\n      \"author\": \"wtfsayo\",\n      \"number\": 5122,\n      \"body\": \"## Summary\\n- Split server functionality into separate `@elizaos/server` package\\n- Maintains full backward compatibility with existing CLI integrations\\n- Enables independent usage of server components\\n- Updated all CLI imports to use the new server package\\n\\n## Test plan\\n- [x] All existing CLI tests pass\\n- [x] Server package builds and exports correctly\\n- [x] Backward compatibility maintained\\n- [x] Integration tests verify CLI + server work together\\n- [x] Type safety preserved across package boundaries\\n\\nGenerated with [Claude Code](https://claude.ai/code)\",\n      \"repository\": \"elizaos/eliza\",\n      \"createdAt\": \"2025-06-14T14:36:18Z\",\n      \"mergedAt\": \"2025-06-15T19:40:08Z\",\n      \"additions\": 68264,\n      \"deletions\": 2875\n    },\n    {\n      \"id\": \"PR_kwDOMT5cIs6akiPi\",\n      \"title\": \"Add server, add tests\",\n      \"author\": \"lalalune\",\n      \"number\": 5125,\n      \"body\": \"This PR adds detailed tests to core, server, project-starter and plugin-starter\\r\\n\\r\\nProject-starter and plugin-starter have had frontends added with cypress testing, to make frontend development easier and more clear\",\n      \"repository\": \"elizaos/eliza\",\n      \"createdAt\": \"2025-06-15T05:58:46Z\",\n      \"mergedAt\": \"2025-06-15T07:32:19Z\",\n      \"additions\": 62764,\n      \"deletions\": 3574\n    },\n    {\n      \"id\": \"PR_kwDOMT5cIs6akL6T\",\n      \"title\": \"DRAFT feat: quickswap plugin \",\n      \"author\": \"monilpat\",\n      \"number\": 5123,\n      \"body\": \"<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\\r\\n\\r\\n# Relates to\\r\\n\\r\\n<!-- LINK TO ISSUE OR TICKET -->\\r\\n\\r\\n<!-- This risks section must be filled out before the final review and merge. -->\\r\\n\\r\\n# Risks\\r\\n\\r\\n<!--\\r\\nLow, medium, large. List what kind of risks and what could be affected.\\r\\n-->\\r\\n\\r\\n# Background\\r\\n\\r\\n## What does this PR do?\\r\\n\\r\\n## What kind of change is this?\\r\\n\\r\\n<!--\\r\\nBug fixes (non-breaking change which fixes an issue)\\r\\nImprovements (misc. changes to existing features)\\r\\nFeatures (non-breaking change which adds functionality)\\r\\nUpdates (new versions of included code)\\r\\n-->\\r\\n\\r\\n<!-- This \\\"Why\\\" section is most relevant if there are no linked issues explaining why. If there is a related issue, it might make sense to skip this why section. -->\\r\\n<!--\\r\\n## Why are we doing this? Any context or related work?\\r\\n-->\\r\\n\\r\\n# Documentation changes needed?\\r\\n\\r\\n<!--\\r\\nMy changes do not require a change to the project documentation.\\r\\nMy changes require a change to the project documentation.\\r\\nIf documentation change is needed: I have updated the documentation accordingly.\\r\\n-->\\r\\n\\r\\n<!-- Please show how you tested the PR. This will really help if the PR needs to be retested and probably help the PR get merged quicker. -->\\r\\n\\r\\n# Testing\\r\\n\\r\\n## Where should a reviewer start?\\r\\n\\r\\n## Detailed testing steps\\r\\n\\r\\n<!--\\r\\nNone: Automated tests are acceptable.\\r\\n-->\\r\\n\\r\\n<!--\\r\\n- As [anon/admin], go to [link]\\r\\n\u00a0 - [do action]\\r\\n\u00a0 - verify [result]\\r\\n-->\\r\\n\\r\\n<!-- If there is a UI change, please include before and after screenshots or videos. This will speed up PRs being merged. It is extra nice to annotate screenshots with arrows or boxes pointing out the differences. -->\\r\\n<!--\\r\\n## Screenshots\\r\\n### Before\\r\\n### After\\r\\n-->\\r\\n\\r\\n<!-- If there is anything about the deployment, please make a note. -->\\r\\n<!--\\r\\n# Deploy Notes\\r\\n-->\\r\\n\\r\\n<!-- \u00a0Copy and paste command line output. -->\\r\\n<!--\\r\\n## Database changes\\r\\n-->\\r\\n\\r\\n<!-- \u00a0Please specify deploy instructions if there is something more than the automated steps. -->\\r\\n<!--\\r\\n## Deployment instructions\\r\\n-->\\r\\n\\r\\n<!-- If you are on Discord, please join https://discord.gg/ai16z and state your Discord username here for the contributor role and join us in #development-feed -->\\r\\n<!--\\r\\n## Discord username\\r\\n\\r\\n-->\\r\\n\",\n      \"repository\": \"elizaos/eliza\",\n      \"createdAt\": \"2025-06-15T02:29:25Z\",\n      \"mergedAt\": null,\n      \"additions\": 57824,\n      \"deletions\": 75\n    }\n  ],\n  \"codeChanges\": {\n    \"additions\": 234761,\n    \"deletions\": 128130,\n    \"files\": 1047,\n    \"commitCount\": 1419\n  },\n  \"completedItems\": [\n    {\n      \"title\": \"Update README_MY.md\",\n      \"prNumber\": 4840,\n      \"type\": \"other\",\n      \"body\": \"<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\\r\\n\\r\\n# Relates to\\r\\n\\r\\n<!-- LINK TO ISSUE OR TICKET -->\\r\\n\\r\\n<!-- This risks section must be filled out before the final review \"\n    },\n    {\n      \"title\": \"LLM Based Conversion\",\n      \"prNumber\": 4832,\n      \"type\": \"other\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"feat: add tee starter project create cli \",\n      \"prNumber\": 4830,\n      \"type\": \"feature\",\n      \"body\": \"<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\\r\\n\\r\\n# Relates to\\r\\n\\r\\n<!-- LINK TO ISSUE OR TICKET -->\\r\\n\\r\\n<!-- This risks section must be filled out before the final review \"\n    },\n    {\n      \"title\": \"Bump the cargo group across 1 directory with 3 updates\",\n      \"prNumber\": 4854,\n      \"type\": \"other\",\n      \"body\": \"Bumps the cargo group with 3 updates in the /packages/app/src-tauri directory: [tauri-plugin-shell](https://github.com/tauri-apps/plugins-workspace), [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) and [tokio](https://github.\"\n    },\n    {\n      \"title\": \"Bump the npm_and_yarn group across 3 directories with 1 update\",\n      \"prNumber\": 4853,\n      \"type\": \"other\",\n      \"body\": \"Bumps the npm_and_yarn group with 1 update in the /packages/plugin-starter directory: [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest).\\nBumps the npm_and_yarn group with 1 update in the /packages/project-starter dire\"\n    },\n    {\n      \"title\": \"Add plugin specifications to core\",\n      \"prNumber\": 4851,\n      \"type\": \"feature\",\n      \"body\": \"This PR adds plugin specifications to core\\r\\n\\r\\nEverything should work as it has, and there should be no need to modify any code outside of core to engage this specification functionality.\\r\\n\\r\\nIn the future, plugins can be migrated to import t\"\n    },\n    {\n      \"title\": \"fix: add missing GET /agents/:agentId/rooms/:roomId API endpoint\",\n      \"prNumber\": 4860,\n      \"type\": \"feature\",\n      \"body\": \"<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\\r\\n\\r\\n# Relates to\\r\\n\\r\\nFixes #4763 \\r\\n\\r\\n<!-- This risks section must be filled out before the final review and merge. -->\\r\\n\\r\\n# \"\n    },\n    {\n      \"title\": \"fix: linter formatting issues\",\n      \"prNumber\": 4878,\n      \"type\": \"bugfix\",\n      \"body\": \"Fixes linter CI check.\"\n    },\n    {\n      \"title\": \"fix: docs readme build, agent name variable\",\n      \"prNumber\": 4877,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix errors in CHANGELOG.md\",\n      \"prNumber\": 4875,\n      \"type\": \"bugfix\",\n      \"body\": \"Hey team! Fixed error\\r\\n\\r\\nCHANGELOG.md\\r\\n`Seperated` - `Separated`\\r\\n`characteres` - `characters`\"\n    },\n    {\n      \"title\": \"chore: Enhances core package build process\",\n      \"prNumber\": 4874,\n      \"type\": \"other\",\n      \"body\": \"Refactors the core package's build process for improved modularity and maintainability.\\r\\n\\r\\n- Adds dedicated entry points for different API versions.\\r\\n- Updates the build configuration to use `tsup` for all build tasks.\\r\\n- Enables declaratio\"\n    },\n    {\n      \"title\": \"fix: elizaos start for plugins\",\n      \"prNumber\": 4873,\n      \"type\": \"bugfix\",\n      \"body\": \"fixes forceful telegram, discord plugins etc\"\n    },\n    {\n      \"title\": \"fix: Removes plugin-specification submodule\",\n      \"prNumber\": 4871,\n      \"type\": \"bugfix\",\n      \"body\": \"Removes the plugin-specification submodule from the repository.\\n\\nThis change simplifies the project structure by removing an unused submodule.\"\n    },\n    {\n      \"title\": \"fix: failing CLI CI test suites\",\n      \"prNumber\": 4870,\n      \"type\": \"bugfix\",\n      \"body\": \"## Summary\\nFix multiple failing test suites to achieve 100% test success rate. These comprehensive fixes address test expectation mismatches, improve error handling, and ensure CI pipeline stability.\\n\\n## Fixed Tests\\n\\n### 1. **test_plugins.b\"\n    },\n    {\n      \"title\": \"chore: Optimize plugin loading to reduce startup log spam\",\n      \"prNumber\": 4868,\n      \"type\": \"other\",\n      \"body\": \"## Summary\\r\\n- Implement smart strategy selection that checks file existence before attempting imports to find optimal path in one shot\\r\\n- Reorder import strategies to prioritize most likely successful paths (package.json entry first, then c\"\n    },\n    {\n      \"title\": \"Update README_IND.md\",\n      \"prNumber\": 4867,\n      \"type\": \"other\",\n      \"body\": \"<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\\r\\n\\r\\n# Relates to\\r\\n\\r\\n<!-- LINK TO ISSUE OR TICKET -->\\r\\n\\r\\n<!-- This risks section must be filled out before the final review \"\n    },\n    {\n      \"title\": \"feat: handle sidebar on mobile + tailwind upgrade\",\n      \"prNumber\": 4866,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\n- upgrade `tailwindcss` to v4\\n- migrate to `@tailwindcss/vite` plugin\\n- remove PostCSS tailwind plugin and related config\\n- center the `container` utility with `@utility`\\n\\n## Testing\\n- `npx vitest run --dir packages/client` *(fai\"\n    },\n    {\n      \"title\": \"Bump the npm_and_yarn group across 3 directories with 1 update\",\n      \"prNumber\": 4865,\n      \"type\": \"other\",\n      \"body\": \"Bumps the npm_and_yarn group with 1 update in the /packages/plugin-starter directory: [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest).\\nBumps the npm_and_yarn group with 1 update in the /packages/project-starter dire\"\n    },\n    {\n      \"title\": \"feat: refactor message server to be completely separate and standalone from agents\",\n      \"prNumber\": 4864,\n      \"type\": \"feature\",\n      \"body\": \"This PR updates the message server to use standalone and switches the core to use specs\\r\\n\\r\\nSummary by CodeRabbit\\r\\nNew Features\\r\\n\\r\\nIntroduced a centralized messaging system with support for servers, channels (including group and DM), partici\"\n    },\n    {\n      \"title\": \"Create .cursorrules\",\n      \"prNumber\": 4863,\n      \"type\": \"other\",\n      \"body\": \"This PR adds a .cursorrules which should help Cursor to stick the landing\"\n    },\n    {\n      \"title\": \"Add example of prompt injection for future LLM trainings\",\n      \"prNumber\": 4862,\n      \"type\": \"feature\",\n      \"body\": \"Since we have a top 1% repo we want to have a space in our docs for adding stuff that can be trained into the model\"\n    },\n    {\n      \"title\": \"chore: update blog post for twitter agent guide\",\n      \"prNumber\": 4895,\n      \"type\": \"other\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"docs: update README with accurate repository structure and package de\u2026\",\n      \"prNumber\": 4891,\n      \"type\": \"docs\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix(cli): resolve workspace dependencies in plugin loading\",\n      \"prNumber\": 4888,\n      \"type\": \"bugfix\",\n      \"body\": \"## Summary\\n- Fix BATS test failures by adding workspace dependency resolution to plugin loader\\n- Add `ELIZA_NONINTERACTIVE=true` environment variable to CI workflow\\n\\n## Test plan\\n- [x] Local BATS tests now pass\\n- [x] Plugin loading correctl\"\n    },\n    {\n      \"title\": \"merge main to develop\",\n      \"prNumber\": 4886,\n      \"type\": \"other\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"sync main <> dev\",\n      \"prNumber\": 4885,\n      \"type\": \"other\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"attempt: improve update command\",\n      \"prNumber\": 4884,\n      \"type\": \"other\",\n      \"body\": \"\\n\\n<!-- This is an auto-generated comment: release notes by coderabbit.ai -->\\n\\n## Summary by CodeRabbit\\n\\n- **Refactor**\\n\\t- Streamlined and modernized the update command for improved reliability and maintainability.\\n\\t- Enhanced error handling\"\n    },\n    {\n      \"title\": \"chore: update twitter envs\",\n      \"prNumber\": 4883,\n      \"type\": \"other\",\n      \"body\": \"This pull request introduces changes to standardize Twitter-related environment variables and configuration settings across multiple files and documentation. The key updates include renaming variables for consistency, adding missing variabl\"\n    },\n    {\n      \"title\": \"Update README_IND.md\",\n      \"prNumber\": 4882,\n      \"type\": \"other\",\n      \"body\": \"<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\\r\\n\\r\\n# Relates to\\r\\n\\r\\n<!-- LINK TO ISSUE OR TICKET -->\\r\\n\\r\\n<!-- This risks section must be filled out before the final review \"\n    },\n    {\n      \"title\": \"Update README_MY.md\",\n      \"prNumber\": 4880,\n      \"type\": \"other\",\n      \"body\": \"<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\\r\\n\\r\\n# Relates to\\r\\n\\r\\n<!-- LINK TO ISSUE OR TICKET -->\\r\\n\\r\\n<!-- This risks section must be filled out before the final review \"\n    },\n    {\n      \"title\": \"chore: clean .elizadb and .eliza on bun run clean\",\n      \"prNumber\": 4910,\n      \"type\": \"refactor\",\n      \"body\": \"Getting errors like:\\n\\n```\\n[2025-06-03 16:47:43] ERROR: Failed to run database migrations (pglite):\\n    message: \\\"(RuntimeError) unreachable\\\"\\n    stack: [\\n      \\\"RuntimeError: unreachable\\\",\\n      \\\"at wasm://wasm/01edd1ba:wasm-function[3611]:\"\n    },\n    {\n      \"title\": \"fix: dont throw for world settings\",\n      \"prNumber\": 4907,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"Main\",\n      \"prNumber\": 4906,\n      \"type\": \"other\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix(cli): resolve workspace dependencies in plugin loading\",\n      \"prNumber\": 4905,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: choice action - return false instead of throwing error during validation\",\n      \"prNumber\": 4904,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"feat: macos setup guide\",\n      \"prNumber\": 4903,\n      \"type\": \"feature\",\n      \"body\": \"## \ud83d\udccb Summary\\n\\nThis PR adds a comprehensive macOS development setup guide to help developers get started with Eliza on macOS systems. The guide addresses common setup issues and provides step-by-step instructions for a smooth development ex\"\n    },\n    {\n      \"title\": \"feat: Initialize Alethea AI Plugin Structure and Configuration (M4-00)\",\n      \"prNumber\": 4902,\n      \"type\": \"feature\",\n      \"body\": \"<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\\r\\n\\r\\n# Relates to\\r\\n\\r\\n<!-- LINK TO ISSUE OR TICKET -->\\r\\n\\r\\n<!-- This risks section must be filled out before the final review \"\n    },\n    {\n      \"title\": \"fix: plugin auto-import when starting from plugin directory\",\n      \"prNumber\": 4900,\n      \"type\": \"bugfix\",\n      \"body\": \"## Problem\\r\\nWhen running `elizaos start` from within a plugin directory, the plugin was not automatically imported and loaded into the default character, requiring manual configuration.\\r\\n\\r\\n## Solution\\r\\nThis PR fixes the plugin auto-import f\"\n    },\n    {\n      \"title\": \"chore: activate turbo cache\",\n      \"prNumber\": 4899,\n      \"type\": \"other\",\n      \"body\": \"This pull request focuses on improving the build and caching configurations for the project. Key changes include removing forced options in scripts, refining caching behavior, and adding specific outputs and inputs for tasks in the `turbo.j\"\n    },\n    {\n      \"title\": \"fix: foreign key issue in chat messages\",\n      \"prNumber\": 4898,\n      \"type\": \"bugfix\",\n      \"body\": \"Chat messages were broken on send. channeld was not being passed through.\\r\\n\\r\\n\\r\\n```\\r\\n[2025-06-03 04:38:22] ERROR: [SocketIO -e53_zI1X1FYfB4MAAAF] Error during central submission for message: insert or update on table \\\"central_messages\\\" viola\"\n    },\n    {\n      \"title\": \"Fix/core build missing entry points\",\n      \"prNumber\": 4897,\n      \"type\": \"bugfix\",\n      \"body\": \"**Problem**\\r\\n\\r\\nCLI plugin loading was failing with errors like export 'State' not found in './state' and export 'ActionExample' not found in './actionExample'. This prevented @elizaos/plugin-sql and other plugins from loading, causing the C\"\n    },\n    {\n      \"title\": \"chore: force bun in cli, add install docs\",\n      \"prNumber\": 4937,\n      \"type\": \"feature\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: ensureConnections order of op\",\n      \"prNumber\": 4936,\n      \"type\": \"bugfix\",\n      \"body\": \"## Fix: Foreign Key Constraint Violation in ensureConnections\\r\\n\\r\\n### Problem\\r\\nThe `ensureConnections` function was attempting to insert participants before ensuring the room exists, causing a foreign key constraint violation:\\r\\n\\r\\n```\\r\\n[2025-\"\n    },\n    {\n      \"title\": \"fix: agent cross interference loop\",\n      \"prNumber\": 4935,\n      \"type\": \"bugfix\",\n      \"body\": \"## Issue Summary\\n\\nFixed agent cross-chat interference in DM channels where multiple agents would respond to messages intended for a single agent. The root cause was incorrect metadata preservation causing `agent_response` messages to lose t\"\n    },\n    {\n      \"title\": \"fix: agent self-response infinite loop in message service\",\n      \"prNumber\": 4934,\n      \"type\": \"bugfix\",\n      \"body\": \"## Summary\\nFixed infinite loop where multiple agents were responding to each other's messages, creating endless back-and-forth conversations.\\n\\n## Root Cause\\nThe issue was that agents were processing and responding to any agent_response mess\"\n    },\n    {\n      \"title\": \"fix useVersion in client spamming\",\n      \"prNumber\": 4932,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"feat: chat ui improvements\",\n      \"prNumber\": 4930,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\n- Fix thought and action data persistence after page refresh by extracting from rawMessage in messages API\\n- Fix user message alignment to appear on right side of chat consistently across DM and GROUP modes  \\n- Fix inactive agent\"\n    },\n    {\n      \"title\": \"1.0.5 develop merge\",\n      \"prNumber\": 4928,\n      \"type\": \"other\",\n      \"body\": \"This pull request introduces several changes across multiple files, focusing on improving plugin development workflows, refining message handling logic, and simplifying client-side configurations. Key updates include the introduction of a n\"\n    },\n    {\n      \"title\": \"chore: update bun.lockb\",\n      \"prNumber\": 4925,\n      \"type\": \"other\",\n      \"body\": \"This PR updates the bun.lockb file to ensure it's in sync with the latest dependencies.\\n\\nAfter running `bun install`, no changes were detected in the lockfile, indicating that all dependencies are already up to date.\"\n    },\n    {\n      \"title\": \"chore: add bootstrap to package.json\",\n      \"prNumber\": 4922,\n      \"type\": \"feature\",\n      \"body\": \"make it easier for users to start (less log spam, gets installed during auto installation during create command)\"\n    },\n    {\n      \"title\": \"fix: eliza responding for other characters\",\n      \"prNumber\": 4920,\n      \"type\": \"bugfix\",\n      \"body\": \"\\n\\n<!-- This is an auto-generated comment: release notes by coderabbit.ai -->\\n\\n## Summary by CodeRabbit\\n\\n- **Bug Fixes**\\n  - Improved validation for direct message channels to ensure only authorized participants receive messages.\\n\\n- **New Fe\"\n    },\n    {\n      \"title\": \"fix(bootstrap): ensure action callbacks reach users and improve shouldRespond logic\",\n      \"prNumber\": 4919,\n      \"type\": \"bugfix\",\n      \"body\": \"## Relates to\\r\\n\\r\\nResolves issue where MCP tool responses and other non-REPLY actions were generated but never sent to users.\\r\\n\\r\\n## Risks\\r\\n\\r\\n**Low** - This is a bug fix that ensures action callbacks are properly transmitted. The change is is\"\n    },\n    {\n      \"title\": \"fix: remove duplicate @elizaos/cli dependency from root package.json\",\n      \"prNumber\": 4918,\n      \"type\": \"bugfix\",\n      \"body\": \"This PR fixes the bun install error caused by having `@elizaos/cli` listed as both a workspace package and a root dependency.\\n\\n### Changes\\n- Removed `@elizaos/cli` from root `package.json` dependencies since it's already available as a work\"\n    },\n    {\n      \"title\": \"fix: prevent circular dependency\",\n      \"prNumber\": 4917,\n      \"type\": \"bugfix\",\n      \"body\": \"# Fix Circular Dependency During Plugin Testing\\r\\n\\r\\n## \ud83d\udea8 Problem\\r\\n\\r\\nWhen plugin developers run `elizaos test` from within their plugin directory, the CLI encounters a critical circular dependency issue:\\r\\n\\r\\n1. **Test Command Execution**: `el\"\n    },\n    {\n      \"title\": \"fix: plugin route handler intercepting agent API routes\",\n      \"prNumber\": 4916,\n      \"type\": \"bugfix\",\n      \"body\": \"## Problem\\n\\nThe plugin route handler was incorrectly trying to handle standard agent API routes, causing debug messages like:\\n\\n```\\n[2025-06-04 08:57:23] DEBUG: No valid agentId in query. Trying global match for path: /api/agents/b850bc30-45\"\n    },\n    {\n      \"title\": \"windows compatibility\",\n      \"prNumber\": 4913,\n      \"type\": \"other\",\n      \"body\": \"This PR enables vanilla windows to build by fixing some dependencies on bash and symlinking\"\n    },\n    {\n      \"title\": \"fix: release ci versioning\",\n      \"prNumber\": 4960,\n      \"type\": \"bugfix\",\n      \"body\": \"Summary of the Fix:\\r\\nThe main issue was that the CI workflow was trying to publish packages without first updating their versions to match the release tag. Here's what I changed:\\r\\n\\r\\nExtract version from tag: Remove the 'v' prefix from the g\"\n    },\n    {\n      \"title\": \"Merge dev into main\",\n      \"prNumber\": 4958,\n      \"type\": \"other\",\n      \"body\": \"Merge dev into main\"\n    },\n    {\n      \"title\": \"remove faulty tests for now\",\n      \"prNumber\": 4957,\n      \"type\": \"tests\",\n      \"body\": \"This PR just comments out failing tests, we'll need to uncomment them at some point\"\n    },\n    {\n      \"title\": \"fix: right skip flag for plugins bats test\",\n      \"prNumber\": 4956,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix(bootstrap): ensure action callbacks reach users and improve shouldRespond logic\",\n      \"prNumber\": 4954,\n      \"type\": \"bugfix\",\n      \"body\": \"## Relates to\\r\\n\\r\\nResolves issue where MCP tool responses and other non-REPLY actions were generated but never sent to users.\\r\\n\\r\\n## Risks\\r\\n\\r\\n**Low** - This is a bug fix that ensures action callbacks are properly transmitted. The change is is\"\n    },\n    {\n      \"title\": \"fix: release versioning in client\",\n      \"prNumber\": 4952,\n      \"type\": \"bugfix\",\n      \"body\": \"This pull request introduces changes to the build and release process as well as enhancements to the versioning logic in the codebase. The most significant updates include modifying the `release` script in `package.json` to improve versioni\"\n    },\n    {\n      \"title\": \"fix: optimize plugin loading strategies and resolve core dependency conflicts\",\n      \"prNumber\": 4949,\n      \"type\": \"bugfix\",\n      \"body\": \"# Risks\\r\\n\\r\\n**Low** - These changes optimize existing functionality without breaking compatibility. Plugin loading still works for all plugin types, with improved performance and cleaner logs.\\r\\n\\r\\n# Background\\r\\n\\r\\n## What does this PR do?\\r\\n\\r\\n-\"\n    },\n    {\n      \"title\": \"Fix agent memory viewer not displaying memories\",\n      \"prNumber\": 4948,\n      \"type\": \"bugfix\",\n      \"body\": \"\\n\\n<!-- This is an auto-generated comment: release notes by coderabbit.ai -->\\n\\n## Summary by CodeRabbit\\n\\n- **New Features**\\n\\t- Added support for filtering agent memories by room, allowing users to view memories specific to a selected room.\\n\\n\"\n    },\n    {\n      \"title\": \"fix: make group creation work\",\n      \"prNumber\": 4946,\n      \"type\": \"bugfix\",\n      \"body\": \"creates group and redirects to new group chat\\n\\n<!-- This is an auto-generated comment: release notes by coderabbit.ai -->\\n\\n## Summary by CodeRabbit\\n\\n- **Refactor**\\n  - Updated the `ChannelType` enum values and related string literals from l\"\n    },\n    {\n      \"title\": \"feat: plugins add env var prompting\",\n      \"prNumber\": 4945,\n      \"type\": \"feature\",\n      \"body\": \"<img width=\\\"718\\\" alt=\\\"Screenshot 2025-06-05 at 9 43 30\u202fAM\\\" src=\\\"https://github.com/user-attachments/assets/991b4b60-dda7-469c-a60d-07bcf5b2f4a7\\\" />\\r\\n\\r\\nThis pull request enhances the plugin installation process in the CLI by adding support f\"\n    },\n    {\n      \"title\": \"fix: avoid infinite effect loop by guarding currentDmChannelId reset\",\n      \"prNumber\": 4944,\n      \"type\": \"bugfix\",\n      \"body\": \"This prevents the useEffect from retriggering itself due to setting currentDmChannelId: null while including it in the dependency array.\\r\\n\\r\\n![image](https://github.com/user-attachments/assets/db7032e7-2e51-400c-a2d2-77d202993e32)\\r\\n\"\n    },\n    {\n      \"title\": \"chore: auto install bun in CLI\",\n      \"prNumber\": 4943,\n      \"type\": \"other\",\n      \"body\": \"<img width=\\\"718\\\" alt=\\\"Screenshot 2025-06-05 at 7 13 31\u202fAM\\\" src=\\\"https://github.com/user-attachments/assets/baeea5a9-8095-4af9-b9ad-a8dd0897cfb2\\\" />\\r\\n\\r\\nThis pull request introduces a new feature for the ElizaOS CLI: automatic installation of\"\n    },\n    {\n      \"title\": \"fix errors cosmos.md\",\n      \"prNumber\": 4941,\n      \"type\": \"bugfix\",\n      \"body\": \"Hey team! Fixed errors\\r\\n\\r\\n`Successfuly` - `Successfully` x2\"\n    },\n    {\n      \"title\": \"chore: Migrate CLI tests from Bats to Bun TypeScript\",\n      \"prNumber\": 4978,\n      \"type\": \"tests\",\n      \"body\": \"## Summary\\n- Migrated all CLI tests from Bats shell scripts to TypeScript using Bun test runner\\n- Removed legacy `__test_scripts__/` directory and obsolete Bats-based tests\\n- Updated GitHub workflow to use new Bun TypeScript test suite\\n- Im\"\n    },\n    {\n      \"title\": \"fix: sidebar scroll behavior + add groups to sidebar\",\n      \"prNumber\": 4977,\n      \"type\": \"feature\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"chore: update messages api docs\",\n      \"prNumber\": 4976,\n      \"type\": \"other\",\n      \"body\": \"# What does this PR do?\\n\\nUpdates documentation for the messages API to provide complete and accurate information.\\n\\n## What kind of change is this?\\n\\nDocumentation changes\\n\\n## Documentation changes needed?\\n\\n\u2705 I have updated the documentation \"\n    },\n    {\n      \"title\": \"chore: nuke duplicate & update docs for api\",\n      \"prNumber\": 4975,\n      \"type\": \"other\",\n      \"body\": \"# Relates to\\n\\nCode cleanup and documentation improvements for API components.\\n\\n# Risks\\n\\n**Low** - Documentation and cleanup changes with minimal impact on functionality.\\n\\n# Background\\n\\n## What does this PR do?\\n\\nThis PR performs two main tas\"\n    },\n    {\n      \"title\": \"feat: \ud83c\udfa8 UI/UX Improvements: Responsive Character Form + Chat Interface Enhancements\",\n      \"prNumber\": 4974,\n      \"type\": \"feature\",\n      \"body\": \"## \ud83c\udfa8 UI/UX Improvements: Responsive Character Form + Chat Interface Enhancements\\n\\n### \ud83d\udcdd Summary\\nThis PR introduces comprehensive responsive design improvements and UI enhancements across multiple client components, focusing on better spac\"\n    },\n    {\n      \"title\": \"feat: Add retry button for user messages in chat\",\n      \"prNumber\": 4973,\n      \"type\": \"feature\",\n      \"body\": \"## \ud83d\udd04 Add Retry Button for User Messages in Chat\\n\\n### \ud83d\udcdd Description\\nAdds a retry button to user messages in chat bubbles, allowing users to easily resend previous messages without manually copying and pasting text. This addresses the frust\"\n    },\n    {\n      \"title\": \"feat: enhance UI/UX with responsive buttons, universal export system, and quick profile access\",\n      \"prNumber\": 4971,\n      \"type\": \"feature\",\n      \"body\": \"## \ud83c\udfa8 Enhanced UI/UX: Responsive Buttons, Export Functionality & Profile Access\\n\\nThis PR significantly improves the user experience across the ElizaOS client with responsive design enhancements, comprehensive export capabilities, and stream\"\n    },\n    {\n      \"title\": \"feat: update agent configuration on restart and move ensureAgentExist\u2026\",\n      \"prNumber\": 4970,\n      \"type\": \"feature\",\n      \"body\": \"## What does this PR do?\\n\\nMoves `ensureAgentExists` method from plugin-sql to runtime level where it belongs. The method was incorrectly placed in plugin-sql when it should be in runtime based on its operations and purpose.\\n\\n## What kind of\"\n    },\n    {\n      \"title\": \"fix: implement real-time message deletion via SocketIO\",\n      \"prNumber\": 4968,\n      \"type\": \"bugfix\",\n      \"body\": \"# Risks\\r\\n\\r\\n**Medium** - Changes to SocketIO event handling and API routing\\r\\n- Client-side state management modifications\\r\\n\\r\\n# Background\\r\\n\\r\\n## What does this PR do?\\r\\n\\r\\n- Add messageDeleted and channelCleared SocketIO events\\r\\n- Implement cli\"\n    },\n    {\n      \"title\": \"fix: Plugin Starter Template TypeScript Declarations, Standardize Git Ignores, Update READMEs\",\n      \"prNumber\": 4966,\n      \"type\": \"bugfix\",\n      \"body\": \"# Fix Plugin Starter Template TypeScript Declarations, Standardize Git Ignores, Update READMEs\\r\\n\\r\\n## Problem\\r\\n\\r\\n**Missing TypeScript Declaration Files in Published Plugins**\\r\\n\\r\\n- Plugins created from the `plugin-starter` template were missi\"\n    },\n    {\n      \"title\": \"fix: clean command\",\n      \"prNumber\": 4965,\n      \"type\": \"bugfix\",\n      \"body\": \"This pull request includes a minor update to the `clean` script in the `package.json` file. The order of operations in the script was adjusted to ensure that cleaning individual packages occurs before removing and reinstalling dependencies.\"\n    },\n    {\n      \"title\": \"refactor: Enhance create command with TEE support and improved logic\",\n      \"prNumber\": 4964,\n      \"type\": \"refactor\",\n      \"body\": \"**Problem**\\r\\n\\r\\nThe elizaos create command was becoming cluttered and lacked a unified structure for handling different types of project creation (projects, plugins, agents). Also I found it unintuitive to pass -tee as a flag for project to \"\n    },\n    {\n      \"title\": \"Fix/agent cli json and error handling\",\n      \"prNumber\": 4963,\n      \"type\": \"bugfix\",\n      \"body\": \"- tiny pr to cleanup agent command with an unecessary --json option on the agent start subcommand.\\r\\n- updated agent.md doc\\r\\n- updated cli doc to not include this option\\r\\n\\r\\nunaffected:\\r\\n\\r\\nelizaos agent get --json\\r\\nelizaos agent list --json\"\n    },\n    {\n      \"title\": \"dependencies cleanup\",\n      \"prNumber\": 4962,\n      \"type\": \"refactor\",\n      \"body\": \"# Dependencies Cleanup\\r\\n\\r\\n## Summary\\r\\nThis PR addresses critical dependency management issues in the monorepo that were causing build failures and CLI functionality problems.\\r\\n\\r\\n## Problem\\r\\n- Unnecessary dependencies in the monorepo were ca\"\n    },\n    {\n      \"title\": \"fix: remove logs\",\n      \"prNumber\": 4961,\n      \"type\": \"bugfix\",\n      \"body\": \"Removing logs.\"\n    },\n    {\n      \"title\": \"New types 2\",\n      \"prNumber\": 5001,\n      \"type\": \"other\",\n      \"body\": \"<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\\r\\n\\r\\n# Relates to\\r\\n\\r\\n<!-- LINK TO ISSUE OR TICKET -->\\r\\n\\r\\n<!-- This risks section must be filled out before the final review \"\n    },\n    {\n      \"title\": \"feat(client): Add split button component and improve character form UI\",\n      \"prNumber\": 5000,\n      \"type\": \"feature\",\n      \"body\": \"## \ud83d\ude80 Features\\n\\n### New Split Button Component\\n- **Reusable SplitButton component** with dropdown functionality for grouping related actions\\n- **Configurable options** with labels, descriptions, and individual click handlers\\n- **Variant sup\"\n    },\n    {\n      \"title\": \"feat: Split types.ts into granular files\",\n      \"prNumber\": 4999,\n      \"type\": \"feature\",\n      \"body\": \"This PR splits the gigantic types.ts into logical and granular sections\\r\\n\\r\\nNice for agentic search etc\"\n    },\n    {\n      \"title\": \"feat: Add scenario test to bootstrap to check for \\\"hello world\\\"\",\n      \"prNumber\": 4998,\n      \"type\": \"feature\",\n      \"body\": \"This demonstrates a live interaction between a test and an agent to verify that the agent said what we expected. We can build on this to validate that actions, providers, etc are giving us the correct information and performing as expected,\"\n    },\n    {\n      \"title\": \"minor docstring fixups\",\n      \"prNumber\": 4995,\n      \"type\": \"bugfix\",\n      \"body\": \"packages/docs/versioned_docs/version-0.25.9/changelog.md\\r\\n`promisses` - `promises`\\r\\n`formating` - `formatting`\\r\\n`evaulators` - `evaluators`\"\n    },\n    {\n      \"title\": \"chore: matrix run on all three platforms\",\n      \"prNumber\": 4993,\n      \"type\": \"other\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"chore: remove obsolete step from integration test CI\",\n      \"prNumber\": 4992,\n      \"type\": \"tests\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"chore: remove cache from cli-test that causes flaky tests\",\n      \"prNumber\": 4990,\n      \"type\": \"tests\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"chore: HMR client dev\",\n      \"prNumber\": 4989,\n      \"type\": \"other\",\n      \"body\": \"This pull request introduces several updates to the development workflow, build configurations, and client-server interaction, aiming to enhance development efficiency and improve maintainability. Key changes include the addition of a new `\"\n    },\n    {\n      \"title\": \"feat(client): add responsive horizontal scrolling for character form \u2026\",\n      \"prNumber\": 4988,\n      \"type\": \"feature\",\n      \"body\": \"# Relates to\\r\\n\\r\\nImproves user experience for character form navigation on mobile and smaller screen devices.\\r\\n\\r\\n# Risks\\r\\n\\r\\n**Low Risk** - UI/UX improvement that enhances responsive behavior without affecting core functionality.\\r\\n\\r\\n# Backgro\"\n    },\n    {\n      \"title\": \"fix: resolve env command interactive mode and flag inconsistencies\",\n      \"prNumber\": 4987,\n      \"type\": \"bugfix\",\n      \"body\": \"### Problem\\r\\n\\r\\nThree critical issues in `elizaos env` command causing unreliable environment management:\\r\\n\\r\\n1. **Infinite Loop**: `elizaos env interactive -y` loops forever, requiring Ctrl+C to exit\\r\\n2. **Flag Logic Bug**: `elizaos env list\"\n    },\n    {\n      \"title\": \"fix:publish command logging issues and conditional GitHub authentication\",\n      \"prNumber\": 4986,\n      \"type\": \"bugfix\",\n      \"body\": \"## Description\\r\\n\\r\\n**Problem:**\\r\\n- `elizaos publish -n` (npm-only) falsely claimed GitHub repository availability and required GitHub credentials\\r\\n- `elizaos publish -sr` (skip registry) showed contradictory registry messages  \\r\\n- Console me\"\n    },\n    {\n      \"title\": \"fix: Port Validation, Character File Handling Fix\",\n      \"prNumber\": 4985,\n      \"type\": \"bugfix\",\n      \"body\": \"# CLI Port Validation & Character File Handling Fix\\r\\n\\r\\n## Problem\\r\\n\\r\\nTwo CLI issues were identified and fixed in this PR:\\r\\n\\r\\n1. **Port validation** was happening at runtime instead of immediately during CLI argument parsing\\r\\n2. **Character \"\n    },\n    {\n      \"title\": \"Fix/plugins command empty string validation and help clarity\",\n      \"prNumber\": 4984,\n      \"type\": \"bugfix\",\n      \"body\": \"## Problem\\r\\n- Empty strings in `elizaos plugins add \\\"\\\"` would trigger fuzzy search matching, installing random plugins (e.g., \\\"plugin-0g\\\")\\r\\n- Help text for `plugins list` didn't clearly indicate that v1.x plugins are shown by default\\r\\n\\r\\n## \"\n    },\n    {\n      \"title\": \"feat:  push version back to main and make a pr to develop on release\",\n      \"prNumber\": 4983,\n      \"type\": \"feature\",\n      \"body\": \"When we tag a release, it doesnt save the version back to our code\\r\\n\\r\\nThis PR fixes our release (or should at least) so that versions are saved to the tag, pushed back to the main branch and a version update PR is made to develop. Or that's\"\n    },\n    {\n      \"title\": \"feat: add cursor rules\",\n      \"prNumber\": 4982,\n      \"type\": \"feature\",\n      \"body\": \"Adds .cursor project rules\"\n    },\n    {\n      \"title\": \"feat: simplify monorepo command and update documentation/tests\",\n      \"prNumber\": 4981,\n      \"type\": \"feature\",\n      \"body\": \"# Simplify Monorepo Command and Update Docs & Tests\\r\\n\\r\\n## Branch Name\\r\\n\\r\\n```\\r\\nfeat/simplify-monorepo-command-and-update-docs-tests\\r\\n```\\r\\n\\r\\n## PR Title\\r\\n\\r\\n```\\r\\nfeat: simplify monorepo command and update documentation/tests\\r\\n```\\r\\n\\r\\n## Problem\"\n    },\n    {\n      \"title\": \"fix: incorrect API URL used for message server when SERVER_PORT is not 3000\",\n      \"prNumber\": 4980,\n      \"type\": \"bugfix\",\n      \"body\": \"Currently, the GUI displays the following error message:\\r\\n\\r\\n```\\r\\nAgent not a participant in channel xxxx, ignoring message\\r\\n```\\r\\n\\r\\nThis occurs when the app is **not** running on port 3000 because the `SERVER_PORT` environment variable has b\"\n    },\n    {\n      \"title\": \"Fix CLI update from npm 1.0.5 to bun 1.0.6 by auto-migrating installations\",\n      \"prNumber\": 4979,\n      \"type\": \"bugfix\",\n      \"body\": \"# Fix CLI update from npm <1.0.5 to bun 1.0.6 by auto-migrating installations\\r\\n\\r\\n## Problem\\r\\n\\r\\nUsers with npm-installed CLI version <1.0.5 cannot update to version 1.0.6+ because ElizaOS switched from npm to bun as the primary package manag\"\n    },\n    {\n      \"title\": \"feat: add lockfile cleanup for GitHub fallback installations\",\n      \"prNumber\": 5009,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\n- Adds automatic lockfile cleanup when falling back to GitHub installations\\n- Prevents circular dependency issues during npm-to-GitHub fallback scenarios\\n\\n## Changes\\n- **New `removeFromBunLock()` function**: Safely removes packag\"\n    },\n    {\n      \"title\": \"fix typos gitcoin-passport.md\",\n      \"prNumber\": 5008,\n      \"type\": \"bugfix\",\n      \"body\": \"packages/docs/packages/plugins/gitcoin-passport.md\\r\\n`treshold` - `threshold`\\r\\n`retrive` - `retrieve`\"\n    },\n    {\n      \"title\": \"fix: attempt to fix matrix run on windows\",\n      \"prNumber\": 5007,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix(logs): resolve empty logs display with existing data\",\n      \"prNumber\": 5006,\n      \"type\": \"bugfix\",\n      \"body\": \"Fixes logs viewer incorrectly showing empty state when data is present.\"\n    },\n    {\n      \"title\": \"feat: exclude text embedding from view\",\n      \"prNumber\": 5003,\n      \"type\": \"feature\",\n      \"body\": \"Filters out text embedding content from debug logs to reduce noise and improve log readability.\"\n    },\n    {\n      \"title\": \"chore: v1.0.7\",\n      \"prNumber\": 5025,\n      \"type\": \"other\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"add buildGitHubSpecifier\",\n      \"prNumber\": 5024,\n      \"type\": \"feature\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: dup CI runs and cancel workflows on push\",\n      \"prNumber\": 5022,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"feat: replace cursor rules with elizaos/.cursor submodule\",\n      \"prNumber\": 5021,\n      \"type\": \"feature\",\n      \"body\": \"This PR replaces the .cursor folder with a submodule so we can share the .cursor folder across the team, update it and make it available anywhere in any plugin during development. I found I had to copy and paste across a lot of projects, an\"\n    },\n    {\n      \"title\": \"feat: refactor / split core types\",\n      \"prNumber\": 5020,\n      \"type\": \"feature\",\n      \"body\": \"This PR splits up core types, cleans up some issues, adds new service interfaces for common service types\\r\\n\\r\\nThis shouldn't break or change anything. Everything should continue to work on merge.\"\n    },\n    {\n      \"title\": \"chore: 1.0.7\",\n      \"prNumber\": 5019,\n      \"type\": \"other\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"feat: Dynamic loading of database tables, rebuild plugin-sql, \",\n      \"prNumber\": 5018,\n      \"type\": \"feature\",\n      \"body\": \"This is a big PR\\r\\n\\r\\n- Rewrite plugin-sql to dynamically migrate code\\r\\n- Rewrite CLI commands to load plugin dependencies, migrate db tables\\r\\n- Refactor types and add service types which can be inherited by dependent plugins\\r\\n\\r\\nOverall shoul\"\n    },\n    {\n      \"title\": \"feat: migrate CLI prompts from prompts library to @clack/prompts\",\n      \"prNumber\": 5016,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\nReplaces the legacy `prompts` library with modern `@clack/prompts` across all CLI commands for enhanced user experience and type safety.\\n\\n## Changes Made\\n- \u2705 **All CLI commands migrated**: create, env, publish, update, plugins\\n- \"\n    },\n    {\n      \"title\": \"chore: Parallelize CI actions.\",\n      \"prNumber\": 5015,\n      \"type\": \"other\",\n      \"body\": \"This pull request refactors several GitHub Actions workflows to optimize job execution by introducing setup jobs for dependency installation and caching, and by restructuring workflows to enable parallel execution of tasks. The changes focu\"\n    },\n    {\n      \"title\": \"chore: cache bun / models in github actions\",\n      \"prNumber\": 5014,\n      \"type\": \"other\",\n      \"body\": \"This pull request enhances the CI/CD workflows by introducing caching mechanisms to optimize dependency and model management. The changes aim to reduce build times and improve efficiency across various workflows.\\r\\n\\r\\n### Dependency Caching I\"\n    },\n    {\n      \"title\": \"fix: cleanup DB in E2E tests, make fresh unique DB, PGLITE_WASM_MODE: node\",\n      \"prNumber\": 5013,\n      \"type\": \"bugfix\",\n      \"body\": \"This pull request introduces changes to improve the handling of database directories during end-to-end (E2E) tests and updates the CI workflow configuration. The key changes include ensuring unique and clean database directories for each te\"\n    },\n    {\n      \"title\": \"chore: update versions\",\n      \"prNumber\": 5012,\n      \"type\": \"other\",\n      \"body\": \"update lagging versions\"\n    },\n    {\n      \"title\": \"refactor: centralize directory detection with monorepo support\",\n      \"prNumber\": 5011,\n      \"type\": \"refactor\",\n      \"body\": \"## Problem\\r\\n\\r\\nThe ElizaOS CLI had scattered and inconsistent directory detection logic throughout the codebase:\\r\\n\\r\\n1. **Missing monorepo structure detection** - No proper classification for subdirectories within the ElizaOS monorepo\\r\\n2. **S\"\n    },\n    {\n      \"title\": \"feat: Reorganize API routes into logical domain-based structure\",\n      \"prNumber\": 5010,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\n\\nThis PR implements a comprehensive API domain reorganization and improves the client-side confirmation UX.\\n\\n### Major API Domain Reorganization \ud83c\udfd7\ufe0f\\n\\n**Complete restructuring of the `/packages/cli/src/server/api/` directory:**\\n\\n-\"\n    },\n    {\n      \"title\": \"fix: load the env config before agent project is loaded\",\n      \"prNumber\": 5048,\n      \"type\": \"bugfix\",\n      \"body\": \"Fixes project load as project is loaded without .env.\\r\\n\\r\\nSo we need to load the .env first and only then we can proceed to project load otherwise we would need dynamic project load. \"\n    },\n    {\n      \"title\": \"chore: add comprehensive Postman collection for elizaOS APIs\",\n      \"prNumber\": 5047,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\n\u2022 Added complete Postman collection with 90+ REST API endpoints covering all Eliza framework APIs\\n\u2022 Fixed URL paths and organized endpoints into logical categories (agents, messaging, memory, audio, etc.)\\n\u2022 Includes collection va\"\n    },\n    {\n      \"title\": \"chore: Update docs\",\n      \"prNumber\": 5046,\n      \"type\": \"other\",\n      \"body\": \"Twitter plugin will be undergoing maintenance, updating docs to reflect that\\r\\n \\r\\n- \u2705 Added deprecation notices to Twitter plugin and client documentation\\r\\n- \u2705 Removed Twitter from main intro/README featured connectors lists\\r\\n- \u2705 Removed ent\"\n    },\n    {\n      \"title\": \"fix(plugin-sql): use correct agentId from memory in database operations\",\n      \"prNumber\": 5045,\n      \"type\": \"bugfix\",\n      \"body\": \"# Risks\\r\\n\\r\\n**Low risk** - This is a targeted bug fix that:\\r\\n- Affects only memory creation logic in plugin-sql\\r\\n- Improves data integrity without breaking existing functionality\\r\\n- Maintains backward compatibility\\r\\n- Adds permissive CSP rul\"\n    },\n    {\n      \"title\": \"Fix: Enable loading project agents when no character files specified\",\n      \"prNumber\": 5044,\n      \"type\": \"bugfix\",\n      \"body\": \"## Summary\\n- Enables automatic loading of project agents when no `--character` flag is provided to the start command\\n- Adds support for `ProjectAgent` type with initialization functions and plugins\\n- Improves agent discovery by checking pro\"\n    },\n    {\n      \"title\": \"chore: migrate all generated files into .eliza\",\n      \"prNumber\": 5043,\n      \"type\": \"other\",\n      \"body\": \"This pull request introduces a significant refactor to centralize and standardize the directory structure for CLI-generated data under a hidden `.eliza` folder in the project root. Additionally, it includes instrumentation enhancements and \"\n    },\n    {\n      \"title\": \"chore: OpenTelemetry instrumentation while preserving Sentry\",\n      \"prNumber\": 5042,\n      \"type\": \"other\",\n      \"body\": \"## Summary\\n- Complete removal of OpenTelemetry instrumentation and dependencies from the Eliza codebase\\n- Preserves all Sentry error tracking functionality as requested\\n\\n## Changes Made\\n- \u2705 Removed all 8 OpenTelemetry dependencies from pack\"\n    },\n    {\n      \"title\": \"fix: (cli) resolve double update messaging and improve elizaos update instructions\",\n      \"prNumber\": 5041,\n      \"type\": \"bugfix\",\n      \"body\": \"## Problem\\r\\n\\r\\nThe CLI had two messaging issues:\\r\\n\\r\\n1. **Double messaging**: When running `elizaos update`, the banner showed an update notification before the update command itself ran, creating redundant messaging\\r\\n2. **Incorrect update in\"\n    },\n    {\n      \"title\": \"chore: remove model caching since its slower\",\n      \"prNumber\": 5038,\n      \"type\": \"other\",\n      \"body\": \"its faster do download models than caching / un-compressing\"\n    },\n    {\n      \"title\": \"refactor: reorganize cli commands into modular structure\",\n      \"prNumber\": 5036,\n      \"type\": \"refactor\",\n      \"body\": \"## Summary\\r\\n\\r\\nComprehensive refactoring of ALL major CLI commands from monolithic architecture to modular structure for improved maintainability and scalability. This PR systematically transforms large single-file implementations into well-\"\n    },\n    {\n      \"title\": \"fix: remove message from chat UI on delete\",\n      \"prNumber\": 5035,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: chat history selector reloads\",\n      \"prNumber\": 5034,\n      \"type\": \"bugfix\",\n      \"body\": \"Clicking the chat history did not reload the chats.\\r\\n\\r\\nThis pull request adds a safeguard to ensure that the current DM channel is cleared if it does not belong to the active agent, improving the handling of agent switching in the `Chat` co\"\n    },\n    {\n      \"title\": \"fix: onboarding user settings error\",\n      \"prNumber\": 5033,\n      \"type\": \"bugfix\",\n      \"body\": \"```\\r\\n[2025-06-10 10:32:52] ERROR: No world found for user during onboarding\\r\\n[2025-06-10 10:32:52] ERROR: Critical error in settings provider: Error: No server ownership found for onboarding\\r\\n```\\r\\n\\r\\nThis pull request introduces enhancements\"\n    },\n    {\n      \"title\": \"fix: convert dates, fix agent create\",\n      \"prNumber\": 5032,\n      \"type\": \"bugfix\",\n      \"body\": \"```\\r\\n[2025-06-10 10:22:37] ERROR: Error updating agent:\\r\\n    agentId: \\\"524873bf-6a97-050d-b70f-673063e0e163\\\"\\r\\n    agent: {\\r\\n      \\\"id\\\": \\\"524873bf-6a97-050d-b70f-673063e0e163\\\",\\r\\n      \\\"enabled\\\": true,\\r\\n      \\\"createdAt\\\": 1749550954067,\\r\\n    \"\n    },\n    {\n      \"title\": \"chore: fix typos\",\n      \"prNumber\": 5031,\n      \"type\": \"bugfix\",\n      \"body\": \"<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\\r\\n\\r\\n# Relates to\\r\\n\\r\\n<!-- LINK TO ISSUE OR TICKET -->\\r\\n\\r\\n<!-- This risks section must be filled out before the final review \"\n    },\n    {\n      \"title\": \"feat: add dummy services\",\n      \"prNumber\": 5030,\n      \"type\": \"feature\",\n      \"body\": \"This PR adds dummy services which can be depended on by other plugins\\r\\n\\r\\nAll shared service types should have a dummy implementation for use in testing\"\n    },\n    {\n      \"title\": \"fix: remove truncate\",\n      \"prNumber\": 5028,\n      \"type\": \"bugfix\",\n      \"body\": \"We don't need to truncate Twitter posts manually. I've already handled this in the Twitter plugin: if a post exceeds 280 characters and the account isn't premium, it falls back to truncateToCompleteSentence.\\r\\n\\r\\n\\r\\nhttps://github.com/elizaos-\"\n    },\n    {\n      \"title\": \"fix: Ensure waitForServer uses SERVER_PORT env if provided\",\n      \"prNumber\": 5027,\n      \"type\": \"bugfix\",\n      \"body\": \"I ran into this issue on a port other than 3000 (in my case, 3050). \\r\\nThis happened because the waitForServer() function was hardcoded to check http://localhost:3000/api/ping, ignoring the SERVER_PORT environment variable.\\r\\n\\r\\nThis PR update\"\n    },\n    {\n      \"title\": \"feat: Add target to Content\",\n      \"prNumber\": 5026,\n      \"type\": \"feature\",\n      \"body\": \"# Risks\\r\\n\\r\\nLow\\r\\n\\r\\n# Background\\r\\n\\r\\n## What does this PR do?\\r\\n\\r\\nadd an optional target to Content type\\r\\n\\r\\n## What kind of change is this?\\r\\n\\r\\nImprovements (misc. changes to existing features)\\r\\n\\r\\n## Why are we doing this? Any context or related\"\n    },\n    {\n      \"title\": \"fix: normalize plugin name\",\n      \"prNumber\": 5071,\n      \"type\": \"bugfix\",\n      \"body\": \"## What does this PR do?\\n\\nSmall fix to normalize plugin names for consistency.\\n\\n## What kind of change is this?\\n\\nBug fix (non-breaking change which fixes an issue)\"\n    },\n    {\n      \"title\": \"Revert \\\"feat: update prompt, change actions logic, adjust for respons\u2026\",\n      \"prNumber\": 5068,\n      \"type\": \"other\",\n      \"body\": \"# Revert \\\"feat: update prompt, change actions logic, adjust for responses instead callback\\\"\\r\\n\\r\\nThis reverts commit e040c1541.\\r\\n\\r\\n## \u26a0\ufe0f Important Note\\r\\n\\r\\n**This revert is a temporary solution and not the desired long-term approach.** We are \"\n    },\n    {\n      \"title\": \"chore: remove mock test from cli package\",\n      \"prNumber\": 5065,\n      \"type\": \"tests\",\n      \"body\": \"we have extensive real tests\"\n    },\n    {\n      \"title\": \"fix: api routes\",\n      \"prNumber\": 5062,\n      \"type\": \"bugfix\",\n      \"body\": \"Small fix for API routes.\"\n    },\n    {\n      \"title\": \"chore: Update README with comprehensive CLI documentation\",\n      \"prNumber\": 5059,\n      \"type\": \"docs\",\n      \"body\": \"## Summary\\n- Replace starter-focused instructions with CLI-first approach for better user experience\\n- Add comprehensive CLI installation guide with step-by-step instructions\\n- Include complete command reference with examples and advanced u\"\n    },\n    {\n      \"title\": \"fix: update Content Security Policy and error handling in API routes\",\n      \"prNumber\": 5058,\n      \"type\": \"bugfix\",\n      \"body\": \"# Risks\\n\\nLow to Medium. Changes affect Content Security Policy which could impact iframe functionality and API error responses. Could potentially affect frontend display if CSP is too restrictive or break existing integrations expecting dif\"\n    },\n    {\n      \"title\": \"Revert removal of callback and isPlan logic\",\n      \"prNumber\": 5056,\n      \"type\": \"other\",\n      \"body\": \"This PR reverts the removal of the callback from actions. That change prevented other actions from accessing the callback.\\r\\n\\r\\nIt also reverts the isPlan logic, which was preventing the agent from sending messages in the reply action. Additi\"\n    },\n    {\n      \"title\": \"chore: update twitter envs\",\n      \"prNumber\": 5055,\n      \"type\": \"other\",\n      \"body\": \"This pull request updates Twitter plugin configuration across multiple files to replace legacy username/password-based authentication with API-based authentication using Twitter API keys, tokens, and secrets. It also introduces new environm\"\n    },\n    {\n      \"title\": \"fix: fix `bun run dev`\",\n      \"prNumber\": 5054,\n      \"type\": \"bugfix\",\n      \"body\": \"- update health check URL\\r\\n- node => bun\\r\\n\\r\\n# Risks\\r\\n\\r\\nLow\\r\\n\\r\\n# Background\\r\\n\\r\\n## What does this PR do?\\r\\n\\r\\nmakes `bun run dev` work\\r\\n\\r\\n## What kind of change is this?\\r\\n\\r\\nBug fixes (non-breaking change which fixes an issue)\\r\\n\\r\\n## Why are we d\"\n    },\n    {\n      \"title\": \"chore: v1.0.8\",\n      \"prNumber\": 5051,\n      \"type\": \"other\",\n      \"body\": \"includes PRs:\\r\\n\\r\\n- #5026\\r\\n- #5028\\r\\n- #5027\\r\\n- #5018\\r\\n- #5016\\r\\n- #5010\\r\\n- #5038\\r\\n- #5042\\r\\n- #5041\\r\\n- #5031\\r\\n- #5032\\r\\n- #5034\\r\\n- #5035\\r\\n- #4968\\r\\n- #5033\\r\\n- #5036\\r\\n- #5030\\r\\n- #5044\\r\\n- #5048\\r\\n- #5043\\r\\n- #5049\\r\\n- #5047\\r\\n- #5050 \"\n    },\n    {\n      \"title\": \"fix: update prompt, change actions logic, adjust for responses inste\u2026\",\n      \"prNumber\": 5050,\n      \"type\": \"bugfix\",\n      \"body\": \"## \ud83d\udd27 Major Refactor: Actions Logic - Callback to Responses\\n\\n### Overview\\nThis PR implements a significant architectural change by refactoring the actions logic from callback-based patterns to response-based patterns. This change provides b\"\n    },\n    {\n      \"title\": \"fix: dup chats\",\n      \"prNumber\": 5049,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: linting + dev command in plugins\",\n      \"prNumber\": 5096,\n      \"type\": \"bugfix\",\n      \"body\": \"Attemptss to fix https://github.com/elizaOS/eliza/issues/5095\\n\\n<!-- This is an auto-generated comment: release notes by coderabbit.ai -->\\n\\n## Summary by CodeRabbit\\n\\n- **New Features**\\n  - Added an optional property to test command options, \"\n    },\n    {\n      \"title\": \"fix: prompt to order actions and action description\",\n      \"prNumber\": 5094,\n      \"type\": \"bugfix\",\n      \"body\": \"Fixes prompt ordering for actions and improves action descriptions to ensure consistent behavior.\"\n    },\n    {\n      \"title\": \"fix: remove reply action shortcut\",\n      \"prNumber\": 5093,\n      \"type\": \"bugfix\",\n      \"body\": \"This code was initially implemented to handle cases where the agent's response is not a simple reply action. In such cases, the reply action checks if dynamic providers are missing, and if so, it simply calls back the response message using\"\n    },\n    {\n      \"title\": \"Fix: Runtime Initialization and Database Adapter Handling\",\n      \"prNumber\": 5092,\n      \"type\": \"bugfix\",\n      \"body\": \"# Fix Runtime Initialization and Database Adapter Handling\\r\\n\\r\\n## Overview\\r\\n\\r\\nThis PR addresses critical issues in the Eliza runtime's initialization process and database adapter handling, focusing on stability and proper agent ID synchroniz\"\n    },\n    {\n      \"title\": \"fix: duplicate plugins\",\n      \"prNumber\": 5091,\n      \"type\": \"bugfix\",\n      \"body\": \"related: https://github.com/elizaOS/eliza/issues/5086\\r\\n\\r\\nThis issue occurs because, in the usePlugins hook, we merge agentPlugins (using the @elizaos/ prefix) with registryPlugins (using the @elizaos-plugins/ prefix). As a result, the line:\"\n    },\n    {\n      \"title\": \"fix: envs loading on default eliza\",\n      \"prNumber\": 5090,\n      \"type\": \"bugfix\",\n      \"body\": \"Fix for envs not loading in bun run start with default character eliza.\\nThis moves the loadEnvs function higher up since was only being called for project agents.\"\n    },\n    {\n      \"title\": \"Add agentId to MessageBusService log output\",\n      \"prNumber\": 5088,\n      \"type\": \"feature\",\n      \"body\": \"updates the logging in MessageBusService to include the agent's ID\"\n    },\n    {\n      \"title\": \"feat: optimize CLI project creation with Bun offline mode\",\n      \"prNumber\": 5087,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\nOptimizes CLI project creation performance in CI environments by leveraging Bun's offline mode to use cached packages instead of re-downloading them.\\n\\n## Changes\\n- **Add `preferOffline` option** to `runBunCommand` for faster inst\"\n    },\n    {\n      \"title\": \"Fixes CSP (Content Security Policy) \",\n      \"prNumber\": 5085,\n      \"type\": \"bugfix\",\n      \"body\": \"Fixes CSP (Content Security Policy) related issues in the web interface.\\n\\n**Changes:**\\n- Addresses content security policy configuration\\n- Removes accidentally committed test character file from previous commits\\n\\nThis PR is now clean and re\"\n    },\n    {\n      \"title\": \"fix: remove default bot\",\n      \"prNumber\": 5083,\n      \"type\": \"bugfix\",\n      \"body\": \"This PR removes the Default Message Bus Agent. However, after removing its creation, I encountered the following error:\\r\\n\\r\\n<img width=\\\"883\\\" alt=\\\"Screenshot 2025-06-12 at 9 50 01\u202fPM\\\" src=\\\"https://github.com/user-attachments/assets/d9770742-2\"\n    },\n    {\n      \"title\": \"fix: TypeScript version inconsistencies and test timeouts\",\n      \"prNumber\": 5082,\n      \"type\": \"bugfix\",\n      \"body\": \"## Summary\\n- Standardizes all packages to use exact TypeScript version 5.8.2\\n- Fixes CLI create test timeouts that were causing CI failures\\n- Resolves peer dependency warnings during package installation\\n\\n## Changes Made\\n- **Root package.js\"\n    },\n    {\n      \"title\": \"chore: remove test mode guard for installing dep\",\n      \"prNumber\": 5081,\n      \"type\": \"tests\",\n      \"body\": \"caching should make it fast (was removed due to slowness)\"\n    },\n    {\n      \"title\": \"chore: optimize CLI performance for create and plugins commands\",\n      \"prNumber\": 5080,\n      \"type\": \"other\",\n      \"body\": \"improve test perf\"\n    },\n    {\n      \"title\": \"docs(agent): replace -t with --type in CLI examples\",\n      \"prNumber\": 5078,\n      \"type\": \"docs\",\n      \"body\": \"The \u201cCreate Agent character\u201d examples still used the deprecated short flag `-t`:\\r\\n\\r\\n    elizaos create -t agent eliza\\r\\n\\r\\nRecent versions of the CLI reject that flag with:\\r\\n\\r\\n    error: unknown option '-t'\\r\\n\\r\\nAll examples now use the long-fo\"\n    },\n    {\n      \"title\": \"fix: clean bun lock + use local bootstrap (should fix slow tests)\",\n      \"prNumber\": 5075,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: disable CSP in development to resolve Safari localhost SSL errors\",\n      \"prNumber\": 5073,\n      \"type\": \"bugfix\",\n      \"body\": \"Fix Safari GUI loading issue caused by Content Security Policy's upgrade-insecure-requests directive\\r\\n\\r\\n**Problem:**\\r\\n- Safari was failing to load the ElizaOS GUI on localhost HTTP in development\\r\\n- The upgrade-insecure-requests CSP directi\"\n    },\n    {\n      \"title\": \"Fix: Postgres migration schema selection\",\n      \"prNumber\": 5072,\n      \"type\": \"bugfix\",\n      \"body\": \"# Risks: Low; not worse than what it was ;-)\\r\\n\\r\\n# Background\\r\\n\\r\\nThis bug fixes a Postgresql migration issue:\\r\\nIf the first entry in the postgres search path is '\\\\$user' (which it often is), it would wrongly return that entry due to wrong qu\"\n    },\n    {\n      \"title\": \"chore: v1.0.9\",\n      \"prNumber\": 5114,\n      \"type\": \"other\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"feat: add API points to manage channels\",\n      \"prNumber\": 5113,\n      \"type\": \"feature\",\n      \"body\": \"Added API endpoints for managing agents across channels.\\r\\n\\r\\n<img width=\\\"465\\\" alt=\\\"image\\\" src=\\\"https://github.com/user-attachments/assets/220e62c4-4d76-4353-85e8-18ca34243b5a\\\" />\\r\\n\"\n    },\n    {\n      \"title\": \"feat: Enhance chat UI with improved styling and components\",\n      \"prNumber\": 5111,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\n- Add new animated markdown component with smooth rendering and improved user experience\\n- Implement chat container with better layout structure and responsive design\\n- Add enhanced code block component with syntax highlighting u\"\n    },\n    {\n      \"title\": \"fix: Windows compatibility for CLI tests\",\n      \"prNumber\": 5110,\n      \"type\": \"bugfix\",\n      \"body\": \"## Summary\\n- Fixes Windows test failures by replacing Unix-specific commands with cross-platform equivalents\\n- Creates .cmd files instead of bash scripts for Windows mock executables  \\n- Adds proper error handling for git operations and she\"\n    },\n    {\n      \"title\": \"fix: action text in example should not be inline with action field\",\n      \"prNumber\": 5109,\n      \"type\": \"bugfix\",\n      \"body\": \"Small update action examples are confusing as text and action fields are inline and agent does mistake when choosing action in XML format by adding it inline with text. \\r\\n\\r\\nBad example: \\r\\n\\r\\n```\\r\\nassistant: I'll help you transfer 1 ETH to 0x\"\n    },\n    {\n      \"title\": \"fix: card padding\",\n      \"prNumber\": 5108,\n      \"type\": \"bugfix\",\n      \"body\": \"<img width=\\\"320\\\" alt=\\\"Screenshot 2025-06-14 at 12 15 29\u202fAM\\\" src=\\\"https://github.com/user-attachments/assets/85262708-d282-4770-826f-464f01b10979\\\" />\\r\\n\"\n    },\n    {\n      \"title\": \"fix: fixed scroll behavior on home route\",\n      \"prNumber\": 5107,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: create route full width\",\n      \"prNumber\": 5106,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"feat: misc ui stuff\",\n      \"prNumber\": 5105,\n      \"type\": \"feature\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: duplicate memory\",\n      \"prNumber\": 5103,\n      \"type\": \"bugfix\",\n      \"body\": \"fix the issue that when the last memory is removed or a new agent is created, two memory entries appear in the dropdown:\\r\\n\\r\\n![image](https://github.com/user-attachments/assets/3505a117-2977-4762-b735-e30ea87b2ce0)\\r\\n\"\n    },\n    {\n      \"title\": \"chore: store central msg bus response to memory\",\n      \"prNumber\": 5102,\n      \"type\": \"other\",\n      \"body\": \"Stores central message bus responses to memory for better message tracking and context persistence across agent communications.\"\n    },\n    {\n      \"title\": \"feat: Log prompts for actions.\",\n      \"prNumber\": 5099,\n      \"type\": \"feature\",\n      \"body\": \"This pull request introduces enhancements to the agent runtime and client-side components to improve tracking and display of actions, prompts, and associated metadata. Key changes include adding support for tracking prompts during runtime a\"\n    },\n    {\n      \"title\": \"fix: load actual default character\",\n      \"prNumber\": 5098,\n      \"type\": \"bugfix\",\n      \"body\": \"This is a follow on to my previous PR, default char ENVs were never being loaded, this also exposed wrong function import, now default eliza is truly being loaded in CLI monorepo.\"\n    },\n    {\n      \"title\": \"feat: Split server package from CLI (continued shaw's PR)\",\n      \"prNumber\": 5122,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\n- Split server functionality into separate `@elizaos/server` package\\n- Maintains full backward compatibility with existing CLI integrations\\n- Enables independent usage of server components\\n- Updated all CLI imports to use the new\"\n    },\n    {\n      \"title\": \"chore: Update Postman collection with missing API endpoints\",\n      \"prNumber\": 5120,\n      \"type\": \"other\",\n      \"body\": \"## Summary\\nUpdated the Postman collection to include all missing API endpoints discovered through comprehensive codebase analysis.\\n\\n### Changes Made:\\n- **Enhanced Agent Logs**: Added query parameters for filtering (roomId, type, count, offs\"\n    },\n    {\n      \"title\": \"Remove link with duplicated id from sidebars\",\n      \"prNumber\": 5119,\n      \"type\": \"other\",\n      \"body\": \"This PR fixes the Next navigation button bug in the Core Concepts - Overview section which pointed to the same page instead of Core Concepts - Actions by removing the unnecessary link section.\"\n    },\n    {\n      \"title\": \"fix: transcription api\",\n      \"prNumber\": 5118,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: file uploading\",\n      \"prNumber\": 5115,\n      \"type\": \"bugfix\",\n      \"body\": \"related: https://github.com/elizaOS/eliza/issues/5116\\r\\n\\r\\nThis PR resolves an issue with media file uploads in the GUI. File uploads are now working as expected.\\r\\nNote: Media processing features (e.g., transcription, image description) are n\"\n    },\n    {\n      \"title\": \"fix: resolve CLI test failures with circular dependency and missing runtime methods\",\n      \"prNumber\": 5135,\n      \"type\": \"bugfix\",\n      \"body\": \"## Summary\\nFixes critical test failures in CI/CD pipeline that were blocking development workflows.\\n\\n## Issues Fixed\\n- **Circular Dependency**: `parseBooleanFromText is not a function` errors in dummy services tests\\n- **Missing Runtime Meth\"\n    },\n    {\n      \"title\": \"docs: comprehensive documentation accuracy and consistency updates\",\n      \"prNumber\": 5134,\n      \"type\": \"docs\",\n      \"body\": \"## Summary\\nComprehensive review and update of ElizaOS documentation to ensure accuracy, consistency, and alignment with current codebase implementation.\\n\\n## Changes Made\\n\\n### \ud83d\udd27 API Router Documentation\\n- **Added descriptive comments** to A\"\n    },\n    {\n      \"title\": \"Fix Typo in Unfollow Room Action and Variable Name in Plugin-Bootstrap\",\n      \"prNumber\": 5130,\n      \"type\": \"bugfix\",\n      \"body\": \"\\r\\n\\r\\nDescription:\\r\\nThis pull request addresses two minor issues in the codebase:\\r\\n1. Corrects a typo in the unfollowRoomAction response text from \\\"stahp followin dis room plz\\\" to \\\"stahp following dis room plz\\\" in packages/plugin-bootstrap/sr\"\n    },\n    {\n      \"title\": \"fix bootstrap evaluator callbacks\",\n      \"prNumber\": 5129,\n      \"type\": \"bugfix\",\n      \"body\": \"Evaluator callbacks seem unhandled.\\r\\n\\r\\nThis PR forwards the callback handler to `runtime.evaluate()` in favor of passing an empty closure\"\n    },\n    {\n      \"title\": \"fix: agent is thinking...\",\n      \"prNumber\": 5128,\n      \"type\": \"bugfix\",\n      \"body\": \"This pull request introduces changes to improve user input handling in a chat application, focusing on better synchronization between the server and client when input is disabled or re-enabled. The most important changes involve emitting co\"\n    },\n    {\n      \"title\": \"Fix Typos in Plugin Documentation for Flow and MultiversX\",\n      \"prNumber\": 5127,\n      \"type\": \"bugfix\",\n      \"body\": \"\\r\\n\\r\\nDescription:  \\r\\nThis pull request corrects minor typographical errors in the documentation files for the Flow and MultiversX plugins:\\r\\n\\r\\n- Fixed the spelling of \\\"Registration\\\" in the Flow plugin documentation.\\r\\n- Corrected the spelling \"\n    },\n    {\n      \"title\": \"chore: strict cli, fix types\",\n      \"prNumber\": 5126,\n      \"type\": \"bugfix\",\n      \"body\": \"This pull request focuses on improving error handling, updating dependencies, and making minor refactorings across the `packages/cli` codebase. The most significant changes enhance robustness by ensuring error messages are properly handled,\"\n    },\n    {\n      \"title\": \"Add server, add tests\",\n      \"prNumber\": 5125,\n      \"type\": \"feature\",\n      \"body\": \"This PR adds detailed tests to core, server, project-starter and plugin-starter\\r\\n\\r\\nProject-starter and plugin-starter have had frontends added with cypress testing, to make frontend development easier and more clear\"\n    },\n    {\n      \"title\": \"fix: filter messages by current chat (channelId) & remove unnecessary\u2026\",\n      \"prNumber\": 5149,\n      \"type\": \"bugfix\",\n      \"body\": \"Fixes message filtering to properly scope messages to the current chat/channel by channelId. Removes unnecessary code that was causing messages to appear across different chats.\\r\\n\\r\\n**What this fixes:**\\r\\n- Messages now properly filtered by c\"\n    },\n    {\n      \"title\": \"fix: remove evaluators from messageHandler prompt\",\n      \"prNumber\": 5148,\n      \"type\": \"bugfix\",\n      \"body\": \"# Relates to\\r\\nNone, I can open an issue if necessary and update this.\\r\\n\\r\\n# Background\\r\\nThe default `messageHandler` prompt contains an entry for the AI to choose relevant evaluators to be run after handling the processed message. At the mom\"\n    },\n    {\n      \"title\": \"fix(autodoc): improve TypeScript parser robustness and exclude client package\",\n      \"prNumber\": 5147,\n      \"type\": \"bugfix\",\n      \"body\": \"## Problem\\nThe autodoc workflow is experiencing TypeScript parsing errors when processing React/JSX components, causing noise in the documentation generation process. Examples from recent runs:\\n\\n```\\nError parsing TypeScript file: Unexpected\"\n    },\n    {\n      \"title\": \"fix(ci): remove frozen-lockfile flag from autodoc workflow bun install\",\n      \"prNumber\": 5146,\n      \"type\": \"bugfix\",\n      \"body\": \"## Problem\\nThe autodoc workflow is failing during dependency installation with the error:\\n```\\nerror: lockfile had changes, but lockfile is frozen\\nnote: try re-running without --frozen-lockfile and commit the updated lockfile\\nError: Process \"\n    },\n    {\n      \"title\": \"fix(ci): remove npm cache from autodoc workflow Node.js setup\",\n      \"prNumber\": 5145,\n      \"type\": \"bugfix\",\n      \"body\": \"## Problem\\nThe autodoc workflow is failing during Node.js setup with the error:\\n```\\nError: Dependencies lock file is not found in /home/runner/work/eliza/eliza. \\nSupported file patterns: package-lock.json,npm-shrinkwrap.json,yarn.lock\\n```\\n\\n\"\n    },\n    {\n      \"title\": \"fix(ci): resolve git authentication issues in autodoc workflow\",\n      \"prNumber\": 5144,\n      \"type\": \"bugfix\",\n      \"body\": \"## Problem\\nThe autodoc workflow is failing at the \\\"Checkout repository\\\" step with git authentication errors, as seen in [workflow run #871](https://github.com/elizaOS/eliza/actions/runs/15688882533/job/44198905695).\\n\\n**Error:**\\n```\\ncould no\"\n    },\n    {\n      \"title\": \"fix(ci): resolve autodoc workflow dependency installation failures\",\n      \"prNumber\": 5143,\n      \"type\": \"bugfix\",\n      \"body\": \"## Problem\\nThe autodoc workflow was failing during the \\\"Install root dependencies\\\" step with exit code 1, as seen in [workflow run #870](https://github.com/elizaOS/eliza/actions/runs/15688678497/job/44198237376).\\n\\n## Root Causes Identified\\n\"\n    },\n    {\n      \"title\": \"fix: gui resend\",\n      \"prNumber\": 5141,\n      \"type\": \"bugfix\",\n      \"body\": \"Currently, the resend (retry) button only works for older messages \u2014 specifically, messages that were sent before restarting the dev server. For newly sent messages, clicking the resend button doesn't do anything.\\r\\n\\r\\nThis PR fixes the issue\"\n    },\n    {\n      \"title\": \"Move getContentTypeFromMimeType to core utils for reusability\",\n      \"prNumber\": 5138,\n      \"type\": \"other\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: support all media type\",\n      \"prNumber\": 5137,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"feat: Add CLI tests, server tests, plugin-sql tests\",\n      \"prNumber\": 5136,\n      \"type\": \"feature\",\n      \"body\": \"This PR adds a ton of coverage\\r\\n\\r\\nStill a few small spots that need work, though!\"\n    },\n    {\n      \"title\": \"chore: update faq, quickstart, core docs\",\n      \"prNumber\": 5164,\n      \"type\": \"other\",\n      \"body\": \"## Summary\\n\\nUpdates core documentation files including FAQ, quickstart guide, and core documentation to improve clarity and accuracy.\\n\\n## Changes\\n- Updated FAQ documentation with latest information  \\n- Refreshed quickstart guide with curren\"\n    },\n    {\n      \"title\": \"fix(docs): update ElizaOS documentation link to new official URL\",\n      \"prNumber\": 5162,\n      \"type\": \"bugfix\",\n      \"body\": \"Replaced the outdated ElizaOS documentation link (https://elizaos.github.io/docs) with the current official documentation URL (https://eliza.how/docs/intro) in the Eliza partner page. This ensures users are directed to the latest and most a\"\n    },\n    {\n      \"title\": \"feat: Add Ollama as AI provider option in create command\",\n      \"prNumber\": 5160,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\n\\nAdds Ollama as the fourth AI provider option in the `elizaos create` command, alongside existing Local AI, OpenAI, and Anthropic options.\\n\\n## Changes Made\\n\\n### Core Implementation\\n- **Added Ollama to AI model selection** (`packa\"\n    },\n    {\n      \"title\": \"docs: add CLAUDE.md for AI assistant guidance\",\n      \"prNumber\": 5158,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\n- Add comprehensive CLAUDE.md file to guide AI assistants working in this repository\\n- Documents project architecture, development workflow, and critical rules\\n- Covers monorepo structure, component system, and testing requiremen\"\n    },\n    {\n      \"title\": \"fix project loading on windows machines\",\n      \"prNumber\": 5156,\n      \"type\": \"bugfix\",\n      \"body\": \"<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\\r\\n\\r\\n# Relates to\\r\\n\\r\\n[bug loading projects on windows](https://github.com/elizaOS/eliza/issues/5155)\\r\\n\\r\\n<!-- This risks sect\"\n    },\n    {\n      \"title\": \"Minor Text Corrections and Consistency Improvements in Community Docs\",\n      \"prNumber\": 5154,\n      \"type\": \"other\",\n      \"body\": \"\\r\\n\\r\\nDescription:  \\r\\nThis pull request updates the community documentation to correct minor typos and improve consistency in phrasing. Changes include fixing the spelling of \\\"successful\\\" and standardizing the formatting of \\\"uploaded\\\" for cla\"\n    },\n    {\n      \"title\": \"refactor: remove OpenTelemetry instrumentation from socket message processing\",\n      \"prNumber\": 5153,\n      \"type\": \"refactor\",\n      \"body\": \"## Summary\\n- Remove OpenTelemetry import and tracer parameter from processSocketMessage function\\n- Simplify socket message processing by removing complex instrumentation logic\\n- Clean up code formatting and indentation inconsistencies\\n- Mai\"\n    },\n    {\n      \"title\": \"fix: prevent infinite recursion in JSON sanitizer by detecting circular re\u2026\",\n      \"prNumber\": 5152,\n      \"type\": \"bugfix\",\n      \"body\": \"This PR fixes the issue shown in the following screenshot:\\r\\n\\r\\n<img width=\\\"863\\\" alt=\\\"Screenshot 2025-06-17 at 1 07 49\u202fPM\\\" src=\\\"https://github.com/user-attachments/assets/eee5a561-11d1-408c-b7c1-fbd75706e0a2\\\" />\\r\\n\\r\\nWe were encountering the er\"\n    },\n    {\n      \"title\": \"fix: gui stuck issue\",\n      \"prNumber\": 5151,\n      \"type\": \"bugfix\",\n      \"body\": \"Currently, if an agent chooses to ignore the user (either by selecting the IGNORE action or sending an empty text response), the chat UI gets stuck displaying \\\"agent is thinking\\\". This blocks the user from sending any further messages unles\"\n    },\n    {\n      \"title\": \"chore: v1.0.10\",\n      \"prNumber\": 5150,\n      \"type\": \"other\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: character form - secrets panel\",\n      \"prNumber\": 5186,\n      \"type\": \"bugfix\",\n      \"body\": \"# Relates to\\nFixes issues with the character form secrets panel functionality for managing API keys and environment variables.\\n\\n# Risks\\n**Low** - UI/UX improvements to existing secrets management functionality. Affects character creation an\"\n    },\n    {\n      \"title\": \"chore: Documentation Refinement and Consolidation\",\n      \"prNumber\": 5182,\n      \"type\": \"docs\",\n      \"body\": \"## Overview\\r\\nThis PR implements a comprehensive documentation overhaul focused on clarity, accuracy, and user experience.\\r\\n\\r\\n## Key Changes\\r\\n\\r\\n### 1. Documentation Structure\\r\\n- Consolidated redundant pages\\r\\n- Moved `automated-docs.md` to `s\"\n    },\n    {\n      \"title\": \"feat: gui chat title\",\n      \"prNumber\": 5179,\n      \"type\": \"feature\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"feat: (cli) consolidate stop command into agent stop --all\",\n      \"prNumber\": 5175,\n      \"type\": \"feature\",\n      \"body\": \"## Problem\\r\\n\\r\\nThe ElizaOS CLI had two separate ways to stop agents:\\r\\n\\r\\n- `elizaos stop` - standalone command to stop all agents\\r\\n- `elizaos agent stop --name <name>` - stop individual agents\\r\\n\\r\\nThis created inconsistent UX where users had t\"\n    },\n    {\n      \"title\": \"fix: global env load\",\n      \"prNumber\": 5174,\n      \"type\": \"bugfix\",\n      \"body\": \"## What does this PR do?\\n\\nFixes global environment variable loading issue.\\n\\n## What kind of change is this?\\n\\nBug fixes (non-breaking change which fixes an issue)\\n\\n## Documentation changes needed?\\n\\nMy changes do not require a change to the p\"\n    },\n    {\n      \"title\": \"fix: (cli) resolve plugin template dependencies and publish command issues\",\n      \"prNumber\": 5173,\n      \"type\": \"bugfix\",\n      \"body\": \"# Fix Plugin Template Dependencies and Publish Command Issues\\r\\n\\r\\n## Problem\\r\\n\\r\\nUsers were encountering build failures when creating and publishing ElizaOS plugins using `elizaos create --type plugin` and `elizaos publish`. The errors manife\"\n    },\n    {\n      \"title\": \"feat: cascade delete agent\",\n      \"prNumber\": 5171,\n      \"type\": \"feature\",\n      \"body\": \"# Relates to\\n\\n<!-- LINK TO ISSUE OR TICKET -->\\nDatabase relationship management and agent cleanup functionality\\n\\n# Risks\\n\\n**Medium** - Changes database deletion behavior which could affect data integrity and related records\\n\\n# Background\\n\\n#\"\n    },\n    {\n      \"title\": \"refactor(into-5167): consolidate character loading logic and eliminate duplication (Phase 1)\",\n      \"prNumber\": 5169,\n      \"type\": \"refactor\",\n      \"body\": \"$(cat <<'EOF'\\n## Summary\\n\\nThis PR implements **Phase 1** of the project loading refactor outlined in issue #5168. The primary focus is eliminating the massive code duplication between CLI and server character loading logic by consolidating \"\n    },\n    {\n      \"title\": \"feat(after-5169): implement Zod-based character validation with safe JSON parsing\",\n      \"prNumber\": 5167,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\n\\nThis PR implements comprehensive Zod-based character validation with safe JSON parsing to address the issues outlined in #5166.\\n\\n## Changes Made\\n\\n### \ud83d\udd27 Core Schema Implementation\\n- **New File**: `packages/core/src/schemas/chara\"\n    },\n    {\n      \"title\": \"fix: tweak media content\",\n      \"prNumber\": 5165,\n      \"type\": \"bugfix\",\n      \"body\": \"Fix media content color contrast, text truncation, and padding adjustments\"\n    },\n    {\n      \"title\": \"refactor(polygon): remove conflicts\",\n      \"prNumber\": 5232,\n      \"type\": \"refactor\",\n      \"body\": \"* renamed plugin names to avoid conflicts across plugins\\r\\n* rephrase examples to avoid confilcts\"\n    },\n    {\n      \"title\": \"fix: add server tests back fully fixed\",\n      \"prNumber\": 5231,\n      \"type\": \"feature\",\n      \"body\": \"This pull request introduces several changes to the testing infrastructure and codebase for the `@elizaos/server` package. The modifications include updates to the test runner, enhancements to mocking strategies, and adjustments to test set\"\n    },\n    {\n      \"title\": \"fix: plugin sql unit tests\",\n      \"prNumber\": 5229,\n      \"type\": \"bugfix\",\n      \"body\": \"This pull request focuses on improving test reliability, simplifying test setups, and enhancing code clarity across multiple files in the `plugin-sql` package. Key changes include better handling of temporary directories in tests, refactori\"\n    },\n    {\n      \"title\": \"fix: bootstrap tests, cleanup code\",\n      \"prNumber\": 5227,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"chore: remove CLI tests from integration tests\",\n      \"prNumber\": 5226,\n      \"type\": \"tests\",\n      \"body\": \"CLI tests were running duplicate in both integration and cli workflows, not needed.\"\n    },\n    {\n      \"title\": \"fix: remove all CI caching\",\n      \"prNumber\": 5225,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"chore: clean core\",\n      \"prNumber\": 5224,\n      \"type\": \"refactor\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: env settings saving\",\n      \"prNumber\": 5223,\n      \"type\": \"bugfix\",\n      \"body\": \"Previously, changes to environment settings could not be saved.\\r\\n\\r\\nThis PR adds the save handler to persist environment variable updates.\"\n    },\n    {\n      \"title\": \"chore: cleanup plugin-sql\",\n      \"prNumber\": 5222,\n      \"type\": \"refactor\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: incorrecly scoped plugin name\",\n      \"prNumber\": 5220,\n      \"type\": \"bugfix\",\n      \"body\": \"This pull request refines the `normalizePluginName` function in `packages/cli/src/utils/registry/index.ts` by removing duplicate and incorrect namespace formats from the list of generated plugin name variations.\\r\\n\\r\\nKey change:\\r\\n\\r\\n* [`normal\"\n    },\n    {\n      \"title\": \"fix: create option test\",\n      \"prNumber\": 5219,\n      \"type\": \"bugfix\",\n      \"body\": \"This pull request updates the test suite for `ElizaOS Create Commands` to reflect changes in the available AI models. Specifically, it adjusts the expected number of models and removes assertions related to the `ollama` model's title and de\"\n    },\n    {\n      \"title\": \"feat: add Google Generative AI support and refactor CLI prompts\",\n      \"prNumber\": 5217,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\n- Added Google Generative AI (Gemini) support to the ElizaOS CLI\\n- Simplified AI model and database selection descriptions for better clarity\\n- Created a generic provider configuration prompt function to reduce code duplication\\n-\"\n    },\n    {\n      \"title\": \"feat: lazy load test dependencies and Discord plugin in starter templates\",\n      \"prNumber\": 5215,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\n- Removes Cypress test dependencies and Discord plugin from default installation in starter templates\\n- Adds on-demand installation when test commands are run\\n- Reduces initial project size and speeds up `elizaos create` command\\n\"\n    },\n    {\n      \"title\": \"refactor: improve CLI config template formatting and organization\",\n      \"prNumber\": 5214,\n      \"type\": \"refactor\",\n      \"body\": \"## Summary\\n- Simplified and reorganized .env template for better clarity\\n- Removed redundant configuration sections\\n- Improved comment formatting with consistent separators\\n- Focused on essential configuration options\\n- Removed multi-agent \"\n    },\n    {\n      \"title\": \"feat: open documentation links in new tab\",\n      \"prNumber\": 5213,\n      \"type\": \"feature\",\n      \"body\": \"- Update FooterLink component to detect external URLs\\r\\n- Add target='_blank' and rel='noopener noreferrer' for external links\\r\\n- Documentation link now opens in new tab for better UX\\r\\n\\r\\n<!-- Use this template by filling in information and c\"\n    },\n    {\n      \"title\": \"fix: agent card responsive issue\",\n      \"prNumber\": 5212,\n      \"type\": \"bugfix\",\n      \"body\": \"Right now, the AgentCard is not fully responsive \u2014 if the agent name is too long, it causes the other elements (like settings and stop icons) to get squeezed or overflow outside the card.\\r\\n\\r\\nThis update allow the name to shorten gracefully \"\n    },\n    {\n      \"title\": \"fix: add bootstrap plugin to agent templates\",\n      \"prNumber\": 5211,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\n- Added `@elizaos/plugin-bootstrap` to all agent templates in the client configuration\\n- Ensures core functionality is available across all platform-specific templates (Discord, Telegram, Slack, Twitter, GitHub, Instagram)\\n\\n## Ch\"\n    },\n    {\n      \"title\": \"fix(secret-panel): allow editing and adding new secrets\",\n      \"prNumber\": 5210,\n      \"type\": \"bugfix\",\n      \"body\": \"related: https://linear.app/eliza-labs/issue/ELIZA-452/unable-to-edit-agent-environment-variables-in-v109\\r\\n\\r\\nPreviously, adding or editing a secret would redirect to the main homepage without saving because it triggered the parent \\\"Save Age\"\n    },\n    {\n      \"title\": \"fix: secrets undefined issue\",\n      \"prNumber\": 5209,\n      \"type\": \"bugfix\",\n      \"body\": \"Fixes an issue where secrets was undefined. This may be due to a oversight in [PR #5202](https://github.com/elizaOS/eliza/pull/5202)\"\n    },\n    {\n      \"title\": \"chore: lint files\",\n      \"prNumber\": 5208,\n      \"type\": \"other\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"chore: release 1.0.11\",\n      \"prNumber\": 5207,\n      \"type\": \"other\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: add __dirname for ES modules in copy-template utility\",\n      \"prNumber\": 5206,\n      \"type\": \"feature\",\n      \"body\": \"This PR fixes an issue where the `elizaos create` command was not properly copying templates due to missing `__dirname` in ES module context.\\n\\n## Changes\\n- Added `fileURLToPath` import from `node:url`\\n- Defined `__filename` and `__dirname` \"\n    },\n    {\n      \"title\": \"chore: cleanup server code\",\n      \"prNumber\": 5204,\n      \"type\": \"refactor\",\n      \"body\": \"This pull request introduces multiple changes across the codebase, focusing on runtime enhancements, testing improvements, and dependency updates. The most significant changes include adding new methods to manage agent memories, switching f\"\n    },\n    {\n      \"title\": \"feat: add agent settings\",\n      \"prNumber\": 5202,\n      \"type\": \"feature\",\n      \"body\": \"# Relates to\\n\\nAgent configuration and user experience improvements for ElizaOS platform\\n\\n# Risks\\n\\n**Medium Risk**\\n- UI changes may affect existing workflows\\n- Potential integration issues with current configuration system\\n- Database schema \"\n    },\n    {\n      \"title\": \"fix: dont skip (single) installation test\",\n      \"prNumber\": 5201,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: Add direct source path resolution for CLI templates in test environment\",\n      \"prNumber\": 5200,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\n- Fixes CLI test failures in CI environment by improving template path resolution\\n- Adds direct source directory path as the first option in template resolution logic\\n- Resolves ENOENT errors for project-starter and plugin-starte\"\n    },\n    {\n      \"title\": \"fix: cli test + bun-test migration\",\n      \"prNumber\": 5199,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: scroll behavior on env panel\",\n      \"prNumber\": 5193,\n      \"type\": \"bugfix\",\n      \"body\": \"Currently, when importing a long list of environment variables into the secret panel, the user has to scroll all the way down to access the \\\"Save\\\" button.\\r\\nThis PR sets a maximum height and enables vertical scrolling to improve.\\r\\n\\r\\n\\r\\nbefore\"\n    },\n    {\n      \"title\": \"fix: scroll behavior on agent settings\",\n      \"prNumber\": 5192,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: ids should be uuid not text\",\n      \"prNumber\": 5189,\n      \"type\": \"bugfix\",\n      \"body\": \"## What does this PR do?\\n\\nFixes database schema by changing ID columns from `text` type to proper `uuid` type for better type safety and consistency.\\n\\n## What kind of change is this?\\n\\nBug fixes (non-breaking change which fixes an issue)\\n\\n##\"\n    },\n    {\n      \"title\": \"chore: core bun tests\",\n      \"prNumber\": 5188,\n      \"type\": \"tests\",\n      \"body\": \"100% tests pass\"\n    },\n    {\n      \"title\": \"feat: add option to clear memories\",\n      \"prNumber\": 5187,\n      \"type\": \"feature\",\n      \"body\": \"# Relates to\\n\\nMemory management and cleanup functionality for ElizaOS agents\\n\\n# Risks\\n\\n**Low risk** - This is an additive feature that provides memory management capabilities without affecting existing functionality.\\n\\nPotential risks:\\n- Acc\"\n    },\n    {\n      \"title\": \"fix: throw precise error on problems with DB connection\",\n      \"prNumber\": 5235,\n      \"type\": \"bugfix\",\n      \"body\": \"Follow up to this issue\\r\\n\\r\\nhttps://github.com/elizaOS/eliza/pull/5196\"\n    },\n    {\n      \"title\": \"Fix: Update API documentation accuracy\",\n      \"prNumber\": 5280,\n      \"type\": \"bugfix\",\n      \"body\": \"This PR updates the API documentation to match the current implementation and adds a migration guide for developers.\"\n    },\n    {\n      \"title\": \"fix: Restore GUI Chat Title Generation\",\n      \"prNumber\": 5275,\n      \"type\": \"bugfix\",\n      \"body\": \"Fixes an issue with chat title generation. This was a regression introduced in [this PR](https://github.com/elizaOS/eliza/pull/5263), which I unfortunately missed during review and approval.\"\n    },\n    {\n      \"title\": \"fix: chat stuck issue\",\n      \"prNumber\": 5274,\n      \"type\": \"bugfix\",\n      \"body\": \"I encountered an issue where, if the chat failed (e.g., the useModel function exceeded the rate limit), an error would be shown but the chat would get stuck displaying \\\"agent is thinking.\\\" In this state, the user could no longer type unless\"\n    },\n    {\n      \"title\": \"fix: update attachment formatting to use comma-separated list\",\n      \"prNumber\": 5273,\n      \"type\": \"bugfix\",\n      \"body\": \"## Summary\\nThis PR fixes a failing test in the core package by implementing intelligent attachment formatting in the `formatMessages` utility function that handles both simple and complex attachments correctly.\\n\\n## Problem\\nThe test `Utils C\"\n    },\n    {\n      \"title\": \"chore: Correct some comments\",\n      \"prNumber\": 5271,\n      \"type\": \"other\",\n      \"body\": \"<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\\r\\n\\r\\n# Relates to\\r\\n\\r\\n<!-- LINK TO ISSUE OR TICKET -->\\r\\n\\r\\n<!-- This risks section must be filled out before the final review \"\n    },\n    {\n      \"title\": \"feat: change plugins from project-scoped to agent-scoped architecture\",\n      \"prNumber\": 5270,\n      \"type\": \"feature\",\n      \"body\": \"## Problem\\r\\n- **Plugin Management**: Plugins were managed at the project level in `package.json`, forcing all agents to share the same plugin set\\r\\n- **No Character Flexibility**: No ability to configure different plugins for different chara\"\n    },\n    {\n      \"title\": \"Add Claude Code GitHub Workflow\",\n      \"prNumber\": 5269,\n      \"type\": \"feature\",\n      \"body\": \"## \ud83e\udd16 Installing Claude Code GitHub App\\r\\n\\r\\nThis PR adds a GitHub Actions workflow that enables Claude Code integration in our repository.\\r\\n\\r\\n### What is Claude Code?\\r\\n\\r\\n[Claude Code](https://claude.ai/code) is an AI coding agent that can he\"\n    },\n    {\n      \"title\": \"Feature/phase4 admin api migration\",\n      \"prNumber\": 5266,\n      \"type\": \"feature\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix: rename for clarity\",\n      \"prNumber\": 5265,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"feat: add openrouter to model selection & selection for embedding models\",\n      \"prNumber\": 5264,\n      \"type\": \"feature\",\n      \"body\": \"Relates to\\r\\n\\r\\nEnhancement of model provider support in ElizaOS\\r\\nImproving model selection flexibility for both language models and embedding models\\r\\nCommunity requests for OpenRouter integration (related to deployment issues on platforms li\"\n    },\n    {\n      \"title\": \"feat: Complete migration of packages/client to @elizaos/api-client\",\n      \"prNumber\": 5263,\n      \"type\": \"feature\",\n      \"body\": \"# feat: Complete migration of packages/client to @elizaos/api-client\\n\\n## Summary\\n\\n\ud83c\udfaf **Complete migration of packages/client to use the new `@elizaos/api-client` package**\\n\\nThis PR implements a comprehensive migration strategy that transiti\"\n    },\n    {\n      \"title\": \"feat: adds support for user-uploaded plain text (.txt) files in the GUI.\",\n      \"prNumber\": 5262,\n      \"type\": \"feature\",\n      \"body\": \"This PR adds support for user-uploaded plain text (.txt) files in the GUI.\"\n    },\n    {\n      \"title\": \"polishing docs: error fixes for clarity\",\n      \"prNumber\": 5258,\n      \"type\": \"bugfix\",\n      \"body\": \"Spotted and fixed a few wording hiccups:\\r\\n\\r\\n`satsified` - `satisfied`\\r\\n`succesful` - `successful`\"\n    },\n    {\n      \"title\": \"fix: processAttachments to Support Local Image URLs and Include Attachment Descriptions in Prompts\",\n      \"prNumber\": 5257,\n      \"type\": \"bugfix\",\n      \"body\": \"This PR improves the processAttachments logic in the bootstrap phase. Previously, processAttachments only handled images with HTTP URLs. This update adds support for local image URLs as well.\\r\\n\\r\\nAdditionally, this PR includes attachment des\"\n    },\n    {\n      \"title\": \"refactor: starter packages to separate character and plugin files\",\n      \"prNumber\": 5256,\n      \"type\": \"refactor\",\n      \"body\": \"## Summary\\n\\nThis PR refactors the starter packages to have cleaner separation of concerns by moving character and plugin configurations to their own dedicated files.\\n\\n### Changes Made\\n\\n- **`packages/plugin-starter`**: \\n  - Moved plugin conf\"\n    },\n    {\n      \"title\": \"fix: complete multer migration and resolve upload functionality\",\n      \"prNumber\": 5252,\n      \"type\": \"bugfix\",\n      \"body\": \"## Summary\\n- Complete migration from express-fileupload to multer for all upload functionality\\n- Fix API endpoint mismatches between client and server after multer migration\\n- Resolve \\\"Unexpected end of form\\\" multipart parsing errors\\n- Ensu\"\n    },\n    {\n      \"title\": \"fix: Fix macOS CLI test failures by centralizing platform options\",\n      \"prNumber\": 5250,\n      \"type\": \"bugfix\",\n      \"body\": \"## Summary\\n- Fixed undefined function call `getBunPath()` \u2192 `getBunExecutable()` in agent.test.ts\\n- Centralized platform-specific options for execSync calls to fix macOS CI failures\\n- Added proper PATH resolution and locale settings for mac\"\n    },\n    {\n      \"title\": \"chore: Add background color to dialog content\",\n      \"prNumber\": 5248,\n      \"type\": \"feature\",\n      \"body\": \"just set background color for dialog content \"\n    },\n    {\n      \"title\": \"Added: Actions and ABIs for Alethea Plugin\",\n      \"prNumber\": 5247,\n      \"type\": \"other\",\n      \"body\": \"# Relates to\\r\\n\\r\\n<!-- No specific issue linked -->\\r\\n\\r\\n# Risks\\r\\n\\r\\n**Medium** \u2014 This PR introduces new plugin functionality and external interactions via ABIs and actions. It may affect downstream systems that rely on plugin behavior or Hive i\"\n    },\n    {\n      \"title\": \"refactor: centralize-directory-detection-logic\",\n      \"prNumber\": 5246,\n      \"type\": \"refactor\",\n      \"body\": \"  ## Description\\r\\n  This PR centralizes scattered directory type detection logic throughout the CLI codebase into the `directory-detection` utility, eliminating code duplication and ensuring consistent behavior across all CLI commands. This\"\n    },\n    {\n      \"title\": \"fix: (tests) restore working test assertions after directory detection centralization\",\n      \"prNumber\": 5245,\n      \"type\": \"bugfix\",\n      \"body\": \"  ## Description\\r\\n  This PR fixes broken tests that resulted from the directory detection centralization refactor. The tests were discovered to have commented-out assertions with \\\"TODO:\\r\\n   Fix for bun test\\\" - essentially fake tests that we\"\n    },\n    {\n      \"title\": \"feat: add type-safe API client package\",\n      \"prNumber\": 5240,\n      \"type\": \"feature\",\n      \"body\": \"## Summary\\n- Added a new `@elizaos/api-client` package that provides a type-safe client for the ElizaOS server API\\n- Comprehensive TypeScript support with full type definitions for all API endpoints\\n- Clean, service-based architecture for e\"\n    },\n    {\n      \"title\": \"feat: Update eliza.postman.json\",\n      \"prNumber\": 5239,\n      \"type\": \"feature\",\n      \"body\": \"This pull request updates the `eliza.postman.json` file to align the API collection with the current implementation of the Eliza AI Framework. The changes include renaming and restructuring endpoints, removing deprecated endpoints, and addi\"\n    },\n    {\n      \"title\": \"Fix: Correct typos in documentation and comments\",\n      \"prNumber\": 5238,\n      \"type\": \"bugfix\",\n      \"body\": \"\\r\\n\\r\\n### Description\\r\\n\\r\\nThis pull request addresses minor typographical errors found in the project's documentation and code comments.\\r\\n\\r\\n**Changes:**\\r\\n\\r\\n*   Corrected a typo in `packages/docs/archive/injection/example.md`.\\r\\n*   Fixed a typo\"\n    },\n    {\n      \"title\": \"chore: cleanup CLI packages\",\n      \"prNumber\": 5237,\n      \"type\": \"refactor\",\n      \"body\": \"This pull request includes changes to the `packages/cli` module to streamline command-line options, update dependencies, and simplify the configuration files. The most significant updates involve removing duplicate or legacy options, upgrad\"\n    },\n    {\n      \"title\": \"chore: update docs to latest API spec v1\",\n      \"prNumber\": 5236,\n      \"type\": \"tests\",\n      \"body\": \"This pull request introduces several updates to the REST API documentation, including improvements to existing endpoints and the addition of new endpoints. The changes standardize formatting, update descriptions, and enhance response schema\"\n    },\n    {\n      \"title\": \"Make unmute_room not match mute_room\",\n      \"prNumber\": 5281,\n      \"type\": \"other\",\n      \"body\": \"# Risks\\r\\n\\r\\nLow\\r\\n\\r\\n# Background\\r\\n\\r\\n## What does this PR do?\\r\\n\\r\\nFix actions\\r\\n\\r\\n## What kind of change is this?\\r\\n\\r\\nBug fixes (non-breaking change which fixes an issue)\\r\\n\\r\\n## Why are we doing this? Any context or related work?\\r\\n\\r\\nI couldn't unm\"\n    },\n    {\n      \"title\": \"fix: hello world plugin not returning response\",\n      \"prNumber\": 5296,\n      \"type\": \"bugfix\",\n      \"body\": \"This pull request includes a small change to the `helloWorldAction` in `packages/project-starter/src/plugin.ts`. The change modifies the return value of the function to `true` instead of returning `responseContent`.\"\n    },\n    {\n      \"title\": \"Set package name in package.json to match target directory\",\n      \"prNumber\": 5294,\n      \"type\": \"other\",\n      \"body\": \"https://github.com/elizaOS/eliza/issues/5292\\r\\nThis pull request includes a small enhancement to the `copyTemplate` function in `packages/cli/src/utils/copy-template.ts`. The change ensures that the `package.json` file is updated with the co\"\n    },\n    {\n      \"title\": \"fix: group creation success handler to access response directly\",\n      \"prNumber\": 5293,\n      \"type\": \"bugfix\",\n      \"body\": \"This PR fixes an issue where, after creating a group, the page remained stuck on the group panel\u2014making it unclear to the user whether the group was created successfully. The fix uses the updated response format (returning the response dire\"\n    },\n    {\n      \"title\": \"feat: nicer env prompt experience\",\n      \"prNumber\": 5291,\n      \"type\": \"feature\",\n      \"body\": \"This pull request introduces significant improvements to the plugin installation process in the CLI, with a focus on enhancing user experience during environment variable configuration. Key changes include replacing `readline` prompts with \"\n    },\n    {\n      \"title\": \"fix: only allow plugin removal via X icon\",\n      \"prNumber\": 5290,\n      \"type\": \"bugfix\",\n      \"body\": \"\"\n    },\n    {\n      \"title\": \"fix(docker): skip post-install hook during bun install\",\n      \"prNumber\": 5289,\n      \"type\": \"bugfix\",\n      \"body\": \"<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\\r\\n\\r\\n# Relates to\\r\\n\\r\\n<!-- LINK TO ISSUE OR TICKET -->\\r\\n\\r\\n<!-- This risks section must be filled out before the final review \"\n    },\n    {\n      \"title\": \"fix(plugin-sql): Convert message_servers.id from TEXT to UUID to fix broken foreign key constraints\",\n      \"prNumber\": 5287,\n      \"type\": \"bugfix\",\n      \"body\": \"## Problem\\r\\nFresh production ElizaOS deployments fail to create the `server_agents` table due to a foreign key type mismatch:\\r\\n- `message_servers.id` is TEXT\\r\\n- `server_agents.server_id` is UUID (references `message_servers.id`)\\r\\n\\r\\nThis app\"\n    },\n    {\n      \"title\": \"fix: get agents panel test\",\n      \"prNumber\": 5286,\n      \"type\": \"bugfix\",\n      \"body\": \"## Fix: Get Agents Panel Test\\r\\n\\r\\n### What does this PR do?\\r\\nFixes test functionality for the agents panel component.\\r\\n\\r\\n### What kind of change is this?\\r\\n- [x] Bug fix (non-breaking change which fixes an issue)\\r\\n- [ ] New feature (non-break\"\n    },\n    {\n      \"title\": \"fix: add ollama embedding selection & fix project load\",\n      \"prNumber\": 5285,\n      \"type\": \"feature\",\n      \"body\": \"# PR #5285: Fix Ollama Embedding Selection & Project Load\\r\\n\\r\\n## Summary\\r\\n\\r\\nThis PR addresses two main issues:\\r\\n\\r\\n1. Prevents the `plugin-local-ai` from loading when Ollama is selected as the AI provider\\r\\n2. Improves the Ollama embedding mod\"\n    },\n    {\n      \"title\": \"fix(core): fix bun import error by pointing to dist files\",\n      \"prNumber\": 5284,\n      \"type\": \"bugfix\",\n      \"body\": \"# Fix Bun import error in @elizaos/core npm package\\r\\n\\r\\n## Problem\\r\\n\\r\\nWhen plugin developers try to use `bun test` instead of `vitest` for testing their plugins, they encounter a critical error:\\r\\n\\r\\n```\\r\\nerror: Cannot find module '@elizaos/co\"\n    },\n    {\n      \"title\": \"fix: improve AI provider tests to avoid brittle patterns\",\n      \"prNumber\": 5283,\n      \"type\": \"bugfix\",\n      \"body\": \"## Summary\\n\\nThis PR improves the AI provider tests in `create.test.ts` to avoid the anti-pattern of needing to update tests every time a new AI provider is added.\\n\\n## Changes\\n\\n1. **Removed hardcoded provider count**: Changed from `expect(mo\"\n    },\n    {\n      \"title\": \"fix: agent panels load\",\n      \"prNumber\": 5282,\n      \"type\": \"bugfix\",\n      \"body\": \"# PR #5282: fix: agent panels load\\r\\n\\r\\n**Author:** 0xbbjoker  \\r\\n**Changes:** +18 \u22123\\r\\n\\r\\n## Summary\\r\\n\\r\\nFixes loading issues with agent panels in the ElizaOS interface. Agent panels were not loading correctly, causing UI problems when managing \"\n    }\n  ],\n  \"topContributors\": [\n    {\n      \"username\": \"wtfsayo\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/82053242?u=98209a1f10456f42d4d2fa71db4d5bf4a672cbc3&v=4\",\n      \"totalScore\": 4173.54491249129,\n      \"prScore\": 4067.9529124912906,\n      \"issueScore\": 32,\n      \"reviewScore\": 65.5,\n      \"commentScore\": 8.091999999999999,\n      \"summary\": \"wtfsayo: Extremely active contributor who merged 58 PRs this month, with significant work on CLI improvements, UI enhancements, and bug fixes across the codebase (+308k/-157k lines total). Notable contributions include migrating CLI tests from Bats to TypeScript (#4978), reorganizing API routes (#5010), splitting the server package from CLI (#5122), and enhancing the chat UI with improved styling (#5111, #5105). Demonstrated a consistent focus on improving developer experience through optimizing plugin loading (#4868), enhancing CLI performance (#5080, #5087), and ensuring cross-platform compatibility (#5110), while also contributing comprehensive API documentation through a Postman collection (#5047, #5120).\"\n    },\n    {\n      \"username\": \"ChristopherTrimboli\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/27584221?u=0d816ce1dcdea8f925aba18bb710153d4a87a719&v=4\",\n      \"totalScore\": 2426.816046063861,\n      \"prScore\": 2009.860046063861,\n      \"issueScore\": 0,\n      \"reviewScore\": 414,\n      \"commentScore\": 2.956,\n      \"summary\": \"ChristopherTrimboli: Led a substantial development effort with 38 merged PRs (+73k/-56.8k lines), focusing primarily on infrastructure improvements, build process enhancements, and critical bug fixes. Notable contributions include implementing HMR client development (#4989, +17k/-6.7k lines), enhancing the core package build process (#4874), adding environment variable prompting for plugins (#4945), and implementing prompt logging for actions (#5099, +2.6k/-827 lines). Maintained a consistent review presence with 52 code reviews (48 approvals) while working on multiple version releases (v1.0.5 through v1.0.9) and CI/CD improvements including parallelized actions (#5015) and caching optimizations (#5014, #4899).\"\n    },\n    {\n      \"username\": \"0xbbjoker\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/54844437?u=90fe1762420de6ad493a1c1582f1f70c0d87d8e2&v=4\",\n      \"totalScore\": 1207.9839866092511,\n      \"prScore\": 1059.8519866092513,\n      \"issueScore\": 0,\n      \"reviewScore\": 144.5,\n      \"commentScore\": 3.6319999999999997,\n      \"summary\": \"0xbbjoker: Merged 20 PRs this month with significant contributions to documentation (#4976 adding +3247/-387 lines to messages API docs), macOS setup guide (#4903), and various bug fixes including prompt handling (#5050, #5068, #5094) and API routes (#5062). Made substantial improvements to the codebase with fixes for logs display (#5006), responsive UI (#4988), and dependency cleanup (#4962), while also contributing to security with CSP fixes (#5085). Maintained a consistent work pattern across 12 days, focusing primarily on bug fixes (41%) and approving 18 PRs from other contributors.\"\n    },\n    {\n      \"username\": \"yungalgo\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/113615973?u=92e0f29f7e2fbb8ce46ed13c51f692ca803de02d&v=4\",\n      \"totalScore\": 1085.1416522999536,\n      \"prScore\": 1067.1136522999536,\n      \"issueScore\": 0,\n      \"reviewScore\": 13.5,\n      \"commentScore\": 4.528,\n      \"summary\": \"yungalgo: Drove significant CLI improvements through 15 merged PRs (+47,205/-3,671 lines), focusing on fixing plugin functionality (#4900, #4966), enhancing command behavior (#4964, #4987), and refactoring core components (#5011, #5092). Contributed substantial code changes across 174 files with a consistent pattern of comprehensive fixes, including resolving environment command issues (+13,789/-63 lines) and publishing command logging problems (+14,396/-367 lines). Maintained active involvement in the project through 23 PR comments and 120 commits, primarily concentrating on bug fixes and feature enhancements with occasional but impactful participation.\"\n    },\n    {\n      \"username\": \"lalalune\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/18633264?u=e2e906c3712c2506ebfa98df01c2cfdc50050b30&v=4\",\n      \"totalScore\": 881.7490897225401,\n      \"prScore\": 839.3310897225401,\n      \"issueScore\": 8,\n      \"reviewScore\": 32.5,\n      \"commentScore\": 1.918,\n      \"summary\": \"lalalune: Led major refactoring efforts with 16 merged PRs, including significant restructuring of the message server (#4864, +68k/-50k lines), splitting core types into granular files (#4999, #5020), and adding server functionality with tests (#5125, +63k/-3.7k lines). Created 4 open issues related to client hot reloading, service types, and plugin dependencies. Contributed substantial code changes across 3,570 files (+211k/-121k lines) with a focus on feature work and testing, showing an occasional activity pattern of a few days per week. Participated in the review process with 7 reviews and 12 comments across PRs and issues.\"\n    },\n    {\n      \"username\": \"tcm390\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/60634884?u=c6c41679b8322eaa0c81f72e0b4ed95e80f0ac16&v=4\",\n      \"totalScore\": 859.4169299381518,\n      \"prScore\": 840.6769299381518,\n      \"issueScore\": 8,\n      \"reviewScore\": 10,\n      \"commentScore\": 0.74,\n      \"summary\": \"tcm390: Merged 15 PRs this month, primarily focused on bug fixes including file uploading (#5115, +4381/-3524 lines), message server API URL issues (#4980, +5791/-2833 lines), and various smaller fixes for memory duplication, card padding, and plugin display. Created 3 issues, with 2 already closed (#5086 regarding duplicate plugins in GUI settings and #5116 for file upload failures), demonstrating a pattern of identifying and promptly addressing problems. Contributed significant code changes across 225 files (+11018/-8023 lines total), with activity concentrated on several days throughout the month rather than consistent daily engagement.\"\n    },\n    {\n      \"username\": \"standujar\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/16385918?u=718bdcd1585be8447bdfffb8c11ce249baa7532d&v=4\",\n      \"totalScore\": 369.9126275326216,\n      \"prScore\": 341.9226275326216,\n      \"issueScore\": 0,\n      \"reviewScore\": 25,\n      \"commentScore\": 2.9899999999999998,\n      \"summary\": \"standujar: Focused on critical bug fixes with 6 merged PRs, including significant improvements to plugin loading strategies (#4949, +1555/-717 lines) and implementing real-time message deletion (#4968, +28935/-18504 lines). Made substantial code changes across 482 files (+26119/-26433 lines) with particular emphasis on fixing bootstrap action callbacks (#4954) and optimizing SQL plugin functionality (#5045). Contributed to issue resolution by creating and helping close two issues related to API functionality (#4763, #4779), while also providing 5 approving reviews and 28 comments across PRs and issues.\"\n    },\n    {\n      \"username\": \"odilitime\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/16395496?u=c9bac48e632aae594a0d85aaf9e9c9c69b674d8b&v=4\",\n      \"totalScore\": 150.92035083039448,\n      \"prScore\": 85.82035083039447,\n      \"issueScore\": 0,\n      \"reviewScore\": 64.5,\n      \"commentScore\": 0.6000000000000001,\n      \"summary\": \"odilitime: Made substantial code changes (+8206/-20183 lines across 236 files) with sporadic activity over 4 days this month. Merged two small PRs: #5026 adding target to Content and #5054 fixing `bun run dev`, while maintaining an open PR #4896 for efficient server sync handling. Actively reviewed code with 12 reviews (4 approvals, 8 comments) and 3 PR comments, demonstrating engagement with the project despite limited direct contributions.\"\n    },\n    {\n      \"username\": \"Dexploarer\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/211557447?u=21a243d61cc1f87574328ae07fc64d7d7577b53d&v=4\",\n      \"totalScore\": 127.5133216897283,\n      \"prScore\": 127.5133216897283,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"Dexploarer: Opened one PR (#4939 \\\"github-comic-plugin\\\") that remains under review. Made significant code changes across 33 files (+1707/-18284 lines) in 7 commits, with work distributed across configuration files (44%) and tests (39%). Activity was sporadic, occurring on only 2 days this month, with efforts split between feature work, bugfix work, and other tasks.\"\n    },\n    {\n      \"username\": \"github-advanced-security\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/in/57789?v=4\",\n      \"totalScore\": 126,\n      \"prScore\": 0,\n      \"issueScore\": 0,\n      \"reviewScore\": 126,\n      \"commentScore\": 0,\n      \"summary\": \"github-advanced-security: Contributed exclusively through code reviews this month, providing 18 review comments without approvals or change requests. No direct code contributions, issue activity, or PR submissions were observed during this period.\"\n    },\n    {\n      \"username\": \"snobbee\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/125891987?u=ba9ca14b922f8fb73f38ba0981d157247af3dd03&v=4\",\n      \"totalScore\": 121.67580986930113,\n      \"prScore\": 109.37580986930112,\n      \"issueScore\": 12.1,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.2,\n      \"summary\": \"snobbee: Created issue #5095 \\\"Failed to create entity for agent\\\" which was subsequently closed. No other activity this month.\"\n    },\n    {\n      \"username\": \"HarshModi2005\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/142230924?u=64e337bbdb6b3aded5943b7e297759e7a3cfc0f0&v=4\",\n      \"totalScore\": 89.9695477931522,\n      \"prScore\": 89.9695477931522,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"HarshModi2005: Made significant code contributions with 7 commits modifying 203 files (+19,556/-11,302 lines) across just 2 active days this month. Merged PR #4902 which initialized the Alethea AI Plugin Structure and Configuration (+1,097 lines), and has an open PR #4959 for Polymarket plugin enhancements. Work was distributed across feature development (29%), bug fixes (14%), refactoring (14%), and other work (43%), with a balanced focus on both code (44%) and tests (36%).\"\n    },\n    {\n      \"username\": \"monilpat\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/15067321?v=4\",\n      \"totalScore\": 84.7279889493082,\n      \"prScore\": 74.7279889493082,\n      \"issueScore\": 0,\n      \"reviewScore\": 10,\n      \"commentScore\": 0,\n      \"summary\": \"monilpat: Currently working on two open PRs related to the Quickswap plugin: a draft implementation (#5123) and a fix for compiler errors in the plugin tests (#5132). No merged PRs or other activity this month.\"\n    },\n    {\n      \"username\": \"samarth30\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/48334430?u=1fc119a6c2deb8cf60448b4c8961cb21dc69baeb&v=4\",\n      \"totalScore\": 78.6345477931522,\n      \"prScore\": 78.6345477931522,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"samarth30: Focused on plugin migration functionality with two open PRs (#4950 \\\"feat: plugin migrator command\\\" and #5066 \\\"feat: updated plugin migrator\\\") involving substantial code changes (+15,330/-5,529 lines across 90 files). Made significant contributions primarily in feature work (43%) and other development areas (37%), with a balanced mix of code (61%), tests (17%), and documentation (15%). Showed sporadic activity pattern, being active on only 4 out of 30 days this month.\"\n    },\n    {\n      \"username\": \"madjin\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/32600939?u=cdcf89f44c7a50906c7a80d889efa85023af2049&v=4\",\n      \"totalScore\": 71.86591806888563,\n      \"prScore\": 71.86591806888563,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"madjin: Made a significant documentation update through PR #5046 \\\"chore: Update docs\\\" which modified 396 files with +23,453/-28,011 lines. This substantial documentation overhaul represents 95% of their contributions this month, completed in a focused effort across just 2 days. The PR was merged after 47 hours of review, showing a concentrated effort on documentation maintenance rather than ongoing development work.\"\n    },\n    {\n      \"username\": \"imholders\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/202005793?v=4\",\n      \"totalScore\": 69.43524017767298,\n      \"prScore\": 69.43524017767298,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"imholders: Contributed to documentation with 2 merged PRs (#4882 and #4880), updating README files with a total of 39 lines added. Both merged PRs focused on non-English documentation, specifically for README_IND.md and README_MY.md. Additionally, has one open PR (#4879) also related to README_IND.md updates, showing a pattern of documentation improvements for international language support.\"\n    },\n    {\n      \"username\": \"davidjsonn\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/155117116?u=c0d37dc63f2fa62f48b5c54342917b17460af966&v=4\",\n      \"totalScore\": 68.59487582486821,\n      \"prScore\": 68.39487582486821,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.2,\n      \"summary\": \"davidjsonn: Made documentation improvements through 4 merged PRs this month, including fixing errors in CHANGELOG.md (#4875), cosmos.md (#4941), and addressing typos in gitcoin-passport.md (#5008) and docstring fixups (#4995). The most substantial contribution was PR #4941 which significantly updated cosmos.md documentation with +3439/-1929 lines of changes. Contributed sporadically on 4 days this month, exclusively focusing on documentation improvements and bug fixes.\"\n    },\n    {\n      \"username\": \"0xCardiE\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/8969767?u=8b05509ceb96fd63a6246dfbf0860fd1df586e59&v=4\",\n      \"totalScore\": 60.61221681496939,\n      \"prScore\": 60.41221681496939,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.2,\n      \"summary\": \"0xCardiE: Contributed a single feature PR (#5113) adding API points to manage channels, with 203 lines of code added across 2 files. This was their only activity during the month, representing a focused but limited contribution to the codebase.\"\n    },\n    {\n      \"username\": \"Samarthsinghal28\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/120447590?v=4\",\n      \"totalScore\": 53.7557738965761,\n      \"prScore\": 53.7557738965761,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"Samarthsinghal28: Made code contributions through 2 commits that modified 16 files (+499/-317 lines), focusing entirely on bug fixes. Activity was sporadic, with contributions on only 2 days this month. No pull requests, issues, or reviews were submitted during this period.\"\n    },\n    {\n      \"username\": \"bealers\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/6403055?u=8c40778251e25b92cdee727056415b6c0d1bcdc5&v=4\",\n      \"totalScore\": 44.566943533553264,\n      \"prScore\": 44.12894353355327,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.43799999999999994,\n      \"summary\": \"bealers: Opened one pull request (#5278) addressing a database schema type mismatch issue, making a small code change (+2/-2 lines). Activity was limited to a single day this month with just one commit focused entirely on bug fixing.\"\n    },\n    {\n      \"username\": \"valentinuuiuiu\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/105746659?v=4\",\n      \"totalScore\": 40.4257738965761,\n      \"prScore\": 40.4257738965761,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"valentinuuiuiu: Opened a single PR (#5254 \\\"Feature/jules agent dev poc\\\") with substantial code changes, modifying 324 files with +17,775/-8,528 lines across code (36%), tests (26%), and config (26%). This appears to be a significant feature development effort focused on a proof of concept for a Jules agent, concentrated in a single day of activity this month.\"\n    },\n    {\n      \"username\": \"alpuga\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/37851662?u=c913e7d534337d8d4f8c97a52d689d87ae50cff3&v=4\",\n      \"totalScore\": 40.4257738965761,\n      \"prScore\": 40.4257738965761,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"alpuga: Opened one pull request (#4938 \\\"Puga/community agent2\\\") which remains open. No other activity observed this month.\"\n    },\n    {\n      \"username\": \"cursor-com\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/in/1210556?v=4\",\n      \"totalScore\": 39.6007738965761,\n      \"prScore\": 39.6007738965761,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"cursor-com: Opened one pull request (#5178) focused on adding a comprehensive test suite with 93% coverage for the plugin-alethea component, but had no other activity this month.\"\n    },\n    {\n      \"username\": \"crypto-cooker\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/16945788?u=819d567b766cb43113f89fb60ba0fac4c5137cf5&v=4\",\n      \"totalScore\": 34.2457738965761,\n      \"prScore\": 34.2457738965761,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"crypto-cooker: Opened one pull request (#5177) titled \\\"Fix/summarized tweet interval issue\\\" which remains open. No other activity observed this month.\"\n    },\n    {\n      \"username\": \"alex-nax\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/82507604?u=b3af75d82f80ed83007a77c351a64bdd9e5d67de&v=4\",\n      \"totalScore\": 33.7437738965761,\n      \"prScore\": 33.5437738965761,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.2,\n      \"summary\": \"alex-nax: Opened one significant PR (#5057) to update the agent to use eliza v1.x, which involved extensive refactoring with substantial code changes (+3855/-302122 lines) across 1956 files. The work primarily focused on configuration files (44%), tests (14%), and documentation (14%), with activity concentrated on just 2 days this month. Also contributed one comment on an issue.\"\n    },\n    {\n      \"username\": \"coderwander\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/166724773?u=2d717dae44015c39a79eb7a509a5d7d0912d59b6&v=4\",\n      \"totalScore\": 28.5304379124341,\n      \"prScore\": 28.5304379124341,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"coderwander: Made a small documentation improvement with PR #5031 \\\"chore: fix typos\\\" (+2/-2 lines), which was merged after 8 hours. This was their only contribution during the month, focusing solely on documentation fixes.\"\n    },\n    {\n      \"username\": \"K1mc4n\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/156217571?u=cc94e7743c591f36eaf958d88befa855348bba9d&v=4\",\n      \"totalScore\": 28.404261218861713,\n      \"prScore\": 28.404261218861713,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"K1mc4n: Made a single documentation contribution this month with PR #4867, updating README_IND.md with 19 additions and 1 deletion. The PR was merged after 11 hours, representing their only activity during this period.\"\n    },\n    {\n      \"username\": \"eeemmmmmm\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/155267286?u=f7d609c472582d2c72ff5b592dddf98359459fc5&v=4\",\n      \"totalScore\": 28.3968758248682,\n      \"prScore\": 28.1968758248682,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.2,\n      \"summary\": \"eeemmmmmm: Opened one pull request (#4951) to bump setup-node to v4, which remains open. Made minimal code changes (+2/-2 lines) across 2 files, evenly split between test and configuration files. Active on only one day this month with a single commit focused on CI infrastructure.\"\n    },\n    {\n      \"username\": \"piffie\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/1213363?u=30bd860e9983a61af957d4a296c05abf098a7418&v=4\",\n      \"totalScore\": 25.924955074527656,\n      \"prScore\": 23.924955074527656,\n      \"issueScore\": 2,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"piffie: Identified and fixed a Windows-specific project loading issue by opening issue #5155 and subsequently creating PR #5156 (+5/-1 lines) which was merged. The contribution addressed a bug that prevented projects from being imported properly on Windows development machines. This was piffie's only activity during the month, showing focused problem-solving on a specific platform compatibility issue.\"\n    },\n    {\n      \"username\": \"derjogi\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/1185873?u=f96224e71f2da95d67dafee50d839763b105c77f&v=4\",\n      \"totalScore\": 23.913947636399186,\n      \"prScore\": 23.913947636399186,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"derjogi: Fixed a Postgres migration schema selection issue with PR #5072 (+372/-567 lines), which was their only contribution this month. This bugfix involved significant code removal, streamlining the codebase. They also commented on one issue during their single day of activity this month.\"\n    },\n    {\n      \"username\": \"consentsam\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/16432541?u=da0ceba930529b4671429d2c1362b15d29be95b0&v=4\",\n      \"totalScore\": 23.67871895621705,\n      \"prScore\": 23.67871895621705,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"consentsam: Made a small documentation improvement with PR #5078 (+2/-2 lines), which updated CLI examples in the agent documentation by replacing \\\"-t\\\" with \\\"--type\\\". This was their only contribution during the period, representing a brief, focused effort to enhance documentation clarity.\"\n    },\n    {\n      \"username\": \"maximevtush\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/154841002?u=0ea972744f29fe4504db6fbc4151b9226ba19157&v=4\",\n      \"totalScore\": 23.25691014905531,\n      \"prScore\": 23.25691014905531,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"maximevtush: Made a small but precise contribution by fixing a typo in the Unfollow Room Action and a variable name in a plugin-related file through PR #5130 (+3/-3 lines). This was their only activity during the month, with just 2 commits modifying 2 files.\"\n    },\n    {\n      \"username\": \"kilavvy\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/140459108?u=4f7b40be12f0a9908fac42a21f08933ec01bbec4&v=4\",\n      \"totalScore\": 22.8094379124341,\n      \"prScore\": 22.8094379124341,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"kilavvy: Made a small contribution this month with one merged PR (#5238) that fixed typos in documentation and comments (+2/-2 lines). The PR modified 2 files, with changes evenly split between code and documentation. Activity was limited to a single day this month.\"\n    },\n    {\n      \"username\": \"zeevick10\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/140458077?u=234a5b1512060121b98420da18d7a6cdd9d0255c&v=4\",\n      \"totalScore\": 22.506437912434098,\n      \"prScore\": 22.506437912434098,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"zeevick10: Made a small documentation improvement by fixing typos in the Plugin Documentation for Flow and MultiversX through PR #5127 (+2/-2 lines). This was their only contribution during the month, showing sporadic activity with changes focused entirely on documentation.\"\n    },\n    {\n      \"username\": \"michavie\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/39144548?u=3496eb82a60d2a8e88bf5e22c3ffe5eb2b37d816&v=4\",\n      \"totalScore\": 21.609947636399188,\n      \"prScore\": 21.609947636399188,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"michavie: Made a single focused contribution this month with PR #5129, fixing bootstrap evaluator callbacks by removing 9 lines and adding 1 line of code. The PR was merged within 3 hours, representing their only activity during this period.\"\n    },\n    {\n      \"username\": \"shandongzhejiang\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/169470733?u=99d997d79e138d4f2a8e7d0764232feae9c673a5&v=4\",\n      \"totalScore\": 13.88786522358297,\n      \"prScore\": 13.88786522358297,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"shandongzhejiang: Opened one pull request (#5271) focused on correcting comments in documentation. Made minor changes across 3 files (+3/-3 lines) in a single commit. Activity was limited to just one day this month.\"\n    },\n    {\n      \"username\": \"urosognjenovic\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/104977001?u=29281831ed2cca2ada125b160ef43e9ced38a334&v=4\",\n      \"totalScore\": 11.38071895621705,\n      \"prScore\": 5.38071895621705,\n      \"issueScore\": 6,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"urosognjenovic: Made a single documentation improvement this month with PR #5119, removing 4 lines to fix a duplicated ID in sidebars. This was a targeted fix that required minimal code changes but took about 30 hours to merge.\"\n    },\n    {\n      \"username\": \"omariosman\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/45637656?u=4225742309bf32d2c6c341b67da1613373390605&v=4\",\n      \"totalScore\": 10.299999999999999,\n      \"prScore\": 0,\n      \"issueScore\": 10.1,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.2,\n      \"summary\": \"omariosman: Created 5 issues related to plugin functionality and integration challenges, with 3 now closed (#4819, #4933, #4911) and 2 remaining open (#4931, #4912). Actively engaged in discussions by commenting on 9 different issues, showing particular interest in troubleshooting plugin loading problems and dependency issues. No code contributions or pull requests this month, with activity concentrated on reporting and discussing technical issues rather than development work.\"\n    },\n    {\n      \"username\": \"alexjalonso7777\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/179897636?v=4\",\n      \"totalScore\": 9.5,\n      \"prScore\": 0,\n      \"issueScore\": 0,\n      \"reviewScore\": 9.5,\n      \"commentScore\": 0,\n      \"summary\": \"alexjalonso7777: Contributed through code review activities this month, completing 2 reviews with 1 approval and 1 comment. No direct code contributions, issue activities, or pull requests were made during this period.\"\n    },\n    {\n      \"username\": \"soyrubio\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/70545288?u=cbbec71fcd4cd8c34a38a6689a072bbba98b27de&v=4\",\n      \"totalScore\": 7.790573590279973,\n      \"prScore\": 7.790573590279973,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"soyrubio: Contributed a single bugfix PR (#5148) that removed evaluators from the messageHandler prompt, making changes across 1 file with a net change of +0/-1 lines. The PR involved moderate complexity with +195/-67 lines changed overall and was merged within 9 hours of submission. Activity was limited to a single day this month.\"\n    },\n    {\n      \"username\": \"exitsimulation\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/13287154?u=eaf07807399e16a2b75364f7588f1e6ca95011aa&v=4\",\n      \"totalScore\": 6.7379999999999995,\n      \"prScore\": 0,\n      \"issueScore\": 6.1,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.6379999999999999,\n      \"summary\": \"exitsimulation: Focused on issue reporting and troubleshooting, creating 3 issues (#4955, #4972, #5121) related to API functionality and room creation, with two of them now resolved. Contributed to ongoing discussions by commenting on 8 different issues, showing engagement with the project's problem-solving process. No code contributions or pull requests this month, with activity concentrated on a few specific days rather than consistent participation.\"\n    },\n    {\n      \"username\": \"affanmustafa\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/69677074?u=7c8ded5622198b0b638af30a38d87b7b7d43ca59&v=4\",\n      \"totalScore\": 6.5,\n      \"prScore\": 0,\n      \"issueScore\": 2,\n      \"reviewScore\": 4.5,\n      \"commentScore\": 0,\n      \"summary\": \"affanmustafa: Reported issue #4894 regarding Twitter Client startup failure in release 1.0.2, which has since been closed. Provided one review with comments on a pull request. Overall activity was minimal this month with contributions limited to issue reporting and review feedback.\"\n    },\n    {\n      \"username\": \"scottrepreneur\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/1778380?u=fede4269023b94283a66b98872ce7f971a7999e7&v=4\",\n      \"totalScore\": 6.3,\n      \"prScore\": 0,\n      \"issueScore\": 6.1,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.2,\n      \"summary\": \"scottrepreneur: Created 4 issues this month, with 3 already closed (#4814, #4926, #4927) and 1 remaining open (#4924), focusing primarily on identifying and reporting UI/UX problems such as test failures, chat functionality issues, and version display errors. Contributed to discussions by commenting on 4 issues, showing engagement with the project despite not submitting any code changes. Activity was sporadic rather than consistent throughout the month.\"\n    },\n    {\n      \"username\": \"sicco-moonbeam\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/92480254?u=d0a396ee2f37b5bb3944aa58a7e75ee3a7e4cda3&v=4\",\n      \"totalScore\": 6,\n      \"prScore\": 0,\n      \"issueScore\": 6,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"sicco-moonbeam: Created three issues this month focusing on technical improvements: #5142 regarding test command requirements in the CLI, #5183 about customizing root logger configuration for downstream projects, and #5181 concerning advisory locking for the DatabaseMigrationService. No code contributions or PR activity during this period.\"\n    },\n    {\n      \"username\": \"leopardracer\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/136604165?u=7ca681dd63a1e9991929157a38f094609d7a42f0&v=4\",\n      \"totalScore\": 5.59971895621705,\n      \"prScore\": 5.59971895621705,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"leopardracer: Made minor documentation improvements through PR #5154 (+2/-2 lines), which focused on text corrections and consistency improvements. The contribution was small in scope but addressed specific documentation needs. This was leopardracer's only activity during the month, representing a single day of participation.\"\n    },\n    {\n      \"username\": \"GarmashAlex\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/193699300?u=807e67a20bd500dde9e31355d67345c26c585a16&v=4\",\n      \"totalScore\": 5.446306144334055,\n      \"prScore\": 5.446306144334055,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"GarmashAlex: Made a single documentation contribution this month by fixing a broken link in the ElizaOS documentation through PR #5162 (+1/-1 lines). This small but useful bugfix updated an outdated URL to the new official documentation location.\"\n    },\n    {\n      \"username\": \"jonathanprozzi\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/9438776?u=25b5a5b22cfe26724ee1ebd869c378fc65196987&v=4\",\n      \"totalScore\": 4.84,\n      \"prScore\": 0,\n      \"issueScore\": 4.300000000000001,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.54,\n      \"summary\": \"jonathanprozzi: Focused on issue reporting and discussion this month, creating two issues (#5017 about plugin callback problems and #5039 regarding custom character loading after an upgrade, which was subsequently closed). Contributed to ongoing discussions with 6 issue comments and 1 PR comment, showing engagement with the project despite not submitting code changes. Activity was sporadic, concentrated on a few days during the period.\"\n    },\n    {\n      \"username\": \"Megamindmaster\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/31832268?u=d978dad8011f9cf56047430ba41aff01e4c1be66&v=4\",\n      \"totalScore\": 4.54,\n      \"prScore\": 0,\n      \"issueScore\": 4.2,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.33999999999999997,\n      \"summary\": \"Megamindmaster: Reported one issue (#5228) regarding difficulties adding character JSON files in a fresh installation of v1.0.11, which has since been closed. Contributed to discussions by commenting on three different issues. Activity was limited to issue reporting and commenting, with no code contributions or pull requests during this period.\"\n    },\n    {\n      \"username\": \"harperaa\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/1330944?v=4\",\n      \"totalScore\": 4.4399999999999995,\n      \"prScore\": 0,\n      \"issueScore\": 4.1,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.33999999999999997,\n      \"summary\": \"harperaa: Reported two issues this month, including #5005 about LOG_LEVEL not working in version 1.0.6 (now closed) and #5004 regarding knowledge management (RAG) functionality not working in the same version (still open). Engaged in discussions by commenting on 9 different issues, providing feedback and information to help resolve problems. Activity was sporadic, with contributions concentrated on a few days rather than throughout the month.\"\n    },\n    {\n      \"username\": \"furkannabisumji\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/103491179?u=8e1680f87bc79e7399bedfbd1b0739e63b662ea8&v=4\",\n      \"totalScore\": 4,\n      \"prScore\": 0,\n      \"issueScore\": 4,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"furkannabisumji: Created one issue (#5117) related to \\\"bedrock\\\" which remains open. Contributed a single comment on an issue. No code changes or pull requests during this period.\"\n    },\n    {\n      \"username\": \"ceeriil\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/84419154?u=5e4524c176cdae6a8ff3fffc83c3e4f2392842c7&v=4\",\n      \"totalScore\": 4,\n      \"prScore\": 0,\n      \"issueScore\": 4,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"ceeriil: Reported two issues this month: #4876 regarding fallback mechanisms for bun install failures on macOS and #5023 about GPT-4o access errors with OpenAI API keys, both of which have been closed. Contributed to discussions by commenting on two issues. No code contributions or pull requests during this period.\"\n    },\n    {\n      \"username\": \"yehia67\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/21314724?u=382461180dd04185ac97e32d306dc49d8e80ee60&v=4\",\n      \"totalScore\": 2.44,\n      \"prScore\": 0,\n      \"issueScore\": 2.1,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.33999999999999997,\n      \"summary\": \"yehia67: Created one issue (#5260) proposing a custom plugin for onchain AI agent, which remains open. Engaged in discussions by commenting on two existing issues. No code contributions or pull requests during this period.\"\n    },\n    {\n      \"username\": \"kamalbuilds\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/95926324?u=eae3fbc4228c17bb52c31b08da2d5f71fb2345db&v=4\",\n      \"totalScore\": 2.3000000000000003,\n      \"prScore\": 0,\n      \"issueScore\": 2.1,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.2,\n      \"summary\": \"kamalbuilds: Created one issue (#5244 \\\"Deploy Eliza agents\\\") and commented on another issue this month. No code contributions or pull requests during this period. Activity was minimal with sporadic engagement.\"\n    },\n    {\n      \"username\": \"CurralesDragon\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/7818955?v=4\",\n      \"totalScore\": 2.3000000000000003,\n      \"prScore\": 0,\n      \"issueScore\": 2.1,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.2,\n      \"summary\": \"CurralesDragon: Reported one issue (#4921) about an agent not responding to Twitter mentions, which remains open. Contributed to the discussion by commenting on this same issue. No code contributions or pull requests during this period.\"\n    },\n    {\n      \"username\": \"SyedMuqeetAqib\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/66469141?u=72da4f0eb0d8620d258ca786b473b8e38396828e&v=4\",\n      \"totalScore\": 2.2,\n      \"prScore\": 0,\n      \"issueScore\": 2,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.2,\n      \"summary\": \"SyedMuqeetAqib: Created issue #5060 proposing to add optional Stream responses for handling streaming functionality. Commented on one issue during the month. Activity was minimal with no code contributions or pull requests.\"\n    },\n    {\n      \"username\": \"yasir23\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/46179498?u=89dcf261b397bb2930cbedce61e09b8df01998e6&v=4\",\n      \"totalScore\": 2,\n      \"prScore\": 0,\n      \"issueScore\": 2,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"yasir23: Opened issue #5172 regarding Twitter functionality problems when using both plugin and client. No other contributions this month.\"\n    },\n    {\n      \"username\": \"techcomthanh\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/36766297?v=4\",\n      \"totalScore\": 2,\n      \"prScore\": 0,\n      \"issueScore\": 2,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"techcomthanh: Created issue #4872 regarding removing requirements from plugin templates, which has since been closed. No other activity this month.\"\n    },\n    {\n      \"username\": \"taprwhiz\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/12781631?u=9c3cf32fc6d0549fbc316147ea6691b0220cfc86&v=4\",\n      \"totalScore\": 2,\n      \"prScore\": 0,\n      \"issueScore\": 2,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"taprwhiz: Created one issue this month (#4908) requesting a \\\"Pump.fun migration feature,\\\" which remains open. No other activity was observed during this period.\"\n    },\n    {\n      \"username\": \"paulmerz\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/36473599?v=4\",\n      \"totalScore\": 2,\n      \"prScore\": 0,\n      \"issueScore\": 2,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"paulmerz: Reported one issue (#5161) regarding elizaos crashes when accessing localhost on Windows, which remains open. No other activity this month.\"\n    },\n    {\n      \"username\": \"naevern\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/59479310?u=5df6a7825c4025be63e736b81179fa9895e7b410&v=4\",\n      \"totalScore\": 2,\n      \"prScore\": 0,\n      \"issueScore\": 2,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"naevern: Created one issue (#4893) suggesting the addition of automated AI code reviews with Claude to enhance PR feedback, which has since been closed. No other activity was observed this month.\"\n    },\n    {\n      \"username\": \"mattdev071\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/87398137?u=eb8eef24c813fa6a608450bdc530e314a5a5b8df&v=4\",\n      \"totalScore\": 2,\n      \"prScore\": 0,\n      \"issueScore\": 2,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"mattdev071: Created a single issue (#4901) about seeking new opportunities as a Full Stack Software Engineer, which has since been closed. No other activity was observed this month.\"\n    },\n    {\n      \"username\": \"imanngabriel\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/91194719?v=4\",\n      \"totalScore\": 2,\n      \"prScore\": 0,\n      \"issueScore\": 2,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"imanngabriel: Created one issue this month (#4940) regarding \\\"Successive replies on target users,\\\" which remains open. No other activity was observed during this period.\"\n    },\n    {\n      \"username\": \"donpushme\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/19556813?u=2d974ef66bd4dbaf8f839959eb17c206fc741c05&v=4\",\n      \"totalScore\": 2,\n      \"prScore\": 0,\n      \"issueScore\": 2,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"donpushme: Opened a single issue (#4909) inquiring about updates on HyperEVM, with no other activity this month.\"\n    },\n    {\n      \"username\": \"agent671\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/197471770?v=4\",\n      \"totalScore\": 2,\n      \"prScore\": 0,\n      \"issueScore\": 2,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"agent671: Created a single issue (#5074) inquiring about the agent-twitter-client repository. No other activity was observed this month.\"\n    },\n    {\n      \"username\": \"Srenonno\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/91727428?v=4\",\n      \"totalScore\": 2,\n      \"prScore\": 0,\n      \"issueScore\": 2,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"Srenonno: Opened issue #5216 regarding \\\"EVENT MESSAGE SENT not working\\\" which remains open. No other activity was observed this month.\"\n    },\n    {\n      \"username\": \"NBFinanceTech\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/66219221?u=bb3a3d8ba0f61250fa7d5d6cac224706e29b7210&v=4\",\n      \"totalScore\": 2,\n      \"prScore\": 0,\n      \"issueScore\": 2,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"NBFinanceTech: Opened a single issue (#5268) regarding a character saving problem. No other contributions or activity this month.\"\n    },\n    {\n      \"username\": \"HuzarO\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/16628522?u=458b109bc49f67c565ca2c83c1b600e1c171578e&v=4\",\n      \"totalScore\": 2,\n      \"prScore\": 0,\n      \"issueScore\": 2,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"HuzarO: Created one issue this month (#4947) regarding a custom plugin callback issue that remains open. No other activity was observed during this period.\"\n    },\n    {\n      \"username\": \"BinaryBluePeach\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/192237769?v=4\",\n      \"totalScore\": 2,\n      \"prScore\": 0,\n      \"issueScore\": 2,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"BinaryBluePeach: Opened a single issue (#4861) regarding plugin installation problems with the giphy plugin. No other activity was observed this month.\"\n    }\n  ],\n  \"newPRs\": 370,\n  \"mergedPRs\": 299,\n  \"newIssues\": 65,\n  \"closedIssues\": 54,\n  \"activeContributors\": 77\n}\n---\n[\"NBFinanceTech_week_2025-06-22\", \"NBFinanceTech\", \"week\", \"2025-06-22\", \"NBFinanceTech: Opened issue #5268 \\\"Can't save character\\\" which remains open. No other activity this week.\", \"2025-06-25T21:39:11.375Z\"]\n[\"Dexploarer_week_2025-06-22\", \"Dexploarer\", \"week\", \"2025-06-22\", \"Dexploarer: Opened one PR (#5243 \\\"Random Fixes\\\") with substantial code changes (+1777/-9971 lines) across 68 files, primarily focused on feature work (77%) and tests (15%). Active on only 2 days this week, with contributions spanning tests (40%), code (26%), and documentation (22%) files.\", \"2025-06-25T21:39:11.396Z\"]\n[\"Samarthsinghal28_week_2025-06-22\", \"Samarthsinghal28\", \"week\", \"2025-06-22\", \"Samarthsinghal28: Merged a significant PR (#5247) adding Actions and ABIs for the Alethea Plugin, contributing over 13,000 lines of code while removing nearly 3,000 lines. This substantial contribution represents their only activity during this period.\", \"2025-06-25T21:39:11.519Z\"]\n[\"0xbbjoker_week_2025-06-22\", \"0xbbjoker\", \"week\", \"2025-06-22\", \"0xbbjoker: Opened three PRs this week focusing on fixes and features, including attachment testing (#5267), OpenRouter model selection (#5264), and a Catbox rollback (#5255), with substantial code changes (+3552/-1139 lines across 41 files). Contributed to the review process with 2 PR reviews and 2 PR comments, showing focused activity on a single day during this period.\", \"2025-06-25T21:39:12.032Z\"]\n[\"ChristopherTrimboli_week_2025-06-22\", \"ChristopherTrimboli\", \"week\", \"2025-06-22\", \"ChristopherTrimboli: Merged two significant PRs this week: a documentation update (#5236) with substantial changes (+9578/-7862 lines) to align with the latest API spec v1, and a CLI package cleanup effort (#5237) that streamlined the codebase (+560/-1040 lines). Provided 6 approving reviews on other PRs while maintaining an occasional activity pattern, with documentation work comprising 87% of their contributions.\", \"2025-06-25T21:39:12.213Z\"]\n[\"Y4NK33420_week_2025-06-22\", \"Y4NK33420\", \"week\", \"2025-06-22\", \"Y4NK33420: Made a single substantial commit that modified 26 files with significant additions (+5036 lines) and some removals (-178 lines). No PRs, issues, or reviews were created or participated in during this period.\", \"2025-06-25T21:39:13.377Z\"]\n[\"coderabbitai[bot]_week_2025-06-22\", \"coderabbitai[bot]\", \"week\", \"2025-06-22\", \"coderabbitai[bot]: Made a single substantial commit this week, adding 4,510 lines across 7 files with no deletions. Activity was limited to just one day during this period, suggesting focused work on a specific feature implementation.\", \"2025-06-25T21:39:13.474Z\"]\n[\"bealers_week_2025-06-22\", \"bealers\", \"week\", \"2025-06-22\", \"bealers: Opened one pull request (#5278) addressing a database schema type mismatch issue, making minor code changes (+2/-2 lines). Activity was limited to a single day this week with a clear focus on bugfix work.\", \"2025-06-25T21:39:13.501Z\"]\n[\"github-advanced-security_week_2025-06-22\", \"github-advanced-security\", \"week\", \"2025-06-22\", \"github-advanced-security: Minimal activity this week with only one review comment provided. No PRs were opened or merged, no issues were created or commented on, and no code changes were made.\", \"2025-06-25T21:39:14.175Z\"]\n[\"eeemmmmmm_week_2025-06-22\", \"eeemmmmmm\", \"week\", \"2025-06-22\", \"eeemmmmmm: Made minor documentation improvements through PR #5258 \\\"polishing docs: error fixes for clarity\\\" (+2/-2 lines), which was merged this week. This contribution focused on enhancing clarity in the documentation with small but precise text adjustments.\", \"2025-06-25T21:39:14.258Z\"]\n[\"kamalbuilds_week_2025-06-22\", \"kamalbuilds\", \"week\", \"2025-06-22\", \"kamalbuilds: Created issue #5244 \\\"Deploy Eliza agents\\\" and commented on one issue this week. No code contributions or PR activity during this period.\", \"2025-06-25T21:39:15.048Z\"]\n[\"lalalune_week_2025-06-22\", \"lalalune\", \"week\", \"2025-06-22\", \"lalalune: Has one open pull request (#5242 \\\"Next\\\") but no merged PRs or other activity this week.\", \"2025-06-25T21:39:15.158Z\"]\n[\"kilavvy_week_2025-06-22\", \"kilavvy\", \"week\", \"2025-06-22\", \"kilavvy: Made a small contribution by merging PR #5238 which fixed typos in documentation and comments (+2/-2 lines). The PR modified 2 files, with changes evenly split between code and documentation.\", \"2025-06-25T21:39:15.374Z\"]\n[\"shandongzhejiang_week_2025-06-22\", \"shandongzhejiang\", \"week\", \"2025-06-22\", \"shandongzhejiang: Opened one PR (#5271) to correct comments in documentation, making minor changes across 3 files (+3/-3 lines). Activity was limited to a single day this week with a small documentation-focused contribution.\", \"2025-06-25T21:39:16.521Z\"]\n[\"urosognjenovic_week_2025-06-22\", \"urosognjenovic\", \"week\", \"2025-06-22\", \"urosognjenovic: Created one issue (#5249) regarding setup problems with a project provider, with no other activity this week.\", \"2025-06-25T21:39:16.905Z\"]\n[\"standujar_week_2025-06-22\", \"standujar\", \"week\", \"2025-06-22\", \"standujar: Made substantial code changes with 3 commits modifying 167 files (+14,622/-8,458 lines) across 2 days this week. No PRs, issues, or reviews were submitted during this period.\", \"2025-06-25T21:39:16.969Z\"]\n[\"snobbee_week_2025-06-22\", \"snobbee\", \"week\", \"2025-06-22\", \"snobbee: Worked on a significant build fix and deployment configuration with an open PR #5277 that modified 224 files (+14,809/-3,839 lines), with config files representing 71% of changes. Created and closed issue #5279 regarding a handler for delegate type TEXT_EMBEDDING, while maintaining moderate activity across 3 days of the week.\", \"2025-06-25T21:39:17.183Z\"]\n[\"tcm390_week_2025-06-22\", \"tcm390\", \"week\", \"2025-06-22\", \"tcm390: Merged 6 PRs this week, with significant contributions including support for user-uploaded plain text files (#5262, +34/-12 lines) and a major UI enhancement adding background color to dialog content (#5248, +5415/-561 lines). Also fixed several issues including chat title generation (#5275), chat stuck problems (#5274), and improved attachment processing to support local image URLs (#5257, +457/-425 lines).\", \"2025-06-25T21:39:17.765Z\"]\n[\"yehia67_week_2025-06-22\", \"yehia67\", \"week\", \"2025-06-22\", \"yehia67: Created issue #5260 proposing a custom plugin for onchain AI agent and commented on 2 existing issues. No code contributions or PR activity this week.\", \"2025-06-25T21:39:18.804Z\"]\n[\"valentinuuiuiu_week_2025-06-22\", \"valentinuuiuiu\", \"week\", \"2025-06-22\", \"valentinuuiuiu: Opened a substantial PR #5254 \\\"Feature/jules agent dev poc\\\" with significant code changes (+17,775/-8,528 lines) across 324 files. The work represents a major feature development effort, with modifications distributed across code (36%), tests (26%), and configuration files (26%).\", \"2025-06-25T21:39:18.986Z\"]\n[\"yungalgo_week_2025-06-22\", \"yungalgo\", \"week\", \"2025-06-22\", \"yungalgo: Completed a significant architectural change by merging PR #5270 that shifted plugins from project-scoped to agent-scoped (+3954/-1881 lines), alongside a major refactoring effort in PR #5246 to centralize directory detection logic (+6421/-2262 lines). Overall contributed 41 commits across 120 modified files, with activity concentrated on just 2 days of the week, primarily focusing on code (41%) and test (37%) improvements.\", \"2025-06-25T21:39:20.074Z\"]\n[\"wtfsayo_week_2025-06-22\", \"wtfsayo\", \"week\", \"2025-06-22\", \"wtfsayo: Led a major API client migration effort with 10 merged PRs, including the substantial type-safe API client package (#5240, +18k/-14k lines) and several critical fixes for attachment formatting, upload functionality, and platform compatibility. Fixed multiple cross-platform issues, particularly for macOS and Windows, with PR #5250 (+10k/-5.6k lines) addressing CLI test failures by centralizing platform options. Maintained consistent activity across 4 days with 91 commits spanning 717 files (+44k/-34k lines), balancing feature development (35%) with bug fixes (30%) while also contributing to documentation accuracy.\", \"2025-06-25T21:39:20.490Z\"]\n[\"0xCardiE_day_2025-06-21\", \"0xCardiE\", \"day\", \"2025-06-21\", \"0xCardiE: Merged 1 PR (#5235) focused on improving database connection error handling, contributing a total of +110/-36 lines. Maintained a consistent activity pattern, demonstrating ongoing engagement with the codebase.\", \"2025-06-25T21:39:23.884Z\"]\n[\"0xbbjoker_day_2025-06-21\", \"0xbbjoker\", \"day\", \"2025-06-21\", \"0xbbjoker: Made significant code changes by modifying 22 files with a total of +2508/-788 lines, focusing primarily on feature work (75%) and bugfix work (25%). Maintained a consistent activity pattern, being active every day.\", \"2025-06-25T21:39:23.945Z\"]\n[\"furkannabisumji_day_2025-06-21\", \"furkannabisumji\", \"day\", \"2025-06-21\", \"furkannabisumji: Created 1 issue today (#5230 \\\"server\\\" (OPEN)), showing sporadic activity with no merged pull requests or code changes.\", \"2025-06-25T21:39:24.025Z\"]\n[\"kilavvy_day_2025-06-22\", \"kilavvy\", \"day\", \"2025-06-22\", \"kilavvy: Merged 1 PR (#5238) that corrected typos in documentation and comments (+2/-2 lines), with a consistent activity pattern reflected in daily contributions. Modified 2 files with a total of 2 lines changed, maintaining a focus on other work.\", \"2025-06-25T21:39:24.247Z\"]\n[\"Dexploarer_day_2025-06-22\", \"Dexploarer\", \"day\", \"2025-06-22\", \"Dexploarer: Made significant code changes by modifying 1 file, resulting in a net change of +298 lines and -77 lines, with a primary focus on other work. Maintained a consistent activity pattern, being active every day.\", \"2025-06-25T21:39:24.276Z\"]\n[\"coderabbitai[bot]_day_2025-06-22\", \"coderabbitai[bot]\", \"day\", \"2025-06-22\", \"coderabbitai[bot]: Made significant code changes by modifying 7 files with a total of +4510 lines, focusing entirely on feature work. Maintained a consistent activity pattern, being active every day.\", \"2025-06-25T21:39:24.536Z\"]\n[\"github-advanced-security_day_2025-06-22\", \"github-advanced-security\", \"day\", \"2025-06-22\", \"github-advanced-security: Engaged in the review process with 1 review comment but did not approve or request changes. The activity pattern shows sporadic engagement, being active on only 0 out of 1 days.\", \"2025-06-25T21:39:24.654Z\"]\n[\"ChristopherTrimboli_day_2025-06-21\", \"ChristopherTrimboli\", \"day\", \"2025-06-21\", \"ChristopherTrimboli: Merged 3 PRs in backend, including #5231 (+980/-610 lines) for server tests, #5229 (+121/-57 lines) for plugin SQL unit tests, and #5227 (+245/-313 lines) for bootstrap tests and code cleanup, totaling +1326/-980 lines. Actively modified 68 files with a focus on bugfix work (60%) and feature work (40%), demonstrating consistent daily contributions.\", \"2025-06-25T21:39:24.737Z\"]\n[\"Megamindmaster_day_2025-06-21\", \"Megamindmaster\", \"day\", \"2025-06-21\", \"Megamindmaster: Created 1 issue (#5228 \\\"Fresh install v 1.0.11 Can't add any character json files vi...\\\" which is now closed) and commented on 2 issues, demonstrating sporadic activity today.\", \"2025-06-25T21:39:24.992Z\"]\n[\"ChristopherTrimboli_day_2025-06-22\", \"ChristopherTrimboli\", \"day\", \"2025-06-22\", \"ChristopherTrimboli: Merged 2 PRs (#5237 and #5236) with significant changes (+560/-1040 lines and +9578/-7862 lines respectively), while modifying 170 files overall (+10074/-8773 lines) across 4 commits. Actively engaged with the community by commenting on 1 issue and providing 1 review with an approval.\", \"2025-06-25T21:39:25.055Z\"]\n[\"github-advanced-security_day_2025-06-21\", \"github-advanced-security\", \"day\", \"2025-06-21\", \"github-advanced-security: Engaged with the project through 1 review, providing 1 comment but no approvals or change requests. Activity remains sporadic, with no contributions in terms of pull requests or issues today.\", \"2025-06-25T21:39:25.149Z\"]\n[\"snobbee_day_2025-06-21\", \"snobbee\", \"day\", \"2025-06-21\", \"snobbee: Merged 1 significant PR (#5232) focused on refactoring the polygon code, resulting in a substantial change of +14540/-3840 lines. Modified 24 files with a total of +170/-170 lines, demonstrating consistent activity with a primary focus on refactoring work.\", \"2025-06-25T21:39:25.261Z\"]\n[\"snobbee_day_2025-06-22\", \"snobbee\", \"day\", \"2025-06-22\", \"snobbee: Made significant code changes by modifying 63 files with a total of +3006/-2379 lines, focusing entirely on bugfix work. Active today, demonstrating a consistent work pattern with 1 commit.\", \"2025-06-25T21:39:25.279Z\"]\n[\"monilpat_day_2025-06-21\", \"monilpat\", \"day\", \"2025-06-21\", \"monilpat: Reviewed 1 pull request with 1 approval, showing sporadic activity today. No other contributions were made, as there were no merged or open pull requests, issues created or closed, or code changes.\", \"2025-06-25T21:39:25.420Z\"]\n[\"lalalune_day_2025-06-22\", \"lalalune\", \"day\", \"2025-06-22\", \"lalalune: Opened 1 pull request (#5242) titled \\\"Next\\\" but did not merge any PRs today, showing sporadic activity with no other contributions.\", \"2025-06-25T21:39:25.465Z\"]\n[\"standujar_day_2025-06-22\", \"standujar\", \"day\", \"2025-06-22\", \"standujar: Made significant code changes by modifying 89 files, resulting in a net change of +9,581 lines and -7,856 lines across 2 commits, demonstrating a major refactoring effort. Maintained a consistent activity pattern, being active every day.\", \"2025-06-25T21:39:25.718Z\"]\n[\"standujar_day_2025-06-21\", \"standujar\", \"day\", \"2025-06-21\", \"standujar: Made significant code changes by modifying 54 files, resulting in a total of +1387/-996 lines across 2 commits, demonstrating a consistent work pattern with activity every day.\", \"2025-06-25T21:39:25.992Z\"]\n[\"wtfsayo_day_2025-06-22\", \"wtfsayo\", \"day\", \"2025-06-22\", \"wtfsayo: Merged 2 PRs (#5240 with +18273/-13899 lines and #5239 with +59/-124 lines) and opened 1 new PR (#5241), focusing on feature work and type-safe API client migration. Made significant code changes across 110 files (+4267/-577 lines) with consistent activity throughout the day.\", \"2025-06-25T21:39:26.121Z\"]\n[\"wtfsayo_day_2025-06-21\", \"wtfsayo\", \"day\", \"2025-06-21\", \"wtfsayo: Contributed by creating 1 new issue (#5234 \\\"Documentation Overhaul: Create Separate Tracks for Simple Use...\\\") and has shown sporadic activity, being active on only 1 out of the last 1 days.\", \"2025-06-25T21:39:26.250Z\"]\n[\"Y4NK33420_day_2025-06-23\", \"Y4NK33420\", \"day\", \"2025-06-23\", \"Y4NK33420: Made significant code changes by modifying 26 files, resulting in a total of +5036 lines added and -178 lines removed, with a primary focus on other work. Maintained a consistent activity pattern, being active every day.\", \"2025-06-25T21:39:27.243Z\"]\n[\"kamalbuilds_day_2025-06-23\", \"kamalbuilds\", \"day\", \"2025-06-23\", \"kamalbuilds: Created 1 issue (#5244 \\\"Deploy Eliza agents\\\") and commented on another issue, showing sporadic activity today.\", \"2025-06-25T21:39:27.391Z\"]\n[\"ChristopherTrimboli_day_2025-06-24\", \"ChristopherTrimboli\", \"day\", \"2025-06-24\", \"ChristopherTrimboli: Contributed by reviewing 1 pull request with 1 approval, showing sporadic activity today. No other contributions were made, and there were no code changes or comments on issues.\", \"2025-06-25T21:39:27.478Z\"]\n[\"Dexploarer_day_2025-06-23\", \"Dexploarer\", \"day\", \"2025-06-23\", \"Dexploarer: Opened 1 PR (#5243) titled \\\"Random Fixes\\\" and made significant code changes by modifying 67 files (+1479/-9894 lines) with a primary focus on feature work (83%). Maintained a consistent activity pattern with 12 commits today.\", \"2025-06-25T21:39:27.509Z\"]\n[\"snobbee_day_2025-06-24\", \"snobbee\", \"day\", \"2025-06-24\", \"snobbee: Made significant code changes by modifying 136 files with a total of +11,364/-1,291 lines, focusing entirely on bugfix work. Active today and maintaining a consistent work pattern with 2 commits.\", \"2025-06-25T21:39:27.643Z\"]\n[\"ChristopherTrimboli_day_2025-06-23\", \"ChristopherTrimboli\", \"day\", \"2025-06-23\", \"ChristopherTrimboli: Made significant bugfix contributions by modifying 3 files (+568/-402 lines) with 1 commit, while also providing 3 approvals in code reviews. Maintained a consistent activity pattern, being active every day.\", \"2025-06-25T21:39:27.682Z\"]\n[\"Samarthsinghal28_day_2025-06-23\", \"Samarthsinghal28\", \"day\", \"2025-06-23\", \"Samarthsinghal28: Merged 1 significant pull request (#5247) with substantial changes of +13013/-2938 lines, demonstrating sporadic activity today. The average complexity of merged PRs reflects a consistent effort, with an average of +10193/-118 lines and a 22-hour merge time.\", \"2025-06-25T21:39:27.709Z\"]\n[\"0xbbjoker_day_2025-06-24\", \"0xbbjoker\", \"day\", \"2025-06-24\", \"0xbbjoker: Opened 3 PRs (#5267, #5264, #5255) and modified 41 files with a total of +3552/-1139 lines, focusing primarily on bug fixes (64%) and features (36%). Actively engaged with 2 reviews, including 1 approval, demonstrating consistent work patterns.\", \"2025-06-25T21:39:27.739Z\"]\n[\"bealers_day_2025-06-25\", \"bealers\", \"day\", \"2025-06-25\", \"bealers: Opened 1 PR (#5278) focused on fixing a database schema type mismatch for the SQL plugin, and made code modifications in 1 file with a net change of 0 lines (+2/-2). Maintained a consistent activity pattern, being active every day.\", \"2025-06-25T21:39:27.759Z\"]\n[\"NBFinanceTech_day_2025-06-25\", \"NBFinanceTech\", \"day\", \"2025-06-25\", \"NBFinanceTech: Created 1 issue today (#5268 \\\"Can't save character\\\"), indicating a focus on addressing a bug. The activity pattern shows sporadic engagement, being active on only 1 out of the last 1 days.\", \"2025-06-25T21:39:27.790Z\"]\n[\"shandongzhejiang_day_2025-06-25\", \"shandongzhejiang\", \"day\", \"2025-06-25\", \"shandongzhejiang: Opened 1 PR (#5271) titled \\\"chore: Correct some comments\\\" and modified 3 files with a net change of 0 lines, focusing entirely on documentation work. Maintained a consistent activity pattern, being active every day.\", \"2025-06-25T21:39:27.829Z\"]\n[\"ChristopherTrimboli_day_2025-06-25\", \"ChristopherTrimboli\", \"day\", \"2025-06-25\", \"ChristopherTrimboli: Reviewed 1 pull request with 1 approval, showing sporadic activity today. No code changes or issues were created or closed.\", \"2025-06-25T21:39:27.856Z\"]\n[\"tcm390_day_2025-06-24\", \"tcm390\", \"day\", \"2025-06-24\", \"tcm390: Merged 3 PRs, including significant bug fixes and feature additions, with a total of +457/-425 lines across PRs #5265, #5262, and #5257. Actively modified 35 files, focusing primarily on other work (77%) and bugfixes (15%), demonstrating consistent daily contributions.\", \"2025-06-25T21:39:27.897Z\"]\n[\"eeemmmmmm_day_2025-06-24\", \"eeemmmmmm\", \"day\", \"2025-06-24\", \"eeemmmmmm: Merged 1 PR (#5258) focused on polishing documentation with minor error fixes (+2/-2 lines) and made modifications to 2 files, all related to bugfix work. Maintained a consistent activity pattern, being active every day.\", \"2025-06-25T21:39:27.991Z\"]\n[\"urosognjenovic_day_2025-06-23\", \"urosognjenovic\", \"day\", \"2025-06-23\", \"urosognjenovic: Created 1 issue today (#5249 \\\"Issues setting up a project with desired provider and overall...\\\" (OPEN)), showing sporadic activity with no other contributions.\", \"2025-06-25T21:39:28.364Z\"]\n[\"tcm390_day_2025-06-23\", \"tcm390\", \"day\", \"2025-06-23\", \"tcm390: Merged 1 PR (#5248) focused on adding background color to dialog content, resulting in significant code changes of +5415/-561 lines across 63 modified files. Maintained a consistent activity pattern with 2 commits today.\", \"2025-06-25T21:39:28.468Z\"]\n[\"snobbee_day_2025-06-25\", \"snobbee\", \"day\", \"2025-06-25\", \"snobbee: Opened 1 PR (#5277) focused on fixing build issues and adding deployment config files, while also creating and closing an issue (#5279) regarding a missing handler for a delegate type. Made significant code changes across 25 files, contributing a total of +439/-169 lines with a primary focus on feature work.\", \"2025-06-25T21:39:28.530Z\"]\n[\"standujar_day_2025-06-23\", \"standujar\", \"day\", \"2025-06-23\", \"standujar: Made significant code changes by modifying 78 files, resulting in a total of +5041 lines added and -602 lines removed, with a primary focus on other work. Maintained a consistent activity pattern, being active every day.\", \"2025-06-25T21:39:28.628Z\"]\n[\"valentinuuiuiu_day_2025-06-24\", \"valentinuuiuiu\", \"day\", \"2025-06-24\", \"valentinuuiuiu: Opened 1 PR (#5254) focused on feature work, modifying 324 files with a total of +17775/-8528 lines. Demonstrated consistent activity with a single commit today, primarily working on code, tests, and configuration.\", \"2025-06-25T21:39:28.645Z\"]\n[\"yehia67_day_2025-06-24\", \"yehia67\", \"day\", \"2025-06-24\", \"yehia67: Created 1 new issue (#5260 \\\"Create custom plugin for onchain AI agent\\\" (OPEN)) and commented on 2 issues, demonstrating sporadic activity today.\", \"2025-06-25T21:39:28.716Z\"]\n[\"wtfsayo_day_2025-06-24\", \"wtfsayo\", \"day\", \"2025-06-24\", \"wtfsayo: Merged 4 PRs, including significant feature work and bug fixes, with a total of +897/-907 lines in PR #5252 and a major refactor in PR #5256 (+406/-408 lines). Created 2 issues and modified 358 files across 38 commits, maintaining a consistent work pattern focused on feature development (47%) and bug fixes (24%).\", \"2025-06-25T21:39:29.175Z\"]\n[\"yungalgo_day_2025-06-23\", \"yungalgo\", \"day\", \"2025-06-23\", \"yungalgo: Merged 2 PRs, including a significant refactor in #5246 (+6421/-2262 lines) and a fix in #5245 (+0/-0 lines), while modifying 16 files with a total of +634/-454 lines across 11 commits. Maintained a consistent work pattern, focusing primarily on other work (64%) and tests (18%).\", \"2025-06-25T21:39:29.307Z\"]\n[\"wtfsayo_day_2025-06-23\", \"wtfsayo\", \"day\", \"2025-06-23\", \"wtfsayo: Merged 1 PR (#5250) focused on fixing macOS CLI test failures, contributing a significant change of +10012/-5616 lines. Actively engaged in the codebase with 21 commits, modifying 165 files primarily for bugfix work (38%) and other improvements (38%).\", \"2025-06-25T21:39:29.491Z\"]\n[\"wtfsayo_day_2025-06-25\", \"wtfsayo\", \"day\", \"2025-06-25\", \"wtfsayo: Merged 3 PRs, including a significant update to API documentation (#5280, +1784/-2647 lines), while actively modifying 84 files with a total of +5615/-8728 lines across 24 commits. The work was primarily focused on feature development (46%) and bug fixes (33%), demonstrating consistent daily activity.\", \"2025-06-25T21:39:29.621Z\"]\n[\"yungalgo_day_2025-06-25\", \"yungalgo\", \"day\", \"2025-06-25\", \"yungalgo: Merged 1 significant pull request (#5270) with substantial changes (+3954/-1881 lines), while actively commenting on 6 different discussions. The primary focus was on other work (70%), with consistent activity noted across the day.\", \"2025-06-25T21:39:30.252Z\"]\n[\"tcm390_day_2025-06-25\", \"tcm390\", \"day\", \"2025-06-25\", \"tcm390: Merged 2 PRs focused on bug fixes, including #5275 \\\"fix: Restore GUI Chat Title Generation\\\" (+4/-3 lines) and #5274 \\\"fix: chat stuck issue\\\" (+8/-2 lines), while modifying 3 files with a total of +12/-5 lines. Maintained a consistent activity pattern, being active every day.\", \"2025-06-25T21:39:30.275Z\"]"
  ]
}