{
  "interval": {
    "intervalStart": "2025-06-01T00:00:00.000Z",
    "intervalEnd": "2025-06-02T00:00:00.000Z",
    "intervalType": "day"
  },
  "repository": "elizaos/eliza",
  "overview": "From 2025-06-01 to 2025-06-02, elizaos/eliza had 18 new PRs (19 merged), 3 new issues, and 22 active contributors.",
  "topIssues": [
    {
      "id": "I_kwDOMT5cIs64lKEB",
      "title": "Start agents files without cli",
      "author": "visionpixel",
      "number": 4810,
      "repository": "elizaos/eliza",
      "body": "Why is the-org package removed from resources?\n\nAny how can i start agents without the cli in docker compose? The old way was to use the-org package and start the agents with `bun run start --character path/to/character.agent.json` as command in docker-compose.yml",
      "createdAt": "2025-05-28T09:49:00Z",
      "closedAt": "2025-06-01T16:37:13Z",
      "state": "CLOSED",
      "commentCount": 1
    },
    {
      "id": "I_kwDOMT5cIs65Jvsk",
      "title": "plugin install problems (v0 plugin: giphy)",
      "author": "BinaryBluePeach",
      "number": 4861,
      "repository": "elizaos/eliza",
      "body": "I'm trying to install the giphy plugin  and some others. I'm getting errors. I see them in the registry. \n\nSo for giphy-\nI have tried. npm install @elizaos/plugin-giphy@github:elizaos-plugins/plugin-giphy\n elizaos plugins add @elizaos/plugin-giphy --no-env-prompt, elizaos plugins add @elizaos/plugin-giphy\n and also add in dependcies in the package.json and charcter plugins.\n\n It will say it's installed when I ask for the list but then gives errors when the client starts and says failed to load,  it says - requesting npm error notarget a package version that doesn't exist. npm.\n\nI also cloned the code for the plugin and linked to elizaos. That didn't work either. \n\n\n Can someone please give some advice? \n\n\n I have it  Eliza installed this way - npm install -g @elizaos/cli@beta\n\n\n",
      "createdAt": "2025-06-01T01:03:20Z",
      "closedAt": null,
      "state": "OPEN",
      "commentCount": 1
    },
    {
      "id": "I_kwDOMT5cIs6y7eAK",
      "title": "tried on a real ubuntu (not vm)",
      "author": "wtfsayo",
      "number": 4309,
      "repository": "elizaos/eliza",
      "body": "```\nbun install && bun run build\nbun install v1.2.10 (db2e7d7f)\n  🚚 @babel/plugin-bugfix-firefox-class-in-computed-class-key..\n  🚚 @babel/plugin-bugfix-safari-class-field-initializer-scope.\n  🚚 @babel/plugin-bugfix-v8-spread-parameters-in-optional-chai\n  ⚙️  youtube-dl-execnux-x64-cuda... node:internal/deps/undici/undici:13484\n      Error.captureStackTrace(err);\n            ^\n\nTypeError: fetch failed\n    at node:internal/deps/undici/undici:13484:13\n    at process.processTicksAndRejections (node:internal/process/task_queues:105:5)\n    at async getBinary (/home/xkcdhat/Documents/Github/eliza/node_modules/youtube-dl-exec/scripts/postinstall.js:24:18)\n    at async Promise.all (index 0)\n    at async installBinary (/home/xkcdhat/Documents/Github/eliza/node_modules/youtube-dl-exec/scripts/postinstall.js:37:20) {\n  [cause]: ConnectTimeoutError: Connect Timeout Error (attempted address: api.github.com:443, timeout: 10000ms)\n      at onConnectTimeout (node:internal/deps/undici/undici:2602:28)\n      at Immediate._onImmediate (node:internal/deps/undici/undici:2583:11)\n      at process.processImmediate (node:internal/timers:511:21) {\n    code: 'UND_ERR_CONNECT_TIMEOUT'\n  }\n}\n\nNode.js v23.3.0\n\nerror: postinstall script from \"youtube-dl-exec\" exited with 1\n```",
      "createdAt": "2025-04-17T09:22:53Z",
      "closedAt": "2025-06-01T16:35:28Z",
      "state": "CLOSED",
      "commentCount": 0
    },
    {
      "id": "I_kwDOMT5cIs64NLEa",
      "title": "API endpoint /api/agents/:agentId/rooms returns empty list despite agent being active in rooms",
      "author": "standujar",
      "number": 4779,
      "repository": "elizaos/eliza",
      "body": "**Describe the bug**\n\nThe API endpoint `/api/agents/:agentId/rooms` returns an empty list of rooms `({\"success\":true,\"data\":{\"rooms\":[]}})` even though the agent is actively participating in multiple rooms and responding to messages in those rooms.\n\n**To Reproduce**\n\nStart the agent with multiple connected services _(Discord, Telegram, etc.)_\nVerify the agent is responding to messages in rooms _(e.g., Discord channels)_\nCall the API endpoint **GET** `/api/agents/:agentId/rooms`\nObserve that the response contains an empty rooms array despite the agent being active in rooms\n\n**Expected behavior**\n\nThe API should return a list of all rooms where the agent is a participant. For example:\n```\n{\n  \"success\": true,\n  \"data\": {\n    \"rooms\": [\n      {\n        \"id\": \"room-id-1\",\n        \"name\": \"Room Name 1\",\n        \"source\": \"discord\",\n        ...\n      },\n      ...\n    ]\n  }\n}\n```\n\n**Additional context**\n\n- In the agent logs, there are numerous successful room creations: `Room [UUID] created successfully`\n- Agent connection to rooms is also logged: Success: `Successfully connected entity [agentId] in room [roomId]`\n- When a message is received and processed in a room, the agent correctly responds\n- The logs show an error: `ERROR: No room found for settings provider` which might be related\n- The issue appears to be in the association between the agent and rooms in the database, or in how `getRoomsForParticipant` retrieves this information\n- The function that calls this API is in `eliza/packages/cli/src/server/api/agent.ts`, which delegates to `runtime.getRoomsForParticipant(agentId)` which in turn delegates to the database adapter\n",
      "createdAt": "2025-05-26T08:42:47Z",
      "closedAt": "2025-06-01T16:37:28Z",
      "state": "CLOSED",
      "commentCount": 0
    },
    {
      "id": "I_kwDOMT5cIs65PN0t",
      "title": "fallback to pnpm/npm when bun install fails (macOS compatibility issues)",
      "author": "ceeriil",
      "number": 4876,
      "repository": "elizaos/eliza",
      "body": "**Describe the bug**\n\nI get this error when running elizaos cli \"[2025-06-01 19:18:49] INFO: Attempting to install plugin locally...\n[0.83ms] \".env\"\nbun add v1.0.2 (37edd5a6)\nerror: sqlite-vec-linux-arm64@0.1.6 failed to resolve\n[2025-06-01 19:18:52] WARN: Failed to install plugin locally: Command failed with exit code 1: bun add @elizaos/plugin-openai@1.0.0-beta.26\n[2025-06-01 19:18:52] INFO: Attempting to install plugin globally...\nbun add v1.0.2 (37edd5a6)\n\n installed @elizaos/plugin-openai@1.0.0-beta.26\" \n\nhow to fix this? would prefer to use pnpm cause I'm running an older version of bun but when I delete bun. it still tries to install with bun\n",
      "createdAt": "2025-06-01T20:04:02Z",
      "closedAt": "2025-06-02T10:28:06Z",
      "state": "CLOSED",
      "commentCount": 0
    }
  ],
  "topPRs": [
    {
      "id": "PR_kwDOMT5cIs6YBu-Z",
      "title": "Move message server to self DB, add specs to core",
      "author": "lalalune",
      "number": 4818,
      "body": "This PR updates the message server to use standalone and switches the core to use specs",
      "repository": "elizaos/eliza",
      "createdAt": "2025-05-28T20:54:55Z",
      "mergedAt": null,
      "additions": 17954,
      "deletions": 3725
    },
    {
      "id": "PR_kwDOMT5cIs6YVJyL",
      "title": "Add plugin specifications to core",
      "author": "lalalune",
      "number": 4851,
      "body": "This PR adds plugin specifications to core\r\n\r\nEverything should work as it has, and there should be no need to modify any code outside of core to engage this specification functionality.\r\n\r\nIn the future, plugins can be migrated to import the v2 specification from @elizaos/core/v2 and we will do our best to support forward compatibility with v3, v4, etc",
      "repository": "elizaos/eliza",
      "createdAt": "2025-05-30T20:57:49Z",
      "mergedAt": "2025-06-01T07:47:02Z",
      "additions": 15531,
      "deletions": 342
    },
    {
      "id": "PR_kwDOMT5cIs6YdMJf",
      "title": "feat: refactor message server to be completely separate and standalone from agents",
      "author": "lalalune",
      "number": 4864,
      "body": "This PR updates the message server to use standalone and switches the core to use specs\r\n\r\nSummary by CodeRabbit\r\nNew Features\r\n\r\nIntroduced a centralized messaging system with support for servers, channels (including group and DM), participants, and messages, enabling real-time chat and group conversations.\r\nAdded UI components for group channels, agent cards, group cards, and a group creation page.\r\nImplemented file and media attachment support in chat and group conversations.\r\nEnhanced sidebar and home page to display central servers and group channels.\r\nAdded offline status detection and improved connection handling.\r\nImprovements\r\n\r\nRefactored chat and group chat components to use centralized channels and messages.\r\nUpgraded API client and hooks for new messaging, agent, and group management endpoints.\r\nImproved optimistic UI updates and error handling for message sending and file uploads.\r\nEnhanced agent and group navigation with direct message and group chat flows.\r\nBug Fixes\r\n\r\nImproved error handling and logging for network and API failures.\r\nFixed message deduplication and sorting in chat views.\r\nDocumentation\r\n\r\nAdded detailed documentation for versioned plugin APIs and migration guides.\r\nTests\r\n\r\nAdded comprehensive unit and integration tests for new messaging, state conversion, provider compatibility, and search utilities.\r\nChores\r\n\r\nUpdated dependencies and improved internal type safety and code organization.",
      "repository": "elizaos/eliza",
      "createdAt": "2025-06-01T07:31:01Z",
      "mergedAt": "2025-06-02T09:25:10Z",
      "additions": 15058,
      "deletions": 6318
    },
    {
      "id": "PR_kwDOMT5cIs6Ya5Bk",
      "title": "fix: add missing GET /agents/:agentId/rooms/:roomId API endpoint",
      "author": "geooner",
      "number": 4860,
      "body": "<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\r\n\r\n# Relates to\r\n\r\nFixes #4763 \r\n\r\n<!-- This risks section must be filled out before the final review and merge. -->\r\n\r\n# Risks\r\n\r\n<!--\r\nLow, medium, large. List what kind of risks and what could be affected.\r\n-->\r\n\r\n# Background\r\n\r\n## What does this PR do?\r\nAdds the missing endpoint as mentioned in the issue\r\n\r\n## What kind of change is this?\r\nReturns information about the specific room ID\r\n\r\n<!--\r\nBug fixes (non-breaking change which fixes an issue)\r\nImprovements (misc. changes to existing features)\r\nFeatures (non-breaking change which adds functionality)\r\nUpdates (new versions of included code)\r\n-->\r\n\r\n<!-- This \"Why\" section is most relevant if there are no linked issues explaining why. If there is a related issue, it might make sense to skip this why section. -->\r\n<!--\r\n## Why are we doing this? Any context or related work?\r\n-->\r\n\r\n# Documentation changes needed?\r\n\r\n<!--\r\nMy changes do not require a change to the project documentation.\r\nMy changes require a change to the project documentation.\r\nIf documentation change is needed: I have updated the documentation accordingly.\r\n-->\r\n\r\n<!-- Please show how you tested the PR. This will really help if the PR needs to be retested and probably help the PR get merged quicker. -->\r\n\r\n# Testing\r\n\r\n## Where should a reviewer start?\r\n\r\n## Detailed testing steps\r\n\r\n<!--\r\nNone: Automated tests are acceptable.\r\n-->\r\n\r\n<!--\r\n- As [anon/admin], go to [link]\r\n  - [do action]\r\n  - verify [result]\r\n-->\r\n\r\n<!-- If there is a UI change, please include before and after screenshots or videos. This will speed up PRs being merged. It is extra nice to annotate screenshots with arrows or boxes pointing out the differences. -->\r\n<!--\r\n## Screenshots\r\n### Before\r\n### After\r\n-->\r\n\r\n<!-- If there is anything about the deployment, please make a note. -->\r\n<!--\r\n# Deploy Notes\r\n-->\r\n\r\n<!--  Copy and paste command line output. -->\r\n<!--\r\n## Database changes\r\n-->\r\n\r\n<!--  Please specify deploy instructions if there is something more than the automated steps. -->\r\n<!--\r\n## Deployment instructions\r\n-->\r\n\r\n<!-- If you are on Discord, please join https://discord.gg/ai16z and state your Discord username here for the contributor role and join us in #development-feed -->\r\n<!--\r\n## Discord username\r\n\r\n-->\r\n",
      "repository": "elizaos/eliza",
      "createdAt": "2025-05-31T21:03:41Z",
      "mergedAt": "2025-06-01T08:13:11Z",
      "additions": 12952,
      "deletions": 385
    },
    {
      "id": "PR_kwDOMT5cIs6Ye2hN",
      "title": "feat: replace PGLite message bus with fast in-memory implementation",
      "author": "0xbbjoker",
      "number": 4869,
      "body": "",
      "repository": "elizaos/eliza",
      "createdAt": "2025-06-01T14:24:57Z",
      "mergedAt": null,
      "additions": 1138,
      "deletions": 674
    }
  ],
  "codeChanges": {
    "additions": 20831,
    "deletions": 1323,
    "files": 96,
    "commitCount": 57
  },
  "completedItems": [
    {
      "title": "Update README_MY.md",
      "prNumber": 4840,
      "type": "other",
      "body": "<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\r\n\r\n# Relates to\r\n\r\n<!-- LINK TO ISSUE OR TICKET -->\r\n\r\n<!-- This risks section must be filled out before the final review "
    },
    {
      "title": "LLM Based Conversion",
      "prNumber": 4832,
      "type": "other",
      "body": ""
    },
    {
      "title": "feat: add tee starter project create cli ",
      "prNumber": 4830,
      "type": "feature",
      "body": "<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\r\n\r\n# Relates to\r\n\r\n<!-- LINK TO ISSUE OR TICKET -->\r\n\r\n<!-- This risks section must be filled out before the final review "
    },
    {
      "title": "Bump the cargo group across 1 directory with 3 updates",
      "prNumber": 4854,
      "type": "other",
      "body": "Bumps the cargo group with 3 updates in the /packages/app/src-tauri directory: [tauri-plugin-shell](https://github.com/tauri-apps/plugins-workspace), [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) and [tokio](https://github."
    },
    {
      "title": "Bump the npm_and_yarn group across 3 directories with 1 update",
      "prNumber": 4853,
      "type": "other",
      "body": "Bumps the npm_and_yarn group with 1 update in the /packages/plugin-starter directory: [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest).\nBumps the npm_and_yarn group with 1 update in the /packages/project-starter dire"
    },
    {
      "title": "Add plugin specifications to core",
      "prNumber": 4851,
      "type": "feature",
      "body": "This PR adds plugin specifications to core\r\n\r\nEverything should work as it has, and there should be no need to modify any code outside of core to engage this specification functionality.\r\n\r\nIn the future, plugins can be migrated to import t"
    },
    {
      "title": "fix: add missing GET /agents/:agentId/rooms/:roomId API endpoint",
      "prNumber": 4860,
      "type": "feature",
      "body": "<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\r\n\r\n# Relates to\r\n\r\nFixes #4763 \r\n\r\n<!-- This risks section must be filled out before the final review and merge. -->\r\n\r\n# "
    },
    {
      "title": "fix: linter formatting issues",
      "prNumber": 4878,
      "type": "bugfix",
      "body": "Fixes linter CI check."
    },
    {
      "title": "fix: docs readme build, agent name variable",
      "prNumber": 4877,
      "type": "bugfix",
      "body": ""
    },
    {
      "title": "fix errors in CHANGELOG.md",
      "prNumber": 4875,
      "type": "bugfix",
      "body": "Hey team! Fixed error\r\n\r\nCHANGELOG.md\r\n`Seperated` - `Separated`\r\n`characteres` - `characters`"
    },
    {
      "title": "chore: Enhances core package build process",
      "prNumber": 4874,
      "type": "other",
      "body": "Refactors the core package's build process for improved modularity and maintainability.\r\n\r\n- Adds dedicated entry points for different API versions.\r\n- Updates the build configuration to use `tsup` for all build tasks.\r\n- Enables declaratio"
    },
    {
      "title": "fix: elizaos start for plugins",
      "prNumber": 4873,
      "type": "bugfix",
      "body": "fixes forceful telegram, discord plugins etc"
    },
    {
      "title": "fix: Removes plugin-specification submodule",
      "prNumber": 4871,
      "type": "bugfix",
      "body": "Removes the plugin-specification submodule from the repository.\n\nThis change simplifies the project structure by removing an unused submodule."
    },
    {
      "title": "fix: failing CLI CI test suites",
      "prNumber": 4870,
      "type": "bugfix",
      "body": "## Summary\nFix multiple failing test suites to achieve 100% test success rate. These comprehensive fixes address test expectation mismatches, improve error handling, and ensure CI pipeline stability.\n\n## Fixed Tests\n\n### 1. **test_plugins.b"
    },
    {
      "title": "chore: Optimize plugin loading to reduce startup log spam",
      "prNumber": 4868,
      "type": "other",
      "body": "## Summary\r\n- Implement smart strategy selection that checks file existence before attempting imports to find optimal path in one shot\r\n- Reorder import strategies to prioritize most likely successful paths (package.json entry first, then c"
    },
    {
      "title": "Update README_IND.md",
      "prNumber": 4867,
      "type": "other",
      "body": "<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->\r\n\r\n# Relates to\r\n\r\n<!-- LINK TO ISSUE OR TICKET -->\r\n\r\n<!-- This risks section must be filled out before the final review "
    },
    {
      "title": "Bump the npm_and_yarn group across 3 directories with 1 update",
      "prNumber": 4865,
      "type": "other",
      "body": "Bumps the npm_and_yarn group with 1 update in the /packages/plugin-starter directory: [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest).\nBumps the npm_and_yarn group with 1 update in the /packages/project-starter dire"
    },
    {
      "title": "Create .cursorrules",
      "prNumber": 4863,
      "type": "other",
      "body": "This PR adds a .cursorrules which should help Cursor to stick the landing"
    },
    {
      "title": "Add example of prompt injection for future LLM trainings",
      "prNumber": 4862,
      "type": "feature",
      "body": "Since we have a top 1% repo we want to have a space in our docs for adding stuff that can be trained into the model"
    }
  ],
  "topContributors": [
    {
      "username": "wtfsayo",
      "avatarUrl": "https://avatars.githubusercontent.com/u/82053242?u=98209a1f10456f42d4d2fa71db4d5bf4a672cbc3&v=4",
      "totalScore": 138.58468610932545,
      "prScore": 138.14668610932546,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0.43799999999999994,
      "summary": "wtfsayo: Merged 3 PRs, including a significant bug fix for the CLI CI test suites (PR #4870, +134/-423 lines), while also opening 1 new feature PR (#4866). Modified 44 files with a total of +662/-1392 lines across 15 commits, demonstrating a consistent focus on feature and bugfix work."
    },
    {
      "username": "ChristopherTrimboli",
      "avatarUrl": "https://avatars.githubusercontent.com/u/27584221?u=0d816ce1dcdea8f925aba18bb710153d4a87a719&v=4",
      "totalScore": 109.58214554679375,
      "prScore": 99.58214554679375,
      "issueScore": 0,
      "reviewScore": 10,
      "commentScore": 0,
      "summary": "ChristopherTrimboli: Merged 4 PRs, including #4874 which enhanced the core package build process (+60/-38 lines), and focused on bug fixes with a total of 21 modified files (+143/-94 lines) across 7 commits. Maintained a consistent work pattern, dedicating 71% of efforts to other work and 29% to bugfixes."
    },
    {
      "username": "lalalune",
      "avatarUrl": "https://avatars.githubusercontent.com/u/18633264?u=e2e906c3712c2506ebfa98df01c2cfdc50050b30&v=4",
      "totalScore": 87.20235566919314,
      "prScore": 87.20235566919314,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "lalalune: Merged 2 PRs (#4863 with +228 lines, #4862 with +7 lines) and opened 1 new PR (#4864), while modifying 474 files with a total of +55,768 lines added and -25,067 lines removed. The primary focus was on other work (74%), demonstrating consistent activity with 19 commits today."
    },
    {
      "username": "0xbbjoker",
      "avatarUrl": "https://avatars.githubusercontent.com/u/54844437?u=90fe1762420de6ad493a1c1582f1f70c0d87d8e2&v=4",
      "totalScore": 43.7437738965761,
      "prScore": 33.5437738965761,
      "issueScore": 0,
      "reviewScore": 10,
      "commentScore": 0.2,
      "summary": "0xbbjoker: Opened 1 pull request (#4869) focused on replacing the PGLite message bus with a fast in-memory implementation, modifying 18 files with a total of +1138/-674 lines. Additionally, provided 2 approvals in reviews, demonstrating consistent engagement with the codebase."
    },
    {
      "username": "imholders",
      "avatarUrl": "https://avatars.githubusercontent.com/u/202005793?v=4",
      "totalScore": 41.233711512865355,
      "prScore": 41.233711512865355,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": null
    },
    {
      "username": "K1mc4n",
      "avatarUrl": "https://avatars.githubusercontent.com/u/156217571?u=cc94e7743c591f36eaf958d88befa855348bba9d&v=4",
      "totalScore": 28.404261218861713,
      "prScore": 28.404261218861713,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "K1mc4n: Merged 1 pull request (#4867) with documentation updates, contributing +19/-1 lines. Maintained a consistent activity pattern, focusing entirely on other work today."
    },
    {
      "username": "davidjsonn",
      "avatarUrl": "https://avatars.githubusercontent.com/u/155117116?u=c0d37dc63f2fa62f48b5c54342917b17460af966&v=4",
      "totalScore": 21.08671895621705,
      "prScore": 21.08671895621705,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "davidjsonn: Merged 1 PR (#4875) addressing errors in CHANGELOG.md with a code change of +2/-2 lines, demonstrating a consistent focus on bugfix work in documentation. Active today, contributing to the project with a total of 1 commit."
    },
    {
      "username": "github-advanced-security",
      "avatarUrl": "https://avatars.githubusercontent.com/in/57789?v=4",
      "totalScore": 4.5,
      "prScore": 0,
      "issueScore": 0,
      "reviewScore": 4.5,
      "commentScore": 0,
      "summary": "github-advanced-security: Engaged with the project by providing 1 review comment but did not merge or open any pull requests or issues today. The activity pattern indicates sporadic involvement, being active on only 0 out of 1 days."
    },
    {
      "username": "techcomthanh",
      "avatarUrl": "https://avatars.githubusercontent.com/u/36766297?v=4",
      "totalScore": 2,
      "prScore": 0,
      "issueScore": 2,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "techcomthanh: Created 1 new issue (#4872 \"New plugin created from elizaos create -t plugin: remove requ...\") today, showing sporadic activity with no other contributions."
    },
    {
      "username": "ceeriil",
      "avatarUrl": "https://avatars.githubusercontent.com/u/84419154?u=5e4524c176cdae6a8ff3fffc83c3e4f2392842c7&v=4",
      "totalScore": 2,
      "prScore": 0,
      "issueScore": 2,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "ceeriil: Created 1 issue today (#4876 \"fallback to pnpm/npm when bun install fails (macOS compatibil...\"), showing sporadic activity with no merged pull requests or code changes."
    },
    {
      "username": "BinaryBluePeach",
      "avatarUrl": "https://avatars.githubusercontent.com/u/192237769?v=4",
      "totalScore": 2,
      "prScore": 0,
      "issueScore": 2,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "BinaryBluePeach: Created 1 issue today (#4861 \"plugin install problems (v0 plugin: giphy\") which is currently open, showing sporadic activity with no merged pull requests or code changes."
    }
  ],
  "newPRs": 18,
  "mergedPRs": 19,
  "newIssues": 3,
  "closedIssues": 3,
  "activeContributors": 22
}