{
  "prompt_name": "developer-update",
  "category": "dev",
  "date": "2025-06-11",
  "generated_text": "# ElizaOS Developer Update\n*Week of June 8, 2025 - June 11, 2025*\n\n## Core Framework\n\n### Significant Type System Refactoring\n- The massive types.ts file has been completely split into granular, domain-specific files for improved maintainability and extensibility ([#4999](https://github.com/elizaos/eliza/pull/4999))\n- Service interfaces have been introduced for common service types, enabling better plugin interoperability ([#5020](https://github.com/elizaos/eliza/pull/5020))\n- Added dummy service implementations for testing and development purposes ([#5030](https://github.com/elizaos/eliza/pull/5030))\n\n### Database & Architecture Improvements\n- Implemented dynamic loading of database tables for improved plugin migrations ([#5018](https://github.com/elizaos/eliza/pull/5018))\n- Plugin-SQL has been completely rebuilt with a more robust migration system\n- Fixed environment loading sequence to ensure proper project initialization ([#5048](https://github.com/elizaos/eliza/pull/5048))\n\n### Developer Tooling\n- Added `.cursor` submodule for shared development configurations across plugins ([#5021](https://github.com/elizaos/eliza/pull/5021))\n- Centralized directory detection with monorepo support, improving plugin development workflows ([#5011](https://github.com/elizaos/eliza/pull/5011))\n- Reorganized API routes into a logical domain-based structure ([#5010](https://github.com/elizaos/eliza/pull/5010))\n\n## New Features\n\n### Enhanced User Interface\n- Added split button component for grouping related actions in the character form UI ([#5000](https://github.com/elizaos/eliza/pull/5000))\n```jsx\n<SplitButton \n  label=\"Save Options\" \n  options={[\n    { label: \"Save & Continue\", description: \"Save and stay on this page\", onClick: handleSave },\n    { label: \"Save & Exit\", description: \"Save and return to home\", onClick: handleSaveAndExit }\n  ]} \n/>\n```\n\n### Plugin Development Enhancements\n- Environment variable prompting during plugin installation ([#4945](https://github.com/elizaos/eliza/pull/4945))\n```bash\n# Example installing a plugin with environment prompting\nelizaos plugins add @elizaos/plugin-twitter\n\n# Now prompts for:\nTwitter Username: yourhandle\nTwitter API Key: ****\n```\n\n### CLI Improvements\n- Migrated CLI prompts from legacy library to modern @clack/prompts for better UX ([#5016](https://github.com/elizaos/eliza/pull/5016))\n- Enhanced create command with TEE support and improved handling of project types ([#4964](https://github.com/elizaos/eliza/pull/4964))\n\n### Message Handling\n- Added real-time message deletion via SocketIO ([#4968](https://github.com/elizaos/eliza/pull/4968))\n- Fixed chat history selector reloads and proper message removal on delete ([#5034](https://github.com/elizaos/eliza/pull/5034))\n\n## Bug Fixes\n\n### Critical Agent Issues\n- Fixed agent cross-interference in DMs where multiple agents were responding to messages meant for a single agent ([#4935](https://github.com/elizaos/eliza/pull/4935))\n```\nRoot cause: Incorrect metadata preservation causing agent_response messages \nto lose their intended target information\n```\n\n- Resolved agent self-response infinite loop in message service ([#4934](https://github.com/elizaos/eliza/pull/4934))\n```\nThe issue was that agents were processing and responding to any agent_response \nmessages including their own, creating an endless conversation loop\n```\n\n- Fixed issue with custom characters not loading after upgrading to v1.0.7 ([#5039](https://github.com/elizaos/eliza/issues/5039))\n\n### Plugin & Dependency Fixes\n- Fixed dependency loop in local-AI plugin ([#4912](https://github.com/elizaos/eliza/issues/4912))\n- Added lockfile cleanup for GitHub fallback installations to prevent circular dependency issues ([#5009](https://github.com/elizaos/eliza/pull/5009))\n- Enabled loading project agents when no character files specified ([#5044](https://github.com/elizaos/eliza/pull/5044))\n\n### UI & Usability Issues\n- Resolved date conversion issues in agent creation ([#5032](https://github.com/elizaos/eliza/pull/5032))\n- Fixed logs viewer incorrectly showing empty state when data was present ([#5006](https://github.com/elizaos/eliza/pull/5006))\n- Enhanced error handling and resolved issue with refreshing on agent chat pages ([#4927](https://github.com/elizaos/eliza/issues/4927))\n\n## API Changes\n\n### Reorganized API Structure\n- Completely restructured the `/packages/cli/src/server/api/` directory into domain-specific modules:\n  - `/agents` - Agent management endpoints\n  - `/messages` - Chat and message handling\n  - `/plugins` - Plugin registration and configuration\n  - `/system` - Core system operations\n\n### Modified Message Handling\n- Updated message serialization to preserve action and provider information\n- Enhanced API client hooks for new messaging endpoints\n- Fixed foreign key constraint issues in chat message handling ([#4898](https://github.com/elizaos/eliza/pull/4898))\n\n### Deprecated Endpoints\n- Legacy `/api/agent/:agentId/messages` endpoints will be removed in v2.0\n- Use the new `/api/messages?agentId=x` endpoints with query parameters instead\n\n## Social Media Integrations\n\n### Twitter Plugin Improvements\n- Fixed Twitter client startup failures in release v1.0.7 ([#4894](https://github.com/elizaos/eliza/issues/4894))\n- Removed unnecessary manual truncation of Twitter posts ([#5028](https://github.com/elizaos/eliza/pull/5028))\n- Standardized Twitter-related environment variables for better consistency ([#4883](https://github.com/elizaos/eliza/pull/4883))\n```env\n# New standardized Twitter environment variables\nTWITTER_USERNAME=yourusername\nTWITTER_API_KEY=your_api_key\nTWITTER_API_SECRET=your_api_secret\n```\n\n### Discord & Telegram Updates\n- Fixed agent message routing issues between channels ([#4972](https://github.com/elizaos/eliza/issues/4972))\n- Improved participant handling in group chat contexts\n- Enhanced error messages for better debugging of integration issues\n\n## Model Provider Updates\n\n### OpenAI\n- Fixed access issues with GPT-4o when using valid OpenAI API keys ([#5023](https://github.com/elizaos/eliza/issues/5023))\n- Improved error handling for rate limiting scenarios\n\n### Anthropic\n- Fixed validation issues with Anthropic API keys in ElizaOS CLI\n- Updated to latest API version for Claude 3.7 compatibility\n\n### Local Models\n- Enhanced local model plugin stability with better dependency management\n- Fixed model loading issues affecting new installations\n\n## Breaking Changes\n\n### Knowledge Management (RAG)\n- Knowledge management functionality is not fully implemented in v1.0.7 ([#5004](https://github.com/elizaos/eliza/issues/5004))\n- The following interfaces exist but lack complete implementation:\n  ```typescript\n  interface RagServiceDelegator extends Service {\n    getKnowledge(message: Memory, scope?: { \n      roomId?: UUID; \n      worldId?: UUID; \n      entityId?: UUID \n    }): Promise<KnowledgeItem[]>;\n    _internalAddKnowledge(\n      item: KnowledgeItem, \n      options?: any, \n      scope?: any\n    ): Promise<void>;\n  }\n  ```\n- V2 will fully implement these interfaces with proper embedding support\n\n### Environment Configuration\n- Environment variable `LOG_LEVEL` from .env files is not being properly loaded ([#5005](https://github.com/elizaos/eliza/issues/5005))\n- V2 will introduce a more robust environment variable loading system\n- Use direct `process.env.LOG_LEVEL = \"debug\"` in your startup scripts as a temporary workaround\n\nRemember to run `npm i -g @elizaos/cli` to update to v1.0.7 for all these improvements and fixes.",
  "source_references": [
    "2025-06-11\n---\n2025-06-10.md\n---\nFile not found\n---\n2025-06-09.md\n---\n# elizaOS Discord - 2025-06-09\n\n## Overall Discussion Highlights\n\n### Development Updates\n- **ElizaOS v1.0.7 Released**: Users were instructed to update by running `npm i -g @elizaos/cli` (cjft)\n- **CharacterLab App**: pditty is developing an app for building character files and a Cast of characters, seeking feedback for their next ElizaOS app\n- **Data Processing Progress**: Shaw reported ongoing work on the \"data sci\" component for a new version of an unspecified project\n- **PR for Knowledge Plugin**: A significant pull request (#17) was opened to fix issues in the knowledge plugin\n\n### Technical Issues\n- Multiple users reported problems with agent responsiveness after upgrading to v1.0.7\n- API key validation issues with Anthropic were reported when using the ElizaOS CLI\n- Some users encountered the error \"getTracer Service instrumentation not found in runtime\"\n- Concerns were raised about \"dead\" partner projects that need addressing\n\n### Projects & Integrations\n- **Reveel**: Rick shared information about an investment opportunity for this peer-to-peer stablecoin payment system with an ElizaOS plugin\n- **Stock Analysis Tools**: Users discussed tools using Anthropic 3.7 and Twitter integration\n- **Multilingual Development**: Jin is working on Korean and Chinese language capabilities, sharing samples for community feedback\n- **AutoCasino**: Plans mentioned to upgrade the UI for Autocasino\n\n### Market & Community Discussion\n- Discussions about cryptocurrency \"eli5\" price movements with optimism about reaching 100M or 200M\n- Speculation that AI agent narratives will become prominent in coming months\n- References to \"autodotfun\" as an innovative platform with favorable fee structures\n- Mentions of \"ai16z ecosystem\" potentially benefiting from upcoming trends\n\n## Key Questions & Answers\n\n1. **Q**: Is there a process to become a contributor?  \n   **A**: \"Just make a PR and ship a good change\" (cjft)\n\n2. **Q**: Is there a Spanish channel?  \n   **A**: \"si\" (Miller | Crypto Analyst \u20bf/\ud83c\udfae)\n\n3. **Q**: How is the Korean sample?  \n   **A**: \"A bit unnatural but understandable\" (Void)\n\n4. **Q**: Why is my agent not responding after upgrading to v1.0.7?  \n   **A**: Troubleshooting offered in voice channel (sayonara)\n\n5. **Q**: Eli5 what happen? [regarding price drop]  \n   **A**: \"It's usual things dude\u2705\" (CULTVESTING) with additional context from Boj/acc explaining it's common in Solana projects when the same people who bought yesterday sold today on low volume\n\n## Community Help & Collaboration\n\n1. **Knowledge Plugin Fixes**:\n   - wookosh offered to contribute to fixing knowledge plugin bugs\n   - Kenk offered to assign GitHub contributor status after PR submission\n\n2. **API Troubleshooting**:\n   - 0xbbjoker offered to help debug Anthropic API key validation issues with more error details\n\n3. **Multilingual Testing**:\n   - Void (native Korean speaker) provided feedback on Korean language sample quality\n   - \u8f9e\u5c18\u9e3d\u9e3d committed to providing accuracy feedback on upcoming Chinese samples\n\n4. **Twitter Integration Support**:\n   - nasdaq.ai suggested reducing items to review and modifying prompts to one action per tweet to resolve timeline issues\n\n5. **Price Movement Context**:\n   - Boj/acc provided context to Skaju about cryptocurrency price fluctuations, explaining market dynamics and suggesting a long-term outlook\n\n## Action Items\n\n### Technical\n- Update to ElizaOS v1.0.7 by running `npm i -g @elizaos/cli` (cjft)\n- Fix knowledge plugin bugs as outlined in PR #17 (wookosh)\n- Investigate agent responsiveness issues in v1.0.7 (Guncheck)\n- Fix Anthropic API key validation in ElizaOS CLI (Salacoste)\n- Fix Twitter plugin issues as outlined in PRs (jonas)\n- Investigate \"getTracer Service instrumentation not found in runtime\" error (aith)\n- Complete data processing for new version with \"data sci\" component (shaw)\n- Finalize Chinese language sample for accuracy testing (jin)\n- Address issues with \"dead\" partners (cloudAI)\n\n### Documentation\n- Clarify how the unified message handler should operate (soyrubio)\n\n### Features\n- Develop CharacterLab App for building character files and a Cast of characters (pditty)\n- Upgrade the UI for Autocasino (autocasinofun)\n- Port back Twitter functionality to assess topics and respond to on-topic tweets (nasdaq.ai)\n- Add media review capability to Twitter timeline (nasdaq.ai)\n- Add large cap crypto and ML-based signals to stock analysis agent (nasdaq.ai)\n- Potential integration with AI agent ecosystem to capitalize on upcoming AI agent narrative (CULTVESTING)\n---\n2025-06-08.md\n---\n# elizaOS Discord - 2025-06-08\n\n## Overall Discussion Highlights\n\n### Agent Development & Implementation\n- **Custom Plugin Development**: Users discussed implementation methods for custom plugins, with the Spartan GitHub repository being recommended as a reference example.\n- **Twitter Automation**: Discussion around safely automating Twitter accounts with ElizaOS agents without risking bans, with some users confirming this is possible with careful implementation.\n- **Character Generation**: A user (pditty) shared they've built a web application for generating ElizaOS character files with features for tone, persona, example messages, lore, and character management.\n\n### Technical Infrastructure\n- **API Usage**: Users discussed accessing agent IDs through the API endpoint (localhost:3000/api/agents).\n- **Dependency Issues**: A dependency loop error in the local-AI plugin was reported, with updating the ElizaOS CLI suggested as a solution.\n- **New Developments**: Jin mentioned bringing \"jintern online,\" suggesting a new system or bot implementation.\n\n### Ecosystem & Community\n- **Token Discussion**: Community members discussed various tokens in the ecosystem including ELI5, EDDY, DOT, OTTO, ODDIE, Ruby, Laura, and Jimmy, distinguishing between official and unofficial tokens.\n- **Upcoming Announcements**: References to a potential \"V2 announcement\" coming soon that could impact token values.\n- **Community Expansion**: Shaw agreed with an unspecified suggestion that could potentially attract new users from outside the CT community.\n\n## Key Questions & Answers\n\n### Technical Support\n- **Q**: \"How do I get my agent ID?\"  \n  **A**: \"localhost:3000/api/agents\" (answered by Stan \u26a1)\n\n- **Q**: \"Is there a certain way to initiate a custom plugin?\"  \n  **A**: \"https://github.com/elizaos/spartan this should have a good example of implementing custom plugins\" (answered by starlord)\n\n- **Q**: \"How do I get people to test my ElizaOS character file generator?\"  \n  **A**: \"Open the app for beta testers\" (answered by wire)\n\n### Community & Ecosystem\n- **Q**: \"Is it safe to partly and carefully automate my main Twitter account with ElizaOS agent without getting banned?\"  \n  **A**: \"Yeah\" (answered by CULTVESTING)\n\n- **Q**: \"Is eddy a good buy right now?\"  \n  **A**: \"Better to invest now before it pumps, both EDDY and ELI5 are asymmetric bets\" (answered by CULTVESTING)\n\n- **Q**: \"So Otto & DOT are auto.fun mascots/memes?\"  \n  **A**: \"Yeah, both are autodotfun native, not elizaos team priority\" (answered by CULTVESTING)\n\n## Community Help & Collaboration\n\n### Technical Assistance\n- **Stan \u26a1** helped **consolexyz** find their agent ID by providing the API endpoint (localhost:3000/api/agents).\n- **sayonara** assisted **mehulsiwach0857** with a dependency loop error in the local-AI plugin by suggesting an update to the ElizaOS CLI with \"npm i -g @elizaos/cli\".\n- **starlord** supported **ItzMrTobz** with custom plugin implementation issues by sharing the Spartan GitHub repository as a reference.\n\n### Community Support\n- **wire** advised **pditty** on how to get testers for their ElizaOS character file generator web app.\n- **CULTVESTING** provided **Dr. Neuro** with clarification about which tokens are native to autodotfun versus elizaos team priorities.\n- **MDMnvest** helped **Dr. Neuro** understand which tokens have official status in the ecosystem.\n\n## Action Items\n\n### Technical\n- **Twitter Agent Limitations**: Investigate functionality to limit the number of Twitter agent interactions per polling interval (mentioned by aith)\n- **Dependency Resolution**: Fix dependency loop in local-AI plugin to resolve the circular dependency issue in @elizaos/plugin-local-ai (mentioned by mehulsiwach0857)\n- **Jintern Implementation**: Bring \"jintern\" online - implementation of a system or bot (mentioned by jin)\n- **Character File Generator**: Continue development of web application for generating ElizaOS character files with fields for tone, persona, example messages, lore, and character management (mentioned by pditty)\n\n### Feature\n- **Twitter Automation**: Enhance safe automation of Twitter accounts using ElizaOS (mentioned by Jo)\n- **V2 Announcement**: Prepare for potential upcoming release that could affect token prices, expected this week (mentioned by HodlHusky)\n\n### Documentation\n- **Custom Plugin Guide**: Create clear documentation on how to properly initialize custom plugins (mentioned by ItzMrTobz)\n- **Partner List**: Compile and publish a list of ElizaOS registered partners (mentioned by SAN_areszbtc)\n---\n2025-06-10.md\n---\nFile not found\n---\n2025-06-09.md\n---\n# elizaOS Development Discord - 2025-06-09\n\n## Overall Discussion Highlights\n\n### Unified Message Handler Implementation\nA technical discussion focused on the unified message handler in the v1 implementation. The conversation centered around how provider selection works within the system architecture. It was clarified that the message handler is located in plugin-bootstrap, which determines what dynamic providers are included in the system.\n\nThere appears to be confusion about how the AI selects providers, as this logic isn't clearly visible in the codebase. Additionally, issues were identified with generated messages not including provider information and memories from AI-selected actions not being properly sent to \"socials\" components.\n\n## Key Questions & Answers\n\n**Q: How does the unified message handler operate?**  \nA: It's in bootstrap, which decides what dynamic providers are included. (answered by Odilitime)\n\n**Q: Is the unified message handler the one in plugin-bootstrap?**  \nA: Yes, bootstrap. (answered by Odilitime)\n\n## Community Help & Collaboration\n\nOdilitime helped soyrubio understand the location and basic functionality of the unified message handler, confirming it resides in the bootstrap component and explaining its role in deciding which dynamic providers are included in the system.\n\n## Action Items\n\n### Technical\n- **Review implementation of provider selection logic:** Investigate why AI-selected providers aren't being used in message generation (Mentioned by soyrubio)\n- **Fix issue with memories not being sent to socials:** Review why memories generated from AI-selected actions aren't being properly forwarded (Mentioned by soyrubio)\n\n### Documentation\n- **Document unified message handler functionality:** Create clear documentation on the message handler's operation and provider selection process (Mentioned by soyrubio)\n---\n2025-06-08.md\n---\n# elizaOS Development Discord - 2025-06-08\n\n**Date: June 8, 2025**\n\n## Overall Discussion Highlights\n\n### Technical Issues\n- A dependency loop error was reported during elizaOS setup process\n- Solution identified: updating to the latest version of the Eliza OS CLI\n\n## Key Questions & Answers\n\n**Q: How to resolve dependency loop error during elizaOS setup?**  \n**A:** Update to the latest version of the Eliza OS CLI by running `npm i -g @elizaos/cli`\n\n## Community Help & Collaboration\n\n- **cjft** provided technical support to **mehulsiwach0857** by suggesting a CLI update to resolve their dependency loop error\n- Response time was approximately 3 hours between question and solution\n\n## Action Items\n\n### Technical\n- **Update elizaOS CLI** when encountering dependency loop errors (mentioned by cjft)\n- Command reference: `npm i -g @elizaos/cli`\n\n---\n\n*Note: Today's discussions were minimal, focused primarily on resolving a specific technical issue with the elizaOS setup process.*\n---\n2025-06-10.json\n---\nFile not found\n---\n2025-06-10.md\n---\nFile not found\n---\n2025-06-10.json\n---\nFile not found\n---\n2025-06-10.md\n---\nFile not found\n---\n2025-06-10.json\n---\nFile not found\n---\n2025-06-10.md\n---\nFile not found\n---\n2025-06-10.json\n---\nFile not found\n---\n2025-06-10.md\n---\nFile not found\n---\n2025-06-11.md\n---\nFile not found\n---\n2025-06-08.md\n---\n# ElizaOS Weekly Update (Jun 8 - 14, 2025)\n\n## OVERVIEW\nThis week saw significant architectural improvements to the ElizaOS framework with a major focus on code organization, API restructuring, and CLI enhancements. The team completed extensive refactoring of core types and services, improved database handling, and fixed numerous critical bugs affecting agent functionality. Version 1.0.7 was released with enhanced modularity and developer experience improvements.\n\n## KEY TECHNICAL DEVELOPMENTS\n\n### Core Architecture Improvements\n- Split monolithic type definitions into granular, domain-specific files for better maintainability and extensibility [#4999](https://github.com/elizaos/eliza/pull/4999), [#5020](https://github.com/elizaos/eliza/pull/5020)\n- Implemented dummy services for testing and development [#5030](https://github.com/elizaos/eliza/pull/5030)\n- Added dynamic loading of database tables and rebuilt plugin-sql for improved database migrations [#5018](https://github.com/elizaos/eliza/pull/5018)\n- Reorganized API routes into logical domain-based structure [#5010](https://github.com/elizaos/eliza/pull/5010)\n\n### CLI and Developer Experience Enhancements\n- Migrated CLI prompts from legacy library to modern @clack/prompts for better UX [#5016](https://github.com/elizaos/eliza/pull/5016)\n- Centralized directory detection with monorepo support [#5011](https://github.com/elizaos/eliza/pull/5011)\n- Reorganized CLI commands into modular structure [#5036](https://github.com/elizaos/eliza/pull/5036)\n- Replaced cursor rules with elizaos/.cursor submodule for shared development configurations [#5021](https://github.com/elizaos/eliza/pull/5021)\n\n### Critical Bug Fixes\n- Fixed agent creation and date conversion issues [#5032](https://github.com/elizaos/eliza/pull/5032)\n- Resolved environment loading sequence to ensure proper project initialization [#5048](https://github.com/elizaos/eliza/pull/5048)\n- Implemented real-time message deletion via SocketIO [#4968](https://github.com/elizaos/eliza/pull/4968)\n- Fixed chat history selector reloads and message deletion in UI [#5034](https://github.com/elizaos/eliza/pull/5034), [#5035](https://github.com/elizaos/eliza/pull/5035)\n- Enabled loading project agents when no character files specified [#5044](https://github.com/elizaos/eliza/pull/5044)\n\n## CLOSED ISSUES\n\n### UI and Navigation Issues\n- Fixed error display when refreshing on an agent chat page [#4927](https://github.com/elizaos/eliza/issues/4927)\n- Resolved message routing issues between agents and channels [#4972](https://github.com/elizaos/eliza/issues/4972)\n\n### Integration and Service Issues\n- Fixed Twitter client startup failures in release 1.0.2 [#4894](https://github.com/elizaos/eliza/issues/4894)\n- Resolved environment variable handling for LOG_LEVEL in .env files [#5005](https://github.com/elizaos/eliza/issues/5005)\n\n## NEW ISSUES\n\n### Agent Functionality Challenges\n- Knowledge management (RAG) not working in version 1.0.6 [#5004](https://github.com/elizaos/eliza/issues/5004)\n- Custom characters not loading after upgrading to 1.0.7 [#5039](https://github.com/elizaos/eliza/issues/5039)\n- Plugin action callbacks not reaching end user in chat responses [#5017](https://github.com/elizaos/eliza/issues/5017)\n\n### API and Integration Issues\n- GPT-4o access errors with OpenAI API key [#5023](https://github.com/elizaos/eliza/issues/5023)\n- Environment variable LOG_LEVEL from .env not working properly [#5005](https://github.com/elizaos/eliza/issues/5005)\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 focused on enhancing modularity through plugin specifications, restructuring the message server as a standalone component, and implementing comprehensive UI/UX improvements. The CLI received major upgrades with improved command structure and developer experience enhancements, while numerous bug fixes stabilized core functionality.\n\n## KEY TECHNICAL DEVELOPMENTS\n\n### Plugin System Enhancements\n- Added plugin specifications to core, enabling standardized plugin interfaces and improved extensibility [#4851](https://github.com/elizaos/eliza/pull/4851)\n- Implemented dynamic loading of database tables for plugins [#5018](https://github.com/elizaos/eliza/pull/5018)\n- Enhanced plugin installation process with environment variable prompting [#4945](https://github.com/elizaos/eliza/pull/4945)\n- Added dummy services for plugin testing and development [#5030](https://github.com/elizaos/eliza/pull/5030)\n\n### Message Server Refactoring\n- Completely refactored message server to be standalone and separate from agents [#4864](https://github.com/elizaos/eliza/pull/4864)\n- Reorganized API routes into logical domain-based structure [#5010](https://github.com/elizaos/eliza/pull/5010)\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 in message service [#4935](https://github.com/elizaos/eliza/pull/4935), [#4934](https://github.com/elizaos/eliza/pull/4934)\n\n### UI/UX Improvements\n- Enhanced chat UI with responsive design and improved message handling [#4930](https://github.com/elizaos/eliza/pull/4930)\n- Added retry button for user messages in chat [#4973](https://github.com/elizaos/eliza/pull/4973)\n- Implemented responsive character form and improved sidebar behavior [#4974](https://github.com/elizaos/eliza/pull/4974), [#4977](https://github.com/elizaos/eliza/pull/4977)\n- Added split button component and enhanced character form UI [#5000](https://github.com/elizaos/eliza/pull/5000)\n\n### CLI Enhancements\n- Migrated CLI prompts from prompts library to @clack/prompts for better UX [#5016](https://github.com/elizaos/eliza/pull/5016)\n- Enhanced create command with TEE support and improved logic [#4964](https://github.com/elizaos/eliza/pull/4964)\n- Reorganized CLI commands into modular structure [#5036](https://github.com/elizaos/eliza/pull/5036)\n- Added macOS setup guide for developers [#4903](https://github.com/elizaos/eliza/pull/4903)\n\n### Type System Improvements\n- Split types.ts into granular files for better organization [#4999](https://github.com/elizaos/eliza/pull/4999)\n- Refactored and split core types for improved maintainability [#5020](https://github.com/elizaos/eliza/pull/5020)\n- Added service interfaces for common service types [#5020](https://github.com/elizaos/eliza/pull/5020)\n\n### Testing Infrastructure\n- Added scenario test to bootstrap to check for \"hello world\" [#4998](https://github.com/elizaos/eliza/pull/4998)\n- Migrated CLI tests from Bats to Bun TypeScript [#4978](https://github.com/elizaos/eliza/pull/4978)\n- Fixed E2E tests with clean DB handling [#5013](https://github.com/elizaos/eliza/pull/5013)\n\n### Development Experience\n- Added .cursor project rules and submodule for shared development settings [#4982](https://github.com/elizaos/eliza/pull/4982), [#5021](https://github.com/elizaos/eliza/pull/5021)\n- Implemented HMR for client development [#4989](https://github.com/elizaos/eliza/pull/4989)\n- Optimized CI workflows with caching and parallel execution [#5014](https://github.com/elizaos/eliza/pull/5014), [#5015](https://github.com/elizaos/eliza/pull/5015)\n\n### Bug Fixes and Stability\n- Fixed agent memory viewer not displaying memories [#4948](https://github.com/elizaos/eliza/pull/4948)\n- Resolved group creation issues [#4946](https://github.com/elizaos/eliza/pull/4946)\n- Fixed CLI update from npm to bun with auto-migration [#4979](https://github.com/elizaos/eliza/pull/4979)\n- Improved environment variable handling and configuration [#4987](https://github.com/elizaos/eliza/pull/4987)\n\n## CLOSED ISSUES\n\n### Twitter Integration Issues\n- Fixed Twitter client startup failures and API integration [#4272](https://github.com/elizaos/eliza/issues/4272)\n- Resolved Twitter client errors related to undefined properties [#4365](https://github.com/elizaos/eliza/issues/4365)\n- Addressed action processing in Twitter client [#4405](https://github.com/elizaos/eliza/issues/4405)\n- Fixed Twitter activity detection issues [#4588](https://github.com/elizaos/eliza/issues/4588)\n\n### Installation and Plugin Management\n- Resolved plugin installation failures for specific plugins [#4342](https://github.com/elizaos/eliza/issues/4342), [#4744](https://github.com/elizaos/eliza/issues/4744)\n- Fixed local model functionality in plugin development [#4339](https://github.com/elizaos/eliza/issues/4339)\n- Addressed EVM plugin loading issues [#4819](https://github.com/elizaos/eliza/issues/4819)\n- Fixed Bun installation compatibility issues [#4876](https://github.com/elizaos/eliza/issues/4876)\n\n### API and Message Handling\n- Fixed missing API endpoint for agent rooms [#4763](https://github.com/elizaos/eliza/issues/4763)\n- Resolved empty room list issue in API responses [#4779](https://github.com/elizaos/eliza/issues/4779)\n- Fixed message handling for failed sends [#4769](https://github.com/elizaos/eliza/issues/4769)\n- Addressed message bus service participant issues [#4972](https://github.com/elizaos/eliza/issues/4972)\n\n### Documentation and Onboarding\n- Improved quickstart documentation with prerequisites [#4336](https://github.com/elizaos/eliza/issues/4336)\n- Fixed environment variable handling in configuration [#5005](https://github.com/elizaos/eliza/issues/5005)\n\n### UI and User Experience\n- Fixed page refresh errors in agent chat [#4927](https://github.com/elizaos/eliza/issues/4927)\n- Implemented retry functionality for previous user messages [#4926](https://github.com/elizaos/eliza/issues/4926)\n\n## NEW ISSUES\n\n### Plugin Development Challenges\n- Plugin dependencies not loading correctly in CLI [#4997](https://github.com/elizaos/eliza/issues/4997)\n- Default plugins showing \"unable to register again\" error during testing [#4996](https://github.com/elizaos/eliza/issues/4996)\n- Dependency loop in local AI plugin [#4912](https://github.com/elizaos/eliza/issues/4912)\n- Plugin installation problems with v0 plugins [#4861](https://github.com/elizaos/eliza/issues/4861)\n\n### Agent Configuration\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 156 new PRs (137 merged), 30 new issues, and 42 active contributors.\",\n  \"topIssues\": [\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\": null,\n      \"state\": \"OPEN\",\n      \"commentCount\": 9\n    },\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\": null,\n      \"state\": \"OPEN\",\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      \"id\": \"I_kwDOMT5cIs653_FI\",\n      \"title\": \"agentId and roomId are required\",\n      \"author\": \"omariosman\",\n      \"number\": 4933,\n      \"repository\": \"elizaos/eliza\",\n      \"body\": \"When I start my agent using `elizaos start` I encounter these errors:\\n```\\nERROR: [SocketIO] agentId and roomId are required\\nERROR: [SocketIO] No agents found in room b850bc30-45f8-0041-a00a-83df46d8555d\\n```\\n\\nHow can I solve this?\\n\\n### This is my .env\\n```\\n# EVM Configuration\\nEVM_PRIVATE_KEY=0x123...etc        \\nEVM_PROVIDER_URL=\\nOPENAI_API_KEY=\\n```\\n\\n### My `src/index.ts`\\n```\\nimport {\\n  logger,\\n  type Character,\\n  type IAgentRuntime,\\n  type Project,\\n  type ProjectAgent,\\n} from '@elizaos/core';\\n\\nexport const character: Character = {\\n  name: 'Eliza',\\n  plugins: [\\n    '@elizaos/plugin-evm',\\n    '@elizaos/plugin-sql',\\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-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\\\": [\\n        \\\"mainnet\\\" \\n      ]\\n    }\\n  },\\n```\",\n      \"createdAt\": \"2025-06-04T16:47:07Z\",\n      \"closedAt\": \"2025-06-05T23:25:25Z\",\n      \"state\": \"CLOSED\",\n      \"commentCount\": 6\n    },\n    {\n      \"id\": \"I_kwDOMT5cIs653Uth\",\n      \"title\": \"Refreshing on an agent chat shows error\",\n      \"author\": \"scottrepreneur\",\n      \"number\": 4927,\n      \"repository\": \"elizaos/eliza\",\n      \"body\": \"**Describe the bug**\\n\\nWhen you reload the page/refresh the browser with an agent chat open it shows an error.\\n\\n**To Reproduce**\\n\\n1. `eliza create`\\n2. `eliza start`\\n3. view web client\\n4. navigate to agent chat\\n5. refresh the page\\n\\n```sh\\nERROR: [SocketIO] agentId and roomId are required # this log appears before the refresh\\n# refresh\\nNotFoundError: Not Found\\n    at createHttpError (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:30940:16)\\n    at SendStream.error (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:30578:35)\\n    at SendStream.pipe (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:30734:18)\\n    at sendfile (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:31440:12)\\n    at ServerResponse.sendFile (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:31193:7)\\n    at file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:115550:15\\n    at Layer.handleRequest (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:28379:21)\\n    at trimPrefix (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:28738:17)\\n    at file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:28709:13\\n    at processParams (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:28854:16)\\n    at next (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:28703:9)\\n    at file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:115541:11\\n    at Layer.handleRequest (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:28379:21)\\n    at trimPrefix (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:28738:17)\\n    at file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:28709:13\\n    at processParams (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:28854:16)\\n    at next (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:28703:9)\\n    at file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:115164:5\\n    at Layer.handleRequest (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:28379:21)\\n    at trimPrefix (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:28738:17)\\n    at file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:28709:13\\n    at processParams (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:28854:16)\\n    at next (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:28703:9)\\n    at SendStream.error (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:31524:11)\\n    at SendStream.emit (node:events:518:28)\\n    at SendStream.error (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:30578:21)\\n    at SendStream.onStatError (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:30646:16)\\n    at next (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:30827:30)\\n    at onstat (file:///Users/scott/.nvm/versions/node/v20.18.3/lib/node_modules/@elizaos/cli/dist/chunk-JT3O6PBU.js:30817:18)\\n    at FSReqCallback.oncomplete (node:fs:198:21)\\n```\\n\\n**Expected behavior**\\n\\nPlease show the existing chat with the agent\\n\\n**Screenshots**\\n\\nError:\\n\\n<img width=\\\"1215\\\" alt=\\\"Image\\\" src=\\\"https://github.com/user-attachments/assets/7443ac4b-a3df-4aef-b342-079e4bc8bd08\\\" />\\n\\n**Additional context**\\n\\nelizaos: `v1.0.4`\\n\\nNavigating back to the home page and then to the agent chat loads the same URL fine.\",\n      \"createdAt\": \"2025-06-04T15:42:29Z\",\n      \"closedAt\": \"2025-06-09T01:19:13Z\",\n      \"state\": \"CLOSED\",\n      \"commentCount\": 6\n    }\n  ],\n  \"topPRs\": [\n    {\n      \"id\": \"PR_kwDOMT5cIs6YBu-Z\",\n      \"title\": \"Move message server to self DB, add specs to core\",\n      \"author\": \"lalalune\",\n      \"number\": 4818,\n      \"body\": \"This PR updates the message server to use standalone and switches the core to use specs\",\n      \"repository\": \"elizaos/eliza\",\n      \"createdAt\": \"2025-05-28T20:54:55Z\",\n      \"mergedAt\": null,\n      \"additions\": 17954,\n      \"deletions\": 3725\n    },\n    {\n      \"id\": \"PR_kwDOMT5cIs6ZHABe\",\n      \"title\": \"Puga/community agent2\",\n      \"author\": \"alpuga\",\n      \"number\": 4938,\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-05T00:05:22Z\",\n      \"mergedAt\": null,\n      \"additions\": 16820,\n      \"deletions\": 80042\n    },\n    {\n      \"id\": \"PR_kwDOMT5cIs6YVJyL\",\n      \"title\": \"Add plugin specifications to core\",\n      \"author\": \"lalalune\",\n      \"number\": 4851,\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 the v2 specification from @elizaos/core/v2 and we will do our best to support forward compatibility with v3, v4, etc\",\n      \"repository\": \"elizaos/eliza\",\n      \"createdAt\": \"2025-05-30T20:57:49Z\",\n      \"mergedAt\": \"2025-06-01T07:47:02Z\",\n      \"additions\": 15531,\n      \"deletions\": 342\n    },\n    {\n      \"id\": \"PR_kwDOMT5cIs6YdMJf\",\n      \"title\": \"feat: refactor message server to be completely separate and standalone from agents\",\n      \"author\": \"lalalune\",\n      \"number\": 4864,\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), participants, and messages, enabling real-time chat and group conversations.\\r\\nAdded UI components for group channels, agent cards, group cards, and a group creation page.\\r\\nImplemented file and media attachment support in chat and group conversations.\\r\\nEnhanced sidebar and home page to display central servers and group channels.\\r\\nAdded offline status detection and improved connection handling.\\r\\nImprovements\\r\\n\\r\\nRefactored chat and group chat components to use centralized channels and messages.\\r\\nUpgraded API client and hooks for new messaging, agent, and group management endpoints.\\r\\nImproved optimistic UI updates and error handling for message sending and file uploads.\\r\\nEnhanced agent and group navigation with direct message and group chat flows.\\r\\nBug Fixes\\r\\n\\r\\nImproved error handling and logging for network and API failures.\\r\\nFixed message deduplication and sorting in chat views.\\r\\nDocumentation\\r\\n\\r\\nAdded detailed documentation for versioned plugin APIs and migration guides.\\r\\nTests\\r\\n\\r\\nAdded comprehensive unit and integration tests for new messaging, state conversion, provider compatibility, and search utilities.\\r\\nChores\\r\\n\\r\\nUpdated dependencies and improved internal type safety and code organization.\",\n      \"repository\": \"elizaos/eliza\",\n      \"createdAt\": \"2025-06-01T07:31:01Z\",\n      \"mergedAt\": \"2025-06-02T09:25:10Z\",\n      \"additions\": 15058,\n      \"deletions\": 6318\n    },\n    {\n      \"id\": \"PR_kwDOMT5cIs6ZfHqb\",\n      \"title\": \"feat: add cursor rules\",\n      \"author\": \"lalalune\",\n      \"number\": 4982,\n      \"body\": \"Adds .cursor project rules\",\n      \"repository\": \"elizaos/eliza\",\n      \"createdAt\": \"2025-06-07T06:03:29Z\",\n      \"mergedAt\": \"2025-06-07T16:48:52Z\",\n      \"additions\": 13696,\n      \"deletions\": 0\n    }\n  ],\n  \"codeChanges\": {\n    \"additions\": 95571,\n    \"deletions\": 68501,\n    \"files\": 502,\n    \"commitCount\": 579\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\": \"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: 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  \"topContributors\": [\n    {\n      \"username\": \"wtfsayo\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/82053242?u=98209a1f10456f42d4d2fa71db4d5bf4a672cbc3&v=4\",\n      \"totalScore\": 1539.2702674504221,\n      \"prScore\": 1518.8642674504222,\n      \"issueScore\": 2,\n      \"reviewScore\": 15,\n      \"commentScore\": 3.4059999999999997,\n      \"summary\": \"wtfsayo: Merged 32 PRs this month with significant contributions to UI improvements (#4866, #4930, #4974, #4971), bug fixes (#4873, #4870, #4935, #4934), and a major CLI test migration from Bats to TypeScript (#4978, +10967/-5463 lines). Made substantial code changes across 2019 files (+182k/-84k lines) with a focus on fixing critical issues like agent cross-interference (#4935) and self-response infinite loops (#4934), while also enhancing the chat experience with features like retry buttons (#4973) and responsive design improvements. Demonstrated a pattern of occasional but high-impact activity, primarily focusing on bug fixes (31%) and feature work (17%), with notable contributions to making the application more stable and user-friendly.\"\n    },\n    {\n      \"username\": \"ChristopherTrimboli\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/27584221?u=0d816ce1dcdea8f925aba18bb710153d4a87a719&v=4\",\n      \"totalScore\": 1213.6986997626625,\n      \"prScore\": 986.1206997626624,\n      \"issueScore\": 0,\n      \"reviewScore\": 226,\n      \"commentScore\": 1.5779999999999998,\n      \"summary\": \"ChristopherTrimboli: Merged 17 PRs this month with significant build process improvements and dependency management, including enhancing the core package build process (#4874), activating turbo cache (#4899), and forcing Bun in CLI with improved installation docs (#4937, #4943). Contributed substantial code changes (+45,119/-35,866 lines across 644 files) with a focus on chores and bug fixes, particularly in release versioning (#4960, #4952) and environment configuration. Actively reviewed code with 31 reviews (29 approvals) while maintaining an occasional activity pattern across 8 days. Currently has an open PR (#4989) for client HMR development.\"\n    },\n    {\n      \"username\": \"lalalune\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/18633264?u=e2e906c3712c2506ebfa98df01c2cfdc50050b30&v=4\",\n      \"totalScore\": 644.9354463430835,\n      \"prScore\": 602.7174463430835,\n      \"issueScore\": 8,\n      \"reviewScore\": 32.5,\n      \"commentScore\": 1.718,\n      \"summary\": \"lalalune: Led significant refactoring efforts with 11 merged PRs, notably restructuring the message server (#4864, +68k/-50k lines) and splitting types into granular files (#4999, +5.8k/-12.9k lines). Created 4 open issues related to client hot reloading, service types, and plugin dependencies. Contributed substantial code changes across 673 files (+81k/-50.5k lines) with a focus on other work (54%) and feature development (15%). Active on 7 days this month, primarily working on code (34%) and tests (22%).\"\n    },\n    {\n      \"username\": \"yungalgo\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/113615973?u=92e0f29f7e2fbb8ce46ed13c51f692ca803de02d&v=4\",\n      \"totalScore\": 628.6520325680386,\n      \"prScore\": 617.1180325680386,\n      \"issueScore\": 0,\n      \"reviewScore\": 9,\n      \"commentScore\": 2.534,\n      \"summary\": \"yungalgo: Merged 10 significant PRs this month, with substantial contributions to plugin functionality and CLI improvements, including fixes for auto-import (#4900), TypeScript declarations (#4966), and enhanced create commands (#4964). Made extensive code changes (+1725/-832 lines across 64 files) with particular focus on fixing environment command issues (#4987, +13789/-63) and port validation (#4985, +13852/-97). Demonstrated a pattern of comprehensive refactoring and bug fixing, with three additional PRs still open addressing circular dependencies, database isolation, and publishing command issues.\"\n    },\n    {\n      \"username\": \"0xbbjoker\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/54844437?u=90fe1762420de6ad493a1c1582f1f70c0d87d8e2&v=4\",\n      \"totalScore\": 457.7612615506887,\n      \"prScore\": 386.7232615506887,\n      \"issueScore\": 0,\n      \"reviewScore\": 70,\n      \"commentScore\": 1.038,\n      \"summary\": \"0xbbjoker: Merged 11 PRs this month, with significant contributions to documentation (PR #4976 adding +3247/-387 lines to messages API docs) and several feature improvements including macOS setup guide (PR #4903) and responsive horizontal scrolling for the client (PR #4988). Made substantial code optimizations through dependency cleanup (PR #4962) and fixing connection handling (PR #4936 with +688/-329 lines), while also actively reviewing code with 13 approvals. Demonstrated a balanced focus across bugfixes (35%), features (23%), and documentation work, with occasional but impactful activity throughout the month.\"\n    },\n    {\n      \"username\": \"standujar\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/16385918?u=718bdcd1585be8447bdfffb8c11ce249baa7532d&v=4\",\n      \"totalScore\": 259.05238751046807,\n      \"prScore\": 232.53838751046808,\n      \"issueScore\": 0,\n      \"reviewScore\": 25,\n      \"commentScore\": 1.5139999999999998,\n      \"summary\": \"standujar: Made significant contributions to bug fixes and optimizations, merging 3 PRs including a major plugin loading optimization (#4949, +1555/-717 lines) and bootstrap fixes (#4954, +1391/-611 lines). Currently has 3 open PRs focused on plugin route parameter matching and real-time message deletion functionality. Created 2 issues related to API functionality (both now closed) and actively participated in code reviews with 4 approvals and 17 comments across PRs and issues.\"\n    },\n    {\n      \"username\": \"tcm390\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/60634884?u=c6c41679b8322eaa0c81f72e0b4ed95e80f0ac16&v=4\",\n      \"totalScore\": 133.262226111459,\n      \"prScore\": 132.722226111459,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.54,\n      \"summary\": \"tcm390: Merged 4 PRs this month, with the most substantial being #4906 \\\"Main\\\" (+14,089/-7,191 lines) and #4980 which fixed an incorrect API URL issue (+5,791/-2,833 lines). Also fixed critical bugs in PRs #4904 and #4944, addressing a choice action error and preventing an infinite effect loop. Activity was sporadic, contributing on just 3 days this month, with a total of 82 files modified across 6 commits (+5,852/-2,900 lines overall).\"\n    },\n    {\n      \"username\": \"odilitime\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/16395496?u=c9bac48e632aae594a0d85aaf9e9c9c69b674d8b&v=4\",\n      \"totalScore\": 103.32492107713604,\n      \"prScore\": 56.92492107713605,\n      \"issueScore\": 0,\n      \"reviewScore\": 46,\n      \"commentScore\": 0.4,\n      \"summary\": \"odilitime: Opened one PR (#4896) focused on efficient server sync handling, with substantial code changes (+7833/-14004 lines) across 185 files. Provided 2 approval reviews and 2 PR comments on other contributions. Activity was concentrated on a single day this month, with the majority of work (86%) categorized as \\\"other work\\\" rather than feature development.\"\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 two days this month. Successfully merged PR #4902 which initialized the Alethea AI Plugin Structure and Configuration (+1,097 lines), taking 7 hours to merge. Currently has an open PR #4959 for Polymarket plugin enhancements, with overall work distributed across feature development (29%), bugfixes (14%), refactoring (14%), and other work (43%).\"\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 for different languages with a total of +39/-0 lines. Both merged PRs focused on documentation improvements, with the largest being #4880 which added 26 lines to README_MY.md. Activity was sporadic, with contributions on only 2 days this month.\"\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\": \"github-advanced-security\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/in/57789?v=4\",\n      \"totalScore\": 58.5,\n      \"prScore\": 0,\n      \"issueScore\": 0,\n      \"reviewScore\": 58.5,\n      \"commentScore\": 0,\n      \"summary\": \"github-advanced-security: Contributed 6 review comments this month, though no code changes were made. Activity was sporadic with limited engagement overall.\"\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\": \"Dexploarer\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/211557447?u=21a243d61cc1f87574328ae07fc64d7d7577b53d&v=4\",\n      \"totalScore\": 40.4257738965761,\n      \"prScore\": 40.4257738965761,\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\": \"samarth30\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/48334430?u=1fc119a6c2deb8cf60448b4c8961cb21dc69baeb&v=4\",\n      \"totalScore\": 39.5437738965761,\n      \"prScore\": 39.5437738965761,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": \"samarth30: Opened one PR (#4950) focused on plugin migrator command functionality, with substantial code changes across 67 files (+9503/-4007 lines). Activity was sporadic, occurring on only 2 days this month, with the majority of work categorized as \\\"other work\\\" (69%) followed by feature development (15%). Contributed one comment on an issue, with code changes primarily affecting code files (59%), documentation (18%), and tests (14%).\"\n    },\n    {\n      \"username\": \"madjin\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/32600939?u=cdcf89f44c7a50906c7a80d889efa85023af2049&v=4\",\n      \"totalScore\": 34.34414417230953,\n      \"prScore\": 34.34414417230953,\n      \"issueScore\": 0,\n      \"reviewScore\": 0,\n      \"commentScore\": 0,\n      \"summary\": null\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\": null\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\": \"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 8 different issues, showing particular interest in troubleshooting plugin loading problems and dependency issues. No code contributions or pull requests during this period, with activity concentrated on a few specific days rather than consistent engagement throughout the month.\"\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 one issue (#4894) regarding Twitter Client startup problems with release 1.0.2, which remains open. Provided one review comment on a pull request. No code contributions or other engagement this month.\"\n    },\n    {\n      \"username\": \"eeemmmmmm\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/155267286?u=f7d609c472582d2c72ff5b592dddf98359459fc5&v=4\",\n      \"totalScore\": 6.496437912434101,\n      \"prScore\": 6.296437912434101,\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\": \"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: Focused on issue reporting this month, creating four issues (#4814, #4924, #4926, #4927) related to various functionality problems including e2e test failures, web client version errors, and agent chat issues. Contributed to discussion with one issue comment, with two of the reported issues already closed. Activity was sporadic with no code contributions or pull requests during this period.\"\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\": null\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: #5005 regarding LOG_LEVEL from .env not working in version 1.0.6 and #5004 about knowledge management (RAG) functionality not working in the same version. Engaged in discussions by commenting on 4 issues. Activity was sporadic with contributions limited to issue reporting and commenting rather than code changes.\"\n    },\n    {\n      \"username\": \"exitsimulation\",\n      \"avatarUrl\": \"https://avatars.githubusercontent.com/u/13287154?u=eaf07807399e16a2b75364f7588f1e6ca95011aa&v=4\",\n      \"totalScore\": 4.438,\n      \"prScore\": 0,\n      \"issueScore\": 4,\n      \"reviewScore\": 0,\n      \"commentScore\": 0.43799999999999994,\n      \"summary\": \"exitsimulation: Reported two issues this month (#4955 regarding room creation via REST API and #4972 about MessageBusService agent participation errors), both of which remain open. Engaged in discussions by commenting on 6 different issues, providing feedback and information to ongoing conversations. No code contributions or pull request activity during this period, with participation showing a sporadic pattern across the month.\"\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: Created issue #4876 regarding fallback mechanisms for package installation when Bun fails on macOS, which has since been closed.\"\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 adding a comment on this same issue. No code contributions or pull requests during this period.\"\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) regarding a \\\"Pump.fun migration feature\\\" which remains open. No other activity was observed during this period.\"\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: Opened one issue (#4893) proposing the addition of automated AI code reviews with Claude to enhance PR feedback. No other activity 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 (#4940) about \\\"Successive replies on target users\\\" which remains open. No other activity this month.\"\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 contributions 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\": 156,\n  \"mergedPRs\": 137,\n  \"newIssues\": 30,\n  \"closedIssues\": 29,\n  \"activeContributors\": 42\n}\n---\n[\"davidjsonn_week_2025-06-08\", \"davidjsonn\", \"week\", \"2025-06-08\", \"davidjsonn: Made a small documentation contribution by fixing typos in the gitcoin-passport.md file through PR #5008 (+2/-2 lines), which was merged within 2 hours.\", \"2025-06-08T23:09:06.416Z\"]\n[\"harperaa_week_2025-06-08\", \"harperaa\", \"week\", \"2025-06-08\", \"harperaa: Reported two issues this week: #5005 regarding LOG_LEVEL from .env not working in version 1.0.6 and #5004 about knowledge management (RAG) functionality not working in the same version. Contributed to discussions by commenting on two existing issues, showing engagement with the project despite not submitting any code changes.\", \"2025-06-08T23:09:06.956Z\"]\n[\"0xbbjoker_week_2025-06-08\", \"0xbbjoker\", \"week\", \"2025-06-08\", \"0xbbjoker: Fixed a critical bug with PR #5006 \\\"fix(logs): resolve empty logs display with existing data\\\" (+84/-43 lines), which addressed an issue where logs weren't displaying properly despite data being available. This single contribution represented their only activity this week, focusing entirely on bugfix work across 3 modified files.\", \"2025-06-08T23:09:06.909Z\"]\n[\"wtfsayo_week_2025-06-08\", \"wtfsayo\", \"week\", \"2025-06-08\", \"wtfsayo: Merged PR #5007 to fix matrix run on Windows (+3/-0 lines) and opened PR #5009 for lockfile cleanup in GitHub fallback installations. Made substantial code changes across 34 files (+1036/-511 lines) in 11 commits, with primary focus split between other work (45%) and bugfix work (36%).\", \"2025-06-08T23:09:07.237Z\"]\n[\"ChristopherTrimboli_week_2025-06-08\", \"ChristopherTrimboli\", \"week\", \"2025-06-08\", \"ChristopherTrimboli: Made substantial code changes with 5 commits modifying 209 files (+28,016/-16,749 lines), primarily focused on other work (80%) with some refactoring (20%). Activity was concentrated on a single day during this period.\", \"2025-06-08T23:09:06.716Z\"]\n[\"HuzarO_day_2025-06-05\", \"HuzarO\", \"day\", \"2025-06-05\", \"HuzarO: Created 1 issue today (#4947 \\\"Custom Plugin - callback from action is getting replaced by `...\\\"), showing sporadic activity with no other contributions.\", \"2025-06-08T23:08:37.960Z\"]\n[\"0xbbjoker_day_2025-06-05\", \"0xbbjoker\", \"day\", \"2025-06-05\", \"0xbbjoker: Made a significant bugfix contribution by modifying 1 file with a net change of +57/-62 lines, demonstrating consistent activity with 1 commit today. Additionally, provided 1 review with an approval, reflecting engagement in the code review process.\", \"2025-06-08T23:08:38.117Z\"]\n[\"HarshModi2005_day_2025-06-05\", \"HarshModi2005\", \"day\", \"2025-06-05\", \"HarshModi2005: Opened 1 pull request (#4959) for \\\"Feature/polymarket plugin enhancements\\\" and made significant code changes, modifying 182 files with a total of +18459/-11302 lines across 5 commits. The work was primarily focused on other tasks (60%), with additional contributions to feature (20%) and refactor (20%) work.\", \"2025-06-08T23:08:38.360Z\"]\n[\"ChristopherTrimboli_day_2025-06-05\", \"ChristopherTrimboli\", \"day\", \"2025-06-05\", \"ChristopherTrimboli: Merged 4 PRs, including significant contributions like #4945 \\\"feat: plugins add env var prompting\\\" (+221/-9 lines) and #4943 \\\"chore: auto install bun in CLI\\\" (+198/-26 lines), while modifying 23 files with a total of +889/-288 lines across 8 commits. Maintained a consistent work pattern, focusing primarily on other work (63%) and bug fixes (25%).\", \"2025-06-08T23:08:38.840Z\"]\n[\"affanmustafa_day_2025-06-05\", \"affanmustafa\", \"day\", \"2025-06-05\", \"affanmustafa: Engaged in the review process with 1 review comment but did not approve or request changes on any pull requests. Activity remains sporadic, with no code changes or issues created or closed today.\", \"2025-06-08T23:08:38.945Z\"]\n[\"alpuga_day_2025-06-05\", \"alpuga\", \"day\", \"2025-06-05\", \"alpuga: Opened 1 pull request (#4938 \\\"Puga/community agent2\\\") but did not merge any today, showing sporadic activity with no other contributions.\", \"2025-06-08T23:08:39.078Z\"]\n[\"davidjsonn_day_2025-06-05\", \"davidjsonn\", \"day\", \"2025-06-05\", \"davidjsonn: Merged 1 PR (#4941) focused on fixing errors in the documentation, contributing a total of +3439/-1929 lines. Maintained a consistent activity pattern, with a primary focus on bugfix work in documentation.\", \"2025-06-08T23:08:39.577Z\"]\n[\"Dexploarer_day_2025-06-05\", \"Dexploarer\", \"day\", \"2025-06-05\", \"Dexploarer: Opened 1 PR (#4939) for the \\\"github-comic-plugin\\\" and made significant code changes by modifying 8 files, resulting in a total of +616/-18284 lines, with a primary focus on bugfix work (100%). Active today, demonstrating consistent work patterns with 2 commits primarily in configuration (44%) and tests (39%).\", \"2025-06-08T23:08:39.689Z\"]\n[\"exitsimulation_day_2025-06-05\", \"exitsimulation\", \"day\", \"2025-06-05\", \"exitsimulation: Created 1 issue today (#4955 \\\"Creating room via REST API first works but then returns empty...\\\"), showing sporadic activity with no merged pull requests or code changes.\", \"2025-06-08T23:08:40.200Z\"]\n[\"github-advanced-security_day_2025-06-05\", \"github-advanced-security\", \"day\", \"2025-06-05\", \"github-advanced-security: Engaged in code reviews with a total of 2 comments but did not approve or request changes on any PRs. Activity was sporadic, with no contributions in terms of merged or open pull requests, issues created or closed, or code changes made today.\", \"2025-06-08T23:08:40.273Z\"]\n[\"eeemmmmmm_day_2025-06-05\", \"eeemmmmmm\", \"day\", \"2025-06-05\", \"eeemmmmmm: Opened 1 pull request (#4951) to bump setup-node to v4 and modified 2 files with a net change of 0 lines (+2/-2). Maintained a consistent activity pattern, contributing to other work with a focus on tests and configuration files.\", \"2025-06-08T23:08:40.446Z\"]\n[\"imanngabriel_day_2025-06-05\", \"imanngabriel\", \"day\", \"2025-06-05\", \"imanngabriel: Created 1 issue today (#4940 \\\"Successive replies on target users\\\" (OPEN)), showing sporadic activity with no merged pull requests or code changes.\", \"2025-06-08T23:08:40.611Z\"]\n[\"exitsimulation_day_2025-06-06\", \"exitsimulation\", \"day\", \"2025-06-06\", \"exitsimulation: Created 1 issue (#4972 \\\"MessageBusService: Agent not a participant in channel {channe...\\\") and commented on 5 issues, demonstrating sporadic activity today.\", \"2025-06-08T23:08:40.752Z\"]\n[\"lalalune_day_2025-06-06\", \"lalalune\", \"day\", \"2025-06-06\", \"lalalune: Made significant code changes by modifying 5 files with a total of 451 additions and 456 deletions across 2 commits, focusing entirely on tests work. Maintained a consistent activity pattern, being active on 1 out of 1 days.\", \"2025-06-08T23:08:40.787Z\"]\n[\"odilitime_day_2025-06-06\", \"odilitime\", \"day\", \"2025-06-06\", \"odilitime: Contributed by reviewing 1 pull request with 1 approval and leaving 1 comment, showing sporadic activity today.\", \"2025-06-08T23:08:41.012Z\"]\n[\"odilitime_day_2025-06-05\", \"odilitime\", \"day\", \"2025-06-05\", \"odilitime: Contributed by reviewing 1 pull request with 1 approval, showing sporadic activity today.\", \"2025-06-08T23:08:41.117Z\"]\n[\"ChristopherTrimboli_day_2025-06-06\", \"ChristopherTrimboli\", \"day\", \"2025-06-06\", \"ChristopherTrimboli: Merged 1 pull request (#4965) with changes of +35/-25 lines and modified 27 files, contributing a total of +1251/-447 lines across 8 commits. Actively engaged in the project with 6 reviews (5 approvals, 1 change request) and commented on 2 issues, demonstrating consistent work patterns.\", \"2025-06-08T23:08:41.280Z\"]\n[\"standujar_day_2025-06-07\", \"standujar\", \"day\", \"2025-06-07\", \"standujar: Contributed with 1 review, providing 1 approval, and demonstrated sporadic activity, being active on 0 out of 1 days.\", \"2025-06-08T23:09:23.767Z\"]\n[\"0xbbjoker_day_2025-06-06\", \"0xbbjoker\", \"day\", \"2025-06-06\", \"0xbbjoker: Merged 5 PRs, including significant updates to the messages API docs (#4976, +3247/-387 lines) and a feature enhancement for agent configuration (#4970, +188/-248 lines), while modifying 36 files overall (+2990/-639 lines). Actively engaged with 4 PR reviews, maintaining a consistent contribution pattern.\", \"2025-06-08T23:08:41.379Z\"]\n[\"0xbbjoker_day_2025-06-07\", \"0xbbjoker\", \"day\", \"2025-06-07\", \"0xbbjoker: Merged 2 PRs (#4988 with +107/-18 lines and #5003 with +48/-11 lines), focusing entirely on feature work with a total of +155/-29 lines modified across 5 files. Maintained a consistent activity pattern, actively contributing to the codebase today.\", \"2025-06-08T23:09:24.591Z\"]\n[\"samarth30_day_2025-06-05\", \"samarth30\", \"day\", \"2025-06-05\", \"samarth30: Opened 1 pull request (#4950 \\\"feat: plugin migrator command\\\") and made significant code changes, modifying 64 files with a total of +7053/-3752 lines across 11 commits, primarily focusing on other work (82%). Consistently active, demonstrating a strong commitment to ongoing development efforts.\", \"2025-06-08T23:08:41.798Z\"]\n[\"ChristopherTrimboli_day_2025-06-07\", \"ChristopherTrimboli\", \"day\", \"2025-06-07\", \"ChristopherTrimboli: Opened 1 PR (#4989 \\\"chore: HMR client dev\\\") and made significant code changes, modifying 94 files with a total of +5855/-3211 lines across 10 commits, demonstrating a strong focus on other work. Actively engaged with the project, maintaining a consistent work pattern.\", \"2025-06-08T23:09:24.210Z\"]\n[\"lalalune_day_2025-06-07\", \"lalalune\", \"day\", \"2025-06-07\", \"lalalune: Merged 5 PRs, including significant contributions like #4999 \\\"feat: Split types.ts into granular files\\\" (+5790/-12932 lines) and #4982 \\\"feat: add cursor rules\\\" (+13696/-0 lines), while also opening 2 new issues. Active with 14 commits, focusing primarily on feature work and modifying 98 files (+22646/-23502 lines).\", \"2025-06-08T23:09:24.444Z\"]\n[\"davidjsonn_day_2025-06-07\", \"davidjsonn\", \"day\", \"2025-06-07\", \"davidjsonn: Merged 1 PR (#4995) with minor docstring fixups (+2/-2 lines) and made code changes in documentation, focusing entirely on bugfix work. Active today, maintaining a consistent contribution pattern.\", \"2025-06-08T23:09:24.309Z\"]\n[\"lalalune_day_2025-06-05\", \"lalalune\", \"day\", \"2025-06-05\", \"lalalune: Merged 2 PRs (#4958 \\\"Merge dev into main\\\" +1601/-1297 lines, #4957 \\\"remove faulty tests for now\\\" +0/-0 lines), with a primary focus on tests work, modifying 50 files (+1590/-1286 lines) across 4 commits. Maintained a consistent activity pattern, contributing significantly to the codebase today.\", \"2025-06-08T23:08:42.001Z\"]\n[\"tcm390_day_2025-06-05\", \"tcm390\", \"day\", \"2025-06-05\", \"tcm390: Merged 1 PR (#4944) focused on bugfix work, making significant changes of +59/-63 lines across 2 files. Maintained a consistent activity pattern, being active every day.\", \"2025-06-08T23:08:42.073Z\"]\n[\"standujar_day_2025-06-05\", \"standujar\", \"day\", \"2025-06-05\", \"standujar: Merged 2 PRs (#4954 and #4949) with significant bug fixes, contributing a total of +2946/-1328 lines across 121 modified files. Actively engaged in the review process with 3 approvals and 5 commits, demonstrating consistent work focused entirely on bugfix efforts.\", \"2025-06-08T23:08:42.140Z\"]\n[\"wtfsayo_day_2025-06-06\", \"wtfsayo\", \"day\", \"2025-06-06\", \"wtfsayo: Merged 5 PRs, including significant UI/UX improvements in #4974 (+382/-150 lines) and a major migration of CLI tests in #4978 (+10967/-5463 lines), while actively commenting on 2 issues and reviewing 2 PRs with approvals. The day's work involved modifying 554 files with a total of +27990/-14482 lines, showcasing a consistent commitment to feature and bugfix work.\", \"2025-06-08T23:08:42.511Z\"]\n[\"yungalgo_day_2025-06-06\", \"yungalgo\", \"day\", \"2025-06-06\", \"yungalgo: Merged 3 PRs, including significant refactoring in #4964 (+1496/-939 lines) and bug fixes in #4963 (+563/-197 lines), while modifying 18 files overall (+579/-388 lines). Maintained a consistent work pattern with 11 commits, focusing primarily on other work (73%).\", \"2025-06-08T23:08:42.550Z\"]\n[\"wtfsayo_day_2025-06-05\", \"wtfsayo\", \"day\", \"2025-06-05\", \"wtfsayo: Merged 3 PRs, including significant bug fixes in the agent memory viewer (PR #4948, +88/-49 lines) and group creation (PR #4946, +269/-225 lines), while also opening a new PR for code formatting (PR #4953). Made extensive code modifications across 108 files (+1922/-1178 lines) with a focus on other work (50%) and bugfixes (31%).\", \"2025-06-08T23:08:42.753Z\"]\n[\"tcm390_day_2025-06-07\", \"tcm390\", \"day\", \"2025-06-07\", \"tcm390: Merged 1 PR (#4980) addressing an incorrect API URL for the message server, resulting in significant code changes of +5791/-2833 lines across 78 modified files. Actively engaged with the community by commenting on 1 issue and providing feedback on 1 PR, demonstrating consistent work patterns.\", \"2025-06-08T23:09:25.427Z\"]\n[\"0xbbjoker_day_2025-06-08\", \"0xbbjoker\", \"day\", \"2025-06-08\", \"0xbbjoker: Merged 1 PR (#5006) focused on bugfix work, resolving empty logs display with significant changes of +84/-43 lines. Maintained a consistent activity pattern, being active every day.\", \"2025-06-08T23:09:24.143Z\"]\n[\"davidjsonn_day_2025-06-08\", \"davidjsonn\", \"day\", \"2025-06-08\", \"davidjsonn: Merged 1 PR (#5008) focused on fixing typos in the documentation, contributing +2/-2 lines. Maintained a consistent activity pattern, actively contributing to bugfix work in documentation.\", \"2025-06-08T23:09:24.163Z\"]\n[\"yungalgo_day_2025-06-05\", \"yungalgo\", \"day\", \"2025-06-05\", \"yungalgo: Opened 1 PR (#4942) focused on database isolation for template testing, modified 7 files with a total of +337/-12 lines, and maintained a balanced focus on feature and test work. Active today, demonstrating consistent engagement with daily contributions.\", \"2025-06-08T23:08:43.055Z\"]\n[\"wtfsayo_day_2025-06-07\", \"wtfsayo\", \"day\", \"2025-06-07\", \"wtfsayo: Merged 4 PRs, including a significant addition of a split button component in PR #5000 (+583/-316 lines), while also focusing on bug fixes (37%) and tests (32%) across 223 modified files (+62662/-3870 lines). Actively contributed with 19 commits and maintained a consistent work pattern.\", \"2025-06-08T23:09:26.019Z\"]\n[\"wtfsayo_day_2025-06-08\", \"wtfsayo\", \"day\", \"2025-06-08\", \"wtfsayo: Merged 1 PR (#5007) with a fix for matrix runs on Windows (+3/-0 lines) and opened another PR (#5009) to add lockfile cleanup for GitHub fallback installations. Made significant code changes across 34 files (+1036/-511 lines) with a focus on other work (45%) and bugfixes (36%), demonstrating consistent activity with 11 commits today.\", \"2025-06-08T23:09:27.217Z\"]\n[\"yungalgo_day_2025-06-07\", \"yungalgo\", \"day\", \"2025-06-07\", \"yungalgo: Merged 5 PRs, including significant bug fixes and enhancements such as #4987 (+13789/-63 lines) and #4985 (+13852/-97 lines), while also opening 1 new PR (#4986). Focused primarily on code modifications with 29 files changed (+572/-330 lines) and maintained a consistent activity pattern with 23 commits.\", \"2025-06-08T23:09:25.815Z\"]\n[\"ChristopherTrimboli_day_2025-06-08\", \"ChristopherTrimboli\", \"day\", \"2025-06-08\", \"ChristopherTrimboli: Made significant code changes by modifying 209 files, resulting in a net change of +28,016 lines and -16,749 lines across 5 commits, with a primary focus on other work (80%) and refactor work (20%). Maintained a consistent activity pattern, being active every day.\", \"2025-06-08T23:09:24.110Z\"]\n[\"harperaa_day_2025-06-08\", \"harperaa\", \"day\", \"2025-06-08\", \"harperaa: Created 2 new issues (#5005 \\\"LOG_LEVEL from .env Not Working in 1.0.6\\\" and #5004 \\\"Knowledge management (RAG) not working (implemented) in 1.0.6\\\"), and commented on 2 issues, showing sporadic activity today.\", \"2025-06-08T23:09:24.426Z\"]\n[\"standujar_day_2025-06-06\", \"standujar\", \"day\", \"2025-06-06\", \"standujar: Opened 3 PRs (#4969, #4968, #4967) focused on bug fixes and real-time message deletion, while commenting on 4 issues and providing 6 PR comments. Made significant code changes across 44 files (+1625/-450 lines) with a primary emphasis on bugfix work (64%).\", \"2025-06-08T23:08:44.141Z\"]"
  ]
}