{
  "interval": {
    "intervalStart": "2025-09-24T00:00:00.000Z",
    "intervalEnd": "2025-09-25T00:00:00.000Z",
    "intervalType": "day"
  },
  "repository": "elizaos/eliza",
  "overview": "From 2025-09-24 to 2025-09-25, elizaos/eliza had 3 new PRs (2 merged), 0 new issues, and 4 active contributors.",
  "topIssues": [],
  "topPRs": [
    {
      "id": "PR_kwDOMT5cIs6qN0pL",
      "title": "chore: 1.5.11",
      "author": "wtfsayo",
      "number": 5996,
      "body": "",
      "repository": "elizaos/eliza",
      "createdAt": "2025-09-24T07:17:51Z",
      "mergedAt": null,
      "additions": 4601,
      "deletions": 2906
    },
    {
      "id": "PR_kwDOMT5cIs6qTmMU",
      "title": "refactor type definitions across runtime.",
      "author": "tcm390",
      "number": 5998,
      "body": "",
      "repository": "elizaos/eliza",
      "createdAt": "2025-09-24T14:48:48Z",
      "mergedAt": null,
      "additions": 639,
      "deletions": 419
    },
    {
      "id": "PR_kwDOMT5cIs6p6DgA",
      "title": "chore: update zod pckg version",
      "author": "0xbbjoker",
      "number": 5994,
      "body": "\n\n<!-- This is an auto-generated comment: release notes by coderabbit.ai -->\n\n## Summary by CodeRabbit\n\n* **Chores**\n  * Upgraded the validation library to the latest major version across CLI, Core, plugins, and starter templates for improved compatibility, stability, and security.\n  * Aligned dependency resolutions across packages; no feature changes introduced.\n\n* **Refactor**\n  * Strengthened validation for configuration maps, ensuring keys are treated as strings for clearer error messages and more predictable behavior. No breaking API changes expected for typical usage.\n\n<!-- end of auto-generated comment: release notes by coderabbit.ai -->",
      "repository": "elizaos/eliza",
      "createdAt": "2025-09-22T18:17:09Z",
      "mergedAt": "2025-09-24T07:09:16Z",
      "additions": 177,
      "deletions": 72
    },
    {
      "id": "PR_kwDOMT5cIs6qOETW",
      "title": "fix(ci): stabilize Docker image build (Bun 1.2.21, Buildx cache, concurrency)",
      "author": "wtfsayo",
      "number": 5997,
      "body": "Stabilize Docker image builds in CI by aligning Bun to 1.2.21, enabling Buildx with GitHub Actions cache, constraining parallelism, and adding diagnostics and disk cleanup.\n\n**Diff vs develop**\n```\n2 files changed, 51 insertions(+), 9 deletions(-)\n.github/workflows/image.yaml | +46/-6\nDockerfile                   | +14/-3\n```\n\n**Changed files**\n- `.github/workflows/image.yaml`\n- `Dockerfile`\n\n**Commits**\n- e8f27c6c1d fix(ci): stabilize Docker image build — align Bun to 1.2.21; add verbose build diagnostics; limit Turbo concurrency; set up Buildx with GHA cache; reduce parallelism; add disk cleanup; add 60m timeout.\n- cea94ffeea Refine Docker image workflow for efficiency and clarity.\n\n**Why**\n- Previous workflow failed when `bun run build` exited 1 inside Docker build.\n- CI image used Bun 1.2.5 while local used 1.2.21; unify to 1.2.21.\n- CI hosts are resource constrained; limit build parallelism and clean disk before build.\n- Add diagnostics for faster root-cause when failures happen.\n\n**Key changes**\n- Dockerfile:\n  - Install `bun@1.2.21` and `turbo@2.3.3`.\n  - Add environment diagnostics (Node, Bun, memory, CPU, disk) before build.\n  - Constrain build: `TURBO_CONCURRENCY=2 bun run build --concurrency=2 --verbose`; on failure, print system state.\n- Workflow (`.github/workflows/image.yaml`):\n  - Add `timeout-minutes: 60`.\n  - Free disk space (remove large SDKs, prune Docker images).\n  - Set up Buildx with log size limits and `max-parallelism = 2`.\n  - Use GHA cache: `cache-from: type=gha` and `cache-to: type=gha,mode=max`.\n  - Use `linux/amd64` single-arch for stability.\n  - Keep build provenance attestation.\n\n**Expected outcome**\n- More stable and reproducible Docker image builds; faster subsequent builds via cache; clearer diagnostics on failure.\n\n**Test plan**\n- CI: run workflow via `workflow_dispatch` and verify successful build and push to GHCR.\n- Manual: local `docker build` validates Bun version parity and constrained build succeeds.\n\n**Links**\n- Failed job for reference: `https://github.com/elizaOS/eliza/actions/runs/17969674458/job/51109114397`",
      "repository": "elizaos/eliza",
      "createdAt": "2025-09-24T07:39:06Z",
      "mergedAt": "2025-09-24T07:54:35Z",
      "additions": 51,
      "deletions": 9
    }
  ],
  "codeChanges": {
    "additions": 228,
    "deletions": 81,
    "files": 18,
    "commitCount": 39
  },
  "completedItems": [
    {
      "title": "chore: update zod pckg version",
      "prNumber": 5994,
      "type": "other",
      "body": "\n\n<!-- This is an auto-generated comment: release notes by coderabbit.ai -->\n\n## Summary by CodeRabbit\n\n* **Chores**\n  * Upgraded the validation library to the latest major version across CLI, Core, plugins, and starter templates for improv",
      "files": [
        "bun.lock",
        "package.json",
        "packages/cli/package.json",
        "packages/cli/src/commands/create/utils/validation.ts",
        "packages/cli/src/commands/report/src/report-schema.ts",
        "packages/cli/src/commands/scenario/src/schema.ts",
        "packages/core/package.json",
        "packages/core/src/schemas/character.ts",
        "packages/plugin-quick-starter/package.json",
        "packages/plugin-starter/package.json",
        "packages/project-starter/package.json",
        "packages/project-tee-starter/package.json",
        "packages/project-tee-starter/src/__tests__/config.test.ts",
        "packages/project-tee-starter/src/__tests__/tee-validation.test.ts",
        "packages/project-tee-starter/src/plugin.ts",
        "packages/core/src/utils.ts"
      ]
    },
    {
      "title": "fix(ci): stabilize Docker image build (Bun 1.2.21, Buildx cache, concurrency)",
      "prNumber": 5997,
      "type": "bugfix",
      "body": "Stabilize Docker image builds in CI by aligning Bun to 1.2.21, enabling Buildx with GitHub Actions cache, constraining parallelism, and adding diagnostics and disk cleanup.\n\n**Diff vs develop**\n```\n2 files changed, 51 insertions(+), 9 delet",
      "files": [
        ".github/workflows/image.yaml",
        "Dockerfile"
      ]
    }
  ],
  "topContributors": [
    {
      "username": "wtfsayo",
      "avatarUrl": "https://avatars.githubusercontent.com/u/82053242?u=98209a1f10456f42d4d2fa71db4d5bf4a672cbc3&v=4",
      "totalScore": 63.92164776074941,
      "prScore": 63.92164776074941,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": null
    },
    {
      "username": "standujar",
      "avatarUrl": "https://avatars.githubusercontent.com/u/16385918?u=718bdcd1585be8447bdfffb8c11ce249baa7532d&v=4",
      "totalScore": 35.7667738965761,
      "prScore": 35.7667738965761,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": null
    },
    {
      "username": "tcm390",
      "avatarUrl": "https://avatars.githubusercontent.com/u/60634884?u=c6c41679b8322eaa0c81f72e0b4ed95e80f0ac16&v=4",
      "totalScore": 33.5437738965761,
      "prScore": 33.5437738965761,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": null
    },
    {
      "username": "SergiuTomus",
      "avatarUrl": "https://avatars.githubusercontent.com/u/40544351?v=4",
      "totalScore": 12.200573590279971,
      "prScore": 12.200573590279971,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": null
    }
  ],
  "newPRs": 3,
  "mergedPRs": 2,
  "newIssues": 0,
  "closedIssues": 0,
  "activeContributors": 4
}