{
  "interval": {
    "intervalStart": "2025-08-01T00:00:00.000Z",
    "intervalEnd": "2025-09-01T00:00:00.000Z",
    "intervalType": "month"
  },
  "repository": "elizaos/eliza",
  "overview": "From 2025-08-01 to 2025-09-01, elizaos/eliza had 95 new PRs (76 merged), 60 new issues, and 37 active contributors.",
  "topIssues": [
    {
      "id": "I_kwDOMT5cIs7ELgn4",
      "title": "Calling `startAgent` from CLI command start - hangs early when `@elizaos/plugin-bootstrap` is omitted & hangs later when it is included",
      "author": "monilpat",
      "number": 5719,
      "repository": "elizaos/eliza",
      "body": "**Describe the bug**\n\n`packages/cli/src/commands/start/actions/agent-start.ts` is exported and re-used in CLI commands with  \n\n```ts\nimport { startAgent } from '../commands/start';\n```\n\nWhen I call `startAgent` from `runtime-factory.ts` / `initializeAgent()`:\n\n```ts\nconst runtime = await startAgent(\n  encryptedCharacter(character),\n  server,\n  undefined,\n  [],                       // <-- intentionally no bootstrap plugin\n  { isTestMode: false }\n);\n```\n\ninitialization hangs almost immediately (before plugin dependency resolution).\n\nIf I add `@elizaos/plugin-bootstrap` back:\n\n```ts\nconst runtime = await startAgent(\n  encryptedCharacter(character),\n  server,\n  undefined,\n  ['@elizaos/plugin-bootstrap'],\n  { isTestMode: false }\n);\n```\n\ninitialization gets past early steps, loads **all** plugins, but then hangs right after the bootstrap plugin finishes loading.\n\n---\n\n**To Reproduce**\n\n1. Build the CLI (`cd packages/cli && bun x tsup`).\n2. From `packages/cli` run a scenario that relies on `initializeAgent`, e.g.:\n\n```bash\nbun run src/index.ts scenario run \\\n  src/commands/scenario/examples/e2b-test.scenario.yaml\n```\n\n3. Edit `runtime-factory.ts` ➜ `initializeAgent()` and comment the bootstrap plugin in the `character.plugins` array (lines 411-415).\n4. Re-run the same command – observe early hang.\n5. Re-enable the bootstrap plugin and re-run – observe later hang.\n\n---\n\n**Expected behavior**\n\n`startAgent` should finish initializing an agent regardless of whether `@elizaos/plugin-bootstrap` is present.  \nIf the bootstrap plugin is mandatory there should be a clear validation error, not a silent hang.\n\n---\n\n**Logs / Screenshots**\n\n<details>\n<summary>1️⃣ Hang without bootstrap plugin (early-stage)</summary>\n\n```\n[2025-08-04 02:47:47] INFO: [startAgent] Step 1 – Starting agent initialization\n[2025-08-04 02:47:47] INFO: [startAgent] Step 2 – Character ID set\n[2025-08-04 02:47:47] INFO: [startAgent] Step 3 – Checking character secrets\n[2025-08-04 02:47:47] INFO: [startAgent] Step 3c – Character already has secrets\n[2025-08-04 02:47:47] INFO: [startAgent] Step 4 – Initializing plugin loading\n[2025-08-04 02:47:47] INFO: [startAgent] Step 4a – SQL plugin loaded\n[2025-08-04 02:47:47] INFO: [startAgent] Step 4b – Character plugins: [\"@elizaos/plugin-e2b\",\"@elizaos/plugin-openai\"]\n... nothing further – process hangs here ...\n```\n</details>\n\n<details>\n<summary>2️⃣ Hang with bootstrap plugin (late-stage)</summary>\n\n```\n[2025-08-04 02:52:47] INFO: [loadAndPreparePlugin] Step 1 – Starting to load plugin: @elizaos/plugin-bootstrap\n[2025-08-04 02:52:47] SUCCESS: Successfully loaded plugin '@elizaos/plugin-bootstrap' using workspace dependency\n[2025-08-04 02:52:47] INFO: [loadAndPreparePlugin] Step 4e – Found valid plugin export\n[2025-08-04 02:52:47] INFO: [startAgent] Step 5d – Successfully loaded plugin: bootstrap\n... no further output – runtime hangs right after this point ...\n```\n</details>\n\n---\n\n**Additional context**\n\n* The call site is `packages/cli/src/scenarios/runtime-factory.ts` → `initializeAgent()`.\n* `startAgent` is imported with  \n  `import { startAgent } from '../commands/start';`\n* Hangs occur both in **local** and **E2B** scenarios.\n* Database migrations complete successfully; the hang happens after plugin loading.\n* Removing *all* plugins except SQL reproduces the *early* hang; adding any plugin that has bootstrap as a dep reproduces the *late* hang.\n* The same code path works in commit `510b8aac2e0b20cc3d176093a58143c26e838e65` (July 25 commit) but fails from `d84963ef3d5f5cccfef461350175dc1bc9b77b58` onward.\n\nPlease review my branch and the file for the associated changes. I review the plugin loading stack trace loadAndPreparePlugin -> loadPluginModule -> strategy.tryImport (which is where it hangs \n\n```\n */\nconst importStrategies: ImportStrategy[] = [\n  // Try local development first - this is the most important for plugin testing\n  {\n    name: 'local development plugin',\n    tryImport: async (repository: string) => {\n      const context = detectPluginContext(repository);\n\n      if (context.isLocalDevelopment) {\n        logger.debug(`Detected local development for plugin: ${repository}`);\n\n        // Ensure the plugin is built\n        const isBuilt = await ensurePluginBuilt(context);\n        if (!isBuilt) {\n          provideLocalPluginGuidance(repository, context);\n          return null;\n        }\n\n        // Try to load from built output\n        if (context.localPath && existsSync(context.localPath)) {\n          logger.info(`Loading local development plugin: ${repository}`);\n          return tryImporting(context.localPath, 'local development plugin', repository);\n        }\n\n        // This shouldn't happen if ensurePluginBuilt succeeded, but handle it gracefully\n        logger.warn(`Plugin built but output not found at expected path: ${context.localPath}`);\n        provideLocalPluginGuidance(repository, context);\n        return null;\n      }\n\n      return null;\n    },\n  },\n  // Try workspace dependencies (for monorepo packages)\n  {\n    name: 'workspace dependency',\n    tryImport: async (repository: string) => {\n      if (repository.startsWith('@elizaos/plugin-')) {\n        // Try to find the plugin in the workspace\n        const pluginName = repository.replace('@elizaos/', '');\n        const workspacePath = path.resolve(process.cwd(), '..', pluginName, 'dist', 'index.js');\n        if (existsSync(workspacePath)) {\n          return tryImporting(workspacePath, 'workspace dependency', repository);\n        }\n      }\n      return null;\n    },\n  },\n  {\n    name: 'direct path',\n    tryImport: async (repository: string) => tryImporting(repository, 'direct path', repository),\n  },\n  {\n    name: 'local node_modules',\n    tryImport: async (repository: string) =>\n      tryImporting(resolveNodeModulesPath(repository), 'local node_modules', repository),\n  },\n  {\n    name: 'global node_modules',\n    tryImport: async (repository: string) => {\n      const globalPath = path.resolve(getGlobalNodeModulesPath(), repository);\n      if (!existsSync(path.dirname(globalPath))) {\n        logger.debug(\n          `Global node_modules directory not found at ${path.dirname(globalPath)}, skipping for ${repository}`\n        );\n        return null;\n      }\n      return tryImporting(globalPath, 'global node_modules', repository);\n    },\n  },\n  {\n    name: 'package.json entry',\n    tryImport: async (repository: string) => {\n      const packageJson = await readPackageJson(repository);\n      if (!packageJson) return null;\n\n      const entryPoint = packageJson.module || packageJson.main || DEFAULT_ENTRY_POINT;\n      return tryImporting(\n        resolveNodeModulesPath(repository, entryPoint),\n        `package.json entry (${entryPoint})`,\n        repository\n      );\n    },\n  },\n  {\n    name: 'common dist pattern',\n    tryImport: async (repository: string) => {\n      const packageJson = await readPackageJson(repository);\n      if (packageJson?.main === DEFAULT_ENTRY_POINT) return null;\n\n      return tryImporting(\n        resolveNodeModulesPath(repository, DEFAULT_ENTRY_POINT),\n        'common dist pattern',\n        repository\n      );\n    },\n  },\n];\n``` in load-plugin.ts  BRANCH in question: https://github.com/elizaOS/eliza/blob/scenarios-cli/packages/cli/src/scenarios/runtime-factory.ts\n\n\nbut startAgent is in develop and is having issues when its being called. ",
      "createdAt": "2025-08-05T02:45:31Z",
      "closedAt": "2025-08-14T02:44:06Z",
      "state": "CLOSED",
      "commentCount": 5
    },
    {
      "id": "I_kwDOMT5cIs7EwwuN",
      "title": "Eliza CLI failed to build project",
      "author": "Kemystra",
      "number": 5734,
      "repository": "elizaos/eliza",
      "body": "**Describe the bug**\n\nOn project creation, ElizaOS CLI fails with the following error:\n```\n◇  Failed to build project\nstdout: src/index.ts(7,25): error TS2345: Argument of type 'string' is not assignable to parameter of type 'undefined'.\nstderr: $ tsc --noEmit && vite build && tsup\n```\n\n**To Reproduce**\n\n- Install ElizaOS through `bun`\n```\nbun i -g @elizaos/cli\n```\n- Create new ElizaOS project\n```\nelizaos create abcde\n```\n\n**Expected behavior**\n\nProject built successfully\n\n**Screenshots**\n\n<img width=\"1095\" height=\"572\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/967dd6a2-0d70-4e2e-8019-85a2eab5f225\" />\n\n**Additional context**\n\nElizaOS CLI version: `1.3.2`\n",
      "createdAt": "2025-08-07T16:14:00Z",
      "closedAt": "2025-08-14T07:09:33Z",
      "state": "CLOSED",
      "commentCount": 3
    },
    {
      "id": "I_kwDOMT5cIs7Engk3",
      "title": "feat(scenarios): Implement conditional mocking and complex response structures",
      "author": "monilpat",
      "number": 5726,
      "repository": "elizaos/eliza",
      "body": "# feat(scenarios): Implement conditional mocking and complex response structures\n\n## Description\n\nThis ticket enhances the mocking system to support conditional responses based on input parameters and complex response structures with metadata. This enables realistic testing of service interactions like GitHub API calls or EVM transactions with proper request/response matching.\n\n## Acceptance Criteria\n\n1. Mock definitions support `when` clauses for conditional responses\n2. `when` clauses can match on method arguments, input parameters, or request context\n3. Mock responses support complex nested structures with metadata (timestamps, IDs, etc.)\n4. Multiple mock responses can be defined for the same service/method with different conditions\n5. Mock system provides clear logging of which mock was triggered and why\n6. Mock responses can include realistic error conditions and edge cases\n7. Support for dynamic response generation based on input parameters\n8. Mock validation ensures `when` clauses are syntactically correct\n\n## Technical Approach\n\n### 1. Enhanced Mock Schema\n```typescript\n// packages/cli/src/scenarios/schema.ts\nconst MockSchema = z.object({\n  service: z.string(),\n  method: z.string(),\n  when: z.object({\n    // Match on method arguments\n    args: z.array(z.any()).optional(),\n    // Match on specific argument values\n    input: z.record(z.any()).optional(),\n    // Match on request context\n    context: z.record(z.any()).optional(),\n    // Custom matching function\n    matcher: z.string().optional(), // JavaScript expression\n  }).optional(),\n  response: z.any(), // Can be function or static value\n  // For dynamic responses\n  responseFn: z.string().optional(), // JavaScript function\n  // Error simulation\n  error: z.object({\n    code: z.string(),\n    message: z.string(),\n  }).optional(),\n});\n```\n\n### 2. Mock Engine Implementation\n```typescript\n// packages/cli/src/scenarios/mock-engine.ts\nexport class MockEngine {\n  private mocks: MockDefinition[] = [];\n\n  addMock(mock: MockDefinition) {\n    this.mocks.push(mock);\n  }\n\n  async findMock(service: string, method: string, args: any[]): Promise<any> {\n    const candidates = this.mocks.filter(m => \n      m.service === service && m.method === method\n    );\n\n    for (const mock of candidates) {\n      if (await this.matchesCondition(mock, args)) {\n        this.logger.info(`Mock triggered: ${service}.${method} with condition: ${JSON.stringify(mock.when)}`);\n        return this.generateResponse(mock, args);\n      }\n    }\n\n    return null; // No mock found\n  }\n\n  private async matchesCondition(mock: MockDefinition, args: any[]): Promise<boolean> {\n    if (!mock.when) return true; // Default mock\n\n    // Match on arguments\n    if (mock.when.args) {\n      if (!this.deepEqual(args, mock.when.args)) return false;\n    }\n\n    // Match on input parameters\n    if (mock.when.input) {\n      const input = this.extractInputFromArgs(args);\n      if (!this.deepEqual(input, mock.when.input)) return false;\n    }\n\n    // Custom matcher function\n    if (mock.when.matcher) {\n      const matcherFn = new Function('args', 'input', mock.when.matcher);\n      return matcherFn(args, this.extractInputFromArgs(args));\n    }\n\n    return true;\n  }\n\n  private generateResponse(mock: MockDefinition, args: any[]): any {\n    if (mock.error) {\n      throw new Error(`${mock.error.code}: ${mock.error.message}`);\n    }\n\n    if (mock.responseFn) {\n      const responseFn = new Function('args', 'input', mock.responseFn);\n      return responseFn(args, this.extractInputFromArgs(args));\n    }\n\n    return mock.response;\n  }\n}\n```\n\n## Test Scenario\n\nCreate `advanced-mocking-test.scenario.yaml`:\n```yaml\nname: \"Advanced Mocking Test\"\ndescription: \"Tests conditional mocking and complex response structures\"\n\nplugins:\n  - \"@elizaos/plugin-github\"\n  - \"@elizaos/plugin-evm\"\n\nenvironment:\n  type: e2b\n\nsetup:\n  mocks:\n    # Conditional GitHub issue search\n    - service: \"github-service\"\n      method: \"searchIssues\"\n      when:\n        input:\n          labels: \"bug\"\n        matcher: \"input.labels.includes('bug')\"\n      response:\n        - title: \"Critical Bug Found\"\n          number: 456\n          state: \"open\"\n          labels: [\"bug\", \"critical\"]\n          created_at: \"2024-07-15T10:00:00Z\"\n\n    # Conditional GitHub issue search - different response\n    - service: \"github-service\"\n      method: \"searchIssues\"\n      when:\n        input:\n          labels: \"feature\"\n        matcher: \"input.labels.includes('feature')\"\n      response:\n        - title: \"New Feature Request\"\n          number: 789\n          state: \"open\"\n          labels: [\"feature\", \"enhancement\"]\n          created_at: \"2024-07-15T11:00:00Z\"\n\n    # Dynamic EVM balance response\n    - service: \"evm-service\"\n      method: \"getBalancesForAddress\"\n      when:\n        args: [\"0x1234567890abcdef\"]\n      responseFn: |\n        return {\n          chain: \"ethereum\",\n          address: args[0],\n          balances: [\n            { symbol: \"ETH\", amount: \"1.23\" },\n            { symbol: \"USDC\", amount: \"1000.00\" }\n          ],\n          last_updated: new Date().toISOString()\n        }\n\n    # Error simulation\n    - service: \"github-service\"\n      method: \"readFile\"\n      when:\n        input:\n          path: \"/docs/nonexistent.md\"\n      error:\n        code: \"FILE_NOT_FOUND\"\n        message: \"File does not exist\"\n\nrun:\n  - name: \"Test conditional GitHub search\"\n    input: \"Search for issues with bug label\"\n    evaluations:\n      - type: \"trajectory_contains_action\"\n        action: \"github-service.searchIssues\"\n      - type: \"string_contains\"\n        value: \"Critical Bug Found\"\n      - type: \"llm_judge\"\n        prompt: \"Did the agent correctly search for bug issues?\"\n        expected: \"yes\"\n\n  - name: \"Test dynamic EVM response\"\n    input: \"What's the balance for address 0x1234567890abcdef?\"\n    evaluations:\n      - type: \"trajectory_contains_action\"\n        action: \"evm-service.getBalancesForAddress\"\n      - type: \"string_contains\"\n        value: \"1.23 ETH\"\n      - type: \"string_contains\"\n        value: \"1000.00 USDC\"\n\n  - name: \"Test error handling\"\n    input: \"Read the file /docs/nonexistent.md\"\n    evaluations:\n      - type: \"trajectory_contains_action\"\n        action: \"github-service.readFile\"\n      - type: \"string_contains\"\n        value: \"File does not exist\"\n\njudgment:\n  strategy: all_pass\n```\n\n## Testing Strategy\n\n1. **Conditional Matching**: Test different responses based on input parameters\n2. **Dynamic Responses**: Test response generation based on arguments\n3. **Error Simulation**: Test error handling and reporting\n4. **Complex Structures**: Test nested response objects with metadata\n5. **Multiple Mocks**: Test multiple mocks for same service/method\n6. **Logging**: Verify mock selection is logged clearly\n\n## Dependencies\n\n- Builds on existing mock system in scenarios\n- Requires plugin system integration (Ticket 1)\n- Integrates with agent interaction testing (Ticket 3) ",
      "createdAt": "2025-08-07T02:49:00Z",
      "closedAt": "2025-08-12T04:21:45Z",
      "state": "CLOSED",
      "commentCount": 3
    },
    {
      "id": "I_kwDOMT5cIs7HaHnG",
      "title": "Image Generation not working in Discord",
      "author": "harperaa",
      "number": 5809,
      "repository": "elizaos/eliza",
      "body": "**Describe the bug**\n\nGenerated images not appearing in discord, it shows in the webui, but not in discord.\n\n**To Reproduce**\n\nAsk to create an image, it says here it is, and describes it, but does not show up in discord.\n\nI see this in logs on webui. Executed action: GENERATE_IMAGE\n\n**Expected behavior**\n\nImage in discord.\n\n**Screenshots**\n\nIf I am missing some permission or config needed, please let me know.  Again, it works in webui, but not in discord.",
      "createdAt": "2025-08-22T13:33:19Z",
      "closedAt": null,
      "state": "OPEN",
      "commentCount": 3
    },
    {
      "id": "I_kwDOMT5cIs7Eng6F",
      "title": "feat(scenarios): Implement natural language agent interaction and response validation",
      "author": "monilpat",
      "number": 5727,
      "repository": "elizaos/eliza",
      "body": "# feat(scenarios): Implement natural language agent interaction and response validation\n\n## Description\n\nThis ticket enables scenarios to test agent behavior through natural language interactions rather than direct code execution. This allows testing of agent reasoning, decision-making, and response generation in realistic conversation contexts with proper evaluation of agent responses.\n\n## Acceptance Criteria\n\n1. Scenario `run` blocks support `input` field for natural language prompts to agents\n2. Agent responses are captured and available for evaluation (text, thoughts, actions)\n3. Evaluators can access both agent response text and execution context\n4. Support for multi-turn conversations in scenarios\n5. Agent responses include thought process and action decisions\n6. Integration with existing evaluation engine for response validation\n7. Support for conversation context across multiple steps\n8. Agent response timing and performance metrics\n\n## Technical Approach\n\n### 1. Enhanced Run Step Schema\n```typescript\n// packages/cli/src/scenarios/schema.ts\nconst RunStepSchema = z.object({\n  name: z.string().optional(),\n  // Natural language input to agent\n  input: z.string().optional(),\n  // Direct code execution (existing)\n  lang: z.string().optional(),\n  code: z.string().optional(),\n  // Agent interaction specific\n  agent_context: z.object({\n    conversation_id: z.string().optional(),\n    user_id: z.string().optional(),\n    room_id: z.string().optional(),\n  }).optional(),\n  evaluations: z.array(EvaluationSchema),\n});\n```\n\n### 2. Agent Interaction Engine\n```typescript\n// packages/cli/src/scenarios/agent-interaction.ts\nexport class AgentInteractionEngine {\n  constructor(private runtime: IAgentRuntime) {}\n\n  async interactWithAgent(input: string, context?: AgentContext): Promise<AgentResponse> {\n    // Create message for agent\n    const message: Memory = {\n      entityId: context?.user_id || 'scenario-user',\n      roomId: context?.room_id || 'scenario-room',\n      content: {\n        type: 'text',\n        text: input,\n      },\n      metadata: {\n        type: 'message',\n        conversationId: context?.conversation_id,\n      },\n    };\n\n    // Send to agent and capture response\n    const startTime = Date.now();\n    const response = await this.runtime.processMessage(message);\n    const endTime = Date.now();\n\n    return {\n      text: response.text,\n      thoughts: response.thoughts,\n      actions: response.actions,\n      timing: {\n        startTime,\n        endTime,\n        duration: endTime - startTime,\n      },\n      context: {\n        conversationId: context?.conversation_id,\n        messageId: message.id,\n      },\n    };\n  }\n}\n```\n\n### 3. Enhanced Execution Result\n```typescript\n// packages/cli/src/scenarios/providers.ts\nexport interface ExecutionResult {\n  exitCode: number;\n  stdout: string;\n  stderr: string;\n  files: Record<string, string>;\n  // New: Agent interaction results\n  agentResponse?: AgentResponse;\n  conversationHistory?: AgentResponse[];\n}\n```\n\n## Test Scenario\n\nCreate `agent-interaction-test.scenario.yaml`:\n```yaml\nname: \"Agent Interaction Test\"\ndescription: \"Tests natural language interaction with agents\"\n\nplugins:\n  - \"@elizaos/plugin-github\"\n  - \"@elizaos/plugin-evm\"\n\nenvironment:\n  type: e2b\n\nsetup:\n  mocks:\n    - service: \"github-service\"\n      method: \"searchIssues\"\n      response:\n        - title: \"Implement Dark Mode\"\n          number: 123\n          state: \"open\"\n          labels: [\"feature\", \"ui\"]\n    - service: \"evm-service\"\n      method: \"getBalancesForAddress\"\n      response:\n        - chain: \"ethereum\"\n          balances:\n            - symbol: \"ETH\"\n              amount: \"2.5\"\n\nrun:\n  - name: \"Ask agent about roadmap\"\n    input: \"What new features are you planning to add?\"\n    agent_context:\n      conversation_id: \"roadmap-conversation\"\n      user_id: \"test-user\"\n    evaluations:\n      - type: \"trajectory_contains_action\"\n        action: \"github-service.searchIssues\"\n        description: \"Verify agent searched for issues\"\n      \n      - type: \"string_contains\"\n        value: \"Dark Mode\"\n        description: \"Verify agent mentioned the mocked issue\"\n      \n      - type: \"llm_judge\"\n        prompt: \"Did the agent provide a helpful and coherent response about new features?\"\n        expected: \"yes\"\n        description: \"Verify agent response quality\"\n\n  - name: \"Ask agent about wallet\"\n    input: \"What's my current wallet balance?\"\n    agent_context:\n      conversation_id: \"wallet-conversation\"\n      user_id: \"test-user\"\n    evaluations:\n      - type: \"trajectory_contains_action\"\n        action: \"evm-service.getBalancesForAddress\"\n        description: \"Verify agent checked wallet balance\"\n      \n      - type: \"string_contains\"\n        value: \"2.5 ETH\"\n        description: \"Verify agent reported the correct balance\"\n      \n      - type: \"llm_judge\"\n        prompt: \"Did the agent clearly explain the wallet balance information?\"\n        expected: \"yes\"\n\n  - name: \"Multi-turn conversation\"\n    input: \"Can you help me with both my wallet and roadmap?\"\n    agent_context:\n      conversation_id: \"multi-turn-conversation\"\n      user_id: \"test-user\"\n    evaluations:\n      - type: \"trajectory_contains_action\"\n        action: \"evm-service.getBalancesForAddress\"\n      - type: \"trajectory_contains_action\"\n        action: \"github-service.searchIssues\"\n      - type: \"string_contains\"\n        value: \"ETH\"\n      - type: \"string_contains\"\n        value: \"Dark Mode\"\n      - type: \"llm_judge\"\n        prompt: \"Did the agent address both wallet and roadmap questions comprehensively?\"\n        expected: \"yes\"\n\njudgment:\n  strategy: all_pass\n```\n\n## Testing Strategy\n\n1. **Single Turn**: Test basic agent interaction and response\n2. **Multi-turn**: Test conversation context across steps\n3. **Action Tracking**: Verify agent uses appropriate actions\n4. **Response Quality**: Test LLM judge evaluation of responses\n5. **Performance**: Test response timing and metrics\n6. **Error Handling**: Test agent behavior with invalid inputs\n\n## Dependencies\n\n- Requires plugin system integration (Ticket 1)\n- Builds on advanced mocking system (Ticket 2)\n- Integrates with existing evaluation engine\n- Depends on agent runtime message processing",
      "createdAt": "2025-08-07T02:49:34Z",
      "closedAt": "2025-08-12T04:21:31Z",
      "state": "CLOSED",
      "commentCount": 2
    }
  ],
  "topPRs": [
    {
      "id": "PR_kwDOMT5cIs6bjrTf",
      "title": "Next",
      "author": "lalalune",
      "number": 5242,
      "body": "Roads? Where we're going, we don't need roads!",
      "repository": "elizaos/eliza",
      "createdAt": "2025-06-22T16:11:08Z",
      "mergedAt": null,
      "additions": 1367486,
      "deletions": 69177
    },
    {
      "id": "PR_kwDOMT5cIs6iAhom",
      "title": "Fix memory count and agent id errors",
      "author": "wtfsayo",
      "number": 5712,
      "body": "```\n# Relates to\n\n<!-- No specific issue or ticket provided -->\n\n# Risks\n\nLow. This PR fixes a display bug and adds error handling for invalid input, improving robustness without introducing new functionality.\n\n# Background\n\n## What does this PR do?\n\n*   Corrects the `clearAgentMemories` command to use `result?.deletedCount` instead of `result?.deleted` to accurately display the number of cleared memories.\n*   Adds robust error handling for `asUUID(resolvedAgentId)` calls in `removeAgent`, `clearAgentMemories`, and `setAgentConfig` commands. This prevents unhandled errors when an invalid agent ID format (non-UUID) is provided.\n\n## What kind of change is this?\n\nBug fixes\n\n## Why are we doing this? Any context or related work?\n\nThe `clearAgentMemories` command was incorrectly displaying '0 memories cleared' because it expected a `deleted` property from the API response, while the API returns `deletedCount`. Additionally, the `removeAgent`, `clearAgentMemories`, and `setAgentConfig` commands lacked proper error handling for invalid UUIDs passed to `asUUID`, which could lead to unhandled exceptions.\n\n# Documentation changes needed?\n\nMy changes do not require a change to the project documentation.\n\n# Testing\n\n## Where should a reviewer start?\n\n`packages/cli/src/commands/agent/actions/crud.ts`\n\n## Detailed testing steps\n\n*   **Verify `clearAgentMemories` count display**:\n    1.  Ensure an agent has some memories (e.g., by interacting with it).\n    2.  Run `npm run cli agent clear-memories --name <agent-name>` (or by UUID/index).\n    3.  Verify the output correctly displays the number of cleared memories (e.g., \"Successfully cleared X memories...\").\n*   **Verify `asUUID` error handling**:\n    1.  Run `npm run cli agent remove --name invalid-uuid-format`.\n    2.  Verify an error message like \"Invalid agent ID format: invalid-uuid-format. Please provide a valid UUID, agent name, or index.\" is displayed.\n    3.  Repeat steps 1 and 2 for `npm run cli agent clear-memories --name invalid-uuid-format`.\n    4.  Repeat steps 1 and 2 for `npm run cli agent set --name invalid-uuid-format --config '{ \"name\": \"test\" }'`.\n```\n\n---\n<a href=\"https://cursor.com/background-agent?bcId=bc-88928546-cf20-494a-964b-9e11d92f1e69\">\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://cursor.com/open-in-cursor-dark.svg\">\n    <source media=\"(prefers-color-scheme: light)\" srcset=\"https://cursor.com/open-in-cursor-light.svg\">\n    <img alt=\"Open in Cursor\" src=\"https://cursor.com/open-in-cursor.svg\">\n  </picture>\n</a>\n<a href=\"https://cursor.com/agents?id=bc-88928546-cf20-494a-964b-9e11d92f1e69\">\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://cursor.com/open-in-web-dark.svg\">\n    <source media=\"(prefers-color-scheme: light)\" srcset=\"https://cursor.com/open-in-web-light.svg\">\n    <img alt=\"Open in Web\" src=\"https://cursor.com/open-in-web.svg\">\n  </picture>\n</a>\n\n<sub>[Learn more](https://docs.cursor.com/background-agent/web-and-mobile) about Cursor Agents</sub>",
      "repository": "elizaos/eliza",
      "createdAt": "2025-08-04T13:43:39Z",
      "mergedAt": null,
      "additions": 46580,
      "deletions": 142155
    },
    {
      "id": "PR_kwDOMT5cIs6iADWo",
      "title": "Fix agent id uuid conversion in getAgent command",
      "author": "wtfsayo",
      "number": 5711,
      "body": "# Relates to\n\n<!-- LINK TO ISSUE OR TICKET -->\n\n# Risks\n\nLow. This PR improves error handling without changing core logic.\n\n# Background\n\n## What does this PR do?\n\nThis PR enhances the `getAgent` command by adding robust error handling for UUID conversion. It wraps the `asUUID(resolvedAgentId)` call in a try-catch block, providing a more descriptive error message if the `resolvedAgentId` cannot be converted to a valid UUID.\n\n## What kind of change is this?\n\nBug fixes (non-breaking change which fixes an issue)\nImprovements (misc. changes to existing features)\n\n## Why are we doing this? Any context or related work?\n\nThe `getAgent` command's use of `asUUID(resolvedAgentId)` could lead to runtime failures if `resolvedAgentId` (even after being resolved from a name, index, or string ID) is not a valid UUID. While `resolveAgentId` is intended to return a UUID, this change adds a safeguard against potential data inconsistencies or unexpected inputs, providing a clearer, user-friendly error message instead of a generic validation error. This improves the command's resilience.\n\n# Documentation changes needed?\n\nMy changes do not require a change to the project documentation.\n\n# Testing\n\n## Where should a reviewer start?\n\n`packages/cli/src/commands/agent/actions/crud.ts` at line 31.\n\n## Detailed testing steps\n\n1.  **Verify existing functionality**:\n    *   Create an agent: `eliza agent create --name myagent`\n    *   Get the agent by name: `eliza agent get --name myagent` (should succeed)\n    *   Get the agent by its UUID (copy from `eliza agent list`): `eliza agent get --id <UUID>` (should succeed)\n    *   Get the agent by index: `eliza agent get --index 0` (should succeed)\n2.  **Verify new error handling**:\n    *   Attempt to get an agent with a clearly invalid, non-UUID string that `resolveAgentId` might theoretically pass through (e.g., `eliza agent get --id \"not-a-uuid\"`).\n    *   Verify that the command now outputs the custom error message: \"Invalid agent ID format: not-a-uuid. Please provide a valid UUID, agent name, or index.\"\n\n---\n<a href=\"https://cursor.com/background-agent?bcId=bc-523cb3f7-2ab8-48b0-8ff9-dd316c000970\">\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://cursor.com/open-in-cursor-dark.svg\">\n    <source media=\"(prefers-color-scheme: light)\" srcset=\"https://cursor.com/open-in-cursor-light.svg\">\n    <img alt=\"Open in Cursor\" src=\"https://cursor.com/open-in-cursor.svg\">\n  </picture>\n</a>\n<a href=\"https://cursor.com/agents?id=bc-523cb3f7-2ab8-48b0-8ff9-dd316c000970\">\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://cursor.com/open-in-web-dark.svg\">\n    <source media=\"(prefers-color-scheme: light)\" srcset=\"https://cursor.com/open-in-web-light.svg\">\n    <img alt=\"Open in Web\" src=\"https://cursor.com/open-in-web.svg\">\n  </picture>\n</a>\n\n<sub>[Learn more](https://docs.cursor.com/background-agent/web-and-mobile) about Cursor Agents</sub>",
      "repository": "elizaos/eliza",
      "createdAt": "2025-08-04T13:07:05Z",
      "mergedAt": null,
      "additions": 46565,
      "deletions": 142158
    },
    {
      "id": "PR_kwDOMT5cIs6h_-Oc",
      "title": "Fix agent config output exclusion",
      "author": "wtfsayo",
      "number": 5710,
      "body": "# Relates to\n\nN/A\n\n# Risks\n\nLow - This change only affects the output format of agent configuration and does not alter core functionality or data.\n\n# Background\n\n## What does this PR do?\n\nThis PR restores the previous behavior of excluding the `enabled` field from the agent configuration when saving to a file (using `--output`) or displaying as JSON (using `--json`).\n\n## What kind of change is this?\n\nBug fixes\n\n## Why are we doing this? Any context or related work?\n\nThe `enabled` field was inadvertently included in the agent configuration output, which was a regression from the previous behavior where it was explicitly excluded. This fix ensures consistency with the expected output format.\n\n# Documentation changes needed?\n\nMy changes do not require a change to the project documentation.\n\n# Testing\n\n## Where should a reviewer start?\n\n`packages/cli/src/commands/agent/actions/crud.ts`\n\n## Detailed testing steps\n\n1.  Run the agent command with the `--output` flag:\n    `your-cli-command agent get --output agent_config.json`\n    Verify that `agent_config.json` does *not* contain the `enabled` field.\n2.  Run the agent command with the `--json` flag:\n    `your-cli-command agent get --json`\n    Verify that the JSON output in the console does *not* contain the `enabled` field.\n\n---\n<a href=\"https://cursor.com/background-agent?bcId=bc-b795369d-f01e-447f-a8b5-44c4428496e0\">\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://cursor.com/open-in-cursor-dark.svg\">\n    <source media=\"(prefers-color-scheme: light)\" srcset=\"https://cursor.com/open-in-cursor-light.svg\">\n    <img alt=\"Open in Cursor\" src=\"https://cursor.com/open-in-cursor.svg\">\n  </picture>\n</a>\n<a href=\"https://cursor.com/agents?id=bc-b795369d-f01e-447f-a8b5-44c4428496e0\">\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://cursor.com/open-in-web-dark.svg\">\n    <source media=\"(prefers-color-scheme: light)\" srcset=\"https://cursor.com/open-in-web-light.svg\">\n    <img alt=\"Open in Web\" src=\"https://cursor.com/open-in-web.svg\">\n  </picture>\n</a>\n\n<sub>[Learn more](https://docs.cursor.com/background-agent/web-and-mobile) about Cursor Agents</sub>",
      "repository": "elizaos/eliza",
      "createdAt": "2025-08-04T13:00:58Z",
      "mergedAt": null,
      "additions": 46560,
      "deletions": 142159
    },
    {
      "id": "PR_kwDOMT5cIs6lddBz",
      "title": "merge develop",
      "author": "tcm390",
      "number": 5826,
      "body": "",
      "repository": "elizaos/eliza",
      "createdAt": "2025-08-26T17:47:19Z",
      "mergedAt": null,
      "additions": 35368,
      "deletions": 49768
    }
  ],
  "codeChanges": {
    "additions": 61644,
    "deletions": 46724,
    "files": 546,
    "commitCount": 634
  },
  "completedItems": [
    {
      "title": "feat: add CLI delegation debug tool",
      "prNumber": 5682,
      "type": "feature",
      "body": "## Overview\n\nThis PR adds a comprehensive debug tool for diagnosing ElizaOS CLI delegation issues. The script helps developers understand why local CLI delegation might not be working and provides automatic fixes for common problems.\n\n## Fe",
      "files": [
        "packages/cli/src/utils/local-cli-delegation.ts",
        "packages/cli/tests/unit/utils/local-cli-delegation.test.ts",
        "scripts/debug-cli-delegation.test.ts",
        "scripts/debug-cli-delegation.ts"
      ]
    },
    {
      "title": "feat: Boostrap event / logging improvement",
      "prNumber": 5684,
      "type": "feature",
      "body": "# Risks\r\n\r\nLow, won't affect most copies\r\n\r\n# Background\r\n\r\n## What does this PR do?\r\n\r\n- uses proper runtime logger as almost all calls are in the context of a runtime\r\n- new setting: BOOTSTRAP_DEFLLMOFF - turns off LLM automatically respo",
      "files": [
        "packages/plugin-bootstrap/src/index.ts",
        ".cursor"
      ]
    },
    {
      "title": "sessions API",
      "prNumber": 5704,
      "type": "other",
      "body": "# Sessions API Documentation\r\n\r\nThe Sessions API provides a simplified interface for messaging between users and agents, abstracting away the complexity of servers, channels, and participants.\r\n\r\n## Overview\r\n\r\nThe Sessions API is designed ",
      "files": [
        "packages/plugin-bootstrap/src/index.ts",
        "packages/server/src/api/messaging/__tests__/sessions.test.ts",
        "packages/server/src/api/messaging/index.ts",
        "packages/server/src/api/messaging/sessions.ts",
        "packages/server/src/services/message.ts",
        "packages/server/src/types.ts",
        "packages/server/src/types/sessions.ts"
      ]
    },
    {
      "title": "feat: auto-install @elizaos/cli as dev dependency for start/dev commands",
      "prNumber": 5702,
      "type": "feature",
      "body": "## 🚀 Feature: Auto-install @elizaos/cli as dev dependency using bun\n\n### Summary\nAutomatically adds `@elizaos/cli` as a dev dependency using **bun** when running `start` or `dev` commands in non-monorepo environments. This improves the dev",
      "files": [
        "bun.lock",
        "packages/cli/src/commands/dev/actions/dev-server.ts",
        "packages/cli/src/commands/start/index.ts",
        "packages/cli/src/utils/__tests__/dependency-manager.integration.test.ts",
        "packages/cli/src/utils/__tests__/dependency-manager.test.ts",
        "packages/cli/src/utils/dependency-manager.ts",
        "packages/plugin-sql/src/__tests__/integration/memory.test.ts"
      ]
    },
    {
      "title": "feat: build optimization and markdown rendering support",
      "prNumber": 5701,
      "type": "feature",
      "body": "## Summary\n\nThis PR introduces build optimizations and enhanced markdown rendering capabilities:\n\n### Key Changes\n- **Build Optimization**: Removed docs filter from main build process for more efficient builds\n- **Dependency Cleanup**: Remo",
      "files": [
        "bun.lock",
        "llms.txt",
        "package.json",
        "packages/cli/package.json",
        "packages/client/package.json",
        "packages/core/package.json"
      ]
    },
    {
      "title": "remove un-necessary/obsolete readme details",
      "prNumber": 5700,
      "type": "other",
      "body": "This PR removes obsolete documentation from the README.md file:\n\n- Removes outdated LangChain integration reference from the core package description\n- Removes extensive Tauri CI/CD documentation section that covered workflows, mobile backe",
      "files": [
        "README.md"
      ]
    },
    {
      "title": "chore: remove obsolete GitHub workflow files",
      "prNumber": 5699,
      "type": "other",
      "body": "This PR removes 3 obsolete GitHub workflow files that are no longer needed:\n\n- **deploy-cli.yml**: CLI deployment workflow\n- **docs-publish.yml**: Documentation publishing workflow  \n- **llmstxt-generator.yml**: Repomix documentation genera",
      "files": [
        ".github/workflows/deploy-cli.yml",
        ".github/workflows/docs-publish.yml",
        ".github/workflows/llmstxt-generator.yml"
      ]
    },
    {
      "title": "fix/elizaos test component",
      "prNumber": 5705,
      "type": "bugfix",
      "body": "# Fix: Enable `elizaos test --type component` for all project and plugin types\r\n\r\n## Overview\r\n\r\nThis PR fixes the `elizaos test --type component` command to ensure it passes for all project and plugin types generated by the CLI. Previously",
      "files": [
        "packages/cli/src/commands/test/actions/component-tests.ts",
        "packages/cli/src/commands/test/index.ts",
        "packages/cli/src/utils/testing/tsc-validator.ts",
        "packages/plugin-quick-starter/package.json",
        "packages/plugin-quick-starter/src/__tests__/plugin.test.ts",
        "packages/plugin-quick-starter/src/__tests__/test-utils.ts",
        "packages/plugin-quick-starter/src/plugin.ts",
        "packages/plugin-starter/package.json",
        "packages/plugin-starter/src/__tests__/integration.test.ts",
        "packages/plugin-starter/src/__tests__/plugin.test.ts",
        "packages/plugin-starter/src/__tests__/test-utils.ts",
        "packages/plugin-starter/src/plugin.ts",
        "packages/project-starter/src/__tests__/env.test.ts",
        "packages/project-starter/src/__tests__/file-structure.test.ts",
        "packages/project-starter/src/__tests__/integration.test.ts",
        "packages/project-tee-starter/__tests__/build-order.test.ts",
        "packages/project-tee-starter/__tests__/character.test.ts",
        "packages/project-tee-starter/__tests__/env.test.ts",
        "packages/project-tee-starter/__tests__/file-structure.test.ts",
        "packages/project-tee-starter/__tests__/tee-validation.test.ts",
        "packages/project-tee-starter/__tests__/vite-config-utils.ts",
        "packages/project-tee-starter/package.json",
        "packages/project-tee-starter/src/index.ts",
        "packages/project-tee-starter/src/plugin.ts",
        "packages/project-tee-starter/tsup.config.ts",
        "packages/project-starter/tsup.config.ts"
      ]
    },
    {
      "title": "sessions api client",
      "prNumber": 5717,
      "type": "other",
      "body": "## Add Sessions API to API Client SDK\r\n\r\n### Summary\r\nThis PR adds support for the new Sessions API to the `@elizaos/api-client` package. The Sessions API provides a simplified interface for managing stateful conversations between users and",
      "files": [
        "packages/api-client/README.md",
        "packages/api-client/docs/sessions-api.md",
        "packages/api-client/src/__tests__/services/sessions.test.ts",
        "packages/api-client/src/client.ts",
        "packages/api-client/src/index.ts",
        "packages/api-client/src/services/sessions.ts",
        "packages/api-client/src/types/sessions.ts",
        "bun.lock",
        "packages/api-client/src/__tests__/base-client.test.ts",
        "packages/api-client/src/lib/base-client.ts"
      ]
    },
    {
      "title": "feat: Integrate API client and standardize workspace dependencies",
      "prNumber": 5709,
      "type": "feature",
      "body": "## Summary\n\nThis PR adds comprehensive authentication support to CLI agent commands and integrates the existing `@elizaos/api-client` package to eliminate code duplication. It also standardizes all workspace packages to use `workspace:*` de",
      "files": [
        ".cursor",
        ".github/workflows/cli-tests.yml",
        ".gitmodules",
        ".prettierignore",
        "bun.lock",
        "lerna.json",
        "package.json",
        "packages/api-client/package.json",
        "packages/api-client/src/types/agents.ts",
        "packages/cli/bunfig.toml",
        "packages/cli/package.json",
        "packages/cli/src/commands/agent/actions/crud.ts",
        "packages/cli/src/commands/agent/actions/lifecycle.ts",
        "packages/cli/src/commands/agent/index.ts",
        "packages/cli/src/commands/agent/utils/validation.ts",
        "packages/cli/src/commands/shared/auth-utils.ts",
        "packages/cli/src/commands/shared/index.ts",
        "packages/cli/src/utils/handle-error.ts",
        "packages/cli/tests/commands/agent.test.ts",
        "packages/cli/tests/commands/create.test.ts",
        "packages/cli/tests/commands/start.test.ts",
        "packages/cli/tests/commands/update.test.ts",
        "packages/cli/tests/test-timeouts.ts",
        "packages/docs/api-reference/openapi.yaml",
        "packages/plugin-bootstrap/package.json",
        "packages/plugin-bootstrap/src/index.ts",
        "packages/plugin-dummy-services/package.json",
        "packages/plugin-quick-starter/package.json",
        "packages/plugin-sql/package.json",
        "packages/plugin-starter/package.json",
        "packages/project-tee-starter/GUIDE.md",
        "packages/project-tee-starter/__tests__/frontend.test.ts",
        "packages/project-tee-starter/__tests__/routes.test.ts",
        "packages/project-tee-starter/__tests__/tee-validation.test.ts",
        "packages/project-tee-starter/index.html",
        "packages/project-tee-starter/package.json",
        "packages/project-tee-starter/postcss.config.js",
        "packages/project-tee-starter/scripts/install-test-deps.js",
        "packages/project-tee-starter/src/frontend/index.css",
        "packages/project-tee-starter/src/frontend/index.html",
        "packages/project-tee-starter/src/frontend/index.tsx",
        "packages/project-tee-starter/src/frontend/panels.tsx",
        "packages/project-tee-starter/src/frontend/utils.ts",
        "packages/project-tee-starter/src/plugin.ts",
        "packages/project-tee-starter/tailwind.config.js",
        "packages/project-tee-starter/tsconfig.build.json",
        "packages/project-tee-starter/tsconfig.json",
        "packages/project-tee-starter/vite.config.ts",
        "packages/server/package.json",
        "packages/server/src/api/memory/agents.ts"
      ]
    },
    {
      "title": "fix: Enable E2E testing for all starter templates",
      "prNumber": 5720,
      "type": "bugfix",
      "body": "## Problem\r\n\r\nFollowing PR #5075 which enabled component testing, E2E tests were missing or broken across starter templates. This prevented developers from validating full integration scenarios and created an inconsistent testing experience",
      "files": [
        "packages/cli/README.md",
        "packages/cli/src/commands/test/actions/component-tests.ts",
        "packages/cli/src/commands/test/actions/e2e-tests.ts",
        "packages/cli/src/commands/test/actions/run-all-tests.ts",
        "packages/cli/src/utils/test-runner.ts",
        "packages/plugin-quick-starter/README.md",
        "packages/plugin-quick-starter/src/__tests__/e2e/README.md",
        "packages/plugin-quick-starter/src/__tests__/e2e/plugin-quick-starter.e2e.ts",
        "packages/plugin-quick-starter/src/__tests__/plugin.test.ts",
        "packages/plugin-quick-starter/src/plugin.ts",
        "packages/plugin-starter/README.md",
        "packages/plugin-starter/src/__tests__/e2e/README.md",
        "packages/plugin-starter/src/__tests__/e2e/plugin-starter.e2e.ts",
        "packages/plugin-starter/src/plugin.ts",
        "packages/plugin-starter/src/tests.ts",
        "packages/project-starter/README.md",
        "packages/project-starter/src/__tests__/e2e/README.md",
        "packages/project-starter/src/__tests__/e2e/index.ts",
        "packages/project-starter/src/__tests__/e2e/natural-language.test.ts",
        "packages/project-starter/src/__tests__/e2e/project-starter.e2e.ts",
        "packages/project-starter/src/__tests__/e2e/project.test.ts",
        "packages/project-starter/src/__tests__/e2e/starter-plugin.test.ts",
        "packages/project-starter/src/index.ts",
        "packages/project-tee-starter/README.md",
        "packages/project-tee-starter/e2e/project.test.ts",
        "packages/project-tee-starter/e2e/starter-plugin.test.ts",
        "packages/project-tee-starter/src/__tests__/actions.test.ts",
        "packages/project-tee-starter/src/__tests__/build-order.test.ts",
        "packages/project-tee-starter/src/__tests__/character.test.ts",
        "packages/project-tee-starter/src/__tests__/config.test.ts",
        "packages/project-tee-starter/src/__tests__/e2e/README.md",
        "packages/project-tee-starter/src/__tests__/e2e/project-tee-starter.e2e.ts",
        "packages/project-tee-starter/src/__tests__/env.test.ts",
        "packages/project-tee-starter/src/__tests__/error-handling.test.ts",
        "packages/project-tee-starter/src/__tests__/events.test.ts",
        "packages/project-tee-starter/src/__tests__/file-structure.test.ts",
        "packages/project-tee-starter/src/__tests__/frontend.test.ts",
        "packages/project-tee-starter/src/__tests__/integration.test.ts",
        "packages/project-tee-starter/src/__tests__/models.test.ts",
        "packages/project-tee-starter/src/__tests__/plugin.test.ts",
        "packages/project-tee-starter/src/__tests__/provider.test.ts",
        "packages/project-tee-starter/src/__tests__/routes.test.ts",
        "packages/project-tee-starter/src/__tests__/tee-validation.test.ts",
        "packages/project-tee-starter/src/__tests__/test-utils.ts",
        "packages/project-tee-starter/src/__tests__/utils/core-test-utils.ts",
        "packages/project-tee-starter/src/__tests__/vite-config-utils.ts",
        "packages/project-tee-starter/src/index.ts",
        "packages/project-tee-starter/src/plugin.ts",
        "CLAUDE.md",
        "lerna.json",
        "packages/plugin-dummy-services/src/e2e/scenarios.ts"
      ]
    },
    {
      "title": "fix: support plugin-mysql",
      "prNumber": 5718,
      "type": "bugfix",
      "body": "# Risks\r\n\r\nLow, always ensures an adapter still\r\n\r\n# Background\r\n\r\n## What does this PR do?\r\n\r\nallows mysql before forcing plugin-sql\r\n\r\nI had looked at reording plugins but figured out how to make the order of my plugins to be not importan",
      "files": [
        "packages/cli/src/commands/start/actions/agent-start.ts"
      ]
    },
    {
      "title": "chore: remove unused specs from core",
      "prNumber": 5724,
      "type": "other",
      "body": "# Relates to\r\n\r\n**Clean-up effort**: Remove obsolete plugin specification system from core package\r\n\r\n# Risks\r\n\r\n**Low risk** - This is a cleanup operation removing unused code:\r\n- No breaking changes to existing functionality\r\n- Only remov",
      "files": [
        ".cursorrules",
        "CLAUDE.md",
        "bun.lock",
        "packages/core/package.json",
        "packages/core/src/index.ts",
        "packages/core/src/specs/README.md",
        "packages/core/src/specs/index.ts",
        "packages/core/src/specs/v1/__tests__/actionExample.test.ts",
        "packages/core/src/specs/v1/__tests__/integration.test.ts",
        "packages/core/src/specs/v1/__tests__/provider.test.ts",
        "packages/core/src/specs/v1/__tests__/state.test.ts",
        "packages/core/src/specs/v1/__tests__/templates.test.ts",
        "packages/core/src/specs/v1/__tests__/uuid.test.ts",
        "packages/core/src/specs/v1/actionExample.ts",
        "packages/core/src/specs/v1/index.ts",
        "packages/core/src/specs/v1/messages.ts",
        "packages/core/src/specs/v1/posts.ts",
        "packages/core/src/specs/v1/provider.ts",
        "packages/core/src/specs/v1/runtime.ts",
        "packages/core/src/specs/v1/state.ts",
        "packages/core/src/specs/v1/templates.ts",
        "packages/core/src/specs/v1/types.ts",
        "packages/core/src/specs/v1/uuid.ts",
        "packages/core/src/specs/v2/__tests__/actions.test.ts",
        "packages/core/src/specs/v2/__tests__/database.test.ts",
        "packages/core/src/specs/v2/__tests__/entities-extra.test.ts",
        "packages/core/src/specs/v2/__tests__/env.test.ts",
        "packages/core/src/specs/v2/__tests__/messages.test.ts",
        "packages/core/src/specs/v2/__tests__/mockCharacter.ts",
        "packages/core/src/specs/v2/__tests__/parsing.test.ts",
        "packages/core/src/specs/v2/__tests__/roles.test.ts",
        "packages/core/src/specs/v2/__tests__/runtime.test.ts",
        "packages/core/src/specs/v2/__tests__/search.test.ts",
        "packages/core/src/specs/v2/__tests__/settings.test.ts",
        "packages/core/src/specs/v2/__tests__/utils-extra.test.ts",
        "packages/core/src/specs/v2/__tests__/utils-prompt.test.ts",
        "packages/core/src/specs/v2/__tests__/uuid.test.ts",
        "packages/core/src/specs/v2/actions.ts",
        "packages/core/src/specs/v2/database.ts",
        "packages/core/src/specs/v2/entities.ts",
        "packages/core/src/specs/v2/index.ts",
        "packages/core/src/specs/v2/logger.ts",
        "packages/core/src/specs/v2/prompts.ts",
        "packages/core/src/specs/v2/roles.ts",
        "packages/core/src/specs/v2/runtime.ts",
        "packages/core/src/specs/v2/search.ts",
        "packages/core/src/specs/v2/services.ts",
        "packages/core/src/specs/v2/settings.ts",
        "packages/core/src/specs/v2/types.ts",
        "packages/core/src/specs/v2/types/stream-browserify.d.ts"
      ]
    },
    {
      "title": "feat(scenarios): Add comprehensive scenario testing system",
      "prNumber": 5723,
      "type": "feature",
      "body": "## Summary\n- Add ElizaOS scenario testing system with YAML-based test definitions\n- Support for both local and E2B sandboxed testing environments  \n- Comprehensive evaluation engine with action tracking and LLM judges\n- Mock service support",
      "files": [
        "bun.lock",
        "package.json",
        "packages/cli/package.json",
        "packages/cli/scripts/run-all-scenarios.ts",
        "packages/cli/src/commands/scenario/docs/README.md",
        "packages/cli/src/commands/scenario/docs/analyze-past-trade.md",
        "packages/cli/src/commands/scenario/docs/answer-roadmap-questions.md",
        "packages/cli/src/commands/scenario/docs/check-evm-balance.md",
        "packages/cli/src/commands/scenario/docs/example_scenarios/analyze-past-trade.scenario.yaml",
        "packages/cli/src/commands/scenario/docs/example_scenarios/answer-roadmap-questions.scenario.yaml",
        "packages/cli/src/commands/scenario/docs/example_scenarios/check-evm-balance.scenario.yaml",
        "packages/cli/src/commands/scenario/docs/scenario-runner-spec.md",
        "packages/cli/src/commands/scenario/docs/scenarios.md",
        "packages/cli/src/commands/scenario/examples/action-tracking-test.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/e2b-fallback.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/e2b-test.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/evaluation-test.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/failing-test.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/fully-passing.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/invalid-missing-fields.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/llm-judge-failure-test.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/llm-judge-test.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/mixed-results.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/mock-e2b-test.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/mock-test.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/multi-step.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/simple-mock-test.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/simple-test.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/trajectory-test.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/valid.scenario.yaml",
        "packages/cli/src/commands/scenario/index.ts",
        "packages/cli/src/index.ts",
        "packages/cli/src/scenarios/E2BEnvironmentProvider.ts",
        "packages/cli/src/scenarios/EvaluationEngine.ts",
        "packages/cli/src/scenarios/LocalEnvironmentProvider.ts",
        "packages/cli/src/scenarios/MockEngine.ts",
        "packages/cli/src/scenarios/Reporter.ts",
        "packages/cli/src/scenarios/env-loader.ts",
        "packages/cli/src/scenarios/providers.ts",
        "packages/cli/src/scenarios/runtime-factory.ts",
        "packages/cli/src/scenarios/schema.ts",
        "packages/cli/src/types/elizaos-modules.d.ts",
        "packages/cli/src/commands/scenario/examples/advanced-mocking-test.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/enhanced-mock-test.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/plugin-parsing-test.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/simple-advanced-mock-test.scenario.yaml",
        "packages/cli/src/scenarios/plugin-parser.ts",
        "packages/cli/test-plugin-parsing.ts",
        "packages/cli/test-scenario-validation.ts",
        ".github/workflows/ci.yaml",
        ".github/workflows/pre-release.yml",
        ".github/workflows/release.yaml",
        ".github/workflows/update-news.yml",
        ".gitignore",
        "lerna.json",
        "llms.txt",
        "packages/api-client/README.md",
        "packages/api-client/docs/sessions-api.md",
        "packages/api-client/package.json",
        "packages/api-client/src/__tests__/base-client.test.ts",
        "packages/api-client/src/__tests__/services/sessions.test.ts",
        "packages/api-client/src/lib/base-client.ts",
        "packages/api-client/src/services/sessions.ts",
        "packages/api-client/src/types/sessions.ts",
        "packages/app/package.json",
        "packages/autodoc/package.json",
        "packages/cli/src/commands/create/index.ts",
        "packages/cli/src/commands/plugins/utils/env-vars.ts",
        "packages/cli/src/commands/scenario/examples/.gitignore",
        "packages/cli/src/commands/scenario/examples/analyze-past-trade.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/answer-roadmap-questions.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/check-evm-balance.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/natural-language-test.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/nl-smoke.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/execution-time-test.scenario.yaml",
        "packages/cli/.gitignore",
        "packages/cli/src/commands/scenario/examples/check-coinbase-balance.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/test-github-issues.scenario.yaml",
        "packages/cli/src/commands/scenario/src/E2BEnvironmentProvider.ts",
        "packages/cli/src/commands/scenario/src/EvaluationEngine.ts",
        "packages/cli/src/commands/scenario/src/LocalEnvironmentProvider.ts",
        "packages/cli/src/commands/scenario/src/MockEngine.ts",
        "packages/cli/src/commands/scenario/src/Reporter.ts",
        "packages/cli/src/commands/scenario/src/env-loader.ts",
        "packages/cli/src/commands/scenario/src/plugin-parser.ts",
        "packages/cli/src/commands/scenario/src/providers.ts",
        "packages/cli/src/commands/scenario/src/runtime-factory.ts",
        "packages/cli/src/commands/scenario/src/schema.ts",
        "packages/plugin-dummy-services/package.json",
        "packages/project-starter/src/__tests__/events.test.ts",
        "packages/server/package.json",
        "packages/cli/src/commands/scenario/docs/matrix-testing.md",
        "packages/cli/src/commands/scenario/examples/github-issue-analysis.matrix.yaml",
        "packages/cli/src/commands/scenario/src/__tests__/example-validation.test.ts",
        "packages/cli/src/commands/scenario/src/__tests__/matrix-command.test.ts",
        "packages/cli/src/commands/scenario/src/__tests__/matrix-runner.test.ts",
        "packages/cli/src/commands/scenario/src/__tests__/matrix-schema.test.ts",
        "packages/cli/src/commands/scenario/src/__tests__/parameter-override.test.ts",
        "packages/cli/src/commands/scenario/src/__tests__/validation-demo.test.ts",
        "packages/cli/src/commands/scenario/src/matrix-runner.ts",
        "packages/cli/src/commands/scenario/src/matrix-schema.ts",
        "packages/cli/src/commands/scenario/src/matrix-types.ts",
        "packages/cli/src/commands/scenario/src/parameter-override.ts",
        "packages/server/src/index.ts",
        "packages/cli/src/commands/report/demo-html-report.ts",
        "packages/cli/src/commands/report/generate.ts",
        "packages/cli/src/commands/report/index.ts",
        "packages/cli/src/commands/report/src/__tests__/analysis-engine.test.ts",
        "packages/cli/src/commands/report/src/__tests__/html-template.test.ts",
        "packages/cli/src/commands/report/src/__tests__/integration.test.ts",
        "packages/cli/src/commands/report/src/__tests__/pdf-export.test.ts",
        "packages/cli/src/commands/report/src/__tests__/pdf-generator.test.ts",
        "packages/cli/src/commands/report/src/__tests__/template-integration.test.ts",
        "packages/cli/src/commands/report/src/analysis-engine.ts",
        "packages/cli/src/commands/report/src/assets/report_template.html",
        "packages/cli/src/commands/report/src/pdf-generator.ts",
        "packages/cli/src/commands/report/src/report-schema.ts",
        "packages/cli/src/commands/scenario/examples/debug-llm-judge.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/enhanced-demo.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/llm-judge-with-capabilities.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/simple-test.matrix.yaml",
        "packages/cli/src/commands/scenario/examples/trajectory-demo.scenario.yaml",
        "packages/cli/src/commands/scenario/src/EnhancedEvaluationEngine.ts",
        "packages/cli/src/commands/scenario/src/TrajectoryReconstructor.ts",
        "packages/cli/src/commands/scenario/src/__tests__/capabilities-evaluation.test.ts",
        "packages/cli/src/commands/scenario/src/__tests__/data-aggregator.test.ts",
        "packages/cli/src/commands/scenario/src/__tests__/deep-clone.test.ts",
        "packages/cli/src/commands/scenario/src/__tests__/e2e/centralized-data.test.ts",
        "packages/cli/src/commands/scenario/src/__tests__/enhanced-evaluation.test.ts",
        "packages/cli/src/commands/scenario/src/__tests__/evaluation-integration.test.ts",
        "packages/cli/src/commands/scenario/examples/test-basic.scenario.yaml",
        "packages/cli/src/commands/scenario/src/__tests__/LocalEnvironmentProvider.test.ts",
        "CLAUDE.md"
      ]
    },
    {
      "title": "allow iframes when web ui is enabled in production",
      "prNumber": 5735,
      "type": "other",
      "body": "# Risks\r\n\r\n- Low: Allows iframes from self if web ui is enabled in production.\r\n\r\n# Background\r\n\r\nCurrently in production, any panels exposed by plugins are blocked. This is because plugin panels are exposed using an iframe. with frame-src ",
      "files": [
        "packages/server/src/index.ts"
      ]
    },
    {
      "title": "fix(cli): handle monorepo version in update command",
      "prNumber": 5733,
      "type": "bugfix",
      "body": "## Summary\n\nThis PR fixes the failing CLI test `update --check works` that was failing in CI due to version handling in monorepo context.\n\n## Problem\n\nThe test was expecting a semantic version pattern (e.g., `1.2.0`) but was receiving `work",
      "files": [
        "packages/cli/src/commands/update/utils/version-utils.ts",
        "packages/cli/tests/commands/update.test.ts"
      ]
    },
    {
      "title": "feat: remove automatic merge to develop from release workflow",
      "prNumber": 5732,
      "type": "feature",
      "body": "## Summary\n\nThis PR removes the automatic merge from main to develop that was happening at the end of the release workflow.\n\n## Changes\n\n- Removed the 'Merge main to develop' step from \n- This step was automatically merging main into develo",
      "files": [
        ".github/workflows/release.yaml"
      ]
    },
    {
      "title": "feat: replace numbered versions to workspace:*",
      "prNumber": 5731,
      "type": "feature",
      "body": "## Summary\n\nThis PR migrates the ElizaOS monorepo to use workspace:* version management for better dependency synchronization and consistency.\n\n## Changes\n\n- Updated all package.json files to use `workspace:*` versioning instead of hardcode",
      "files": [
        "bun.lock",
        "packages/api-client/package.json",
        "packages/app/package.json",
        "packages/app/src-tauri/Cargo.lock",
        "packages/autodoc/package.json",
        "packages/cli/package.json",
        "packages/client/package.json",
        "packages/config/package.json",
        "packages/core/package.json",
        "packages/create-eliza/package.json",
        "packages/plugin-bootstrap/package.json",
        "packages/plugin-dummy-services/package.json",
        "packages/plugin-quick-starter/package.json",
        "packages/plugin-sql/package.json",
        "packages/plugin-starter/package.json",
        "packages/project-starter/package.json",
        "packages/project-tee-starter/package.json",
        "packages/server/package.json",
        "packages/test-utils/package.json"
      ]
    },
    {
      "title": "chore: 1.4.2",
      "prNumber": 5746,
      "type": "other",
      "body": "",
      "files": [
        "packages/cli/package.json"
      ]
    },
    {
      "title": "chore: 1.4.1",
      "prNumber": 5745,
      "type": "other",
      "body": "",
      "files": [
        "bun.lock",
        "llms.txt",
        "packages/api-client/package.json",
        "packages/app/package.json",
        "packages/client/package.json",
        "packages/core/package.json",
        "packages/plugin-bootstrap/package.json",
        "packages/plugin-dummy-services/package.json",
        "packages/plugin-quick-starter/package.json",
        "packages/plugin-sql/package.json",
        "packages/plugin-starter/package.json",
        "packages/project-starter/package.json",
        "packages/project-tee-starter/package.json",
        "packages/server/package.json",
        "packages/test-utils/package.json"
      ]
    },
    {
      "title": "feat: remove obsolete llms.txt and standardize workspace dependencies",
      "prNumber": 5744,
      "type": "feature",
      "body": "## Summary\n\nThis PR performs repository cleanup and standardizes dependency management by:\n- Removing the obsolete `llms.txt` file (2743 lines) \n- Updating all internal package dependencies to use the workspace protocol\n- Updating lockfile ",
      "files": [
        "bun.lock",
        "llms.txt",
        "packages/api-client/package.json",
        "packages/app/package.json",
        "packages/client/package.json",
        "packages/core/package.json",
        "packages/plugin-bootstrap/package.json",
        "packages/plugin-dummy-services/package.json",
        "packages/plugin-quick-starter/package.json",
        "packages/plugin-sql/package.json",
        "packages/plugin-starter/package.json",
        "packages/project-starter/package.json",
        "packages/project-tee-starter/package.json",
        "packages/server/package.json",
        "packages/test-utils/package.json"
      ]
    },
    {
      "title": "chore 1.3.4",
      "prNumber": 5743,
      "type": "other",
      "body": "",
      "files": [
        ".github/workflows/pre-release.yml",
        ".github/workflows/release.yaml",
        "package.json",
        "packages/core/src/utils.ts"
      ]
    },
    {
      "title": "feat: migrate from npx to bunx and improve XML parser",
      "prNumber": 5742,
      "type": "feature",
      "body": "## Summary\n\nThis PR contains two main improvements:\n\n### 1. Migration from npx to bunx\n- Updated GitHub workflows (pre-release.yml and release.yaml) to use `bunx` instead of `npx` for lerna commands\n- Updated package.json clean script to us",
      "files": [
        ".github/workflows/pre-release.yml",
        ".github/workflows/release.yaml",
        "package.json",
        "packages/core/src/utils.ts"
      ]
    },
    {
      "title": "fix(core): replace unsafe XML fallback regex with linear scan to avoi…",
      "prNumber": 5741,
      "type": "bugfix",
      "body": "",
      "files": [
        ".github/workflows/ci.yaml",
        ".github/workflows/pre-release.yml",
        ".github/workflows/update-news.yml",
        "packages/api-client/src/__tests__/base-client.test.ts",
        "packages/api-client/src/__tests__/services/sessions.test.ts",
        "packages/api-client/src/lib/base-client.ts",
        "packages/cli/src/commands/test/actions/run-all-tests.ts",
        "packages/client/package.json",
        "packages/core/src/__tests__/utils.test.ts",
        "packages/core/src/utils.ts"
      ]
    },
    {
      "title": "feat: code formatting and linting improvements",
      "prNumber": 5740,
      "type": "feature",
      "body": "## 📝 Description\n\nThis PR implements comprehensive code formatting and linting improvements across the entire ElizaOS codebase to enhance code quality, consistency, and maintainability.\n\n## 🔧 Changes Made\n\n### Code Formatting & Style\n- Ap",
      "files": [
        "bun.lock",
        "packages/api-client/README.md",
        "packages/api-client/docs/sessions-api.md",
        "packages/api-client/package.json",
        "packages/api-client/src/__tests__/services/sessions.test.ts",
        "packages/api-client/src/services/sessions.ts",
        "packages/api-client/src/types/sessions.ts",
        "packages/app/package.json",
        "packages/autodoc/package.json",
        "packages/cli/package.json",
        "packages/cli/src/commands/create/index.ts",
        "packages/cli/src/commands/plugins/utils/env-vars.ts",
        "packages/cli/src/commands/start/actions/agent-start.ts",
        "packages/cli/src/commands/test/actions/e2e-tests.ts",
        "packages/cli/src/commands/update/actions/cli-update.ts",
        "packages/cli/src/project.ts",
        "packages/cli/src/utils/dependency-manager.ts",
        "packages/cli/src/utils/get-config.ts",
        "packages/cli/src/utils/registry/index.ts",
        "packages/cli/src/utils/upgrade/migration-guide-loader.ts",
        "packages/cli/src/utils/upgrade/simple-migration-agent.ts",
        "packages/cli/src/utils/user-environment.ts",
        "packages/client/package.json",
        "packages/config/package.json",
        "packages/core/package.json",
        "packages/core/src/utils.ts",
        "packages/create-eliza/package.json",
        "packages/plugin-bootstrap/package.json",
        "packages/plugin-bootstrap/src/index.ts",
        "packages/plugin-bootstrap/src/providers/capabilities.ts",
        "packages/plugin-bootstrap/src/providers/choice.ts",
        "packages/plugin-bootstrap/src/providers/facts.ts",
        "packages/plugin-bootstrap/src/providers/recentMessages.ts",
        "packages/plugin-bootstrap/src/providers/world.ts",
        "packages/plugin-bootstrap/src/services/task.ts",
        "packages/plugin-dummy-services/package.json",
        "packages/plugin-dummy-services/src/tokenData/service.ts",
        "packages/plugin-quick-starter/package.json",
        "packages/plugin-sql/package.json",
        "packages/plugin-starter/package.json",
        "packages/project-starter/package.json",
        "packages/project-starter/src/__tests__/plugin.test.ts",
        "packages/project-starter/src/__tests__/provider.test.ts",
        "packages/project-tee-starter/package.json",
        "packages/server/package.json",
        "packages/server/src/index.ts",
        "packages/test-utils/package.json"
      ]
    },
    {
      "title": "chore: 1.3.3",
      "prNumber": 5739,
      "type": "other",
      "body": "",
      "files": [
        ".cursorrules",
        ".github/workflows/ci.yaml",
        ".github/workflows/pre-release.yml",
        ".github/workflows/release.yaml",
        ".github/workflows/update-news.yml",
        "CLAUDE.md",
        "bun.lock",
        "lerna.json",
        "packages/api-client/README.md",
        "packages/api-client/docs/sessions-api.md",
        "packages/api-client/package.json",
        "packages/api-client/src/__tests__/services/sessions.test.ts",
        "packages/api-client/src/client.ts",
        "packages/api-client/src/index.ts",
        "packages/api-client/src/lib/base-client.ts",
        "packages/api-client/src/services/sessions.ts",
        "packages/api-client/src/types/sessions.ts",
        "packages/app/package.json",
        "packages/app/src-tauri/Cargo.lock",
        "packages/autodoc/package.json",
        "packages/cli/README.md",
        "packages/cli/package.json",
        "packages/cli/src/commands/create/index.ts",
        "packages/cli/src/commands/plugins/utils/env-vars.ts",
        "packages/cli/src/commands/start/actions/agent-start.ts",
        "packages/cli/src/commands/start/actions/server-start.ts",
        "packages/cli/src/commands/start/index.ts",
        "packages/cli/src/commands/start/utils/dependency-resolver.ts",
        "packages/cli/src/commands/test/actions/component-tests.ts",
        "packages/cli/src/commands/test/actions/e2e-tests.ts",
        "packages/cli/src/commands/test/actions/run-all-tests.ts",
        "packages/cli/src/commands/test/utils/plugin-utils.ts",
        "packages/cli/src/commands/update/actions/cli-update.ts",
        "packages/cli/src/commands/update/utils/version-utils.ts",
        "packages/cli/src/index.ts",
        "packages/cli/src/project.ts",
        "packages/cli/src/utils/auto-install-bun.ts",
        "packages/cli/src/utils/bun-exec.ts",
        "packages/cli/src/utils/dependency-manager.ts",
        "packages/cli/src/utils/get-config.ts",
        "packages/cli/src/utils/handle-error.ts",
        "packages/cli/src/utils/install-plugin.ts",
        "packages/cli/src/utils/local-cli-delegation.ts",
        "packages/cli/src/utils/publisher.ts",
        "packages/cli/src/utils/registry/index.ts",
        "packages/cli/src/utils/test-runner.ts",
        "packages/cli/src/utils/testing/tsc-validator.ts",
        "packages/cli/src/utils/upgrade/migration-guide-loader.ts",
        "packages/cli/src/utils/upgrade/simple-migration-agent.ts",
        "packages/cli/src/utils/user-environment.ts"
      ]
    },
    {
      "title": "fix missing pino logger refactors",
      "prNumber": 5737,
      "type": "bugfix",
      "body": "### Summary\r\n- Convert logger calls across the repo to object-first structured logging to align with pino typings and fix TS/DTS errors.\r\n- No functional behavior changes; improves type-safety and log structure.\r\n\r\n### Why\r\n- Recent stricte",
      "files": [
        "bun.lock",
        "packages/cli/src/commands/create/index.ts",
        "packages/cli/src/commands/plugins/utils/env-vars.ts",
        "packages/cli/src/commands/start/actions/agent-start.ts",
        "packages/cli/src/commands/start/actions/server-start.ts",
        "packages/cli/src/commands/start/index.ts",
        "packages/cli/src/commands/start/utils/dependency-resolver.ts",
        "packages/cli/src/commands/test/actions/component-tests.ts",
        "packages/cli/src/commands/test/actions/e2e-tests.ts",
        "packages/cli/src/commands/test/utils/plugin-utils.ts",
        "packages/cli/src/commands/update/actions/cli-update.ts",
        "packages/cli/src/commands/update/utils/version-utils.ts",
        "packages/cli/src/index.ts",
        "packages/cli/src/project.ts",
        "packages/cli/src/utils/auto-install-bun.ts",
        "packages/cli/src/utils/bun-exec.ts",
        "packages/cli/src/utils/dependency-manager.ts",
        "packages/cli/src/utils/get-config.ts",
        "packages/cli/src/utils/handle-error.ts",
        "packages/cli/src/utils/install-plugin.ts",
        "packages/cli/src/utils/local-cli-delegation.ts",
        "packages/cli/src/utils/publisher.ts",
        "packages/cli/src/utils/registry/index.ts",
        "packages/cli/src/utils/testing/tsc-validator.ts",
        "packages/cli/src/utils/upgrade/migration-guide-loader.ts",
        "packages/cli/src/utils/upgrade/simple-migration-agent.ts",
        "packages/cli/src/utils/user-environment.ts",
        "packages/core/src/utils.ts",
        "packages/plugin-bootstrap/src/__tests__/evaluators.test.ts",
        "packages/plugin-bootstrap/src/actions/choice.ts",
        "packages/plugin-bootstrap/src/actions/followRoom.ts",
        "packages/plugin-bootstrap/src/actions/muteRoom.ts",
        "packages/plugin-bootstrap/src/actions/roles.ts",
        "packages/plugin-bootstrap/src/actions/settings.ts",
        "packages/plugin-bootstrap/src/actions/unmuteRoom.ts",
        "packages/plugin-bootstrap/src/evaluators/reflection.ts",
        "packages/plugin-bootstrap/src/index.ts",
        "packages/plugin-bootstrap/src/providers/actionState.ts",
        "packages/plugin-bootstrap/src/providers/capabilities.ts",
        "packages/plugin-bootstrap/src/providers/choice.ts",
        "packages/plugin-bootstrap/src/providers/facts.ts",
        "packages/plugin-bootstrap/src/providers/recentMessages.ts",
        "packages/plugin-bootstrap/src/providers/world.ts",
        "packages/plugin-bootstrap/src/services/task.ts",
        "packages/plugin-dummy-services/src/tokenData/service.ts",
        "packages/plugin-quick-starter/src/plugin.ts",
        "packages/plugin-starter/src/plugin.ts",
        "packages/project-starter/src/__tests__/actions.test.ts",
        "packages/project-starter/src/__tests__/integration.test.ts",
        "packages/project-starter/src/__tests__/models.test.ts"
      ]
    },
    {
      "title": "fix: (project-starter) replace mock.module with spyOn for consistent logger testing",
      "prNumber": 5748,
      "type": "bugfix",
      "body": "## Description\r\n\r\nThis PR fixes failing component tests in the project-starter template by replacing `mock.module` with `spyOn` for logger mocking.\r\n\r\n## Problem\r\n\r\nThe project-starter template had 3 test files using `mock.module('@elizaos/",
      "files": [
        "packages/project-starter/src/__tests__/config.test.ts",
        "packages/project-starter/src/__tests__/error-handling.test.ts",
        "packages/project-starter/src/__tests__/events.test.ts"
      ]
    },
    {
      "title": "feat: Add character type system with JesseXBT character and improve API consistency",
      "prNumber": 5756,
      "type": "feature",
      "body": "# Character Type System and Jesse Pollak Character Implementation\n\nThis PR introduces a comprehensive character type system using Zod validation and implements a new Jesse Pollak (jesseXBT) character focused on Base ecosystem support.\n\n## K",
      "files": [
        "characters/jessexbt.json",
        "lib/core/character.ts",
        "lib/core/index.ts",
        "src/server.ts"
      ]
    },
    {
      "title": "feat: Add OpenAI-compliant tool calls visibility to chat completions",
      "prNumber": 5755,
      "type": "feature",
      "body": "## Summary\n\nThis PR adds support for viewing intermediate tool calls and results in the chat completions API while maintaining full OpenAI API compliance.\n\n## Changes\n\n- **OpenAI API Compliance**: Default responses remain fully compliant wi",
      "files": [
        "src/server.ts"
      ]
    },
    {
      "title": "feat: add Hono server, refactor ElizaOS agent registry",
      "prNumber": 5753,
      "type": "feature",
      "body": "This pull request introduces significant improvements to the agent management system and adds a new HTTP server for interacting with agents via an OpenAI-compatible API. The changes refactor how agents are stored and accessed, update relate",
      "files": [
        "bun.lock",
        "lib/core/elizaos.ts",
        "package.json",
        "src/index.ts",
        "src/server.ts"
      ]
    },
    {
      "title": "feat: add EVM plugin and tools",
      "prNumber": 5752,
      "type": "feature",
      "body": "This pull request introduces a new EVM (Ethereum Virtual Machine) plugin, integrating wallet and blockchain tooling into the application. It adds a modular service for managing EVM chains and clients, several tools for interacting with wall",
      "files": [
        ".env.example",
        "plugins/plugin-evm/bun.lock",
        "plugins/plugin-evm/index.ts",
        "plugins/plugin-evm/package.json",
        "plugins/plugin-evm/services/index.ts",
        "plugins/plugin-evm/tools/getEVMChains.ts",
        "plugins/plugin-evm/tools/getTokenBalance.ts",
        "plugins/plugin-evm/tools/getWalletAddress.ts",
        "plugins/plugin-evm/tools/getWalletBalance.ts",
        "plugins/plugin-evm/tsconfig.json",
        "src/index.ts"
      ]
    },
    {
      "title": "chore(imports): use @/ alias and barrels; add Cursor rule",
      "prNumber": 5751,
      "type": "other",
      "body": "- Converted relative imports to '@/'\n- Prefer barrels (e.g., '@/lib/core', '@/lib/db/schema')\n- Added Cursor rule: .cursor/rules/use-atslash-alias-imports.mdc\n- Verified build with Bun",
      "files": [
        ".cursor/rules/use-atslash-alias-imports.mdc",
        "lib/core/elizaos.ts",
        "lib/db/index.ts"
      ]
    },
    {
      "title": "revert: Use relative paths for imports",
      "prNumber": 5750,
      "type": "other",
      "body": "## Description\nThis PR ensures consistent use of relative paths for imports throughout the project.\n\n## Changes\n- ✅ Reverted import in `src/index.ts` to use relative path `../lib/core`\n- ✅ Removed path aliases configuration from `tsconfig.j",
      "files": [
        "src/index.ts",
        "tsconfig.json"
      ]
    },
    {
      "title": "fix: resolve `elizaos publish` command issues with --test and --npm flags",
      "prNumber": 5763,
      "type": "bugfix",
      "body": "This PR fixes two minor issues with the `elizaos publish` command:\r\n\r\n**1. Fix `elizaos publish --test` failing out of the box**\r\n\r\nWhen running `elizaos publish --test` OOTB, we get an error:\r\n```\r\n[2025-08-13 06:54:20] ERROR: Failed to up",
      "files": [
        "packages/cli/src/commands/publish/index.ts",
        "packages/cli/src/commands/publish/types.ts",
        "packages/cli/src/commands/publish/utils/metadata.ts",
        "packages/cli/src/utils/github.ts"
      ]
    },
    {
      "title": "chore(ci): adjust release workflow and package metadata",
      "prNumber": 5775,
      "type": "other",
      "body": "- Remove 'merge main to develop' step from  to avoid automatic branch merges in release job.\n- Minor metadata sync in various  files and .\n\nBase: develop\nHead: chore/release-workflow-tweaks",
      "files": [
        ".github/workflows/release.yaml",
        "bun.lock",
        "lerna.json",
        "packages/api-client/package.json",
        "packages/cli/package.json",
        "packages/plugin-bootstrap/package.json",
        "packages/plugin-dummy-services/package.json",
        "packages/plugin-sql/package.json",
        "packages/project-starter/src/__tests__/events.test.ts",
        "packages/server/package.json",
        "packages/test-utils/package.json"
      ]
    },
    {
      "title": "fix: correct comma placement when adding entries to registry index.json",
      "prNumber": 5774,
      "type": "bugfix",
      "body": "## Description\r\n\r\n### Problem\r\nThe `elizaos publish` command incorrectly handled commas when adding new plugin entries to the registry's `index.json` file:\r\n- Did not add a comma to the previously last entry\r\n- Incorrectly added a comma to ",
      "files": [
        "packages/cli/src/utils/publisher.ts",
        "packages/cli/tests/unit/utils/publisher.test.ts"
      ]
    },
    {
      "title": "fix: fix: phala CLI argument handling and tee starter docker build",
      "prNumber": 5773,
      "type": "bugfix",
      "body": "## Description\r\n\r\nThis PR fixes two minor issues preventing the tee command from working as intended:\r\n\r\n### 1. Phala CLI Wrapper Argument Handling\r\n\r\nThe ElizaOS wrapper for the Phala CLI was not correctly capturing arguments, causing comm",
      "files": [
        "packages/cli/src/commands/tee/phala-wrapper.ts",
        "packages/project-tee-starter/src/index.ts",
        "packages/cli/src/commands/tee/index.ts",
        "packages/cli/tests/commands/create.test.ts",
        "packages/cli/tests/commands/tee.test.ts"
      ]
    },
    {
      "title": "fix: bun run clean, bats-assert bad dep and polyfills",
      "prNumber": 5776,
      "type": "bugfix",
      "body": "This pull request updates dependencies in the project to improve compatibility and maintainability. The most important changes are grouped below by theme.\r\n\r\nDependency updates:\r\n\r\n* Upgraded the `vite-plugin-node-polyfills` package from ve",
      "files": [
        "bun.lock",
        "packages/cli/package.json",
        "packages/client/package.json"
      ]
    },
    {
      "title": "feat(bootstrap): async embedding generation via queue service",
      "prNumber": 5793,
      "type": "feature",
      "body": "# Relates to\r\n\r\nPerformance improvement for message processing latency - embeddings were blocking runtime for 500ms+ per message\r\n\r\n# Risks\r\n\r\n**Low risk** - The change is backward compatible and includes fallback behavior. Main risks:\r\n- M",
      "files": [
        "packages/core/src/__tests__/runtime-embedding.test.ts",
        "packages/core/src/runtime.ts",
        "packages/core/src/types/events.ts",
        "packages/core/src/types/runtime.ts",
        "packages/plugin-bootstrap/src/__tests__/embedding-service.test.ts",
        "packages/plugin-bootstrap/src/__tests__/evaluators.test.ts",
        "packages/plugin-bootstrap/src/__tests__/test-utils.ts",
        "packages/plugin-bootstrap/src/evaluators/reflection.ts",
        "packages/plugin-bootstrap/src/index.ts",
        "packages/plugin-bootstrap/src/services/embedding.ts",
        "packages/plugin-quick-starter/src/__tests__/test-utils.ts",
        "packages/plugin-starter/src/__tests__/test-utils.ts",
        "packages/server/src/__tests__/test-utils/mocks.ts",
        "packages/test-utils/src/mocks/runtime.ts",
        "packages/plugin-bootstrap/src/__tests__/embedding-queue-management.test.ts"
      ]
    },
    {
      "title": "fix: resolve test failures and enhance XML parsing reliability in CI environment",
      "prNumber": 5792,
      "type": "bugfix",
      "body": "## Problem\nMultiple GitHub Actions test failures were occurring across different packages, plus a critical plugin configuration bug:\n\n### Original Issues (https://github.com/elizaOS/eliza/actions/runs/17020769599/job/48249463787)\n- ❌ **10 e",
      "files": [
        "bun.lock",
        "packages/plugin-bootstrap/src/__tests__/attachments.test.ts",
        "packages/plugin-bootstrap/src/__tests__/evaluators.test.ts",
        "packages/plugin-bootstrap/src/__tests__/services.test.ts",
        "packages/plugin-bootstrap/src/__tests__/test-utils.ts",
        "packages/plugin-bootstrap/src/index.ts",
        "packages/project-tee-starter/src/__tests__/config.test.ts",
        "packages/project-tee-starter/src/plugin.ts"
      ]
    },
    {
      "title": "fix: resolve entity creation SQL parameter mismatch",
      "prNumber": 5791,
      "type": "bugfix",
      "body": "## Summary\n\nThis PR fixes a critical database error that was occurring during entity creation:\n\n```\n[ERROR] Error creating entity: Failed query: insert into \"entities\" values ($1, $2, default, default, default)\nparams: [only 2 parameters pr",
      "files": [
        "packages/core/src/types/environment.ts",
        "packages/plugin-sql/src/base.ts"
      ]
    },
    {
      "title": "feat: Cross-Environment Logger Support.",
      "prNumber": 5797,
      "type": "feature",
      "body": "## Logger Module Refactoring: Cross-Platform Support & Enhanced Architecture\r\n\r\n### Overview\r\nThis PR introduces a comprehensive refactoring of the logger module to support both browser and Node.js environments while maintaining backward co",
      "files": [
        "packages/core/src/__tests__/logger-browser-node.test.ts",
        "packages/core/src/logger.ts"
      ]
    },
    {
      "title": "fix: improve TypeScript types and error logging in publisher",
      "prNumber": 5796,
      "type": "bugfix",
      "body": "## Summary\n\nThis PR improves TypeScript type safety and error logging in the publisher module by:\n\n### Changes Made\n\n1. **Type Safety Improvements**:\n   - Replaced all  types with proper TypeScript types in \n   - Added  interface for better",
      "files": [
        "packages/cli/src/utils/publisher.ts",
        "packages/cli/tests/unit/utils/publisher.test.ts"
      ]
    },
    {
      "title": "fix: code formatting improvements and dependency updates",
      "prNumber": 5795,
      "type": "bugfix",
      "body": "## Summary\n\nThis PR contains code formatting improvements and dependency updates:\n\n### Changes Made:\n- **Test File Cleanup**: Removed unnecessary empty lines in `attachments.test.ts`\n- **Logger Formatting**: Fixed line wrapping for `logger.",
      "files": [
        "bun.lock",
        "packages/plugin-bootstrap/src/__tests__/attachments.test.ts",
        "packages/plugin-bootstrap/src/index.ts",
        "packages/project-tee-starter/src/plugin.ts"
      ]
    },
    {
      "title": "chore: 1.4.3",
      "prNumber": 5794,
      "type": "other",
      "body": "",
      "files": [
        ".github/workflows/release.yaml",
        "bun.lock",
        "lerna.json",
        "packages/api-client/package.json",
        "packages/cli/package.json",
        "packages/cli/src/commands/publish/index.ts",
        "packages/cli/src/commands/publish/types.ts",
        "packages/cli/src/commands/publish/utils/metadata.ts",
        "packages/cli/src/utils/github.ts",
        "packages/cli/src/utils/publisher.ts",
        "packages/cli/tests/unit/utils/publisher.test.ts",
        "packages/client/package.json",
        "packages/core/src/types/environment.ts",
        "packages/plugin-bootstrap/package.json",
        "packages/plugin-bootstrap/src/__tests__/attachments.test.ts",
        "packages/plugin-bootstrap/src/__tests__/evaluators.test.ts",
        "packages/plugin-bootstrap/src/__tests__/services.test.ts",
        "packages/plugin-bootstrap/src/__tests__/test-utils.ts",
        "packages/plugin-bootstrap/src/index.ts",
        "packages/plugin-dummy-services/package.json",
        "packages/plugin-sql/package.json",
        "packages/plugin-sql/src/base.ts",
        "packages/project-starter/src/__tests__/config.test.ts",
        "packages/project-starter/src/__tests__/error-handling.test.ts",
        "packages/project-starter/src/__tests__/events.test.ts",
        "packages/project-tee-starter/src/__tests__/config.test.ts",
        "packages/project-tee-starter/src/plugin.ts",
        "packages/server/package.json",
        "packages/server/src/index.ts",
        "packages/test-utils/package.json"
      ]
    },
    {
      "title": "feat: Sessions API ++",
      "prNumber": 5799,
      "type": "feature",
      "body": "## Enhanced Session Management with Advanced Timeout Configuration and Lifecycle Control\r\n\r\n### Overview\r\nThis PR significantly enhances the sessions API with comprehensive timeout management, auto-renewal capabilities, and robust error han",
      "files": [
        "packages/server/src/api/messaging/__tests__/sessions.test.ts",
        "packages/server/src/api/messaging/channels.ts",
        "packages/server/src/api/messaging/errors/SessionErrors.ts",
        "packages/server/src/api/messaging/sessions.ts",
        "packages/server/src/index.ts",
        "packages/server/src/types/sessions.ts"
      ]
    },
    {
      "title": "feat: getServiceLoadPromise",
      "prNumber": 5801,
      "type": "feature",
      "body": "# Risks\r\n\r\nLow\r\n\r\n# Background\r\n\r\n## What does this PR do?\r\n\r\n- add getServiceLoadPromise interface to runtime\r\n- fix component queries in plugin-sql (was too easy for dates to get invalid, this is a more flexible set up, allowing the inten",
      "files": [
        "packages/core/src/runtime.ts",
        "packages/core/src/settings.ts",
        "packages/core/src/types/runtime.ts",
        "packages/plugin-bootstrap/src/index.ts",
        "packages/plugin-sql/src/base.ts",
        "packages/test-utils/src/mocks/runtime.ts"
      ]
    },
    {
      "title": "fix: metadata in sessions",
      "prNumber": 5805,
      "type": "bugfix",
      "body": "## Session Metadata Propagation for Plugin Actions\n\n### Overview\nThis PR implements session metadata propagation throughout the ElizaOS message processing pipeline, enabling plugins and actions to access custom session metadata (like `ethAd",
      "files": [
        "packages/server/src/__tests__/message-bus.test.ts",
        "packages/server/src/api/messaging/__tests__/sessions.test.ts",
        "packages/server/src/api/messaging/sessions.ts",
        "packages/server/src/services/message.ts"
      ]
    },
    {
      "title": "feat: Convert packages/docs to git submodule from elizaos/docs",
      "prNumber": 5803,
      "type": "feature",
      "body": "## Summary\n\nThis PR converts the `packages/docs` directory from tracked files to a git submodule pointing to the external documentation repository at https://github.com/elizaos/docs.\n\n## Changes\n\n- Removed 171 documentation files that were ",
      "files": [
        ".gitmodules",
        "packages/docs",
        "packages/docs/.github/workflows/check-dead-links.yml",
        "packages/docs/.github/workflows/check-documentation-quality.yml",
        "packages/docs/.github/workflows/claude-code-review.yml",
        "packages/docs/.github/workflows/claude.yml",
        "packages/docs/.gitignore",
        "packages/docs/CLAUDE.md",
        "packages/docs/README.md",
        "packages/docs/api-reference/agents/create-a-new-agent.mdx",
        "packages/docs/api-reference/agents/create-a-world-for-an-agent.mdx",
        "packages/docs/api-reference/agents/delete-an-agent.mdx",
        "packages/docs/api-reference/agents/get-agent-details.mdx",
        "packages/docs/api-reference/agents/get-agent-panels.mdx",
        "packages/docs/api-reference/agents/get-all-worlds.mdx",
        "packages/docs/api-reference/agents/list-all-agents.mdx",
        "packages/docs/api-reference/agents/start-an-agent.mdx",
        "packages/docs/api-reference/agents/stop-an-agent.mdx",
        "packages/docs/api-reference/agents/update-a-world.mdx",
        "packages/docs/api-reference/agents/update-agent.mdx",
        "packages/docs/api-reference/audio/convert-conversation-to-speech.mdx",
        "packages/docs/api-reference/audio/generate-speech-from-text.mdx",
        "packages/docs/api-reference/audio/process-audio-message.mdx",
        "packages/docs/api-reference/audio/synthesize-speech-from-text.mdx",
        "packages/docs/api-reference/audio/transcribe-audio.mdx",
        "packages/docs/api-reference/media/upload-media-for-agent.mdx",
        "packages/docs/api-reference/media/upload-media-to-channel.mdx",
        "packages/docs/api-reference/memory/create-a-room.mdx",
        "packages/docs/api-reference/memory/delete-all-agent-memories.mdx",
        "packages/docs/api-reference/memory/delete-all-memories-for-a-room.mdx",
        "packages/docs/api-reference/memory/get-agent-memories.mdx",
        "packages/docs/api-reference/memory/get-room-memories.mdx",
        "packages/docs/api-reference/memory/update-a-memory.mdx",
        "packages/docs/api-reference/messaging/add-agent-to-channel.mdx",
        "packages/docs/api-reference/messaging/add-agent-to-server.mdx",
        "packages/docs/api-reference/messaging/create-central-channel.mdx",
        "packages/docs/api-reference/messaging/create-channel.mdx",
        "packages/docs/api-reference/messaging/create-group-channel.mdx",
        "packages/docs/api-reference/messaging/create-server.mdx",
        "packages/docs/api-reference/messaging/delete-all-channel-messages-by-user.mdx",
        "packages/docs/api-reference/messaging/delete-all-channel-messages.mdx",
        "packages/docs/api-reference/messaging/delete-channel-message.mdx",
        "packages/docs/api-reference/messaging/delete-channel.mdx",
        "packages/docs/api-reference/messaging/get-central-server-channels.mdx",
        "packages/docs/api-reference/messaging/get-central-servers.mdx",
        "packages/docs/api-reference/messaging/get-channel-details.mdx",
        "packages/docs/api-reference/messaging/get-channel-info.mdx",
        "packages/docs/api-reference/messaging/get-channel-messages.mdx",
        "packages/docs/api-reference/messaging/get-channel-participants.mdx",
        "packages/docs/api-reference/messaging/get-or-create-dm-channel.mdx"
      ]
    },
    {
      "title": "fix: plugin-sql test",
      "prNumber": 5802,
      "type": "bugfix",
      "body": "# Risks\r\n\r\nMedium, not sure this is what we want\r\n\r\n# Background\r\n\r\n## What does this PR do?\r\n\r\n- make plugin-sql tests pass for me from monorepo\r\n- mainly createdAt have to be a date object for w/e reason now for pglite (timestamps no long",
      "files": [
        "packages/core/src/runtime.ts",
        "packages/plugin-sql/src/__tests__/e2e/postgres.test.ts",
        "packages/plugin-sql/src/__tests__/integration/base-adapter-methods.test.ts",
        "packages/plugin-sql/src/__tests__/integration/base-comprehensive.test.ts",
        "packages/plugin-sql/src/__tests__/integration/component.test.ts",
        "packages/plugin-sql/src/__tests__/unit/utils.test.ts",
        "packages/plugin-sql/src/base.ts",
        "packages/plugin-sql/src/utils.ts"
      ]
    },
    {
      "title": "feat: bun build, remove tsup",
      "prNumber": 5807,
      "type": "feature",
      "body": "This pull request introduces a new standardized Bun-based build system for ElizaOS packages, replacing the previous use of `tsup` and related tooling. It adds reusable build utilities, custom build scripts for `@elizaos/api-client` and `@el",
      "files": [
        ".gitignore",
        "CLAUDE.md",
        "build-utils.ts",
        "bun.lock",
        "package.json",
        "packages/api-client/build.ts",
        "packages/api-client/package.json",
        "packages/api-client/src/services/messaging.ts",
        "packages/api-client/tsconfig.build.json",
        "packages/api-client/tsup.config.ts",
        "packages/cli/build.ts",
        "packages/cli/package.json",
        "packages/cli/src/commands/dev/utils/server-manager.ts",
        "packages/cli/src/commands/plugins/actions/upgrade.ts",
        "packages/cli/src/commands/plugins/utils/env-vars.ts",
        "packages/cli/src/commands/report/demo-html-report.ts",
        "packages/cli/src/commands/report/generate.ts",
        "packages/cli/src/commands/report/index.ts",
        "packages/cli/src/commands/report/src/__tests__/analysis-engine.test.ts",
        "packages/cli/src/commands/report/src/__tests__/html-template.test.ts",
        "packages/cli/src/commands/report/src/__tests__/integration.test.ts",
        "packages/cli/src/commands/report/src/__tests__/pdf-export.test.ts",
        "packages/cli/src/commands/report/src/__tests__/pdf-generator.test.ts",
        "packages/cli/src/commands/report/src/__tests__/template-integration.test.ts",
        "packages/cli/src/commands/report/src/analysis-engine.ts",
        "packages/cli/src/commands/report/src/assets/report_template.html",
        "packages/cli/src/commands/report/src/pdf-generator.ts",
        "packages/cli/src/commands/report/src/report-schema.ts",
        "packages/cli/src/commands/scenario/docs/README.md",
        "packages/cli/src/commands/scenario/docs/matrix-testing.md",
        "packages/cli/src/commands/scenario/docs/scenarios.md",
        "packages/cli/src/commands/scenario/examples/debug-llm-judge.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/enhanced-demo.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/llm-judge-with-capabilities.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/simple-test.matrix.yaml",
        "packages/cli/src/commands/scenario/examples/test-github-issues.scenario.yaml",
        "packages/cli/src/commands/scenario/examples/trajectory-demo.scenario.yaml",
        "packages/cli/src/commands/scenario/index.ts",
        "packages/cli/src/commands/scenario/src/E2BEnvironmentProvider.ts",
        "packages/cli/src/commands/scenario/src/EnhancedEvaluationEngine.ts",
        "packages/cli/src/commands/scenario/src/EvaluationEngine.ts",
        "packages/cli/src/commands/scenario/src/LocalEnvironmentProvider.ts",
        "packages/cli/src/commands/scenario/src/MockEngine.ts",
        "packages/cli/src/commands/scenario/src/TrajectoryReconstructor.ts",
        "packages/cli/src/commands/scenario/src/__tests__/LocalEnvironmentProvider.test.ts",
        "packages/cli/src/commands/scenario/src/__tests__/capabilities-evaluation.test.ts",
        "packages/cli/src/commands/scenario/src/__tests__/data-aggregator.test.ts",
        "packages/cli/src/commands/scenario/src/__tests__/e2e/centralized-data.test.ts",
        "packages/cli/src/commands/scenario/src/__tests__/enhanced-evaluation.test.ts",
        "packages/cli/src/commands/scenario/src/__tests__/evaluation-integration.test.ts",
        "packages/api-client/src/types/messaging.ts",
        "packages/api-client/src/types/sessions.ts",
        "packages/cli/src/commands/scenario/src/data-aggregator.ts",
        "packages/cli/src/commands/scenario/src/matrix-orchestrator.ts",
        "packages/cli/src/commands/scenario/src/matrix-runner.ts",
        "packages/cli/src/commands/scenario/src/parameter-override.ts",
        "packages/cli/src/commands/scenario/src/plugin-parser.ts",
        "packages/cli/src/commands/scenario/src/process-manager.ts",
        "packages/cli/src/commands/scenario/src/progress-tracker.ts",
        "packages/cli/src/commands/scenario/src/resource-monitor.ts",
        "packages/cli/src/commands/scenario/src/run-isolation.ts",
        "packages/cli/src/commands/scenario/src/runtime-factory.ts",
        "packages/cli/src/commands/start/actions/server-start.ts",
        "packages/cli/src/commands/start/index.ts",
        "packages/cli/src/project.ts",
        "packages/cli/src/scripts/copy-templates.ts",
        "packages/cli/src/services/env-file.service.ts",
        "packages/cli/src/utils/build-project.ts",
        "packages/cli/src/utils/bun-exec.ts",
        "packages/cli/src/utils/dependency-manager.ts",
        "packages/cli/src/utils/env-prompt.ts",
        "packages/cli/src/utils/get-config.ts",
        "packages/cli/src/utils/github.ts",
        "packages/cli/src/utils/load-plugin.ts",
        "packages/cli/src/utils/local-cli-delegation.ts",
        "packages/cli/src/utils/plugin-creator.ts",
        "packages/cli/src/utils/registry/index.ts",
        "packages/cli/src/utils/spinner-utils.ts",
        "packages/cli/src/utils/test-runner.ts"
      ]
    },
    {
      "title": "improve summary",
      "prNumber": 5818,
      "type": "other",
      "body": "",
      "files": [
        "packages/plugin-action-bench/src/actions/retail/exchangeDeliveredOrderItems.ts"
      ]
    },
    {
      "title": "fix: Remove duplicate actionNames block from message handler template",
      "prNumber": 5817,
      "type": "bugfix",
      "body": "The actionNames block was appearing twice in the messageHandlerTemplate: once correctly inside the <providers> section and once redundantly after it. This PR removes the duplicated block after the </providers> tag to streamline the template",
      "files": [
        "packages/core/src/__tests__/prompts.test.ts",
        "packages/core/src/prompts.ts"
      ]
    },
    {
      "title": "Refine prompt logic to enforce user ID requirement for actions needing authentication",
      "prNumber": 5816,
      "type": "other",
      "body": "",
      "files": [
        "packages/plugin-bootstrap/src/index.ts"
      ]
    },
    {
      "title": "Revert processActions change: use cacheState to retrieve action result instead; minor auth prompt fix",
      "prNumber": 5815,
      "type": "bugfix",
      "body": "",
      "files": [
        "packages/core/src/runtime.ts",
        "packages/core/src/types/runtime.ts",
        "packages/plugin-bootstrap/src/index.ts"
      ]
    },
    {
      "title": "Fix typo in runtime.ts comment: \"initalized\" → \"initialized\"",
      "prNumber": 5812,
      "type": "bugfix",
      "body": "\r\n\r\nFixes a typo in the comment on line 1615 of `packages/core/src/runtime.ts`.\r\n\r\n### Changes\r\n- **Before:** `// not initalized or registered yet, registerPlugin is already smart enough to`\r\n- **After:** `// not initialized or registered y",
      "files": [
        "packages/core/src/runtime.ts"
      ]
    },
    {
      "title": "multi step",
      "prNumber": 5825,
      "type": "other",
      "body": "",
      "files": [
        "bun.lock",
        "packages/core/src/prompts.ts",
        "packages/plugin-bootstrap/src/index.ts",
        "packages/plugin-bootstrap/src/providers/actionState.ts",
        "packages/plugin-bootstrap/src/providers/providers.ts",
        "packages/plugin-bootstrap/src/providers/recentMessages.ts",
        "packages/project-starter/package.json",
        "packages/project-starter/src/character.ts",
        "packages/plugin-bootstrap/src/__tests__/multi-step.test.ts",
        "packages/plugin-bootstrap/src/__tests__/test-utils.ts"
      ]
    },
    {
      "title": "fix(plugin-bootstrap): return ActionResult in GENERATE_IMAGE handler",
      "prNumber": 5823,
      "type": "bugfix",
      "body": "This PR updates `GENERATE_IMAGE` in `@elizaos/plugin-bootstrap` to return an `ActionResult` per core `Action` contract.\\n\\n- Changes limited to `packages/plugin-bootstrap/src/actions/imageGeneration.ts`\\n- Excludes edits to `standalone.ts` ",
      "files": [
        "packages/plugin-bootstrap/src/__tests__/actions.test.ts",
        "packages/plugin-bootstrap/src/actions/imageGeneration.ts"
      ]
    },
    {
      "title": "expose multi-step templates via character config and enable env-based strategy toggle",
      "prNumber": 5822,
      "type": "other",
      "body": "This PR introduces the following changes:\r\n\r\nMoves core templates (multiStepDecisionTemplate and multiStepSummaryTemplate) into the core layer to improve modularity.\r\n\r\nAdds character-level overrides: Characters can now define their own mul",
      "files": [
        "packages/cli/src/characters/eliza.ts",
        "packages/core/src/prompts.ts",
        "packages/plugin-bootstrap/src/index.ts",
        "packages/plugin-bootstrap/src/providers/recentMessages.ts"
      ]
    },
    {
      "title": "fix: CI test failures in core and cypress tests",
      "prNumber": 5835,
      "type": "bugfix",
      "body": "## Summary\n\nThis PR fixes failing CI tests in the core packages and cypress component tests identified in the develop branch CI runs.\n\n### Changes Made\n\n#### project-tee-starter tests\n- Updated all references from `tsup.config.ts` to `build",
      "files": [
        ".github/workflows/client-cypress-tests.yml",
        "bun.lock",
        "packages/client/cypress.config.cjs",
        "packages/client/cypress/e2e/01-home-page.cy.ts",
        "packages/client/cypress/e2e/02-chat-functionality.cy.ts",
        "packages/client/cypress/e2e/03-spa-routing.cy.ts",
        "packages/client/package.json",
        "packages/core/src/__tests__/settings.test.ts",
        "packages/core/src/runtime.ts",
        "packages/core/src/settings.ts",
        "packages/plugin-bootstrap/src/__tests__/providers.test.ts",
        "packages/plugin-dummy-services/src/lp/service.ts",
        "packages/plugin-dummy-services/src/tokenData/service.ts",
        "packages/plugin-dummy-services/src/wallet/__tests__/service.test.ts",
        "packages/plugin-dummy-services/src/wallet/service.ts",
        "packages/plugin-dummy-services/tsconfig.json",
        "packages/project-tee-starter/src/__tests__/build-order.test.ts",
        "packages/project-tee-starter/src/__tests__/env.test.ts",
        "packages/project-tee-starter/src/__tests__/file-structure.test.ts",
        "packages/project-tee-starter/src/index.ts",
        "packages/project-tee-starter/tsconfig.json"
      ]
    },
    {
      "title": "fix(client): Update AgentLog type structure and fix action viewer mapping",
      "prNumber": 5834,
      "type": "bugfix",
      "body": "related commit: https://github.com/elizaOS/eliza/commit/69a77180074633e53ba7dc2f9e28acf7f912238d#diff-883ced4e3fb77567f2861de8747a663ae1623fa5ed434e750885af2857d2944f\r\n\r\nissue:\r\n\r\n<img width=\"1226\" height=\"1692\" alt=\"image\" src=\"https://git",
      "files": [
        "packages/api-client/src/types/agents.ts",
        "packages/client/src/lib/api-type-mappers.ts"
      ]
    },
    {
      "title": "fix: correct logger.error parameter order in imageGeneration action",
      "prNumber": 5833,
      "type": "bugfix",
      "body": "## Summary\r\n\r\nFixes TypeScript compilation errors in the `@elizaos/plugin-bootstrap` package by correcting the parameter order in `logger.error` calls.\r\n\r\n## Changes\r\n\r\n- Updated `logger.error` calls in `imageGeneration.ts` to use correct s",
      "files": [
        "packages/plugin-bootstrap/src/actions/imageGeneration.ts"
      ]
    },
    {
      "title": "fix: Improve browser build exports and type definitions",
      "prNumber": 5832,
      "type": "bugfix",
      "body": "## Summary\n\nThis PR fixes issues with the browser build of the core package and improves type definitions.\n\n## Changes\n\n### Build Configuration Updates\n- **Package.json exports**: Updated to use `.node.js` and `.browser.js` suffixes for bet",
      "files": [
        ".gitignore",
        "packages/core/build.ts",
        "packages/core/package.json",
        "packages/core/src/entities.ts",
        "packages/core/src/logger.ts",
        "packages/core/src/roles.ts"
      ]
    },
    {
      "title": "fix: make environment loading lazy to prevent warnings during CLI startup",
      "prNumber": 5829,
      "type": "bugfix",
      "body": "## Problem\n\nWhen running any ElizaOS CLI command (like `elizaos create`), users see confusing environment warnings:\n\n```\n[ENV] No .env file found in any of the expected locations\n[ENV] ⚠️ OPENAI_API_KEY not found in process.env\n[ENV] Safe e",
      "files": [
        "packages/cli/src/commands/scenario/src/runtime-factory.ts"
      ]
    },
    {
      "title": "feat: browser compat core (draft)",
      "prNumber": 5828,
      "type": "feature",
      "body": "",
      "files": [
        ".gitignore",
        "packages/core/README.md",
        "packages/core/build.ts",
        "packages/core/package.json",
        "packages/core/src/__tests__/buffer.test.ts",
        "packages/core/src/__tests__/environment.test.ts",
        "packages/core/src/entities.ts",
        "packages/core/src/index.browser.ts",
        "packages/core/src/index.node.ts",
        "packages/core/src/index.ts",
        "packages/core/src/logger.ts",
        "packages/core/src/roles.ts",
        "packages/core/src/runtime.ts",
        "packages/core/src/sentry/instrument.ts",
        "packages/core/src/settings.ts",
        "packages/core/src/utils.ts",
        "packages/core/src/utils/buffer.ts",
        "packages/core/src/utils/environment.ts",
        "packages/core/tsconfig.browser.json",
        "packages/core/tsconfig.build.json",
        "build-utils.ts",
        "bun.lock",
        "packages/api-client/build.ts",
        "packages/api-client/src/services/messaging.ts",
        "packages/api-client/src/types/messaging.ts",
        "packages/cli/build.ts",
        "packages/cli/src/commands/scenario/index.ts",
        "packages/cli/src/utils/local-cli-delegation.ts",
        "packages/client/cypress.config.cjs",
        "packages/client/cypress/e2e/01-home-page.cy.ts",
        "packages/client/cypress/e2e/02-chat-functionality.cy.ts",
        "packages/client/cypress/e2e/03-spa-routing.cy.ts",
        "packages/client/index.html",
        "packages/client/package.json",
        "packages/client/src/components/chat.tsx",
        "packages/client/src/entry.tsx",
        "packages/client/src/lib/api-type-mappers.ts",
        "packages/client/src/mocks/empty-module.ts",
        "packages/client/src/types.ts",
        "packages/client/vite.config.ts",
        "packages/config/build.ts",
        "packages/core/src/__tests__/logger-browser-node.test.ts",
        "packages/core/src/__tests__/logger.test.ts",
        "packages/core/src/search.ts",
        "packages/core/src/sentry/instrument.browser.ts",
        "packages/core/src/sentry/instrument.node.ts",
        "packages/core/src/utils/__tests__/buffer.test.ts",
        "packages/core/src/utils/__tests__/environment.test.ts",
        "packages/core/src/utils/__tests__/stringToUuid.test.ts",
        "packages/plugin-bootstrap/build.ts"
      ]
    },
    {
      "title": "Feat: initPromise & always include runtime in emitted events",
      "prNumber": 5827,
      "type": "feature",
      "body": "# Risks\r\n\r\nLow\r\n\r\n# Background\r\n\r\n## What does this PR do?\r\n\r\n- creates an initPromise property\r\n- ensures runtime is always in emitted events\r\n\r\n## What kind of change is this?\r\n\r\nUpdates (new versions of included code)\r\n\r\n## Why are we do",
      "files": [
        "packages/core/src/runtime.ts"
      ]
    },
    {
      "title": "feat: add comprehensive documentation to standalone agent runner",
      "prNumber": 5843,
      "type": "feature",
      "body": "## Description\n\nThis PR adds comprehensive documentation to the  file to improve developer experience and understanding.\n\n## Changes Made\n\n- **Added detailed JSDoc header** explaining the purpose and use cases of the standalone agent runner",
      "files": [
        "standalone.ts"
      ]
    },
    {
      "title": "fix: Fix multi-step action result handling to properly pass values between steps",
      "prNumber": 5841,
      "type": "bugfix",
      "body": "# Fix Multi-Step Action Result Handling\r\n\r\n## What Changed\r\n\r\n### Core Fix\r\n- **Fixed multi-step action result handling** to properly pass `values` between action steps\r\n- Added `values?: Record<string, any>` to `MultiStepActionResult` inte",
      "files": [
        "packages/core/src/prompts.ts",
        "packages/plugin-bootstrap/src/index.ts"
      ]
    },
    {
      "title": "fix: (cli) test command minor fixes",
      "prNumber": 5840,
      "type": "bugfix",
      "body": "this is a tiny pr to fix some minor issues with the cli test command and default tests that come with project-starter and project-tee-starter.\r\n\r\n1. when passing a test name with the --name flag, it was lowercasing the passed test name, but",
      "files": [
        "CLAUDE.md",
        "README.md",
        "packages/cli/README.md",
        "packages/cli/src/commands/test/utils/project-utils.ts",
        "packages/cli/tests/commands/start.test.ts",
        "packages/project-starter/src/__tests__/character-plugin-ordering.test.ts",
        "packages/project-starter/src/__tests__/character.test.ts",
        "packages/project-tee-starter/src/__tests__/character.test.ts",
        "packages/project-tee-starter/src/__tests__/error-handling.test.ts"
      ]
    },
    {
      "title": "Bump vite from 6.0.5 to 6.1.6 in /packages/client in the npm_and_yarn group across 1 directory",
      "prNumber": 5838,
      "type": "other",
      "body": "Bumps the npm_and_yarn group with 1 update in the /packages/client directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).\n\nUpdates `vite` from 6.0.5 to 6.1.6\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from",
      "files": [
        "packages/client/package.json"
      ]
    },
    {
      "title": "fix(core): fix TypeScript declarations in npm package",
      "prNumber": 5846,
      "type": "bugfix",
      "body": "Point package.json to existing generated types instead of broken re-exports to src/\r\n\r\n  # Risks\r\n\r\n  **Low** - This is a build configuration fix that corrects broken TypeScript declarations without changing any runtime behavior.\r\n\r\n  # Bac",
      "files": [
        "bun.lock",
        "packages/core/build.ts",
        "packages/core/package.json"
      ]
    },
    {
      "title": "fix: move starters build scripts locally",
      "prNumber": 5845,
      "type": "bugfix",
      "body": "## PR: Fix `elizaos create` command build failure for new projects\r\n\r\n### Problem\r\nThe `elizaos create` command was failing when building newly created projects with the error:\r\n```\r\nCannot find module '../../build-utils' from '/path/to/pro",
      "files": [
        "bun.lock",
        "packages/api-client/src/__tests__/services/messaging.test.ts",
        "packages/client/src/hooks/__tests__/use-character-convert.test.ts",
        "packages/client/src/hooks/__tests__/use-panel-width-state.test.ts",
        "packages/client/src/hooks/__tests__/use-sidebar-state.test.ts",
        "packages/client/tsconfig.json",
        "packages/core/src/__tests__/buffer.test.ts",
        "packages/core/src/__tests__/environment.test.ts",
        "packages/core/src/__tests__/logger-browser-node.test.ts",
        "packages/core/src/__tests__/settings.test.ts",
        "packages/core/src/logger.ts",
        "packages/core/src/utils/__tests__/buffer.test.ts",
        "packages/core/src/utils/buffer.ts",
        "packages/plugin-dummy-services/src/tokenData/service.ts",
        "packages/plugin-quick-starter/build.ts",
        "packages/plugin-starter/build.ts",
        "packages/project-starter/build.ts",
        "packages/project-tee-starter/build.ts",
        "packages/project-tee-starter/src/__tests__/env.test.ts",
        "packages/project-tee-starter/src/__tests__/file-structure.test.ts"
      ]
    },
    {
      "title": "fix(core): fix TypeScript declarations in npm package",
      "prNumber": 5848,
      "type": "bugfix",
      "body": "# Relates to\r\n\r\n  TypeScript declarations build optimization.\r\n\r\n  # Risks\r\n\r\n  **Low risk** - Configuration changes only, no functional code changes.\r\n\r\n  # Background\r\n\r\n  ## What does this PR do?\r\n\r\n  Optimizes the TypeScript build confi",
      "files": [
        "bun.lock",
        "packages/core/build.ts",
        "packages/core/package.json",
        "packages/core/tsconfig.browser.json",
        "packages/core/tsconfig.declarations.json",
        "packages/core/tsconfig.json"
      ]
    },
    {
      "title": "fix: core types output",
      "prNumber": 5847,
      "type": "bugfix",
      "body": "## 🔧 Fix: Type Export Issues in @elizaos/core Package\n\n### Problem\nThe deployed version of `@elizaos/core` on NPM was experiencing type export failures, causing TypeScript compilation errors when the package was used outside the monorepo. ",
      "files": [
        "bun.lock",
        "packages/core/build.ts",
        "packages/core/package.json",
        "packages/core/tsconfig.build.json"
      ]
    },
    {
      "title": "fix: CLI NPM Deployment Path Resolution Issue",
      "prNumber": 5852,
      "type": "bugfix",
      "body": "## 🐛 Fix: NPM Deployment Path Resolution Issue\r\n\r\n### Problem\r\nWhen the CLI is published to NPM and installed globally (e.g., `bun i -g @elizaos/cli`), it fails with the error:\r\n```\r\nCannot find module '/home/runner/work/eliza/eliza/packag",
      "files": [
        "bun.lock",
        "packages/cli/build.ts",
        "packages/cli/package.json",
        "packages/cli/src/utils/copy-template.ts",
        "packages/cli/src/utils/display-banner.ts",
        "packages/cli/src/utils/user-environment.ts",
        "packages/core/build.ts",
        "packages/core/package.json"
      ]
    }
  ],
  "topContributors": [
    {
      "username": "wtfsayo",
      "avatarUrl": "https://avatars.githubusercontent.com/u/82053242?u=98209a1f10456f42d4d2fa71db4d5bf4a672cbc3&v=4",
      "totalScore": 1988.002886294777,
      "prScore": 1938.744886294777,
      "issueScore": 0,
      "reviewScore": 46,
      "commentScore": 3.258,
      "summary": "wtfsayo: This month, wtfsayo focused on improving the build process and developer experience for the elizaos/eliza repository. They landed a significant build optimization in PR #5701, which also added markdown rendering support and removed nearly 3,500 lines of code. Additionally, they improved the developer workflow by auto-installing the CLI via PR #5702 and removed obsolete documentation and workflow files. Their work was concentrated on feature development and refactoring, primarily modifying configuration and code files."
    },
    {
      "username": "ChristopherTrimboli",
      "avatarUrl": "https://avatars.githubusercontent.com/u/27584221?u=0d816ce1dcdea8f925aba18bb710153d4a87a719&v=4",
      "totalScore": 637.5799711951328,
      "prScore": 526.0259711951328,
      "issueScore": 0,
      "reviewScore": 109.5,
      "commentScore": 2.054,
      "summary": "ChristopherTrimboli: Focused on developing a new sessions API, opening a significant pull request in elizaos/eliza (#5704). This work involved substantial changes, modifying 13 files with over 1500 lines of new code and tests. This effort was primarily focused on new feature development and also included one peer review."
    },
    {
      "username": "tcm390",
      "avatarUrl": "https://avatars.githubusercontent.com/u/60634884?u=c6c41679b8322eaa0c81f72e0b4ed95e80f0ac16&v=4",
      "totalScore": 289.9295911791509,
      "prScore": 270.9295911791509,
      "issueScore": 0,
      "reviewScore": 19,
      "commentScore": 0,
      "summary": "tcm390: This month, tcm390 drove the implementation of a significant new \"multi-step\" feature within the elizaos/eliza repository. This effort was centered around the exceptionally large PR #5825 (+81866/-903 lines), which introduced the core functionality. They demonstrated strong ownership by merging a total of 9 PRs, including several follow-up fixes to refine the new feature's action result handling (#5841) and logging structure (#5834). Their activity shows a primary focus on new feature development and related bug fixes."
    },
    {
      "username": "0xbbjoker",
      "avatarUrl": "https://avatars.githubusercontent.com/u/54844437?u=90fe1762420de6ad493a1c1582f1f70c0d87d8e2&v=4",
      "totalScore": 267.8407090110548,
      "prScore": 232.2407090110548,
      "issueScore": 0,
      "reviewScore": 35,
      "commentScore": 0.6000000000000001,
      "summary": "0xbbjoker: Focused on repository maintenance and bug fixes this month, with their most impactful contribution being a significant cleanup that removed over 12,600 lines of unused specs in `elizaos/eliza#5724`. They also addressed logger compatibility issues by merging a fix in `elizaos-plugins/plugin-knowledge#38` and supported the team with two code reviews. This activity shows a primary focus on bugfix work, with the majority of changes concentrated in test files."
    },
    {
      "username": "yungalgo",
      "avatarUrl": "https://avatars.githubusercontent.com/u/113615973?u=92e0f29f7e2fbb8ce46ed13c51f692ca803de02d&v=4",
      "totalScore": 224.89446343404268,
      "prScore": 213.83646343404268,
      "issueScore": 0,
      "reviewScore": 9,
      "commentScore": 2.058,
      "summary": "yungalgo: Focused on improving test components this month, opening a significant pull request in elizaos/eliza (#5705) to address a fix. This work-in-progress contains substantial changes (+2097/-635 lines) across 31 files, reflecting their 19 commits on the topic. Based on their code changes, their activity shows a primary focus on tests, bugfixes, and other related work."
    },
    {
      "username": "odilitime",
      "avatarUrl": "https://avatars.githubusercontent.com/u/16395496?u=c9bac48e632aae594a0d85aaf9e9c9c69b674d8b&v=4",
      "totalScore": 151.481933112422,
      "prScore": 110.181933112422,
      "issueScore": 0,
      "reviewScore": 40.5,
      "commentScore": 0.8,
      "summary": "odilitime: No activity this month."
    },
    {
      "username": "Dexploarer",
      "avatarUrl": "https://avatars.githubusercontent.com/u/211557447?u=21a243d61cc1f87574328ae07fc64d7d7577b53d&v=4",
      "totalScore": 126.00149908690358,
      "prScore": 121.50149908690358,
      "issueScore": 0,
      "reviewScore": 4.5,
      "commentScore": 0,
      "summary": "Dexploarer: Focused on introducing a major new AI Gateway feature to the ElizaOS ecosystem this month. This significant initiative is captured across four open pull requests, highlighted by the core implementation in `elizaos/eliza#5806` which adds universal access to over 100 AI models. The supporting work, which includes adding the plugin to the registry (`elizaos-plugins/registry#203`, `#204`), involved substantial changes across 49 files (+5464/-451 lines). Dexploarer's efforts were concentrated entirely on new feature development, modifying both application code and configuration files."
    },
    {
      "username": "standujar",
      "avatarUrl": "https://avatars.githubusercontent.com/u/16385918?u=718bdcd1585be8447bdfffb8c11ce249baa7532d&v=4",
      "totalScore": 81.01782801798313,
      "prScore": 61.81782801798314,
      "issueScore": 0,
      "reviewScore": 19,
      "commentScore": 0.2,
      "summary": "standujar: No activity this month."
    },
    {
      "username": "monilpat",
      "avatarUrl": "https://avatars.githubusercontent.com/u/15067321?v=4",
      "totalScore": 75.2957738965761,
      "prScore": 43.5437738965761,
      "issueScore": 24.4,
      "reviewScore": 5,
      "commentScore": 2.352,
      "summary": "monilpat: Undertook a substantial development effort this month, reflected in 28 commits and a large volume of code changes (+39k/-44k lines) that have not yet been merged. In the elizaos/eliza repository, they were active in defining new work by creating five issues, including a bug report for a build failure (#5738) and several feature proposals for agent scenarios (#5725, #5726, #5727). This activity, supported by 7 issue comments, shows a primary focus on feature development and other foundational work."
    },
    {
      "username": "alex-nax",
      "avatarUrl": "https://avatars.githubusercontent.com/u/82507604?u=b3af75d82f80ed83007a77c351a64bdd9e5d67de&v=4",
      "totalScore": 50.88309952482126,
      "prScore": 50.88309952482126,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "alex-nax: This month, alex-nax focused on feature development and bug fixes within the elizaos/eliza repository, with two pull requests currently open. These changes introduce the ability to cancel a run (#5728) and fix an issue with action chaining (#5736). The underlying commits for this work modified over 1200 files, with a heavy emphasis on configuration files, tests, and documentation."
    },
    {
      "username": "linear",
      "avatarUrl": "https://avatars.githubusercontent.com/in/20150?v=4",
      "totalScore": 50,
      "prScore": 0,
      "issueScore": 50,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "linear: Focused entirely on project planning and task definition within the elizaos/eliza repository this month. They created 18 issues to scope new features like a CLI run command (#5573), outline documentation needs (#5638), and flag critical bugs and CI failures for resolution (#5714, #5715). This work was instrumental in defining the development roadmap and identifying necessary improvements across the project. Their efforts indicate a focus on the CLI, documentation, and CI processes."
    },
    {
      "username": "shiedot",
      "avatarUrl": "https://avatars.githubusercontent.com/u/115964822?v=4",
      "totalScore": 40.4257738965761,
      "prScore": 40.4257738965761,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "shiedot: No activity this month."
    },
    {
      "username": "theSchein",
      "avatarUrl": "https://avatars.githubusercontent.com/u/4759807?u=1367e8e3307b02aef996d930feafa29937ccb5b9&v=4",
      "totalScore": 28.623573590279975,
      "prScore": 28.623573590279975,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "theSchein: This month, theSchein's contribution involved updating the plugin registry. They merged one pull request (elizaos-plugins/registry#205) to add the polymarket plugin. This work consisted of a minor update to a configuration file."
    },
    {
      "username": "rejected-l",
      "avatarUrl": "https://avatars.githubusercontent.com/u/99460023?u=977f49541583c40f4fc5f6a9f11ca6c6a78b362a&v=4",
      "totalScore": 26.67920303898299,
      "prScore": 26.67920303898299,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "rejected-l: Focused on maintaining the project's build infrastructure this month by opening a pull request to update a core dependency (elizaos/eliza#5762). This proposed change to the checkout action modified 41 lines across 26 files. Their work touched primarily configuration files, along with associated tests and documentation."
    },
    {
      "username": "github-advanced-security",
      "avatarUrl": "https://avatars.githubusercontent.com/in/57789?v=4",
      "totalScore": 22.5,
      "prScore": 0,
      "issueScore": 0,
      "reviewScore": 22.5,
      "commentScore": 0,
      "summary": "github-advanced-security: No activity this month."
    },
    {
      "username": "borisudovicic",
      "avatarUrl": "https://avatars.githubusercontent.com/u/31806472?u=27713fbe603baae91ef519990facbacd6c23e93d&v=4",
      "totalScore": 22,
      "prScore": 0,
      "issueScore": 22,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "borisudovicic: Focused on project planning and defining new work streams within the elizaos/eliza repository. This month, their contributions consisted of creating 12 issues to scope out new features and infrastructure. This included initiating work on a rate-limited LLM endpoint (#5438), defining requirements for new agents (#5494, #5767), and outlining plans for a v2/v3 benchmark suite (#5764) and telemetry for training data (#5772)."
    },
    {
      "username": "prestoalvarez",
      "avatarUrl": "https://avatars.githubusercontent.com/u/140459501?u=b843478cdfec2bca070ff99ebb65f8f6a8161aba&v=4",
      "totalScore": 21.419306144334055,
      "prScore": 21.419306144334055,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "prestoalvarez: Made a minor contribution to code quality this month by fixing a typo in a comment within the elizaos/eliza repository (PR #5812)."
    },
    {
      "username": "Sergey1997",
      "avatarUrl": "https://avatars.githubusercontent.com/u/22988415?u=5ac6b5778c46fd3783556a946cac05ba4d7bd2aa&v=4",
      "totalScore": 12.873759469228055,
      "prScore": 12.673759469228056,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0.2,
      "summary": "Sergey1997: Focused on a significant integration effort this month, reflected in the open pull request elizaos/eliza#5811. This single PR contains substantial changes across 1401 files, with five commits modifying over 200,000 lines of code (+43,633/-164,834). Their other activity included making one comment on a pull request."
    },
    {
      "username": "mmalik-al",
      "avatarUrl": "https://avatars.githubusercontent.com/u/144422633?u=986f63acb4dee076448142e0a724f1c4419543d3&v=4",
      "totalScore": 12.778306144334056,
      "prScore": 12.778306144334056,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "mmalik-al: This month, mmalik-al's work focused on plugin management, merging a feature pull request (elizaos-plugins/registry#212) to update the index for the hedera plugin. This contribution consisted of a configuration file change within the plugin registry."
    },
    {
      "username": "yohaiai",
      "avatarUrl": "https://avatars.githubusercontent.com/u/1732742?v=4",
      "totalScore": 11.827306144334056,
      "prScore": 11.827306144334056,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "yohaiai: This month, yohaiai's work centered on expanding the plugin ecosystem. They opened a pull request to add a new connections plugin (elizaos-plugins/registry#196). This contribution consisted of minor configuration changes."
    },
    {
      "username": "mandatedisrael",
      "avatarUrl": "https://avatars.githubusercontent.com/u/32749185?u=d7ad7a2e6f7771775eda9a8a5dfbadb0390d535c&v=4",
      "totalScore": 8.426879734614028,
      "prScore": 8.426879734614028,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "mandatedisrael: Contributed a documentation fix this month, opening a pull request to correct an error in the README.md for the elizaos/eliza repository (#5729). This contribution consisted of a single commit modifying one documentation file."
    },
    {
      "username": "wookosh",
      "avatarUrl": "https://avatars.githubusercontent.com/u/120273332?u=493e01d0863a55ed139425760447079b96ef931d&v=4",
      "totalScore": 8.377306144334055,
      "prScore": 8.377306144334055,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "wookosh: Focused on production configuration for the web UI this month. They merged PR elizaos/eliza#5735, which allows iframes when the web UI is enabled in production. This contribution was centered on the `elizaos/eliza` repository."
    },
    {
      "username": "RolandOne",
      "avatarUrl": "https://avatars.githubusercontent.com/u/38446707?v=4",
      "totalScore": 5.909573590279972,
      "prScore": 5.909573590279972,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "RolandOne: This month, RolandOne opened a pull request to add a new plugin to the registry (elizaos-plugins/registry#195), which involved a single-line addition to a configuration file."
    },
    {
      "username": "HashWarlock",
      "avatarUrl": "https://avatars.githubusercontent.com/u/64296537?u=1d8228a93c06c603e08d438677b3f736d6b1ab22&v=4",
      "totalScore": 5,
      "prScore": 0,
      "issueScore": 0,
      "reviewScore": 5,
      "commentScore": 0,
      "summary": "HashWarlock: No activity this month."
    },
    {
      "username": "claude",
      "avatarUrl": "https://avatars.githubusercontent.com/in/1236702?v=4",
      "totalScore": 4.938,
      "prScore": 0,
      "issueScore": 0,
      "reviewScore": 4.5,
      "commentScore": 0.43799999999999994,
      "summary": "claude: Focused on providing extensive feedback and discussion across the project this month. Their main contribution was through collaboration, leaving 299 comments on pull requests. They also submitted one formal review and commented on one issue."
    },
    {
      "username": "samarth30",
      "avatarUrl": "https://avatars.githubusercontent.com/u/48334430?u=1fc119a6c2deb8cf60448b4c8961cb21dc69baeb&v=4",
      "totalScore": 4,
      "prScore": 0,
      "issueScore": 4,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "samarth30: This month, samarth30's activity was centered on deployment infrastructure. They opened an issue to address the Eliza cloud railway deployment (elizaos/eliza#5703), highlighting a focus on the operational aspects of the `elizaos/eliza` repository."
    },
    {
      "username": "lalalune",
      "avatarUrl": "https://avatars.githubusercontent.com/u/18633264?u=e2e906c3712c2506ebfa98df01c2cfdc50050b30&v=4",
      "totalScore": 4,
      "prScore": 0,
      "issueScore": 4,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "lalalune: This month, lalalune focused on proposing new functionality for the `elizaos/eliza` repository. They opened two feature requests to enhance the core package, including adding an `IStorageService` type (elizaos/eliza#5698) and an `unregisterAction` function (elizaos/eliza#5697)."
    },
    {
      "username": "harperaa",
      "avatarUrl": "https://avatars.githubusercontent.com/u/1330944?v=4",
      "totalScore": 4,
      "prScore": 0,
      "issueScore": 4,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "harperaa: Focused on product quality this month by identifying and reporting bugs in the `elizaos/eliza` repository. They opened two issues related to Discord integration, highlighting that image generation (#5809) and direct messaging (#5810) were not working correctly."
    },
    {
      "username": "1BDO",
      "avatarUrl": "https://avatars.githubusercontent.com/u/210645034?v=4",
      "totalScore": 4,
      "prScore": 0,
      "issueScore": 4,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "1BDO: No activity this month."
    },
    {
      "username": "0xRabbidfly",
      "avatarUrl": "https://avatars.githubusercontent.com/u/93952856?v=4",
      "totalScore": 4,
      "prScore": 0,
      "issueScore": 4,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "0xRabbidfly: This month, 0xRabbidfly's contribution was focused on improving documentation by opening an issue in elizaos-plugins/plugin-twitter (#40) to request clarification on API tier requirements."
    },
    {
      "username": "Kemystra",
      "avatarUrl": "https://avatars.githubusercontent.com/u/74447600?u=b02004f220ac249b7c1e3d847482c0f480a150d5&v=4",
      "totalScore": 2.3000000000000003,
      "prScore": 0,
      "issueScore": 2.1,
      "reviewScore": 0,
      "commentScore": 0.2,
      "summary": "Kemystra: This month, Kemystra's activity was focused on identifying a build failure. They reported an issue where the Eliza CLI failed to build a project in elizaos/eliza (#5734)."
    },
    {
      "username": "ashuxshimra",
      "avatarUrl": "https://avatars.githubusercontent.com/u/105487009?u=23e8a61486d8a47efc1734ae7fdb61ccb191f349&v=4",
      "totalScore": 2.2,
      "prScore": 0,
      "issueScore": 2,
      "reviewScore": 0,
      "commentScore": 0.2,
      "summary": "ashuxshimra: This month, ashuxshimra proposed the addition of a new Token Metrics Plugin by opening issue #202 in the elizaos-plugins/registry. They also made a substantial commit with over 3,000 lines of code changes across 4 files, indicating significant work in progress."
    },
    {
      "username": "MagdiejamesNYC",
      "avatarUrl": "https://avatars.githubusercontent.com/u/44060696?v=4",
      "totalScore": 2.2,
      "prScore": 0,
      "issueScore": 2,
      "reviewScore": 0,
      "commentScore": 0.2,
      "summary": "MagdiejamesNYC: This month, MagdiejamesNYC contributed by identifying and reporting a \"path not found\" bug in elizaos/eliza (#5856). They also provided feedback via a comment on a pull request."
    },
    {
      "username": "znahas",
      "avatarUrl": "https://avatars.githubusercontent.com/u/4540248?v=4",
      "totalScore": 2,
      "prScore": 0,
      "issueScore": 2,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "znahas: This month, znahas's contribution was focused on plugin stability. They identified and reported a potential crash in the knowledge plugin via issue elizaos-plugins/plugin-knowledge#37. This was their primary contribution, indicating a focus on the `elizaos-plugins/plugin-knowledge` repository."
    },
    {
      "username": "madjin",
      "avatarUrl": "https://avatars.githubusercontent.com/u/32600939?u=cdcf89f44c7a50906c7a80d889efa85023af2049&v=4",
      "totalScore": 2,
      "prScore": 0,
      "issueScore": 2,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "madjin: This month, madjin's contribution was to propose new functionality by opening an issue in elizaos/elizaos.github.io (#150) to explore attestations via SAS / EAS."
    },
    {
      "username": "jimthedj65",
      "avatarUrl": "https://avatars.githubusercontent.com/u/46975497?v=4",
      "totalScore": 2,
      "prScore": 0,
      "issueScore": 2,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "jimthedj65: This month, their activity was focused on identifying potential bugs. They reported a crash in the `elizaos/eliza` repository by creating issue #5706."
    },
    {
      "username": "SavannahOz",
      "avatarUrl": "https://avatars.githubusercontent.com/u/227312217?v=4",
      "totalScore": 2,
      "prScore": 0,
      "issueScore": 2,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "SavannahOz: This month, SavannahOz's activity was centered on proposing new functionality. They created issue #5820 in elizaos/eliza to suggest a native integration for the Venice AI provider."
    },
    {
      "username": "LinuxIsCool",
      "avatarUrl": "https://avatars.githubusercontent.com/u/31582215?u=b8eb5d3849bf877a3a0b686cf1632aca92e744ae&v=4",
      "totalScore": 2,
      "prScore": 0,
      "issueScore": 2,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "LinuxIsCool: No activity this month."
    }
  ],
  "newPRs": 95,
  "mergedPRs": 76,
  "newIssues": 60,
  "closedIssues": 42,
  "activeContributors": 37
}